Summary: - Profile ID: ad30f1be4140453a-aabc120b5ecc81ef - Task Type: QUERY - Start Time: 2024-04-25 23:12:58 - End Time: 2024-04-25 23:13:20 - Total: 21s614ms - Task State: EOF - User: root - Default Db: ods_demo - Sql Statement: -- SET enable_profile=true; 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: 24ms - Nereids Analysis Time: 57ms - Nereids Rewrite Time: 311ms - Nereids Optimize Time: 61ms - Nereids Translate Time: 16ms - Workload Group: normal - Analysis Time: 57ms - Plan Time: 417ms - 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: 439ms - Fetch Result Time: 20s473ms - Write Result Time: 2ms - Wait and Fetch Result Time: 20s701ms - Doris Version: selectdb-doris-2.1.1-rc05-7e666ac1a3 - Is Nereids: Yes - Is Pipeline: Yes - Is Cached: No - Total Instances Num: 1496 - Instances Num Per BE: 192.168.18.87:8060:841,192.168.18.88:8060:655 - Parallel Fragment Exec Instance Num: 12 - Trace ID: MergedProfile Fragments: Fragment 0: Pipeline : 0(instance_num=1): RESULT_SINK_OPERATOR (id=0): - BlocksProduced: sum 7, avg 7, max 7, min 7 - CloseTime: avg 5.489us, max 5.489us, min 5.489us - ExecTime: avg 32.891ms, max 32.891ms, min 32.891ms - 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 59.484us, max 59.484us, min 59.484us - 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): - BlocksProduced: sum 10, avg 10, max 10, min 10 - CloseTime: avg 4.883us, max 4.883us, min 4.883us - ExecTime: avg 522.751us, max 522.751us, min 522.751us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 483.00 KB, avg 483.00 KB, max 483.00 KB, min 483.00 KB - OpenTime: avg 35.164us, max 35.164us, min 35.164us - 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 20s667ms, max 20s667ms, min 20s667ms 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 20.260us, max 34.348us, min 13.887us - ExecTime: avg 1.399ms, max 1.718ms, min 678.343us - InputRows: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.54 MB, avg 1.11 MB, max 1.82 MB, min 0.00 - OpenTime: avg 57.54us, max 79.230us, min 42.470us - 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): - BlocksProduced: sum 10, avg 2, max 2, min 2 - CloseTime: avg 58.340us, max 116.442us, min 39.298us - ExecTime: avg 1.519ms, max 1.780ms, min 1.256ms - 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 53.958us, max 68.218us, min 40.509us - ProbeRows: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - ProjectionTime: avg 457.463us, max 545.158us, min 383.238us - RowsProduced: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 255.921ms, max 324.124ms, min 194.504ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: sum 10, avg 2, max 2, min 2 - CloseTime: avg 22.421us, max 48.696us, min 14.930us - ExecTime: avg 1.545ms, max 1.837ms, min 1.214ms - 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 39.779us, max 43.131us, min 34.931us - ProbeRows: sum 39, avg 7, max 11, min 6 - ProjectionTime: avg 434.121us, max 522.382us, min 337.523us - RowsProduced: sum 9.2K (9200), avg 1.84K (1840), max 2.185K (2185), min 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 10s418ms, max 10s439ms, min 10s411ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: sum 5, avg 1, max 1, min 1 - CloseTime: avg 1.33us, max 1.257us, min 717ns - ExecTime: avg 55.278us, max 66.888us, min 34.406us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.408us, max 14.263us, min 7.522us - ProjectionTime: avg 16.453us, max 23.599us, min 11.614us - RowsProduced: sum 39, avg 7, max 11, min 6 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 9s942ms, max 9s950ms, min 9s918ms Pipeline : 1(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=388): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 105.567us, max 132.500us, min 86.433us - 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 14.290us, max 19.154us, min 7.623us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: sum 5, avg 1, max 1, min 1 - CloseTime: avg 882ns, max 1.43us, min 728ns - ExecTime: avg 121.917us, max 154.444us, min 97.42us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.281us, max 11.215us, min 6.496us - ProjectionTime: avg 33.153us, max 37.953us, min 28.101us - RowsProduced: sum 75, avg 15, max 19, min 11 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 20s617ms, max 20s686ms, min 20s552ms Pipeline : 2(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=387): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.421ms, max 1.670ms, min 1.79ms - 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 27.255us, max 43.971us, min 15.857us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: sum 180, avg 36, max 36, min 36 - CloseTime: avg 5.802us, max 15.744us, min 2.716us - ExecTime: avg 564.104us, max 701.153us, min 466.458us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 448.63 KB, avg 89.72 KB, max 93.88 KB, min 85.25 KB - OpenTime: avg 23.412us, max 27.117us, min 18.720us - 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 20s358ms, max 20s359ms, min 20s355ms Pipeline : 3(instance_num=5): AGGREGATION_SINK_OPERATOR (id=386): - CloseTime: avg 1.656us, max 2.149us, min 1.146us - ExecTime: avg 2.512ms, max 3.719ms, min 1.471ms - 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 46.345us, max 56.722us, min 39.307us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: sum 33, avg 6, max 9, min 6 - CloseTime: avg 8.393us, max 13.970us, min 4.186us - ExecTime: avg 103.336us, max 151.556us, min 64.97us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 353.75 KB, avg 70.75 KB, max 128.56 KB, min 0.00 - OpenTime: avg 18.121us, max 24.263us, min 13.383us - 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 9s939ms, max 9s947ms, min 9s915ms Pipeline : 4(instance_num=5): AGGREGATION_SINK_OPERATOR (id=24): - CloseTime: avg 1.595us, max 2.34us, min 1.65us - ExecTime: avg 87.2ms, max 121.976ms, min 50.556ms - 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 83.265us, max 99.362us, min 72.73us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: sum 102, avg 20, max 22, min 14 - CloseTime: avg 7.37us, max 8.514us, min 4.138us - ExecTime: avg 383.321us, max 534.634us, min 319.254us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.72 MB, avg 1.34 MB, max 2.91 MB, min 571.06 KB - OpenTime: avg 20.4us, max 30.897us, min 15.631us - 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 20s528ms, max 20s584ms, min 20s473ms Fragment 2: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - BlocksProduced: sum 33, avg 6, max 9, min 6 - CloseTime: avg 18.288us, max 22.437us, min 15.50us - ExecTime: avg 371.403us, max 500.200us, min 282.584us - 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 54.589us, max 75.915us, min 38.614us - 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): - BlocksProduced: sum 5, avg 1, max 1, min 1 - CloseTime: avg 28.881us, max 46.513us, min 17.863us - ExecTime: avg 5.42ms, max 5.968ms, min 3.988ms - 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 50.453us, max 67.695us, min 35.264us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 147, avg 29, max 31, min 27 HASH_JOIN_OPERATOR (id=383): - BlocksProduced: sum 125, avg 25, max 27, min 23 - CloseTime: avg 23.725us, max 32.502us, min 20.197us - ExecTime: avg 13.313ms, max 16.736ms, min 9.631ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.62 MB, avg 945.60 KB, max 1.04 MB, min 852.00 KB - ProbeKeyArena: sum 4.62 MB, avg 945.60 KB, max 1.04 MB, min 852.00 KB - OpenTime: avg 17.880us, max 25.772us, min 12.899us - ProbeRows: sum 399.083K (399083), avg 79.816K (79816), max 83.153K (83153), min 77.326K (77326) - ProjectionTime: avg 690.551us, max 819.347us, min 526.89us - RowsProduced: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 5s46ms, max 8s419ms, min 4s127ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: sum 131, avg 26, max 36, min 23 - CloseTime: avg 9.76us, max 13.300us, min 6.675us - ExecTime: avg 244.836us, max 310.693us, min 184.485us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 26.55 MB, avg 5.31 MB, max 6.42 MB, min 1.81 MB - OpenTime: avg 23.59us, max 26.834us, min 14.76us - 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 812.919ms, max 1s480ms, min 645.376ms Pipeline : 1(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=383): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 12.739ms, max 15.258ms, min 10.485ms - 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 36.0us, max 56.694us, min 23.492us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: sum 67, avg 13, max 15, min 11 - CloseTime: avg 11.838us, max 18.58us, min 9.455us - ExecTime: avg 234.584us, max 276.246us, min 195.192us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.71 MB, avg 760.80 KB, max 1.09 MB, min 560.00 KB - OpenTime: avg 18.954us, max 30.535us, min 13.214us - 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 5s681ms, max 9s91ms, min 4s756ms Fragment 3: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - BlocksProduced: sum 113, avg 22, max 24, min 21 - CloseTime: avg 27.659us, max 40.784us, min 15.983us - ExecTime: avg 12.565ms, max 16.636ms, min 9.737ms - InputRows: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 30.36 MB, avg 6.07 MB, max 6.92 MB, min 3.59 MB - OpenTime: avg 50.676us, max 90.252us, min 38.742us - 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): - BlocksProduced: sum 100, avg 20, max 21, min 19 - CloseTime: avg 37.978us, max 53.33us, min 25.783us - ExecTime: avg 7.322ms, max 10.436ms, min 5.564ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 316.275us, max 455.733us, min 184.63us - 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 6.737ms, max 9.866ms, min 5.50ms 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 56, avg 18, max 21, min 17 - CloseTime: avg 19.161us, max 21.809us, min 16.750us - ExecTime: avg 15.51ms, max 19.404ms, min 12.461ms - InputRows: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 16.11 MB, avg 5.37 MB, max 6.30 MB, min 4.02 MB - OpenTime: avg 45.515us, max 58.678us, min 37.748us - 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): - BlocksProduced: sum 130, avg 43, max 47, min 41 - CloseTime: avg 26.500us, max 45.674us, min 13.633us - ExecTime: avg 19.478ms, max 32.35ms, min 11.386ms - 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 18.685us, max 30.313us, min 10.720us - ProbeRows: sum 518.706K (518706), avg 172.902K (172902), max 173.412K (173412), min 172.143K (172143) - ProjectionTime: avg 1.88ms, max 1.171ms, min 1.33ms - RowsProduced: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s199ms, max 3s597ms, min 0ns OLAP_SCAN_OPERATOR (id=378. table name = QYWX_GROUPCHAT_MEMBER): - BlocksProduced: sum 139, avg 46, max 47, min 46 - CloseTime: avg 60.414us, max 63.850us, min 57.779us - ExecTime: avg 56.708ms, max 75.282ms, min 44.49ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 336.858us, max 437.689us, min 256.325us - ProjectionTime: avg 7.593ms, max 9.631ms, min 6.315ms - 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 41.179ms, max 47.59ms, min 36.269ms 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 195.408us, max 276.581us, min 146.685us - 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 24.979us, max 34.403us, min 13.374us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=377): - BlocksProduced: sum 4, avg 1, max 2, min 1 - CloseTime: avg 11.6us, max 13.864us, min 8.211us - ExecTime: avg 40.491us, max 48.283us, min 35.453us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.50 KB, avg 8.17 KB, max 12.25 KB, min 0.00 - OpenTime: avg 20.267us, max 26.393us, min 16.966us - 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 1s856ms, max 4s286ms, min 640.387ms Fragment 5: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=377,dst_id=377): - BlocksProduced: sum 4, avg 4, max 4, min 4 - CloseTime: avg 26.84us, max 26.84us, min 26.84us - ExecTime: avg 324.92us, max 324.92us, min 324.92us - 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 37.242us, max 37.242us, min 37.242us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 121.33us, max 121.33us, min 121.33us - ExecTime: avg 4.147ms, max 4.147ms, min 4.147ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 335.827us, max 335.827us, min 335.827us - ProjectionTime: avg 76.965us, max 76.965us, min 76.965us - RowsProduced: sum 447, avg 447, max 447, min 447 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 3.580ms, max 3.580ms, min 3.580ms 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=24): DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - BlocksProduced: sum 180, avg 7, max 9, min 6 - CloseTime: avg 11.717us, max 24.197us, min 6.820us - ExecTime: avg 842.468us, max 1.878ms, min 444.994us - InputRows: sum 9.2K (9200), avg 383, max 415, min 342 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.67 MB, avg 199.44 KB, max 220.00 KB, min 178.88 KB - OpenTime: avg 51.802us, max 68.240us, min 35.82us - RowsProduced: sum 9.2K (9200), avg 383, max 415, min 342 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 731ns, max 1.253us, min 297ns - ExecTime: avg 726.726us, max 917.59us, min 473.684us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 13.283us, max 52.754us, min 4.926us - ProjectionTime: avg 163.393us, max 220.863us, min 108.828us - RowsProduced: sum 9.2K (9200), avg 383, max 415, min 342 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 20s353ms, max 20s355ms, min 20s352ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=374): - CloseTime: avg 1.197us, max 4.799us, min 421ns - ExecTime: avg 1.72ms, max 1.270ms, min 835.133us - InputRows: sum 9.2K (9200), avg 383, max 415, min 342 - MemoryUsage: sum , avg , max , min - HashTable: sum 287.44 KB, avg 11.98 KB, max 11.98 KB, min 11.98 KB - PeakMemoryUsage: sum 157.22 MB, avg 6.55 MB, max 6.55 MB, min 6.55 MB - SerializeKeyArena: sum 156.94 MB, avg 6.54 MB, max 6.54 MB, min 6.54 MB - OpenTime: avg 91.136us, max 144.951us, min 63.833us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 4.34us, max 16.73us, min 1.773us - ExecTime: avg 343.384us, max 427.863us, min 260.381us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 622.06 KB, avg 25.92 KB, max 48.56 KB, min 8.81 KB - OpenTime: avg 22.390us, max 36.542us, min 11.982us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 415, min 342 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s350ms, max 20s352ms, min 20s348ms Fragment 7: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 14.4us, max 28.822us, min 7.214us - ExecTime: avg 2.73ms, max 2.989ms, min 1.242ms - InputRows: sum 9.2K (9200), avg 383, max 398, min 361 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.77 MB, avg 203.72 KB, max 212.69 KB, min 196.81 KB - OpenTime: avg 137.603us, max 234.536us, min 88.962us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=372): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 56.751us, max 105.918us, min 28.350us - ExecTime: avg 1.377ms, max 2.344ms, min 869.526us - MemoryUsage: sum , avg , max , min - HashTable: sum 287.44 KB, avg 11.98 KB, max 11.98 KB, min 11.98 KB - PeakMemoryUsage: sum 157.22 MB, avg 6.55 MB, max 6.55 MB, min 6.55 MB - SerializeKeyArena: sum 156.94 MB, avg 6.54 MB, max 6.54 MB, min 6.54 MB - OpenTime: avg 113.399us, max 266.20us, min 72.854us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 HASH_JOIN_OPERATOR (id=371): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 58.918us, max 87.75us, min 26.381us - ExecTime: avg 523.918us, max 993.191us, min 336.33us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - ProbeKeyArena: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - OpenTime: avg 43.617us, max 70.816us, min 26.146us - ProbeRows: sum 9.2K (9200), avg 383, max 398, min 361 - ProjectionTime: avg 149.219us, max 275.33us, min 92.967us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: sum 38, avg 1, max 2, min 1 - CloseTime: avg 8.205us, max 26.207us, min 2.895us - ExecTime: avg 39.970us, max 73.670us, min 20.940us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.15 MB, avg 91.91 KB, max 191.57 KB, min 22.89 KB - OpenTime: avg 24.499us, max 60.198us, min 10.194us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s343ms, max 20s347ms, min 20s340ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=371): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 94.715us, max 128.350us, min 59.234us - InputRows: sum 542, avg 22, max 31, min 13 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 16.94 KB, avg 722.00 B, max 992.00 B, min 416.00 B - BuildKeyArena: sum 96.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 5.80 KB, avg 247.00 B, max 388.00 B, min 188.00 B - PeakMemoryUsage: sum 22.55 KB, avg 962.00 B, max 1.34 KB, min 596.00 B - OpenTime: avg 15.311us, max 30.111us, min 5.850us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: sum 382, avg 15, max 22, min 11 - CloseTime: avg 14.612us, max 119.228us, min 2.750us - ExecTime: avg 76.699us, max 213.103us, min 45.989us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 21.13 KB, avg 901.00 B, max 2.12 KB, min 158.00 B - OpenTime: avg 20.754us, max 40.659us, min 9.722us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 542, avg 22, max 31, min 13 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s330ms, max 20s331ms, min 20s328ms Fragment 8: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 14.54us, max 28.621us, min 8.246us - ExecTime: avg 1.402ms, max 5.416ms, min 697.483us - InputRows: sum 9.2K (9200), avg 383, max 4.614K (4614), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.10 MB, avg 174.86 KB, max 2.00 MB, min 5.25 KB - OpenTime: avg 130.441us, max 206.276us, min 91.515us - RowsProduced: sum 9.2K (9200), avg 383, max 4.614K (4614), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=369): - BlocksProduced: sum 24, avg 1, max 12, min 0 - CloseTime: avg 20.30us, max 64.343us, min 8.61us - ExecTime: avg 389.840us, max 3.690ms, min 87.699us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 32.00 KB, avg 1.33 KB, max 16.00 KB, min 0.00 - ProbeKeyArena: sum 32.00 KB, avg 1.33 KB, max 16.00 KB, min 0.00 - OpenTime: avg 39.713us, max 60.965us, min 26.76us - ProbeRows: sum 9.2K (9200), avg 383, max 4.614K (4614), min 0 - ProjectionTime: avg 113.846us, max 827.779us, min 25.27us - RowsProduced: sum 9.2K (9200), avg 383, max 4.614K (4614), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 24, avg 1, max 12, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 11.548us, max 69.695us, min 1.252us - GetBlockFailedTime: sum 44, avg 1, max 10, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.17 MB, avg 49.74 KB, max 344.00 KB, min 0.00 - OpenTime: avg 1.319us, max 5.650us, min 583ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 4.614K (4614), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 20s338ms, max 20s339ms, min 20s334ms Pipeline : 1(instance_num=24): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 27.480us, max 73.806us, min 5.911us - InputRows: sum 9.2K (9200), avg 383, max 398, min 361 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.290us, max 14.354us, min 1.14us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 33.517us, max 80.280us, min 14.489us - ExecTime: avg 485.340us, max 663.111us, min 314.20us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - ProbeKeyArena: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - OpenTime: avg 35.30us, max 48.940us, min 22.19us - ProbeRows: sum 9.2K (9200), avg 383, max 398, min 361 - ProjectionTime: avg 165.369us, max 336.963us, min 94.231us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: sum 34, avg 1, max 2, min 1 - CloseTime: avg 4.658us, max 16.660us, min 1.370us - ExecTime: avg 32.653us, max 46.778us, min 18.84us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.39 MB, avg 102.06 KB, max 169.45 KB, min 9.97 KB - OpenTime: avg 21.901us, max 35.484us, min 13.272us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s337ms, max 20s339ms, min 20s335ms Pipeline : 2(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=369): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 58.542us, max 285.133us, min 13.827us - InputRows: sum 1.928K (1928), avg 80, max 964, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 60.23 KB, avg 2.51 KB, max 30.11 KB, min 0.00 - BuildKeyArena: sum 56.00 KB, avg 2.33 KB, max 28.00 KB, min 0.00 - HashTable: sum 23.55 KB, avg 1004.00 B, max 11.77 KB, min 0.00 - PeakMemoryUsage: sum 131.76 KB, avg 5.49 KB, max 65.88 KB, min 0.00 - OpenTime: avg 16.823us, max 42.334us, min 6.468us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 15s820ms, max 17s262ms, min 0ns EXCHANGE_OPERATOR (id=60): - BlocksProduced: sum 36, avg 1, max 22, min 0 - CloseTime: avg 12.856us, max 50.929us, min 2.834us - ExecTime: avg 35.125us, max 78.757us, min 13.213us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.25 KB, avg 1.01 KB, max 20.13 KB, min 0.00 - OpenTime: avg 17.357us, max 26.94us, min 8.196us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.928K (1928), avg 80, max 964, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s438ms, max 17s261ms, min 0ns Pipeline : 3(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=368): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 138.477us, max 174.605us, min 97.309us - InputRows: sum 2.315K (2315), avg 96, max 113, min 81 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 108.24 KB, avg 4.51 KB, max 5.29 KB, min 3.79 KB - BuildKeyArena: sum 96.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 21.73 KB, avg 927.00 B, max 1.45 KB, min 844.00 B - PeakMemoryUsage: sum 129.78 KB, avg 5.41 KB, max 6.73 KB, min 4.61 KB - OpenTime: avg 12.414us, max 27.534us, min 4.942us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: sum 852, avg 35, max 36, min 32 - CloseTime: avg 8.604us, max 83.289us, min 1.738us - ExecTime: avg 128.79us, max 189.743us, min 99.693us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 63.25 KB, avg 2.63 KB, max 5.94 KB, min 1.19 KB - OpenTime: avg 16.157us, max 27.606us, min 8.709us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.315K (2315), avg 96, max 113, min 81 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s414ms, max 19s418ms, min 19s411ms Fragment 9: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 13.377us, max 25.333us, min 8.923us - ExecTime: avg 1.448ms, max 2.449ms, min 781.607us - InputRows: sum 9.2K (9200), avg 383, max 398, min 361 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.68 MB, avg 156.86 KB, max 159.53 KB, min 151.53 KB - OpenTime: avg 128.695us, max 166.284us, min 90.558us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=366): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 42.312us, max 65.102us, min 24.534us - ExecTime: avg 487.14us, max 941.81us, min 304.394us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - ProbeKeyArena: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - OpenTime: avg 35.775us, max 55.726us, min 20.53us - ProbeRows: sum 9.2K (9200), avg 383, max 398, min 361 - ProjectionTime: avg 160.735us, max 272.101us, min 92.831us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: sum 34, avg 1, max 2, min 1 - CloseTime: avg 4.582us, max 17.436us, min 2.62us - ExecTime: avg 28.815us, max 56.776us, min 20.868us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.23 MB, avg 95.29 KB, max 162.42 KB, min 6.15 KB - OpenTime: avg 17.302us, max 44.934us, min 9.772us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s331ms, max 20s336ms, min 20s329ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=366): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 52.938us, max 97.564us, min 28.699us - 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 96.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 576.00 B, avg 24.00 B, max 24.00 B, min 24.00 B - PeakMemoryUsage: sum 384.00 B, avg 16.00 B, max 16.00 B, min 16.00 B - OpenTime: avg 13.791us, max 28.115us, min 7.94us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 37.992us, max 678.992us, min 1.589us - ExecTime: avg 58.337us, max 698.465us, min 15.143us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 26.72 KB, avg 1.11 KB, max 1.30 KB, min 950.00 B - OpenTime: avg 18.612us, max 39.977us, min 9.112us - 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 18s953ms, max 18s955ms, min 18s952ms Fragment 10: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 15.392us, max 36.860us, min 8.608us - ExecTime: avg 1.378ms, max 2.364ms, min 874.827us - InputRows: sum 9.2K (9200), avg 383, max 398, min 361 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.47 MB, avg 147.86 KB, max 150.53 KB, min 142.53 KB - OpenTime: avg 130.80us, max 181.218us, min 97.143us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=364): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 53.465us, max 85.580us, min 29.330us - ExecTime: avg 471.794us, max 643.166us, min 328.921us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - ProbeKeyArena: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - OpenTime: avg 35.320us, max 62.661us, min 24.411us - ProbeRows: sum 9.2K (9200), avg 383, max 398, min 361 - ProjectionTime: avg 143.365us, max 217.156us, min 86.78us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: sum 30, avg 1, max 2, min 1 - CloseTime: avg 15.377us, max 169.745us, min 2.895us - ExecTime: avg 40.358us, max 188.176us, min 20.370us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.57 MB, avg 109.44 KB, max 150.65 KB, min 4.25 KB - OpenTime: avg 17.150us, max 35.591us, min 9.362us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s326ms, max 20s328ms, min 20s324ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=364): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 146.269us, max 313.666us, min 113.831us - InputRows: sum 2.315K (2315), avg 96, max 113, min 81 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 90.16 KB, avg 3.76 KB, max 4.40 KB, min 3.16 KB - BuildKeyArena: sum 96.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 21.73 KB, avg 927.00 B, max 1.45 KB, min 844.00 B - PeakMemoryUsage: sum 111.70 KB, avg 4.65 KB, max 5.84 KB, min 3.97 KB - OpenTime: avg 11.973us, max 22.458us, min 6.448us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: sum 855, avg 35, max 36, min 34 - CloseTime: avg 8.80us, max 20.944us, min 2.439us - ExecTime: avg 115.763us, max 186.128us, min 80.99us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 57.81 KB, avg 2.41 KB, max 4.19 KB, min 832.00 B - OpenTime: avg 16.997us, max 31.471us, min 7.937us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 2.315K (2315), avg 96, max 113, min 81 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s409ms, max 19s411ms, min 19s408ms Fragment 11: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 15.959us, max 41.932us, min 9.92us - ExecTime: avg 1.565ms, max 2.217ms, min 946.417us - InputRows: sum 9.2K (9200), avg 383, max 398, min 361 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 MB, avg 138.86 KB, max 141.53 KB, min 133.53 KB - OpenTime: avg 123.262us, max 170.512us, min 89.831us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=362): - BlocksProduced: sum 600, avg 25, max 25, min 25 - CloseTime: avg 21.201us, max 68.607us, min 10.881us - ExecTime: avg 1.708ms, max 3.109ms, min 982.504us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 96.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - ProbeKeyArena: sum 96.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - OpenTime: avg 32.668us, max 49.501us, min 20.832us - ProbeRows: sum 4.274K (4274), avg 178, max 195, min 167 - ProjectionTime: avg 492.35us, max 855.155us, min 279.126us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s921ms, max 1s938ms, min 1s905ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 5.470us, max 13.508us, min 2.694us - ExecTime: avg 133.13us, max 201.931us, min 84.550us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 175.56 KB, avg 7.31 KB, max 8.06 KB, min 6.81 KB - OpenTime: avg 19.167us, max 39.515us, min 9.219us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.274K (4274), avg 178, max 195, min 167 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 18s399ms, max 18s415ms, min 18s384ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=362): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 237.933us, max 360.57us, min 138.779us - InputRows: sum 9.2K (9200), avg 383, max 398, min 361 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.23 MB, avg 95.03 KB, max 98.81 KB, min 89.38 KB - BuildKeyArena: sum 384.00 KB, avg 16.00 KB, max 16.00 KB, min 16.00 KB - HashTable: sum 93.13 KB, avg 3.88 KB, max 3.95 KB, min 3.77 KB - PeakMemoryUsage: sum 2.60 MB, avg 110.90 KB, max 114.75 KB, min 105.14 KB - OpenTime: avg 22.662us, max 36.88us, min 12.76us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: sum 36, avg 1, max 2, min 1 - CloseTime: avg 14.938us, max 245.177us, min 2.189us - ExecTime: avg 55.610us, max 283.415us, min 32.526us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.79 MB, avg 76.51 KB, max 146.89 KB, min 9.47 KB - OpenTime: avg 17.534us, max 26.180us, min 10.435us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s320ms, max 20s322ms, min 20s318ms Fragment 12: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 14.686us, max 25.157us, min 8.576us - ExecTime: avg 605.239us, max 864.125us, min 419.79us - InputRows: sum 4.274K (4274), avg 178, max 200, min 152 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 351.75 KB, avg 14.66 KB, max 15.75 KB, min 13.38 KB - OpenTime: avg 125.19us, max 189.12us, min 88.301us - RowsProduced: sum 4.274K (4274), avg 178, max 200, min 152 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=360): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 1.81us, max 4.348us, min 595ns - ExecTime: avg 95.547us, max 168.339us, min 57.784us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.481us, max 14.394us, min 5.491us - ProjectionTime: avg 41.853us, max 80.736us, min 22.841us - RowsProduced: sum 4.274K (4274), avg 178, max 200, min 152 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 18s399ms, max 18s417ms, min 18s383ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=360): - CloseTime: avg 1.673us, max 11.657us, min 583ns - ExecTime: avg 4.112ms, max 5.3ms, min 3.382ms - InputRows: sum 85.36K (85360), avg 3.556K (3556), max 4.007K (4007), min 3.035K (3035) - MemoryUsage: sum , avg , max , min - HashTable: sum 143.44 KB, avg 5.98 KB, max 5.98 KB, min 5.98 KB - PeakMemoryUsage: sum 12.70 MB, avg 541.98 KB, max 541.98 KB, min 541.98 KB - SerializeKeyArena: sum 12.56 MB, avg 536.00 KB, max 536.00 KB, min 536.00 KB - OpenTime: avg 23.800us, max 38.939us, min 15.667us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 6.782us, max 31.984us, min 2.47us - ExecTime: avg 235.414us, max 352.407us, min 166.720us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 282.00 KB, avg 11.75 KB, max 23.50 KB, min 0.00 - OpenTime: avg 20.897us, max 44.469us, min 11.139us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 85.36K (85360), avg 3.556K (3556), max 4.007K (4007), min 3.035K (3035) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 18s392ms, max 18s411ms, min 18s375ms Fragment 13: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 20.108us, max 34.52us, min 10.422us - ExecTime: avg 1.811ms, max 2.355ms, min 1.460ms - InputRows: sum 85.36K (85360), avg 3.556K (3556), max 3.812K (3812), min 3.351K (3351) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 12.79 MB, avg 545.77 KB, max 564.00 KB, min 484.00 KB - OpenTime: avg 123.212us, max 175.487us, min 86.334us - RowsProduced: sum 85.36K (85360), avg 3.556K (3556), max 3.812K (3812), min 3.351K (3351) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=358): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 715.299us, max 1.90ms, min 398.344us - ExecTime: avg 75.916ms, max 100.678ms, min 60.212ms - MemoryUsage: sum , avg , max , min - HashTable: sum 3.19 MB, avg 135.98 KB, max 191.98 KB, min 95.98 KB - PeakMemoryUsage: sum 18.37 MB, avg 783.98 KB, max 839.98 KB, min 743.98 KB - SerializeKeyArena: sum 15.19 MB, avg 648.00 KB, max 648.00 KB, min 648.00 KB - OpenTime: avg 31.286us, max 42.227us, min 19.830us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 85.36K (85360), avg 3.556K (3556), max 3.812K (3812), min 3.351K (3351) HASH_JOIN_OPERATOR (id=357): - BlocksProduced: sum 10.343K (10343), avg 430, max 470, min 403 - CloseTime: avg 17.930us, max 26.29us, min 11.175us - ExecTime: avg 114.397ms, max 143.629ms, min 92.455ms - 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 18.173us, max 42.63us, min 10.608us - ProbeRows: sum 41.420716M (41420716), avg 1.725863M (1725863), max 1.820133M (1820133), min 1.618554M (1618554) - ProjectionTime: avg 48.359ms, max 65.224ms, min 39.439ms - RowsProduced: sum 20.690686M (20690686), avg 862.111K (862111), max 1.201907M (1201907), min 718.518K (718518) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 11s822ms, max 11s934ms, min 11s708ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: sum 15.414K (15414), avg 642, max 728, min 555 - CloseTime: avg 16.208us, max 141.488us, min 4.370us - ExecTime: avg 4.673ms, max 7.406ms, min 3.861ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 421.12 MB, avg 17.55 MB, max 19.59 MB, min 15.34 MB - OpenTime: avg 26.818us, max 181.773us, min 10.825us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 41.420716M (41420716), avg 1.725863M (1725863), max 1.820133M (1820133), min 1.618554M (1618554) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s948ms, max 6s156ms, min 1s820ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=357): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 9.763ms, max 20.641ms, min 1.896ms - InputRows: sum 159.729K (159729), avg 6.655K (6655), max 6.985K (6985), min 6.388K (6388) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 5.14 MB, avg 219.14 KB, max 230.14 KB, min 210.40 KB - BuildKeyArena: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - HashTable: sum 1.36 MB, avg 58.00 KB, max 59.29 KB, min 56.96 KB - PeakMemoryUsage: sum 6.50 MB, avg 277.14 KB, max 289.42 KB, min 267.35 KB - OpenTime: avg 30.138us, max 203.583us, min 9.820us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: sum 432, avg 18, max 22, min 14 - CloseTime: avg 9.256us, max 20.174us, min 5.676us - ExecTime: avg 132.385us, max 190.365us, min 87.476us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.69 MB, avg 114.83 KB, max 248.00 KB, min 31.00 KB - OpenTime: avg 19.641us, max 49.499us, min 9.264us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 159.729K (159729), avg 6.655K (6655), max 6.985K (6985), min 6.388K (6388) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 12s528ms, max 12s639ms, min 12s422ms Fragment 14: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - BlocksProduced: sum 10.583K (10583), avg 440, max 1.026K (1026), min 51 - CloseTime: avg 20.686us, max 29.147us, min 11.296us - ExecTime: avg 224.354ms, max 564.729ms, min 11.145ms - InputRows: sum 41.420716M (41420716), avg 1.725863M (1725863), max 4.161402M (4161402), min 117.827K (117827) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 678.92 MB, avg 28.29 MB, max 66.50 MB, min 2.63 MB - OpenTime: avg 126.619us, max 189.531us, min 84.4us - RowsProduced: sum 41.420716M (41420716), avg 1.725863M (1725863), max 4.161402M (4161402), min 117.827K (117827) - 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): - BlocksProduced: sum 10.73K (10730), avg 447, max 1.078K (1078), min 30 - CloseTime: avg 117.421us, max 204.477us, min 37.187us - ExecTime: avg 376.370ms, max 728.642ms, min 17.911ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 6.540ms, max 61.838ms, min 191.124us - ProjectionTime: avg 185.334ms, max 422.644ms, min 5.416ms - RowsProduced: sum 41.420716M (41420716), avg 1.725863M (1725863), max 4.161402M (4161402), min 117.827K (117827) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 181.658ms, max 412.454ms, min 11.539ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 288.91 MB, avg 12.04 MB, max 27.35 MB, min 2.18 MB Fragment 15: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - BlocksProduced: sum 432, avg 36, max 36, min 36 - CloseTime: avg 12.928us, max 19.313us, min 7.433us - ExecTime: avg 3.263ms, max 4.68ms, min 2.699ms - 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.64 MB, avg 737.00 KB, max 744.00 KB, min 716.00 KB - OpenTime: avg 109.522us, max 176.663us, min 79.563us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 6.320us, max 13.317us, min 2.973us - ExecTime: avg 9.682ms, max 14.17ms, min 3.767ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.634us, max 14.136us, min 2.674us - ProjectionTime: avg 329.945us, max 396.954us, min 249.558us - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 13.464K (13464), min 13.144K (13144) EXCHANGE_OPERATOR (id=352): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 7.722us, max 19.20us, min 2.683us - ExecTime: avg 119.485us, max 169.593us, min 78.542us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.36 MB, avg 116.33 KB, max 292.00 KB, min 30.00 KB - OpenTime: avg 17.520us, max 46.800us, min 8.701us - 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 12s370ms, max 12s398ms, min 12s363ms Fragment 16: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 12.492us, max 22.527us, min 6.412us - ExecTime: avg 8.696ms, max 9.837ms, min 6.568ms - InputRows: sum 159.729K (159729), avg 13.31K (13310), max 14.334K (14334), min 9.774K (9774) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.86 MB, avg 500.00 KB, max 528.00 KB, min 360.00 KB - OpenTime: avg 65.405us, max 90.994us, min 58.206us - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 14.334K (14334), min 9.774K (9774) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 4.789us, max 13.22us, min 2.128us - ExecTime: avg 8.194ms, max 18.679ms, min 5.985ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.613us, max 7.281us, min 3.649us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 159.729K (159729), avg 13.31K (13310), max 14.334K (14334), min 9.774K (9774) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: sum 5.582K (5582), avg 465, max 526, min 448 - CloseTime: avg 26.513us, max 68.733us, min 11.53us - ExecTime: avg 129.571ms, max 203.142ms, min 85.991ms - 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 15.821us, max 32.404us, min 8.572us - ProbeRows: sum 22.264215M (22264215), avg 1.855351M (1855351), max 2.137664M (2137664), min 1.783217M (1783217) - ProjectionTime: avg 1.396ms, max 1.665ms, min 1.15ms - RowsProduced: sum 171.225K (171225), avg 14.268K (14268), max 15.58K (15580), min 10.445K (10445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 10s763ms, max 11s235ms, min 8s404ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 5.588K (5588), avg 465, max 526, min 449 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.825ms, max 2.205ms, min 1.135ms - GetBlockFailedTime: sum 258, avg 21, max 36, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 242.73 MB, avg 20.23 MB, max 46.56 MB, min 12.62 MB - OpenTime: avg 693ns, max 1000ns, min 600ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 22.264215M (22264215), avg 1.855351M (1855351), max 2.137664M (2137664), min 1.783217M (1783217) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 904.571ms, max 981.615ms, min 757.501ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.96ms, max 2.50ms, min 532.171us - InputRows: sum 22.264215M (22264215), avg 1.855351M (1855351), max 3.389621M (3389621), min 804.37K (804370) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.315us, max 2.126us, min 1.74us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 9s339ms, max 11s207ms, min 0ns OLAP_SCAN_OPERATOR (id=349. table name = DIM_CUSTOMER): - BlocksProduced: sum 5.588K (5588), avg 465, max 836, min 200 - CloseTime: avg 69.138us, max 123.24us, min 28.122us - ExecTime: avg 287.878ms, max 421.640ms, min 92.930ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.975ms, max 41.865ms, min 129.909us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 22.264215M (22264215), avg 1.855351M (1855351), max 3.389621M (3389621), min 804.37K (804370) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 276.900ms, max 420.215ms, min 91.453ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 250.03 MB, avg 20.84 MB, max 33.07 MB, min 10.10 MB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=350): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 4.322ms, max 27.879ms, min 36.242us - InputRows: sum 361.662K (361662), avg 30.138K (30138), max 180.831K (180831), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 16.81 MB, avg 1.40 MB, max 8.40 MB, min 0.00 - BuildKeyArena: sum 11.05 MB, avg 942.67 KB, max 5.52 MB, min 0.00 - HashTable: sum 3.38 MB, avg 288.40 KB, max 1.69 MB, min 0.00 - PeakMemoryUsage: sum 31.22 MB, avg 2.60 MB, max 15.61 MB, min 0.00 - OpenTime: avg 19.862us, max 42.164us, min 9.961us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 9s742ms, max 11s972ms, min 0ns EXCHANGE_OPERATOR (id=348): - BlocksProduced: sum 132, avg 11, max 79, min 0 - CloseTime: avg 329.935us, max 3.801ms, min 4.905us - ExecTime: avg 473.757us, max 3.820ms, min 18.394us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 400.00 KB, avg 33.33 KB, max 400.00 KB, min 0.00 - OpenTime: avg 16.251us, max 20.980us, min 12.212us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 361.662K (361662), avg 30.138K (30138), max 180.831K (180831), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s756ms, max 11s936ms, min 0ns Fragment 17: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: sum 93, avg 18, max 21, min 15 - CloseTime: avg 19.88us, max 32.338us, min 13.8us - ExecTime: avg 6.156ms, max 7.687ms, min 4.9ms - InputRows: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.95 MB, avg 400.00 KB, max 400.00 KB, min 400.00 KB - OpenTime: avg 41.224us, max 50.390us, min 35.194us - 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): - BlocksProduced: sum 125, avg 25, max 27, min 23 - CloseTime: avg 30.110us, max 57.740us, min 17.342us - ExecTime: avg 14.40ms, max 17.104ms, min 11.203ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.50 MB, avg 921.60 KB, max 972.00 KB, min 864.00 KB - ProbeKeyArena: sum 4.50 MB, avg 921.60 KB, max 972.00 KB, min 864.00 KB - OpenTime: avg 16.466us, max 27.821us, min 9.831us - ProbeRows: sum 399.083K (399083), avg 79.816K (79816), max 83.153K (83153), min 77.326K (77326) - ProjectionTime: avg 433.188us, max 560.763us, min 279.502us - RowsProduced: sum 180.831K (180831), avg 36.166K (36166), max 38.892K (38892), min 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 4s873ms, max 7s753ms, min 4s113ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: sum 131, avg 26, max 36, min 23 - CloseTime: avg 15.51us, max 24.299us, min 11.38us - ExecTime: avg 277.930us, max 329.354us, min 222.82us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 26.67 MB, avg 5.33 MB, max 6.42 MB, min 1.62 MB - OpenTime: avg 17.905us, max 27.486us, min 11.786us - 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 828.529ms, max 1s332ms, min 700.929ms Pipeline : 1(instance_num=5): HASH_JOIN_SINK_OPERATOR (id=347): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 16.920ms, max 28.987ms, min 9.849ms - 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 34.929us, max 60.483us, min 18.90us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: sum 67, avg 13, max 16, min 12 - CloseTime: avg 15.129us, max 24.710us, min 7.407us - ExecTime: avg 268.45us, max 325.596us, min 200.116us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.57 MB, avg 1.31 MB, max 1.85 MB, min 688.00 KB - OpenTime: avg 22.811us, max 32.460us, min 12.261us - 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 5s550ms, max 8s490ms, min 4s786ms Fragment 18: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - BlocksProduced: sum 113, avg 22, max 24, min 21 - CloseTime: avg 27.85us, max 49.864us, min 16.503us - ExecTime: avg 52.801ms, max 99.503ms, min 24.856ms - InputRows: sum 399.083K (399083), avg 79.816K (79816), max 83.949K (83949), min 76.266K (76266) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 30.36 MB, avg 6.07 MB, max 6.88 MB, min 3.53 MB - OpenTime: avg 50.860us, max 85.219us, min 35.123us - 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): - BlocksProduced: sum 100, avg 20, max 21, min 19 - CloseTime: avg 38.603us, max 51.35us, min 24.797us - ExecTime: avg 18.180ms, max 51.492ms, min 6.227ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 233.539us, max 291.314us, min 197.735us - 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 17.625ms, max 51.8ms, min 5.733ms 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 55, avg 18, max 21, min 16 - CloseTime: avg 18.509us, max 24.180us, min 13.822us - ExecTime: avg 12.206ms, max 15.469ms, min 10.362ms - InputRows: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 17.26 MB, avg 5.75 MB, max 6.57 MB, min 4.24 MB - OpenTime: avg 60.925us, max 69.473us, min 46.930us - 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): - BlocksProduced: sum 73, avg 24, max 41, min 16 - CloseTime: avg 19.508us, max 23.265us, min 16.854us - ExecTime: avg 8.231ms, max 9.508ms, min 7.234ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 864.00 KB, avg 288.00 KB, max 408.00 KB, min 144.00 KB - ProbeKeyArena: sum 864.00 KB, avg 288.00 KB, max 408.00 KB, min 144.00 KB - OpenTime: avg 25.843us, max 28.250us, min 21.457us - ProbeRows: sum 290.559K (290559), avg 96.853K (96853), max 173.151K (173151), min 58.318K (58318) - ProjectionTime: avg 870.397us, max 1.81ms, min 701.333us - RowsProduced: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s192ms, max 3s578ms, min 0ns OLAP_SCAN_OPERATOR (id=342. table name = QYWX_GROUPCHAT_MEMBER): - BlocksProduced: sum 78, avg 26, max 46, min 16 - CloseTime: avg 55.874us, max 76.571us, min 35.790us - ExecTime: avg 159.72ms, max 320.199ms, min 47.896ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 346.813us, max 411.935us, min 306.251us - ProjectionTime: avg 20.51ms, max 53.727ms, min 1.521ms - RowsProduced: sum 290.559K (290559), avg 96.853K (96853), max 173.151K (173151), min 58.318K (58318) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 138.352ms, max 265.837ms, min 42.325ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 19.59 MB, avg 6.53 MB, max 10.27 MB, min 4.66 MB Pipeline : 1(instance_num=3): HASH_JOIN_SINK_OPERATOR (id=343): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 221.418us, max 403.719us, min 112.690us - 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 25.487us, max 35.964us, min 15.296us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=341): - BlocksProduced: sum 4, avg 1, max 2, min 1 - CloseTime: avg 10.711us, max 14.337us, min 8.867us - ExecTime: avg 42.170us, max 59.66us, min 31.246us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.50 KB, avg 8.17 KB, max 12.25 KB, min 0.00 - OpenTime: avg 25.587us, max 37.428us, min 18.553us - 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 1s909ms, max 4s341ms, min 693.447ms Fragment 20: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=341,dst_id=341): - BlocksProduced: sum 4, avg 4, max 4, min 4 - CloseTime: avg 40.160us, max 40.160us, min 40.160us - ExecTime: avg 362.903us, max 362.903us, min 362.903us - 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 54.530us, max 54.530us, min 54.530us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 95.360us, max 95.360us, min 95.360us - ExecTime: avg 3.474ms, max 3.474ms, min 3.474ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 406.666us, max 406.666us, min 406.666us - ProjectionTime: avg 22.5us, max 22.5us, min 22.5us - RowsProduced: sum 447, avg 447, max 447, min 447 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 2.902ms, max 2.902ms, min 2.902ms 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=24): DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 15.87us, max 33.167us, min 7.297us - ExecTime: avg 1.159ms, max 2.943ms, min 777.765us - InputRows: sum 9.2K (9200), avg 383, max 398, min 361 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.15 MB, avg 134.36 KB, max 137.03 KB, min 129.03 KB - OpenTime: avg 111.997us, max 190.666us, min 85.548us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=338): - BlocksProduced: sum 138, avg 5, max 9, min 2 - CloseTime: avg 26.815us, max 62.167us, min 11.97us - ExecTime: avg 627.517us, max 951.411us, min 392.416us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 300.00 KB, avg 12.50 KB, max 16.00 KB, min 12.00 KB - ProbeKeyArena: sum 300.00 KB, avg 12.50 KB, max 16.00 KB, min 12.00 KB - OpenTime: avg 28.702us, max 55.449us, min 17.559us - ProbeRows: sum 9.2K (9200), avg 383, max 398, min 361 - ProjectionTime: avg 183.404us, max 291.942us, min 94.258us - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: sum 197, avg 8, max 18, min 2 - CloseTime: avg 5.409us, max 21.36us, min 1.396us - ExecTime: avg 75.439us, max 129.313us, min 25.102us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.45 MB, avg 62.07 KB, max 119.53 KB, min 0.00 - OpenTime: avg 15.549us, max 26.511us, min 8.577us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 383, max 398, min 361 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 20s315ms, max 20s318ms, min 20s313ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=338): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 177.584us, max 273.652us, min 123.325us - InputRows: sum 1.844K (1844), avg 76, max 90, min 65 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 133.26 KB, avg 5.55 KB, max 6.50 KB, min 4.70 KB - BuildKeyArena: sum 96.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 19.39 KB, avg 827.00 B, max 880.00 B, min 780.00 B - PeakMemoryUsage: sum 152.46 KB, avg 6.35 KB, max 7.36 KB, min 5.45 KB - OpenTime: avg 11.49us, max 37.733us, min 5.344us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: sum 823, avg 34, max 36, min 30 - CloseTime: avg 11.435us, max 83.783us, min 3.151us - ExecTime: avg 168.590us, max 374.354us, min 109.841us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 97.57 KB, avg 4.07 KB, max 7.34 KB, min 896.00 B - OpenTime: avg 17.457us, max 36.721us, min 9.352us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.844K (1844), avg 76, max 90, min 65 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s515ms, max 19s516ms, min 19s514ms Fragment 22: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - BlocksProduced: sum 432, avg 36, max 36, min 36 - CloseTime: avg 10.284us, max 20.109us, min 6.127us - ExecTime: avg 1.556ms, max 2.905ms, min 598.78us - InputRows: sum 9.2K (9200), avg 766, max 2.041K (2041), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.83 MB, avg 241.33 KB, max 628.88 KB, min 4.50 KB - OpenTime: avg 111.335us, max 150.353us, min 98.622us - RowsProduced: sum 9.2K (9200), avg 766, max 2.041K (2041), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=336): - BlocksProduced: sum 82, avg 6, max 10, min 0 - CloseTime: avg 20.861us, max 45.651us, min 10.163us - ExecTime: avg 817.30us, max 1.594ms, min 72.26us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 144.00 KB, avg 12.00 KB, max 24.00 KB, min 0.00 - ProbeKeyArena: sum 144.00 KB, avg 12.00 KB, max 24.00 KB, min 0.00 - OpenTime: avg 27.484us, max 42.294us, min 18.477us - ProbeRows: sum 9.2K (9200), avg 766, max 2.041K (2041), min 0 - ProjectionTime: avg 200.952us, max 356.641us, min 24.122us - RowsProduced: sum 9.2K (9200), avg 766, max 2.041K (2041), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 82, avg 6, max 10, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 34.114us, max 68.422us, min 8.244us - GetBlockFailedTime: sum 28, avg 2, max 4, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.86 MB, avg 158.99 KB, max 408.75 KB, min 945.00 B - OpenTime: avg 1.85us, max 2.925us, min 584ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 2.041K (2041), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 20s311ms, max 20s313ms, min 20s310ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 92.623us, max 191.28us, min 27.313us - 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 3.37us, max 15.98us, min 1.102us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: sum 82, avg 6, max 9, min 2 - CloseTime: avg 16.276us, max 30.476us, min 8.104us - ExecTime: avg 780.176us, max 1.331ms, min 419.792us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 244.00 KB, avg 20.33 KB, max 24.00 KB, min 20.00 KB - ProbeKeyArena: sum 244.00 KB, avg 20.33 KB, max 24.00 KB, min 20.00 KB - OpenTime: avg 23.272us, max 40.541us, min 14.595us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 738 - ProjectionTime: avg 263.666us, max 470.882us, min 124.206us - 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): - BlocksProduced: sum 103, avg 8, max 18, min 4 - CloseTime: avg 5.9us, max 8.137us, min 2.946us - ExecTime: avg 83.156us, max 176.642us, min 37.979us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.18 MB, avg 100.42 KB, max 169.61 KB, min 0.00 - OpenTime: avg 19.11us, max 28.834us, min 10.988us - 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 20s311ms, max 20s313ms, min 20s310ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=336): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 232.450us, max 1.302ms, min 12.105us - InputRows: sum 16.434K (16434), avg 1.369K (1369), max 8.217K (8217), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 795.28 KB, avg 66.27 KB, max 397.64 KB, min 0.00 - BuildKeyArena: sum 384.00 KB, avg 32.00 KB, max 192.00 KB, min 0.00 - HashTable: sum 192.21 KB, avg 16.02 KB, max 96.11 KB, min 0.00 - PeakMemoryUsage: sum 1.33 MB, avg 113.62 KB, max 681.74 KB, min 0.00 - OpenTime: avg 11.379us, max 26.587us, min 5.750us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 1s161ms, max 1s549ms, min 0ns EXCHANGE_OPERATOR (id=202): - BlocksProduced: sum 9, avg 0, max 5, min 0 - CloseTime: avg 8.370us, max 12.807us, min 3.807us - ExecTime: avg 32.255us, max 102.40us, min 15.930us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 708.00 KB, avg 59.00 KB, max 472.00 KB, min 0.00 - OpenTime: avg 14.820us, max 21.925us, min 9.361us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 16.434K (16434), avg 1.369K (1369), max 8.217K (8217), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 215.619ms, max 1s537ms, min 0ns Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=335): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 155.122us, max 281.846us, min 101.365us - 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 8.659us, max 20.529us, min 4.869us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 8.13us, max 32.821us, min 3.392us - ExecTime: avg 87.855us, max 138.379us, min 67.917us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 64.00 KB, avg 5.33 KB, max 7.63 KB, min 1.94 KB - OpenTime: avg 16.208us, max 24.34us, min 7.583us - 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 13s567ms, max 13s648ms, min 13s165ms Fragment 23: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 12.631us, max 20.475us, min 7.808us - ExecTime: avg 788.154us, max 1.677ms, min 559.255us - InputRows: sum 9.2K (9200), avg 766, max 4.651K (4651), min 92 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.02 MB, avg 172.78 KB, max 1019.56 KB, min 26.38 KB - OpenTime: avg 74.221us, max 104.693us, min 54.149us - RowsProduced: sum 9.2K (9200), avg 766, max 4.651K (4651), min 92 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: sum 156, avg 13, max 20, min 10 - CloseTime: avg 16.262us, max 32.114us, min 9.550us - ExecTime: avg 775.1us, max 2.181ms, min 390.283us - 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 22.651us, max 38.357us, min 14.368us - ProbeRows: sum 9.2K (9200), avg 766, max 4.651K (4651), min 92 - ProjectionTime: avg 185.264us, max 385.96us, min 103.176us - RowsProduced: sum 9.2K (9200), avg 766, max 4.651K (4651), min 92 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: sum 156, avg 13, max 20, min 10 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 37.956us, max 95.871us, min 18.610us - GetBlockFailedTime: sum 42, avg 3, max 6, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.48 MB, avg 126.46 KB, max 435.13 KB, min 13.19 KB - OpenTime: avg 1.69us, max 3.297us, min 520ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 4.651K (4651), min 92 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 20s308ms, max 20s308ms, min 20s307ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 67.261us, max 119.777us, min 33.52us - InputRows: sum 9.2K (9200), avg 766, max 785, min 737 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.160us, max 1.460us, min 997ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 8.465us, max 16.811us, min 3.518us - ExecTime: avg 625.583us, max 843.280us, min 418.737us - 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 16.538us, max 23.533us, min 12.289us - ProbeRows: sum 9.2K (9200), avg 766, max 785, min 737 - ProjectionTime: avg 200.318us, max 259.175us, min 132.814us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 737 - 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 27.542us, max 52.375us, min 16.608us - GetBlockFailedTime: sum 55, avg 4, max 7, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.15 MB, avg 98.48 KB, max 115.38 KB, min 91.00 KB - OpenTime: avg 810ns, max 2.402us, min 462ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 737 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 20s307ms, max 20s309ms, min 20s306ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 70.970us, max 175.347us, min 19.280us - InputRows: sum 9.2K (9200), avg 766, max 6.522K (6522), min 94 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.730us, max 41.289us, min 806ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: sum 156, avg 13, max 20, min 10 - CloseTime: avg 6.164us, max 11.177us, min 3.557us - ExecTime: avg 582.210us, max 1.714ms, min 246.584us - 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 15.854us, max 25.217us, min 11.35us - ProbeRows: sum 9.2K (9200), avg 766, max 6.522K (6522), min 94 - ProjectionTime: avg 170.530us, max 400.28us, min 77.366us - RowsProduced: sum 9.2K (9200), avg 766, max 6.522K (6522), min 94 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: sum 156, avg 13, max 20, min 10 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 34.784us, max 64.611us, min 17.10us - GetBlockFailedTime: sum 33, avg 2, max 5, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 736.25 KB, avg 61.35 KB, max 410.00 KB, min 4.25 KB - OpenTime: avg 779ns, max 2.443us, min 416ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.2K (9200), avg 766, max 6.522K (6522), min 94 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 20s307ms, max 20s308ms, min 20s307ms Pipeline : 3(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 75.849us, max 118.271us, min 25.141us - 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 983ns, max 2.61us, min 767ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 6.410us, max 12.874us, min 4.491us - ExecTime: avg 690.289us, max 855.553us, min 509.773us - 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.36us, max 27.819us, min 8.738us - ProbeRows: sum 3.722K (3722), avg 310, max 327, min 297 - ProjectionTime: avg 194.904us, max 270.156us, min 147.733us - 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): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 5.51us, max 7.677us, min 3.98us - ExecTime: avg 67.93us, max 100.596us, min 50.545us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 105.00 KB, avg 8.75 KB, max 14.63 KB, min 0.00 - OpenTime: avg 20.784us, max 36.863us, min 9.863us - 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 20s306ms, max 20s308ms, min 20s306ms Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=333): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 113.455us, max 570.448us, min 13.344us - InputRows: sum 9.928K (9928), avg 827, max 4.964K (4964), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 637.58 KB, avg 53.13 KB, max 318.79 KB, min 0.00 - BuildKeyArena: sum 232.00 KB, avg 19.33 KB, max 116.00 KB, min 0.00 - HashTable: sum 102.80 KB, avg 8.57 KB, max 51.40 KB, min 0.00 - PeakMemoryUsage: sum 964.36 KB, avg 80.36 KB, max 482.18 KB, min 0.00 - OpenTime: avg 10.974us, max 32.848us, min 5.562us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 16s333ms, max 19s599ms, min 0ns EXCHANGE_OPERATOR (id=252): - BlocksProduced: sum 72, avg 6, max 36, min 0 - CloseTime: avg 7.138us, max 19.415us, min 3.39us - ExecTime: avg 48.836us, max 182.835us, min 17.94us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 189.50 KB, avg 15.79 KB, max 154.25 KB, min 0.00 - OpenTime: avg 16.755us, max 26.696us, min 9.882us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 9.928K (9928), avg 827, max 4.964K (4964), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s266ms, max 19s600ms, min 0ns Pipeline : 5(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=332): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 83.172us, max 396.311us, min 11.834us - InputRows: sum 4.274K (4274), avg 356, max 2.137K (2137), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 169.70 KB, avg 14.14 KB, max 84.85 KB, min 0.00 - BuildKeyArena: sum 112.00 KB, avg 9.33 KB, max 56.00 KB, min 0.00 - HashTable: sum 48.71 KB, avg 4.06 KB, max 24.36 KB, min 0.00 - PeakMemoryUsage: sum 322.40 KB, avg 26.87 KB, max 161.20 KB, min 0.00 - OpenTime: avg 8.950us, max 15.648us, min 5.201us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 2s228ms, max 2s796ms, min 0ns EXCHANGE_OPERATOR (id=263): - BlocksProduced: sum 54, avg 4, max 30, min 0 - CloseTime: avg 15.490us, max 55.947us, min 2.94us - ExecTime: avg 44.952us, max 138.838us, min 13.570us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 17.50 KB, avg 1.46 KB, max 17.50 KB, min 0.00 - OpenTime: avg 13.814us, max 18.595us, min 8.587us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.274K (4274), avg 356, max 2.137K (2137), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 454.677ms, max 2s795ms, min 0ns Pipeline : 6(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=331): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 50.15us, max 189.12us, min 8.908us - InputRows: sum 86, avg 7, max 43, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.59 KB, avg 220.00 B, max 1.29 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 872.00 B, avg 72.00 B, max 436.00 B, min 0.00 - PeakMemoryUsage: sum 3.42 KB, avg 292.00 B, max 1.71 KB, min 0.00 - OpenTime: avg 9.428us, max 18.206us, min 4.531us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 3s134ms, max 3s904ms, min 0ns EXCHANGE_OPERATOR (id=277): - BlocksProduced: sum 66, avg 5, max 33, min 0 - CloseTime: avg 5.953us, max 11.550us, min 3.411us - ExecTime: avg 47.998us, max 187.548us, min 14.704us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.62 KB, avg 138.00 B, max 1.62 KB, min 0.00 - OpenTime: avg 28.906us, max 183.1us, min 7.757us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 86, avg 7, max 43, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 637.370ms, max 3s903ms, min 0ns Pipeline : 7(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=330): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 147.966us, max 262.836us, min 113.198us - 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.623us, max 31.220us, min 4.963us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: sum 17, avg 1, max 2, min 1 - CloseTime: avg 21.840us, max 83.584us, min 3.359us - ExecTime: avg 56.972us, max 122.931us, min 28.464us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 553.95 KB, avg 46.16 KB, max 82.72 KB, min 2.15 KB - OpenTime: avg 13.656us, max 25.676us, min 8.75us - 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 9s166ms, max 9s272ms, min 8s635ms Fragment 24: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 11.517us, max 17.211us, min 9.178us - ExecTime: avg 415.969us, max 526.894us, min 331.935us - 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.797us, max 80.242us, min 55.582us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 627ns, max 1.52us, min 248ns - ExecTime: avg 132.871us, max 171.449us, min 105.823us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.43us, max 20.953us, min 5.340us - ProjectionTime: avg 52.739us, max 82.478us, min 39.82us - RowsProduced: sum 3.722K (3722), avg 310, max 342, min 292 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 20s306ms, max 20s308ms, min 20s305ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=328): - CloseTime: avg 1.413us, max 5.573us, min 529ns - ExecTime: avg 1.54ms, max 2.247ms, min 763.255us - 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.838us, max 42.261us, min 13.425us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 4.947us, max 9.320us, min 2.158us - ExecTime: avg 99.820us, max 186.364us, min 64.138us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 473.00 KB, avg 39.42 KB, max 77.50 KB, min 0.00 - OpenTime: avg 17.641us, max 25.793us, min 11.442us - 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 20s304ms, max 20s306ms, min 20s303ms Fragment 25: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 14.127us, max 20.547us, min 9.186us - ExecTime: avg 723.542us, max 1.14ms, min 520.885us - 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 73.312us, max 96.343us, min 60.658us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 263.357us, max 337.830us, min 191.964us - ExecTime: avg 4.708ms, max 8.734ms, min 4.81ms - 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 28.430us, max 45.546us, min 19.658us - 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): - BlocksProduced: sum 1.928K (1928), avg 160, max 947, min 89 - CloseTime: avg 15.780us, max 27.749us, min 7.879us - ExecTime: avg 7.409ms, max 23.875ms, min 5.403ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.16 MB, avg 99.33 KB, max 120.00 KB, min 56.00 KB - ProbeKeyArena: sum 1.16 MB, avg 99.33 KB, max 120.00 KB, min 56.00 KB - OpenTime: avg 17.290us, max 30.216us, min 11.585us - ProbeRows: sum 70.116K (70116), avg 5.843K (5843), max 6.522K (6522), min 5.55K (5550) - ProjectionTime: avg 1.794ms, max 8.129ms, min 1.66ms - RowsProduced: sum 76.209K (76209), avg 6.35K (6350), max 7.289K (7289), min 5.933K (5933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 13s375ms, max 15s381ms, min 12s948ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: sum 2.024K (2024), avg 168, max 1.042K (1042), min 89 - CloseTime: avg 14.109us, max 27.834us, min 8.670us - ExecTime: avg 47.198ms, max 314.440ms, min 19.844ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.81 MB, avg 410.33 KB, max 708.00 KB, min 148.00 KB - ProbeKeyArena: sum 4.81 MB, avg 410.33 KB, max 708.00 KB, min 148.00 KB - OpenTime: avg 10.826us, max 24.118us, min 6.664us - ProbeRows: sum 23.811153M (23811153), avg 1.984262M (1984262), max 20.055105M (20055105), min 340.534K (340534) - ProjectionTime: avg 776.149us, max 4.556ms, min 370.7us - RowsProduced: sum 70.116K (70116), avg 5.843K (5843), max 6.522K (6522), min 5.55K (5550) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 4s30ms, max 4s444ms, min 2s43ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: sum 4.616K (4616), avg 384, max 3.335K (3335), min 107 - CloseTime: avg 48.324us, max 465.358us, min 3.741us - ExecTime: avg 2.922ms, max 27.32ms, min 583.458us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 74.42 MB, avg 6.20 MB, max 40.61 MB, min 2.56 MB - OpenTime: avg 18.263us, max 22.999us, min 13.417us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 23.811153M (23811153), avg 1.984262M (1984262), max 20.055105M (20055105), min 340.534K (340534) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s118ms, max 2s425ms, min 973.525ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=325): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 129.124ms, max 149.293ms, min 106.797ms - 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 29.888us, max 159.854us, min 12.286us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: sum 1.986K (1986), avg 165, max 171, min 150 - CloseTime: avg 10.254us, max 14.351us, min 8.460us - ExecTime: avg 2.323ms, max 3.225ms, min 2.24ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.08 MB, avg 262.67 KB, max 1.91 MB, min 0.00 - OpenTime: avg 15.6us, max 31.770us, min 10.884us - 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 18s5ms, max 18s38ms, min 17s962ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=324): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 2.531ms, max 19.484ms, min 770.976us - 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 14.500us, max 21.238us, min 8.881us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: sum 58, avg 4, max 5, min 4 - CloseTime: avg 7.519us, max 16.400us, min 4.680us - ExecTime: avg 74.4us, max 111.643us, min 56.869us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.70 MB, avg 145.00 KB, max 168.00 KB, min 132.00 KB - OpenTime: avg 14.299us, max 19.161us, min 10.507us - 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 4s812ms, max 5s233ms, min 2s795ms Fragment 26: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - BlocksProduced: sum 3.854K (3854), avg 321, max 516, min 112 - CloseTime: avg 18.328us, max 44.514us, min 10.77us - ExecTime: avg 130.338ms, max 303.921ms, min 55.173ms - InputRows: sum 23.811153M (23811153), avg 1.984262M (1984262), max 3.389621M (3389621), min 505.536K (505536) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 206.25 MB, avg 17.19 MB, max 26.53 MB, min 3.77 MB - OpenTime: avg 64.646us, max 82.31us, min 51.646us - RowsProduced: sum 23.811153M (23811153), avg 1.984262M (1984262), max 3.389621M (3389621), min 505.536K (505536) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=322. table name = DIM_CUSTOMER): - BlocksProduced: sum 5.902K (5902), avg 491, max 836, min 130 - CloseTime: avg 50.8us, max 106.87us, min 25.525us - ExecTime: avg 136.305ms, max 205.405ms, min 64.261ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 232.636us, max 966.123us, min 101.396us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 23.811153M (23811153), avg 1.984262M (1984262), max 3.389621M (3389621), min 505.536K (505536) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 132.971ms, max 204.196ms, min 60.126ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 206.92 MB, avg 17.24 MB, max 27.63 MB, min 10.12 MB Fragment 27: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - BlocksProduced: sum 58, avg 19, max 22, min 14 - CloseTime: avg 15.644us, max 20.567us, min 11.402us - ExecTime: avg 24.418ms, max 48.557ms, min 4.963ms - 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 72.497us, max 86.301us, min 64.223us - 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): - BlocksProduced: sum 20, avg 6, max 7, min 6 - CloseTime: avg 13.421us, max 15.816us, min 11.708us - ExecTime: avg 7.738ms, max 15.507ms, min 3.601ms - 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 13.921us, max 15.917us, min 12.919us - ProbeRows: sum 70.116K (70116), avg 23.372K (23372), max 24.68K (24680), min 22.426K (22426) - ProjectionTime: avg 4.66ms, max 11.558ms, min 293.332us - RowsProduced: sum 70.116K (70116), avg 23.372K (23372), max 24.68K (24680), min 22.426K (22426) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 548.610ms, max 1s645ms, min 0ns OLAP_SCAN_OPERATOR (id=319. table name = QYWX_GROUPCHAT_MEMBER): - BlocksProduced: sum 20, avg 6, max 7, min 6 - CloseTime: avg 89.77us, max 110.643us, min 61.578us - ExecTime: avg 175.964ms, max 225.425ms, min 145.16ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 260.520us, max 353.315us, min 213.927us - ProjectionTime: avg 681.270us, max 711.188us, min 636.562us - 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 174.778ms, max 224.323ms, min 143.705ms 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 666.78us, max 936.658us, min 468.173us - 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 10.805us, max 12.82us, min 9.371us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=318): - BlocksProduced: sum 8, avg 2, max 4, min 2 - CloseTime: avg 8.192us, max 10.980us, min 5.57us - ExecTime: avg 59.620us, max 87.487us, min 35.973us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 784.00 KB, avg 261.33 KB, max 392.00 KB, min 0.00 - OpenTime: avg 21.277us, max 28.978us, min 15.276us - 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 961.396ms, max 2s657ms, min 112.526ms Fragment 28: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=318,dst_id=318): - BlocksProduced: sum 7, avg 7, max 7, min 7 - CloseTime: avg 27.170us, max 27.170us, min 27.170us - ExecTime: avg 45.333ms, max 45.333ms, min 45.333ms - 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.53 MB, avg 1.53 MB, max 1.53 MB, min 1.53 MB - OpenTime: avg 32.968us, max 32.968us, min 32.968us - 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): - BlocksProduced: sum 6, avg 6, max 6, min 6 - CloseTime: avg 40.961us, max 40.961us, min 40.961us - ExecTime: avg 73.323ms, max 73.323ms, min 73.323ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 301.701us, max 301.701us, min 301.701us - 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 72.835ms, max 72.835ms, min 72.835ms 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.371K (1371), avg 114, max 118, min 109 - CloseTime: avg 18.407us, max 25.425us, min 12.578us - ExecTime: avg 168.598ms, max 235.779ms, min 125.20ms - InputRows: sum 4.850276M (4850276), avg 404.189K (404189), max 405.705K (405705), min 403.141K (403141) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 410.89 MB, avg 34.24 MB, max 57.17 MB, min 17.66 MB - OpenTime: avg 67.653us, max 92.609us, min 51.573us - 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): - BlocksProduced: sum 1.995K (1995), avg 166, max 168, min 164 - CloseTime: avg 24.832us, max 50.823us, min 11.464us - ExecTime: avg 342.927ms, max 436.545ms, min 289.168ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.56 MB, avg 304.00 KB, max 468.00 KB, min 160.00 KB - ProbeKeyArena: sum 3.56 MB, avg 304.00 KB, max 468.00 KB, min 160.00 KB - OpenTime: avg 11.455us, max 17.933us, min 8.437us - ProbeRows: sum 8.342381M (8342381), avg 695.198K (695198), max 696.517K (696517), min 694.15K (694150) - ProjectionTime: avg 10.128ms, max 22.415ms, min 8.171ms - RowsProduced: sum 4.850276M (4850276), avg 404.189K (404189), max 405.705K (405705), min 403.141K (403141) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 5s892ms, max 11s489ms, min 1s868ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: sum 2.908K (2908), avg 242, max 292, min 205 - CloseTime: avg 9.559us, max 23.193us, min 5.360us - ExecTime: avg 2.843ms, max 3.827ms, min 2.576ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 218.44 MB, avg 18.20 MB, max 19.19 MB, min 16.98 MB - OpenTime: avg 15.284us, max 20.587us, min 10.808us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342381M (8342381), avg 695.198K (695198), max 696.517K (696517), min 694.15K (694150) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 5s55ms, max 6s181ms, min 4s4ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=315): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 175.622ms, max 332.148ms, min 87.584ms - 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 19.894us, max 32.812us, min 12.365us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: sum 1.775K (1775), avg 147, max 165, min 135 - CloseTime: avg 10.918us, max 14.599us, min 6.214us - ExecTime: avg 1.29ms, max 1.446ms, min 866.236us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.86 MB, avg 841.33 KB, max 2.39 MB, min 0.00 - OpenTime: avg 13.864us, max 19.934us, min 9.972us - 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 6s370ms, max 12s117ms, min 2s152ms Fragment 30: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - BlocksProduced: sum 2.018K (2018), avg 504, max 510, min 500 - CloseTime: avg 25.348us, max 36.205us, min 20.765us - ExecTime: avg 711.946ms, max 794.264ms, min 608.587ms - InputRows: sum 8.342381M (8342381), avg 2.085595M (2085595), max 2.098705M (2098705), min 2.080044M (2080044) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 462.39 MB, avg 115.60 MB, max 124.03 MB, min 91.09 MB - OpenTime: avg 74.162us, max 101.623us, min 62.813us - RowsProduced: sum 8.342381M (8342381), avg 2.085595M (2085595), max 2.098705M (2098705), min 2.080044M (2080044) - 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): - BlocksProduced: sum 2.059K (2059), avg 514, max 518, min 513 - CloseTime: avg 40.926us, max 56.377us, min 29.322us - ExecTime: avg 191.375ms, max 251.232ms, min 169.228ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 196.725us, max 245.960us, min 155.384us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342381M (8342381), avg 2.085595M (2085595), max 2.098705M (2098705), min 2.080044M (2080044) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 188.557ms, max 249.125ms, min 166.166ms 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.296K (1296), avg 108, max 174, min 31 - CloseTime: avg 23.666us, max 40.782us, min 13.703us - ExecTime: avg 131.384ms, max 233.329ms, min 35.574ms - InputRows: sum 4.858108M (4858108), avg 404.842K (404842), max 674.788K (674788), min 95.75K (95750) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 178.11 MB, avg 14.84 MB, max 26.48 MB, min 4.08 MB - OpenTime: avg 63.725us, max 82.172us, min 52.183us - 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): - BlocksProduced: sum 1.602K (1602), avg 133, max 285, min 28 - CloseTime: avg 56.200us, max 85.510us, min 39.340us - ExecTime: avg 228.946ms, max 437.164ms, min 38.170ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.436ms, max 14.717ms, min 193.500us - ProjectionTime: avg 40.544ms, max 170.845ms, min 391.220us - 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 185.155ms, max 381.286ms, min 36.904ms 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 224, avg 18, max 22, min 14 - CloseTime: avg 16.475us, max 25.808us, min 7.990us - ExecTime: avg 552.483us, max 649.697us, min 349.533us - 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 67.327us, max 99.126us, min 48.350us - 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): - BlocksProduced: sum 108, avg 9, max 9, min 9 - CloseTime: avg 26.258us, max 55.333us, min 7.246us - ExecTime: avg 1.96ms, max 1.682ms, min 750.265us - 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.797us, max 31.635us, min 13.330us - ProbeRows: sum 135.118K (135118), avg 11.259K (11259), max 11.356K (11356), min 11.176K (11176) - ProjectionTime: avg 126.742us, max 181.55us, min 93.903us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s351ms, max 5s31ms, min 1s0ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: sum 142, avg 11, max 13, min 11 - CloseTime: avg 20.576us, max 88.722us, min 4.869us - ExecTime: avg 98.101us, max 157.210us, min 66.170us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.55 MB, avg 217.50 KB, max 290.00 KB, min 116.00 KB - OpenTime: avg 18.736us, max 30.600us, min 10.773us - 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 5s280ms, max 7s630ms, min 3s601ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=309): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 173.18us, max 225.850us, min 134.513us - 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 22.821us, max 39.606us, min 14.774us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: sum 20, avg 1, max 2, min 1 - CloseTime: avg 5.824us, max 18.835us, min 1.542us - ExecTime: avg 30.186us, max 49.868us, min 18.744us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 292.67 KB, avg 24.39 KB, max 73.48 KB, min 1.85 KB - OpenTime: avg 14.611us, max 26.723us, min 9.755us - 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 7s466ms, max 8s31ms, min 7s61ms Fragment 33: Pipeline : 0(instance_num=8): DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - BlocksProduced: sum 142, avg 17, max 19, min 17 - CloseTime: avg 25.69us, max 51.992us, min 12.806us - ExecTime: avg 2.501ms, max 3.282ms, min 1.563ms - 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 69.914us, max 85.308us, min 56.141us - 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): - BlocksProduced: sum 40, avg 5, max 5, min 5 - CloseTime: avg 917ns, max 1.213us, min 577ns - ExecTime: avg 2.104ms, max 3.221ms, min 1.481ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.468us, max 12.806us, min 5.637us - ProjectionTime: avg 940.341us, max 1.468ms, min 640.615us - RowsProduced: sum 135.118K (135118), avg 16.889K (16889), max 17.052K (17052), min 16.715K (16715) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s387ms, max 8s628ms, min 2s28ms Pipeline : 1(instance_num=8): AGGREGATION_SINK_OPERATOR (id=307): - CloseTime: avg 5.770us, max 8.40us, min 3.333us - ExecTime: avg 13.780ms, max 16.509ms, min 12.313ms - 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 20.353us, max 31.167us, min 13.444us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: sum 56, avg 7, max 9, min 6 - CloseTime: avg 9.724us, max 17.68us, min 4.926us - ExecTime: avg 124.630us, max 189.887us, min 74.120us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.20 MB, avg 794.20 KB, max 1.23 MB, min 660.43 KB - OpenTime: avg 18.285us, max 37.541us, min 9.867us - 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 4s371ms, max 8s615ms, min 2s14ms Fragment 34: Pipeline : 0(instance_num=8): DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - BlocksProduced: sum 119, avg 14, max 26, min 11 - CloseTime: avg 18.513us, max 28.130us, min 10.35us - ExecTime: avg 4.417ms, max 22.768ms, min 151.987us - InputRows: sum 135.118K (135118), avg 16.889K (16889), max 68.425K (68425), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 14.24 MB, avg 1.78 MB, max 7.26 MB, min 0.00 - OpenTime: avg 60.330us, max 80.829us, min 50.481us - 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): - BlocksProduced: sum 34, avg 4, max 17, min 0 - CloseTime: avg 3.289ms, max 14.341ms, min 1.308us - ExecTime: avg 90.410ms, max 425.704ms, min 39.766us - 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.879us, max 30.79us, min 19.937us - 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): - BlocksProduced: sum 116, avg 14, max 60, min 0 - CloseTime: avg 53.797us, max 100.743us, min 29.84us - ExecTime: avg 226.55ms, max 396.662ms, min 157.875ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.907ms, max 26.814ms, min 152.357us - ProjectionTime: avg 18.977ms, max 114.588ms, min 1.405us - 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 201.893ms, max 294.903ms, min 130.954ms 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 214, avg 17, max 19, min 17 - CloseTime: avg 17.705us, max 27.165us, min 8.844us - ExecTime: avg 528.525us, max 952.803us, min 365.233us - 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 68.560us, max 101.986us, min 48.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=302): - BlocksProduced: sum 156, avg 13, max 13, min 13 - CloseTime: avg 18.340us, max 38.317us, min 7.728us - ExecTime: avg 1.71ms, max 1.695ms, min 695.935us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 648.00 KB, avg 54.00 KB, max 72.00 KB, min 32.00 KB - ProbeKeyArena: sum 648.00 KB, avg 54.00 KB, max 72.00 KB, min 32.00 KB - OpenTime: avg 17.324us, max 26.632us, min 9.977us - ProbeRows: sum 106.583K (106583), avg 8.881K (8881), max 9.018K (9018), min 8.72K (8720) - ProjectionTime: avg 148.74us, max 220.439us, min 80.560us - RowsProduced: sum 9.2K (9200), avg 766, max 785, min 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s275ms, max 5s329ms, min 417.362ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 9.704us, max 33.592us, min 3.568us - ExecTime: avg 110.452us, max 155.675us, min 74.126us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.28 MB, avg 194.92 KB, max 261.00 KB, min 130.50 KB - OpenTime: avg 21.57us, max 62.446us, min 13.498us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 106.583K (106583), avg 8.881K (8881), max 9.018K (9018), min 8.72K (8720) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s769ms, max 6s622ms, min 1s731ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=302): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 178.818us, max 283.598us, min 125.799us - 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 18.665us, max 27.749us, min 11.614us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: sum 15, avg 1, max 2, min 1 - CloseTime: avg 99.929us, max 1.145ms, min 2.75us - ExecTime: avg 130.136us, max 1.191ms, min 20.424us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 527.62 KB, avg 43.97 KB, max 63.00 KB, min 0.00 - OpenTime: avg 18.19us, max 54.84us, min 10.152us - 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 7s44ms, max 7s61ms, min 7s38ms Fragment 36: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 21.155us, max 35.104us, min 11.12us - ExecTime: avg 1.220ms, max 1.442ms, min 1.80ms - InputRows: sum 106.583K (106583), avg 8.881K (8881), max 9.027K (9027), min 8.762K (8762) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.56 MB, avg 389.42 KB, max 406.00 KB, min 362.50 KB - OpenTime: avg 69.777us, max 124.1us, min 52.781us - RowsProduced: sum 106.583K (106583), avg 8.881K (8881), max 9.027K (9027), min 8.762K (8762) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: sum 36, avg 3, max 3, min 3 - CloseTime: avg 956ns, max 1.588us, min 566ns - ExecTime: avg 1.18ms, max 1.241ms, min 848.616us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.546us, max 15.997us, min 6.989us - ProjectionTime: avg 410.442us, max 492.207us, min 346.734us - RowsProduced: sum 106.583K (106583), avg 8.881K (8881), max 9.027K (9027), min 8.762K (8762) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 3s769ms, max 6s631ms, min 1s728ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=300): - CloseTime: avg 5.830us, max 16.703us, min 2.71us - ExecTime: avg 21.998ms, max 152.850ms, min 7.958ms - InputRows: sum 160.902K (160902), avg 13.408K (13408), max 13.695K (13695), min 13.14K (13140) - MemoryUsage: sum , avg , max , min - HashTable: sum 4.50 MB, avg 383.98 KB, max 383.98 KB, min 383.98 KB - PeakMemoryUsage: sum 22.69 MB, avg 1.89 MB, max 1.89 MB, min 1.89 MB - SerializeKeyArena: sum 18.19 MB, avg 1.52 MB, max 1.52 MB, min 1.52 MB - OpenTime: avg 21.803us, max 37.628us, min 13.799us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 5.313us, max 8.559us, min 3.565us - ExecTime: avg 171.707us, max 198.931us, min 137.618us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.83 MB, avg 241.08 KB, max 289.00 KB, min 183.00 KB - OpenTime: avg 25.203us, max 59.315us, min 10.981us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160.902K (160902), avg 13.408K (13408), max 13.695K (13695), min 13.14K (13140) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s648ms, max 6s485ms, min 1s503ms Fragment 37: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 19.140us, max 33.775us, min 9.482us - ExecTime: avg 3.790ms, max 9.978ms, min 760.310us - InputRows: sum 160.902K (160902), avg 13.408K (13408), max 29.71K (29710), min 2.0K (2000) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 14.19 MB, avg 1.18 MB, max 2.86 MB, min 135.00 KB - OpenTime: avg 60.794us, max 83.327us, min 46.238us - RowsProduced: sum 160.902K (160902), avg 13.408K (13408), max 29.71K (29710), min 2.0K (2000) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: sum 43, avg 3, max 8, min 1 - CloseTime: avg 1.738ms, max 3.596ms, min 210.194us - ExecTime: avg 35.217ms, max 96.111ms, min 1.648ms - MemoryUsage: sum , avg , max , min - HashTable: sum 6.94 MB, avg 591.98 KB, max 1.50 MB, min 95.98 KB - PeakMemoryUsage: sum 27.75 MB, avg 2.31 MB, max 5.28 MB, min 679.98 KB - SerializeKeyArena: sum 20.81 MB, avg 1.73 MB, max 3.78 MB, min 584.00 KB - OpenTime: avg 28.389us, max 38.962us, min 23.81us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160.902K (160902), avg 13.408K (13408), max 29.71K (29710), min 2.0K (2000) OLAP_SCAN_OPERATOR (id=297. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 91, avg 7, max 19, min 1 - CloseTime: avg 92.323us, max 248.880us, min 48.33us - ExecTime: avg 327.817ms, max 513.280ms, min 122.857ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.174ms, max 11.194ms, min 145.410us - ProjectionTime: avg 19.65ms, max 46.636ms, min 7.5ms - RowsProduced: sum 289.499K (289499), avg 24.124K (24124), max 61.88K (61880), min 2.162K (2162) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 306.198ms, max 499.113ms, min 115.442ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 13.38 MB, avg 1.12 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 36, avg 18, max 19, min 17 - CloseTime: avg 20.133us, max 33.526us, min 6.740us - ExecTime: avg 1.12ms, max 1.131ms, min 894.281us - 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.645us, max 68.396us, min 58.894us - 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): - BlocksProduced: sum 6, avg 3, max 3, min 3 - CloseTime: avg 36.2us, max 64.796us, min 7.208us - ExecTime: avg 1.5ms, max 1.127ms, min 883.576us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 256.00 KB, avg 128.00 KB, max 180.00 KB, min 76.00 KB - ProbeKeyArena: sum 256.00 KB, avg 128.00 KB, max 180.00 KB, min 76.00 KB - OpenTime: avg 18.856us, max 22.870us, min 14.843us - ProbeRows: sum 11.02K (11020), avg 5.51K (5510), max 5.521K (5521), min 5.499K (5499) - ProjectionTime: avg 132.283us, max 143.317us, min 121.249us - RowsProduced: sum 9.2K (9200), avg 4.6K (4600), max 4.603K (4603), min 4.597K (4597) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s40ms, max 6s81ms, min 0ns EXCHANGE_OPERATOR (id=294): - BlocksProduced: sum 6, avg 3, max 3, min 3 - CloseTime: avg 10.712us, max 18.609us, min 2.816us - ExecTime: avg 49.223us, max 62.992us, min 35.455us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 216.00 KB, avg 108.00 KB, max 108.00 KB, min 108.00 KB - OpenTime: avg 19.169us, max 22.893us, min 15.445us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 11.02K (11020), avg 5.51K (5510), max 5.521K (5521), min 5.499K (5499) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s87ms, max 1s218ms, min 955.618ms Pipeline : 1(instance_num=2): HASH_JOIN_SINK_OPERATOR (id=295): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 827.487us, max 1.50ms, min 604.161us - 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 33.58us, max 44.847us, min 21.270us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=286): - BlocksProduced: sum 6, avg 3, max 4, min 2 - CloseTime: avg 11.587us, max 13.351us, min 9.823us - ExecTime: avg 63.599us, max 73.656us, min 53.542us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 357.00 KB, avg 178.50 KB, max 357.00 KB, min 0.00 - OpenTime: avg 14.660us, max 16.355us, min 12.966us - 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 3s624ms, max 7s36ms, min 211.957ms Fragment 39: Pipeline : 0(instance_num=2): DATA_STREAM_SINK_OPERATOR (id=294,dst_id=294): - BlocksProduced: sum 6, avg 3, max 3, min 3 - CloseTime: avg 18.179us, max 19.216us, min 17.143us - ExecTime: avg 737.724us, max 771.273us, min 704.176us - InputRows: sum 11.02K (11020), avg 5.51K (5510), max 5.904K (5904), min 5.116K (5116) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 432.00 KB, avg 216.00 KB, max 216.00 KB, min 216.00 KB - OpenTime: avg 37.578us, max 41.952us, min 33.204us - RowsProduced: sum 11.02K (11020), avg 5.51K (5510), max 5.904K (5904), min 5.116K (5116) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=293): - BlocksProduced: sum 27, avg 13, max 14, min 13 - CloseTime: avg 25.339us, max 37.79us, min 13.600us - ExecTime: avg 6.372ms, max 7.269ms, min 5.476ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 264.00 KB, avg 132.00 KB, max 144.00 KB, min 120.00 KB - ProbeKeyArena: sum 264.00 KB, avg 132.00 KB, max 144.00 KB, min 120.00 KB - OpenTime: avg 15.28us, max 17.284us, min 12.773us - ProbeRows: sum 504.933K (504933), avg 252.466K (252466), max 270.792K (270792), min 234.141K (234141) - ProjectionTime: avg 752.868us, max 834.458us, min 671.279us - RowsProduced: sum 11.02K (11020), avg 5.51K (5510), max 5.904K (5904), min 5.116K (5116) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 142.383ms, max 284.766ms, min 0ns OLAP_SCAN_OPERATOR (id=292. table name = QYWX_USER_BEHAVIOR_DATA): - BlocksProduced: sum 165, avg 82, max 90, min 75 - CloseTime: avg 124.945us, max 156.43us, min 93.847us - ExecTime: avg 146.552ms, max 161.0ms, min 132.104ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 348.782us, max 490.191us, min 207.373us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 504.933K (504933), avg 252.466K (252466), max 270.792K (270792), min 234.141K (234141) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 145.439ms, max 160.230ms, min 130.648ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.02 MB, avg 6.01 MB, max 6.64 MB, min 5.38 MB Pipeline : 1(instance_num=2): HASH_JOIN_SINK_OPERATOR (id=293): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 73.687us, max 81.359us, min 66.15us - InputRows: sum 218, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.30 KB, avg 1.65 KB, max 1.65 KB, min 1.65 KB - BuildKeyArena: sum 8.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 1.87 KB, avg 956.00 B, max 956.00 B, min 956.00 B - PeakMemoryUsage: sum 5.15 KB, avg 2.58 KB, max 2.58 KB, min 2.58 KB - OpenTime: avg 11.406us, max 13.962us, min 8.850us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=291): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 16.460us, max 20.773us, min 12.147us - ExecTime: avg 39.130us, max 46.624us, min 31.636us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 1.63 KB, max 3.25 KB, min 0.00 - OpenTime: avg 15.908us, max 20.107us, min 11.709us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 218, avg 109, max 109, min 109 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 937.817ms, max 1s80ms, min 795.174ms Fragment 40: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=291,dst_id=291): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 19.664us, max 19.664us, min 19.664us - ExecTime: avg 165.55us, max 165.55us, min 165.55us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 3.25 KB, max 3.25 KB, min 3.25 KB - OpenTime: avg 44.326us, max 44.326us, min 44.326us - 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=290): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 997ns, max 997ns, min 997ns - ExecTime: avg 74.169us, max 74.169us, min 74.169us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 30.917us, max 30.917us, min 30.917us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 109, max 109, min 109 EXCHANGE_OPERATOR (id=289): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 14.138us, max 14.138us, min 14.138us - ExecTime: avg 41.704us, max 41.704us, min 41.704us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.75 KB, avg 2.75 KB, max 2.75 KB, min 2.75 KB - OpenTime: avg 19.553us, max 19.553us, min 19.553us - 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 794.383ms, max 794.383ms, min 794.383ms 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 36.529us, max 36.529us, min 36.529us - ExecTime: avg 76.914us, max 76.914us, min 76.914us - 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 26.906us, max 26.906us, min 26.906us - 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=288): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 508ns, max 508ns, min 508ns - ExecTime: avg 68.788us, max 68.788us, min 68.788us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 17.523us, max 17.523us, min 17.523us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 109, max 109, min 109 OLAP_SCAN_OPERATOR (id=287. table name = ODS_EXCEL_QYWX_ZONGBU): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 20.300us, max 20.300us, min 20.300us - ExecTime: avg 13.822ms, max 13.822ms, min 13.822ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 147.414us, max 147.414us, min 147.414us - 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 13.600ms, max 13.600ms, min 13.600ms 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 5, avg 5, max 5, min 5 - CloseTime: avg 15.896us, max 15.896us, min 15.896us - ExecTime: avg 98.829ms, max 98.829ms, min 98.829ms - InputRows: sum 9.2K (9200), avg 9.2K (9200), max 9.2K (9200), min 9.2K (9200) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 693.00 KB, avg 693.00 KB, max 693.00 KB, min 693.00 KB - OpenTime: avg 29.215us, max 29.215us, min 29.215us - 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): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 5.232us, max 5.232us, min 5.232us - ExecTime: avg 104.370ms, max 104.370ms, min 104.370ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.542us, max 4.542us, min 4.542us - ProbeRows: sum 80, avg 80, max 80, min 80 - ProjectionTime: avg 517.429us, max 517.429us, min 517.429us - RowsProduced: sum 9.2K (9200), avg 9.2K (9200), max 9.2K (9200), min 9.2K (9200) - WaitForDependency[CROSS_JOIN_OPERATOR_DEPENDENCY]Time: avg 7.535ms, max 7.535ms, min 7.535ms EXCHANGE_OPERATOR (id=284): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 11.70us, max 11.70us, min 11.70us - ExecTime: avg 38.873us, max 38.873us, min 38.873us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 19.239us, max 19.239us, min 19.239us - 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 4.84ms, max 4.84ms, min 4.84ms Pipeline : 1(instance_num=1): CROSS_JOIN_SINK_OPERATOR (id=285): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 12.943us, max 12.943us, min 12.943us - 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 240ns, max 240ns, min 240ns - WaitForDependency[CROSS_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=279): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 11.824us, max 11.824us, min 11.824us - ExecTime: avg 33.360us, max 33.360us, min 33.360us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 32.00 KB, avg 32.00 KB, max 32.00 KB, min 32.00 KB - OpenTime: avg 17.495us, max 17.495us, min 17.495us - 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 12.84ms, max 12.84ms, min 12.84ms Fragment 43: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=284,dst_id=284): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 18.90us, max 18.90us, min 18.90us - ExecTime: avg 127.282us, max 127.282us, min 127.282us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.25 KB, avg 4.25 KB, max 4.25 KB, min 4.25 KB - OpenTime: avg 36.370us, max 36.370us, min 36.370us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 1.967us, max 1.967us, min 1.967us - ExecTime: avg 69.522us, max 69.522us, min 69.522us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.354us, max 8.354us, min 8.354us - ProjectionTime: avg 26.114us, max 26.114us, min 26.114us - RowsProduced: sum 80, avg 80, max 80, min 80 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 1.784ms, max 1.784ms, min 1.784ms Pipeline : 1(instance_num=1): AGGREGATION_SINK_OPERATOR (id=283): - CloseTime: avg 5.752us, max 5.752us, min 5.752us - ExecTime: avg 145.324us, max 145.324us, min 145.324us - 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 58.283us, max 58.283us, min 58.283us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=282): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 9.610us, max 9.610us, min 9.610us - ExecTime: avg 35.174us, max 35.174us, min 35.174us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 11.75 KB, avg 11.75 KB, max 11.75 KB, min 11.75 KB - OpenTime: avg 19.279us, max 19.279us, min 19.279us - 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.438ms, max 1.438ms, min 1.438ms 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 8.905us, max 8.905us, min 8.905us - ExecTime: avg 48.605us, max 48.605us, min 48.605us - 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.76us, max 25.76us, min 25.76us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 18.202us, max 18.202us, min 18.202us - ExecTime: avg 287.661us, max 287.661us, min 287.661us - 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 56.847us, max 56.847us, min 56.847us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 32.200us, max 32.200us, min 32.200us - ExecTime: avg 1.274ms, max 1.274ms, min 1.274ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 242.136us, max 242.136us, min 242.136us - ProjectionTime: avg 11.582us, max 11.582us, min 11.582us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 953.895us, max 953.895us, min 953.895us 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 16.859us, max 16.859us, min 16.859us - ExecTime: avg 70.459us, max 70.459us, min 70.459us - 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 36.125us, max 36.125us, min 36.125us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 111.369us, max 111.369us, min 111.369us - ExecTime: avg 9.740ms, max 9.740ms, min 9.740ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 689.701us, max 689.701us, min 689.701us - 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 8.877ms, max 8.877ms, min 8.877ms 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=24): DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: sum 72, avg 3, max 3, min 3 - CloseTime: avg 13.635us, max 37.37us, min 5.832us - ExecTime: avg 169.77us, max 1.685ms, min 65.447us - InputRows: sum 43, avg 1, max 4, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 7.88 KB, avg 336.00 B, max 448.00 B, min 0.00 - OpenTime: avg 44.53us, max 68.808us, min 30.951us - RowsProduced: sum 43, avg 1, max 4, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: sum 22, avg 0, max 1, min 0 - CloseTime: avg 872ns, max 1.594us, min 409ns - ExecTime: avg 45.792us, max 116.68us, min 21.326us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.369us, max 20.823us, min 5.119us - ProjectionTime: avg 20.233us, max 56.133us, min 7.376us - RowsProduced: sum 43, avg 1, max 4, min 0 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 1s990ms, max 3s744ms, min 332.229ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=276): - CloseTime: avg 624ns, max 1.226us, min 176ns - ExecTime: avg 70.315us, max 123.637us, min 15.867us - InputRows: sum 47, avg 1, max 6, min 0 - MemoryUsage: sum , avg , max , min - HashTable: sum 1.36 KB, avg 58.00 B, max 168.00 B, min 0.00 - PeakMemoryUsage: sum 11.35 MB, avg 484.06 KB, max 528.16 KB, min 0.00 - SerializeKeyArena: sum 11.34 MB, avg 484.00 KB, max 528.00 KB, min 0.00 - OpenTime: avg 23.661us, max 72.589us, min 11.240us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: sum 59, avg 2, max 10, min 0 - CloseTime: avg 5.476us, max 18.56us, min 1.727us - ExecTime: avg 37.115us, max 65.431us, min 17.672us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 67.75 KB, avg 2.82 KB, max 3.33 KB, min 2.45 KB - OpenTime: avg 20.70us, max 38.844us, min 12.129us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 47, avg 1, max 6, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s989ms, max 3s744ms, min 326.624ms Fragment 47: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 17.61us, max 30.465us, min 9.828us - ExecTime: avg 1.333ms, max 22.196ms, min 338.152us - InputRows: sum 47, avg 1, max 12, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 17.13 KB, avg 730.00 B, max 4.88 KB, min 0.00 - OpenTime: avg 110.933us, max 189.56us, min 85.277us - RowsProduced: sum 47, avg 1, max 12, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: sum 5, avg 0, max 1, min 0 - CloseTime: avg 2.331us, max 7.754us, min 532ns - ExecTime: avg 52.885us, max 113.792us, min 29.746us - MemoryUsage: sum , avg , max , min - HashTable: sum 1.76 KB, avg 75.00 B, max 360.00 B, min 0.00 - PeakMemoryUsage: sum 2.58 MB, avg 110.07 KB, max 528.35 KB, min 0.00 - SerializeKeyArena: sum 2.58 MB, avg 110.00 KB, max 528.00 KB, min 0.00 - OpenTime: avg 26.520us, max 44.505us, min 20.641us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 47, avg 1, max 12, min 0 HASH_JOIN_OPERATOR (id=273): - BlocksProduced: sum 5, avg 0, max 1, min 0 - CloseTime: avg 9.838us, max 21.700us, min 4.313us - ExecTime: avg 54.709us, max 119.860us, min 26.263us - 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.215us, max 40.894us, min 10.287us - ProbeRows: sum 49, avg 2, max 12, min 0 - ProjectionTime: avg 13.232us, max 33.674us, min 5.238us - RowsProduced: sum 49, avg 2, 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 5.334us, max 29.156us, min 1.575us - GetBlockFailedTime: sum 34, avg 1, max 4, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 7.98 KB, avg 340.00 B, max 2.49 KB, min 0.00 - OpenTime: avg 1.73us, max 3.327us, min 530ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 49, avg 2, max 12, min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 217.359ms, max 326.238ms, min 108.571ms Pipeline : 1(instance_num=24): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 12.100us, max 91.794us, min 2.620us - InputRows: sum 49, avg 2, max 49, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.59us, max 12.485us, min 1000ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: sum 5, avg 0, max 5, min 0 - CloseTime: avg 3.74us, max 13.877us, min 1.431us - ExecTime: avg 47.120us, max 327.18us, min 17.177us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.00 KB, avg 170.00 B, max 4.00 KB, min 0.00 - ProbeKeyArena: sum 4.00 KB, avg 170.00 B, max 4.00 KB, min 0.00 - OpenTime: avg 12.453us, max 35.405us, min 7.528us - ProbeRows: sum 49, avg 2, max 49, min 0 - ProjectionTime: avg 18.779us, max 129.153us, min 3.667us - RowsProduced: sum 49, avg 2, 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 11.147us, max 90.321us, min 1.30us - GetBlockFailedTime: sum 47, avg 1, max 12, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 600.00 KB, avg 25.00 KB, max 360.00 KB, min 0.00 - OpenTime: avg 959ns, max 3.170us, min 436ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 49, avg 2, max 49, min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 212.957ms, max 323.579ms, min 102.606ms Pipeline : 2(instance_num=24): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 18.745us, max 37.783us, min 3.212us - InputRows: sum 49, avg 2, max 12, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.96us, max 10.833us, min 812ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=271. table name = ODS_VIPSHOP_SALE): - BlocksProduced: sum 5, avg 0, max 1, min 0 - CloseTime: avg 96.460us, max 238.684us, min 38.828us - ExecTime: avg 120.611ms, max 298.971ms, min 9.32ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.682ms, max 49.19ms, min 323.253us - ProjectionTime: avg 10.95us, max 41.12us, min 1.705us - RowsProduced: sum 49, avg 2, max 12, min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 114.770ms, max 298.210ms, min 8.563ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 3.87 MB, avg 165.00 KB, max 360.00 KB, min 120.00 KB Pipeline : 3(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=273): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 32.368us, max 150.908us, min 11.751us - InputRows: sum 11.24K (11240), avg 468, max 5.62K (5620), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 98.79 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 107.92 KB, avg 4.50 KB, max 53.96 KB, min 0.00 - PeakMemoryUsage: sum 206.70 KB, avg 8.61 KB, max 103.35 KB, min 0.00 - OpenTime: avg 11.645us, max 71.490us, min 5.830us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 91.851ms, max 137.716ms, min 0ns EXCHANGE_OPERATOR (id=265): - BlocksProduced: sum 6, avg 0, max 4, min 0 - CloseTime: avg 6.918us, max 24.784us, min 3.50us - ExecTime: avg 28.810us, max 44.156us, min 16.217us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 72.00 KB, avg 3.00 KB, max 72.00 KB, min 0.00 - OpenTime: avg 20.178us, max 35.746us, min 11.923us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 11.24K (11240), avg 468, max 5.62K (5620), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 7.974ms, max 129.665ms, min 0ns Pipeline : 4(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=272): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 485.206us, max 10.618ms, min 30.701us - InputRows: sum 160, avg 6, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 103.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 341.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 70.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 172.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 17.705us, max 35.484us, min 9.933us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 7.576ms, max 14.627ms, min 0ns EXCHANGE_OPERATOR (id=270): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 143.101us, max 1.852ms, min 3.855us - ExecTime: avg 160.420us, max 1.868ms, min 17.215us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 90.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 15.943us, max 31.775us, min 10.682us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 6, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 170.697us, max 2.570ms, min 0ns Fragment 48: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=270,dst_id=270): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 15.618us, max 15.618us, min 15.618us - ExecTime: avg 208.197us, max 208.197us, min 208.197us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 46.30us, max 46.30us, min 46.30us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 1.115us, max 1.115us, min 1.115us - ExecTime: avg 55.773us, max 55.773us, min 55.773us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 22.337us, max 22.337us, min 22.337us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 80, avg 80, max 80, min 80 EXCHANGE_OPERATOR (id=268): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 11.88us, max 11.88us, min 11.88us - ExecTime: avg 30.270us, max 30.270us, min 30.270us - 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.77us, max 13.77us, min 13.77us - 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.363ms, max 1.363ms, min 1.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 17.285us, max 17.285us, min 17.285us - ExecTime: avg 56.85us, max 56.85us, min 56.85us - 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.615us, max 25.615us, min 25.615us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 384ns, max 384ns, min 384ns - ExecTime: avg 74.761us, max 74.761us, min 74.761us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 39.330us, max 39.330us, min 39.330us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 23.594us, max 23.594us, min 23.594us - ExecTime: avg 1.134ms, max 1.134ms, min 1.134ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 148.258us, max 148.258us, min 148.258us - ProjectionTime: avg 3.605us, max 3.605us, min 3.605us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 902.543us, max 902.543us, min 902.543us 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 5, avg 5, max 5, min 5 - CloseTime: avg 9.251us, max 9.251us, min 9.251us - ExecTime: avg 266.777us, max 266.777us, min 266.777us - InputRows: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 36.00 KB, avg 36.00 KB, max 36.00 KB, min 36.00 KB - OpenTime: avg 39.473us, max 39.473us, min 39.473us - 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): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 29.304us, max 29.304us, min 29.304us - ExecTime: avg 60.584ms, max 60.584ms, min 60.584ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 20.102ms, max 20.102ms, min 20.102ms - ProjectionTime: avg 63.288us, max 63.288us, min 63.288us - 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 40.347ms, max 40.347ms, min 40.347ms 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=18): DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: sum 54, avg 3, max 3, min 3 - CloseTime: avg 13.685us, max 32.438us, min 6.150us - ExecTime: avg 136.160us, max 322.560us, min 85.41us - InputRows: sum 2.137K (2137), avg 118, max 135, min 102 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 138.50 KB, avg 7.69 KB, max 10.75 KB, min 5.75 KB - OpenTime: avg 36.227us, max 47.64us, min 29.449us - RowsProduced: sum 2.137K (2137), avg 118, max 135, min 102 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: sum 18, avg 1, max 1, min 1 - CloseTime: avg 915ns, max 1.486us, min 376ns - ExecTime: avg 76.467us, max 138.987us, min 41.772us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.428us, max 12.134us, min 5.409us - ProjectionTime: avg 31.399us, max 70.257us, min 15.329us - RowsProduced: sum 2.137K (2137), avg 118, max 135, min 102 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 1s48ms, max 2s648ms, min 246.646ms Pipeline : 1(instance_num=18): AGGREGATION_SINK_OPERATOR (id=262): - CloseTime: avg 1.58us, max 5.255us, min 353ns - ExecTime: avg 132.934us, max 238.906us, min 76.334us - InputRows: sum 3.876K (3876), avg 215, max 252, min 186 - MemoryUsage: sum , avg , max , min - HashTable: sum 92.58 KB, avg 5.14 KB, max 5.98 KB, min 2.98 KB - PeakMemoryUsage: sum 7.19 MB, avg 409.14 KB, max 409.98 KB, min 406.98 KB - SerializeKeyArena: sum 7.10 MB, avg 404.00 KB, max 404.00 KB, min 404.00 KB - OpenTime: avg 19.193us, max 38.668us, min 10.240us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: sum 72, avg 4, max 6, min 3 - CloseTime: avg 23.922us, max 327.37us, min 2.284us - ExecTime: avg 62.224us, max 365.554us, min 22.743us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 102.89 KB, avg 5.72 KB, max 10.23 KB, min 1.47 KB - OpenTime: avg 19.246us, max 35.525us, min 11.663us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.876K (3876), avg 215, max 252, min 186 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s47ms, max 2s648ms, min 246.308ms Fragment 52: Pipeline : 0(instance_num=18): DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - BlocksProduced: sum 468, avg 26, max 30, min 24 - CloseTime: avg 13.721us, max 28.188us, min 8.735us - ExecTime: avg 360.128us, max 697.750us, min 221.283us - InputRows: sum 3.876K (3876), avg 215, max 1.453K (1453), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 301.00 KB, avg 16.72 KB, max 103.50 KB, min 0.00 - OpenTime: avg 92.200us, max 133.601us, min 69.480us - RowsProduced: sum 3.876K (3876), avg 215, 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): - BlocksProduced: sum 3, avg 0, max 1, min 0 - CloseTime: avg 6.625us, max 45.173us, min 420ns - ExecTime: avg 417.231us, max 2.333ms, min 31.273us - MemoryUsage: sum , avg , max , min - HashTable: sum 143.93 KB, avg 8.00 KB, max 47.98 KB, min 0.00 - PeakMemoryUsage: sum 1.49 MB, avg 84.66 KB, max 507.98 KB, min 0.00 - SerializeKeyArena: sum 1.35 MB, avg 76.67 KB, max 460.00 KB, min 0.00 - OpenTime: avg 31.180us, max 58.641us, min 20.483us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.876K (3876), avg 215, max 1.453K (1453), min 0 HASH_JOIN_OPERATOR (id=259): - BlocksProduced: sum 15, avg 0, max 5, min 0 - CloseTime: avg 13.287us, max 49.8us, min 3.99us - ExecTime: avg 445.23us, max 2.671ms, min 29.932us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 268.00 KB, avg 14.89 KB, max 144.00 KB, min 0.00 - ProbeKeyArena: sum 268.00 KB, avg 14.89 KB, max 144.00 KB, min 0.00 - OpenTime: avg 16.587us, max 29.679us, min 10.633us - ProbeRows: sum 52.306K (52306), avg 2.905K (2905), max 19.012K (19012), min 0 - ProjectionTime: avg 205.142us, max 1.273ms, min 4.172us - RowsProduced: sum 52.306K (52306), avg 2.905K (2905), 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 0, max 5, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 8.677us, max 38.74us, min 938ns - GetBlockFailedTime: sum 37, avg 2, max 6, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.03 MB, avg 58.46 KB, max 564.00 KB, min 0.00 - OpenTime: avg 781ns, max 1.960us, min 555ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 52.306K (52306), avg 2.905K (2905), max 19.012K (19012), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 198.411ms, max 244.952ms, min 113.747ms Pipeline : 1(instance_num=18): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 18.583us, max 61.712us, min 4.510us - InputRows: sum 52.306K (52306), avg 2.905K (2905), 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.975us, max 3.728us, min 1.101us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=258. table name = ODS_VIPSHOP_SALE): - BlocksProduced: sum 15, avg 0, max 3, min 0 - CloseTime: avg 48.137us, max 117.882us, min 23.184us - ExecTime: avg 125.446ms, max 219.46ms, min 33.179ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.792ms, max 27.946ms, min 348.248us - ProjectionTime: avg 26.306us, max 121.579us, min 1.220us - RowsProduced: sum 52.306K (52306), avg 2.905K (2905), max 10.685K (10685), min 0 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 10.50091M (10500910), avg 583.383K (583383), max 846.298K (846298), min 126.478K (126478) - filter id = -1 input: sum 12.562768M (12562768), avg 697.931K (697931), max 972.018K (972018), min 150.628K (150628) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 120.539ms, max 196.639ms, min 31.923ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 3.01 MB, avg 171.11 KB, max 408.00 KB, min 80.00 KB Pipeline : 2(instance_num=18): HASH_JOIN_SINK_OPERATOR (id=259): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 907.66us, max 15.398ms, min 31.609us - InputRows: sum 218, avg 12, max 109, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.30 KB, avg 187.00 B, max 1.65 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 455.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.87 KB, avg 106.00 B, max 956.00 B, min 0.00 - PeakMemoryUsage: sum 5.15 KB, avg 293.00 B, max 2.58 KB, min 0.00 - OpenTime: avg 26.43us, max 174.543us, min 10.452us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 11.31ms, max 19.424ms, min 0ns EXCHANGE_OPERATOR (id=257): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 9.187us, max 34.988us, min 2.904us - ExecTime: avg 29.999us, max 58.244us, min 18.296us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 184.00 B, max 3.25 KB, min 0.00 - OpenTime: avg 19.184us, max 34.319us, min 12.422us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 218, avg 12, max 109, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 98.514us, max 1.664ms, min 0ns Fragment 53: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=257,dst_id=257): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 15.297us, max 15.297us, min 15.297us - ExecTime: avg 133.306us, max 133.306us, min 133.306us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 3.25 KB, max 3.25 KB, min 3.25 KB - OpenTime: avg 44.6us, max 44.6us, min 44.6us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 1.238us, max 1.238us, min 1.238us - ExecTime: avg 66.412us, max 66.412us, min 66.412us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 32.830us, max 32.830us, min 32.830us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 109, avg 109, max 109, min 109 EXCHANGE_OPERATOR (id=255): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 9.161us, max 9.161us, min 9.161us - ExecTime: avg 29.568us, max 29.568us, min 29.568us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.75 KB, avg 2.75 KB, max 2.75 KB, min 2.75 KB - OpenTime: avg 16.290us, max 16.290us, min 16.290us - 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 1.466ms, max 1.466ms, min 1.466ms 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.223us, max 13.223us, min 13.223us - ExecTime: avg 50.373us, max 50.373us, min 50.373us - 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 26.806us, max 26.806us, min 26.806us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 241ns, max 241ns, min 241ns - ExecTime: avg 83.690us, max 83.690us, min 83.690us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 34.549us, max 34.549us, min 34.549us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 16.248us, max 16.248us, min 16.248us - ExecTime: avg 1.76ms, max 1.76ms, min 1.76ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 445.859us, max 445.859us, min 445.859us - 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 582.371us, max 582.371us, min 582.371us 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=24): DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: sum 72, avg 3, max 3, min 3 - CloseTime: avg 9.874us, max 19.390us, min 5.612us - ExecTime: avg 160.815us, max 253.244us, min 96.110us - InputRows: sum 4.964K (4964), avg 206, max 273, min 158 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 467.25 KB, avg 19.47 KB, max 33.50 KB, min 16.75 KB - OpenTime: avg 39.221us, max 57.389us, min 29.859us - RowsProduced: sum 4.964K (4964), avg 206, max 273, min 158 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 662ns, max 1.196us, min 209ns - ExecTime: avg 104.673us, max 193.747us, min 52.574us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.778us, max 32.859us, min 4.743us - ProjectionTime: avg 40.152us, max 74.522us, min 19.405us - RowsProduced: sum 4.964K (4964), avg 206, max 273, min 158 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 19s596ms, max 19s599ms, min 19s593ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=251): - CloseTime: avg 1.527us, max 9.100us, min 469ns - ExecTime: avg 481.113us, max 602.805us, min 346.169us - InputRows: sum 52.368K (52368), avg 2.182K (2182), max 2.764K (2764), min 1.788K (1788) - MemoryUsage: sum , avg , max , min - HashTable: sum 185.44 KB, avg 7.73 KB, max 11.98 KB, min 5.98 KB - PeakMemoryUsage: sum 24.74 MB, avg 1.03 MB, max 1.04 MB, min 1.03 MB - SerializeKeyArena: sum 24.56 MB, avg 1.02 MB, max 1.02 MB, min 1.02 MB - OpenTime: avg 24.922us, max 41.541us, min 17.608us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 3.283us, max 13.853us, min 1.335us - ExecTime: avg 165.97us, max 200.757us, min 123.104us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 612.63 KB, avg 25.53 KB, max 54.00 KB, min 11.25 KB - OpenTime: avg 16.14us, max 25.972us, min 10.695us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 52.368K (52368), avg 2.182K (2182), max 2.764K (2764), min 1.788K (1788) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s589ms, max 19s596ms, min 19s582ms Fragment 56: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 14.700us, max 24.293us, min 9.645us - ExecTime: avg 1.304ms, max 1.938ms, min 936.47us - InputRows: sum 52.368K (52368), avg 2.182K (2182), max 3.09K (3090), min 1.113K (1113) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.52 MB, avg 192.69 KB, max 282.50 KB, min 101.63 KB - OpenTime: avg 103.871us, max 131.76us, min 82.83us - RowsProduced: sum 52.368K (52368), avg 2.182K (2182), max 3.09K (3090), min 1.113K (1113) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=249): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 183.63us, max 356.44us, min 74.306us - ExecTime: avg 2.350ms, max 3.968ms, min 873.449us - MemoryUsage: sum , avg , max , min - HashTable: sum 1.97 MB, avg 83.98 KB, max 95.98 KB, min 47.98 KB - PeakMemoryUsage: sum 28.34 MB, avg 1.18 MB, max 1.23 MB, min 1.12 MB - SerializeKeyArena: sum 26.38 MB, avg 1.10 MB, max 1.13 MB, min 1.07 MB - OpenTime: avg 38.229us, max 55.714us, min 29.435us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 52.368K (52368), avg 2.182K (2182), max 3.09K (3090), min 1.113K (1113) HASH_JOIN_OPERATOR (id=248): - BlocksProduced: sum 62, avg 2, max 5, min 1 - CloseTime: avg 17.968us, max 32.517us, min 9.18us - ExecTime: avg 3.94ms, max 7.412ms, min 1.0ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 87.81 KB, avg 3.66 KB, max 3.88 KB, min 3.41 KB - ProbeKeyArena: sum 87.81 KB, avg 3.66 KB, max 3.88 KB, min 3.41 KB - OpenTime: avg 18.559us, max 27.378us, min 12.29us - ProbeRows: sum 5.62K (5620), avg 234, max 248, min 218 - ProjectionTime: avg 2.167ms, max 5.422ms, min 719.114us - RowsProduced: sum 199.993K (199993), avg 8.333K (8333), max 17.999K (17999), min 3.006K (3006) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 18s587ms, max 18s780ms, min 18s331ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: sum 36, avg 1, max 2, min 1 - CloseTime: avg 7.755us, max 22.163us, min 4.478us - ExecTime: avg 33.144us, max 52.72us, min 23.57us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 71.00 KB, avg 2.96 KB, max 6.00 KB, min 0.00 - OpenTime: avg 17.893us, max 33.839us, min 11.721us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 5.62K (5620), avg 234, max 248, min 218 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 939.512ms, max 1s80ms, min 798.496ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=248): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 977.553us, max 1.993ms, min 517.625us - InputRows: sum 199.993K (199993), avg 8.333K (8333), max 17.999K (17999), min 3.006K (3006) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 12.77 MB, avg 545.01 KB, max 1.15 MB, min 196.58 KB - BuildKeyArena: sum 3.05 MB, avg 130.22 KB, max 281.25 KB, min 46.98 KB - HashTable: sum 2.17 MB, avg 92.70 KB, max 215.89 KB, min 30.69 KB - PeakMemoryUsage: sum 18.00 MB, avg 767.92 KB, max 1.63 MB, min 274.25 KB - OpenTime: avg 19.232us, max 33.976us, min 12.93us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: sum 432, avg 18, max 24, min 12 - CloseTime: avg 5.945us, max 14.155us, min 2.331us - ExecTime: avg 178.175us, max 230.544us, min 117.357us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.68 MB, avg 114.30 KB, max 408.00 KB, min 6.27 KB - OpenTime: avg 18.770us, max 34.25us, min 7.828us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 199.993K (199993), avg 8.333K (8333), max 17.999K (17999), min 3.006K (3006) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s556ms, max 19s573ms, min 19s538ms Fragment 57: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=247,dst_id=247): - BlocksProduced: sum 36, avg 36, max 36, min 36 - CloseTime: avg 17.946us, max 17.946us, min 17.946us - ExecTime: avg 1.194ms, max 1.194ms, min 1.194ms - InputRows: sum 5.62K (5620), avg 5.62K (5620), max 5.62K (5620), min 5.62K (5620) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 141.00 KB, avg 141.00 KB, max 141.00 KB, min 141.00 KB - OpenTime: avg 93.117us, max 93.117us, min 93.117us - 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): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 40.876us, max 40.876us, min 40.876us - ExecTime: avg 10.524ms, max 10.524ms, min 10.524ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 351.647us, max 351.647us, min 351.647us - ProjectionTime: avg 227.786us, max 227.786us, min 227.786us - 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 9.853ms, max 9.853ms, min 9.853ms 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=24): DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 13.277us, max 24.984us, min 7.215us - ExecTime: avg 2.952ms, max 9.365ms, min 487.95us - InputRows: sum 199.993K (199993), avg 8.333K (8333), max 25.609K (25609), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 18.78 MB, avg 801.25 KB, max 2.36 MB, min 768.00 B - OpenTime: avg 106.515us, max 178.486us, min 84.928us - RowsProduced: sum 199.993K (199993), avg 8.333K (8333), max 25.609K (25609), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=244): - BlocksProduced: sum 95, avg 3, max 10, min 0 - CloseTime: avg 15.833us, max 41.235us, min 4.134us - ExecTime: avg 3.98ms, max 11.920ms, min 46.200us - 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.412us, max 40.650us, min 13.443us - ProbeRows: sum 338.667K (338667), avg 14.111K (14111), max 36.576K (36576), min 0 - ProjectionTime: avg 510.290us, max 2.159ms, min 12.3us - RowsProduced: sum 199.993K (199993), avg 8.333K (8333), max 25.609K (25609), min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 18s446ms, max 18s738ms, min 18s140ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 95, avg 3, max 10, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 28.330us, max 99.814us, min 1.334us - GetBlockFailedTime: sum 24, avg 1, max 1, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 22.92 MB, avg 977.92 KB, max 3.37 MB, min 0.00 - OpenTime: avg 754ns, max 2.254us, min 540ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), max 36.576K (36576), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 862.857ms, max 944.954ms, min 790.289ms Pipeline : 1(instance_num=24): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 63.648us, max 328.949us, min 4.782us - InputRows: sum 338.667K (338667), avg 14.111K (14111), 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.791us, max 5.779us, min 1.69us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=243. table name = ODS_VIPSHOP_SALE): - BlocksProduced: sum 95, avg 3, max 19, min 0 - CloseTime: avg 71.562us, max 204.153us, min 24.798us - ExecTime: avg 98.99ms, max 248.634ms, min 26.67ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 331.195us, max 1.336ms, min 181.844us - ProjectionTime: avg 548.178us, max 4.915ms, min 2.147us - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 97.62ms, max 243.100ms, min 25.623ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 24.07 MB, avg 1.00 MB, max 4.24 MB, min 196.00 KB Pipeline : 2(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=244): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 3.230ms, max 46.354ms, min 25.489us - InputRows: sum 1.328082M (1328082), avg 55.336K (55336), max 664.041K (664041), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 41.79 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 13.07 MB, avg 557.49 KB, max 6.53 MB, min 0.00 - PeakMemoryUsage: sum 54.86 MB, avg 2.29 MB, max 27.43 MB, min 0.00 - OpenTime: avg 18.300us, max 31.283us, min 10.29us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 17s702ms, max 19s529ms, min 0ns EXCHANGE_OPERATOR (id=242): - BlocksProduced: sum 492, avg 20, max 308, min 0 - CloseTime: avg 59.57us, max 1.213ms, min 2.78us - ExecTime: avg 313.788us, max 3.169ms, min 15.512us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 640.00 KB, avg 26.67 KB, max 480.00 KB, min 0.00 - OpenTime: avg 21.344us, max 51.688us, min 11.388us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.328082M (1328082), avg 55.336K (55336), max 664.041K (664041), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s599ms, max 19s453ms, min 0ns Fragment 59: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: sum 340, avg 28, max 109, min 21 - CloseTime: avg 13.875us, max 23.90us, min 6.243us - ExecTime: avg 9.147ms, max 21.604ms, min 5.519ms - InputRows: sum 664.041K (664041), avg 55.336K (55336), max 221.017K (221017), min 39.977K (39977) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.81 MB, avg 240.00 KB, max 304.00 KB, min 176.00 KB - OpenTime: avg 44.41us, max 79.380us, min 30.297us - 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): - BlocksProduced: sum 9.482K (9482), avg 790, max 829, min 784 - CloseTime: avg 15.305us, max 31.949us, min 7.35us - ExecTime: avg 120.718ms, max 203.12ms, min 97.845ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 828.98 KB, avg 69.08 KB, max 69.28 KB, min 68.88 KB - ProbeKeyArena: sum 828.98 KB, avg 69.08 KB, max 69.28 KB, min 68.88 KB - OpenTime: avg 13.613us, max 19.404us, min 8.650us - ProbeRows: sum 39.547928M (39547928), avg 3.29566M (3295660), max 3.296829M (3296829), min 3.295028M (3295028) - ProjectionTime: avg 2.521ms, max 4.430ms, min 2.29ms - RowsProduced: sum 664.041K (664041), avg 55.336K (55336), max 221.017K (221017), min 39.977K (39977) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 9s598ms, max 11s393ms, min 9s429ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: sum 11.698K (11698), avg 974, max 1.491K (1491), min 869 - CloseTime: avg 8.225us, max 14.940us, min 2.88us - ExecTime: avg 11.843ms, max 34.713ms, min 4.359ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 202.14 MB, avg 16.84 MB, max 19.59 MB, min 4.55 MB - OpenTime: avg 20.110us, max 34.307us, min 12.691us - 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 8s43ms, max 9s40ms, min 4s272ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=241): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 3.721ms, max 19.242ms, min 1.998ms - 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 23.86us, max 56.904us, min 10.0us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: sum 247, avg 20, max 70, min 15 - CloseTime: avg 6.782us, max 14.865us, min 3.786us - ExecTime: avg 237.920us, max 1.0ms, min 116.899us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 320.00 KB, avg 26.67 KB, max 160.00 KB, min 0.00 - OpenTime: avg 14.102us, max 20.85us, min 9.165us - 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 10s418ms, max 12s196ms, min 10s244ms Fragment 60: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - BlocksProduced: sum 9.491K (9491), avg 790, max 1.189K (1189), min 218 - CloseTime: avg 20.804us, max 27.451us, min 13.388us - ExecTime: avg 345.142ms, max 505.419ms, min 52.195ms - InputRows: sum 39.547928M (39547928), avg 3.29566M (3295660), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 389.15 MB, avg 32.43 MB, max 54.59 MB, min 2.38 MB - OpenTime: avg 67.772us, max 110.394us, min 52.278us - 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): - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 58.62us, max 89.253us, min 31.4us - ExecTime: avg 83.161ms, max 192.568ms, min 48.458ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 177.233us, max 349.238us, min 109.523us - 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 78.177ms, max 190.741ms, min 42.432ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 206.65 MB, avg 17.22 MB, max 25.21 MB, min 7.63 MB Fragment 61: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - BlocksProduced: sum 204, avg 51, max 57, min 49 - CloseTime: avg 23.865us, max 33.27us, min 15.83us - ExecTime: avg 41.867ms, max 82.977ms, min 24.774ms - InputRows: sum 664.041K (664041), avg 166.01K (166010), max 166.579K (166579), min 165.278K (165278) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 22.62 MB, avg 5.66 MB, max 6.79 MB, min 2.42 MB - OpenTime: avg 63.588us, max 68.477us, min 57.617us - 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): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 18.922us, max 26.945us, min 11.963us - ExecTime: avg 279.864ms, max 381.954ms, min 206.376ms - 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 14.885us, max 18.674us, min 10.907us - ProbeRows: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - ProjectionTime: avg 2.388ms, max 3.12ms, min 1.860ms - RowsProduced: sum 664.041K (664041), avg 166.01K (166010), max 166.579K (166579), min 165.278K (165278) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 6s649ms, max 8s951ms, min 75.255ms OLAP_SCAN_OPERATOR (id=236. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 57.843us, max 98.810us, min 37.331us - ExecTime: avg 161.12ms, max 210.918ms, min 113.912ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 283.117us, max 316.468us, min 218.757us - 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 158.575ms, max 208.61ms, min 111.573ms 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 43.813ms, max 68.583ms, min 31.326ms - 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 19.706us, max 27.831us, min 14.908us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: sum 256, avg 64, max 68, min 52 - CloseTime: avg 14.760us, max 16.802us, min 12.674us - ExecTime: avg 3.241ms, max 10.612ms, min 744.641us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.63 MB, avg 928.18 KB, max 1.34 MB, min 0.00 - OpenTime: avg 22.751us, max 32.511us, min 16.339us - 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 7s455ms, max 9s819ms, min 833.333ms Fragment 62: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - BlocksProduced: sum 199, avg 16, max 23, min 9 - CloseTime: avg 18.265us, max 28.557us, min 12.576us - ExecTime: avg 27.859ms, max 92.310ms, min 6.586ms - InputRows: sum 668.409K (668409), avg 55.7K (55700), max 79.441K (79441), min 34.628K (34628) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 35.67 MB, avg 2.97 MB, max 3.45 MB, min 2.48 MB - OpenTime: avg 42.85us, max 74.680us, min 29.741us - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 79.441K (79441), min 34.628K (34628) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: sum 193, avg 16, max 21, min 10 - CloseTime: avg 29.0us, max 44.963us, min 18.686us - ExecTime: avg 11.610ms, max 51.100ms, min 2.963ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.06 MB, avg 90.67 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.06 MB, avg 90.67 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 17.795us, max 36.263us, min 10.197us - ProbeRows: sum 668.409K (668409), avg 55.7K (55700), max 79.441K (79441), min 34.628K (34628) - ProjectionTime: avg 2.698ms, max 23.957ms, min 401.67us - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 79.441K (79441), min 34.628K (34628) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 193, avg 16, max 21, min 10 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 117.745us, max 181.116us, min 47.322us - GetBlockFailedTime: sum 120, avg 10, max 15, min 5 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 10.95 MB, avg 934.67 KB, max 1.52 MB, min 748.00 KB - OpenTime: avg 1.23us, max 3.115us, min 582ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 79.441K (79441), min 34.628K (34628) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 287.919ms, max 366.448ms, min 191.750ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 114.615us, max 273.461us, min 20.271us - 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 1.405us, max 3.640us, min 1.15us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=233. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 193, avg 16, max 48, min 0 - CloseTime: avg 52.427us, max 87.490us, min 27.968us - ExecTime: avg 194.197ms, max 355.913ms, min 35.685ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 486.387us, max 1.191ms, min 307.377us - ProjectionTime: avg 3.132ms, max 26.392ms, min 1.420us - RowsProduced: sum 668.409K (668409), avg 55.7K (55700), max 171.007K (171007), min 0 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 8.18166M (8181660), avg 743.787K (743787), max 1.157826M (1157826), min 191.49K (191490) - filter id = -1 input: sum 9.518478M (9518478), avg 865.316K (865316), max 1.349576M (1349576), min 191.5K (191500) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 190.320ms, max 328.711ms, min 35.14ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 22.00 MB, avg 1.83 MB, max 4.84 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 1.562ms, max 18.227ms, min 25.644us - InputRows: sum 160, avg 13, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 206.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 140.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 345.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 20.401us, max 41.624us, min 10.732us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 65.475ms, max 89.303ms, min 0ns EXCHANGE_OPERATOR (id=232): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 5.474us, max 12.375us, min 2.136us - ExecTime: avg 31.801us, max 55.564us, min 20.668us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 181.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 24.600us, max 51.281us, min 12.435us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 13, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 10.999ms, max 69.900ms, min 0ns Fragment 63: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=232,dst_id=232): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 19.567us, max 19.567us, min 19.567us - ExecTime: avg 161.673us, max 161.673us, min 161.673us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 43.264us, max 43.264us, min 43.264us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 36.811us, max 36.811us, min 36.811us - ExecTime: avg 61.201ms, max 61.201ms, min 61.201ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 19.920ms, max 19.920ms, min 19.920ms - ProjectionTime: avg 3.62us, max 3.62us, min 3.62us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 41.207ms, max 41.207ms, min 41.207ms 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 184, avg 15, max 22, min 14 - CloseTime: avg 13.436us, max 30.481us, min 6.198us - ExecTime: avg 370.750us, max 701.634us, min 252.230us - 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 70.148us, max 101.142us, min 54.940us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 681ns, max 1.317us, min 206ns - ExecTime: avg 100.583us, max 177.564us, min 54.365us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.517us, max 10.382us, min 4.964us - ProjectionTime: avg 41.634us, max 67.457us, min 22.770us - RowsProduced: sum 3.365K (3365), avg 280, max 337, min 235 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 13s129ms, max 13s139ms, min 13s127ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=229): - CloseTime: avg 1.828us, max 9.477us, min 381ns - ExecTime: avg 680.714us, max 809.513us, min 478.429us - 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 24.616us, max 50.77us, min 14.386us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 4.772us, max 15.545us, min 1.799us - ExecTime: avg 101.941us, max 153.59us, min 80.680us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 311.50 KB, avg 25.96 KB, max 41.00 KB, min 11.50 KB - OpenTime: avg 21.43us, max 56.652us, min 9.660us - 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 13s128ms, max 13s135ms, min 13s125ms Fragment 65: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 15.198us, max 22.652us, min 8.182us - ExecTime: avg 770.543us, max 1.137ms, min 460.373us - 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 67.461us, max 140.924us, min 48.398us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 235.744us, max 302.638us, min 180.301us - ExecTime: avg 3.169ms, max 3.671ms, min 2.813ms - 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 27.807us, max 33.107us, min 22.827us - 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): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 24.213us, max 40.18us, min 14.586us - ExecTime: avg 4.932ms, max 6.325ms, min 4.262ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.10 MB, avg 179.33 KB, max 264.00 KB, min 92.00 KB - ProbeKeyArena: sum 2.10 MB, avg 179.33 KB, max 264.00 KB, min 92.00 KB - OpenTime: avg 19.692us, max 29.992us, min 12.112us - ProbeRows: sum 150.305K (150305), avg 12.525K (12525), max 13.078K (13078), min 11.745K (11745) - ProjectionTime: avg 2.324ms, max 3.576ms, min 1.961ms - 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): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 9.69us, max 33.452us, min 4.312us - ExecTime: avg 197.721us, max 262.529us, min 153.520us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.60 MB, avg 562.83 KB, max 818.00 KB, min 204.00 KB - OpenTime: avg 17.113us, max 33.307us, min 12.706us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 150.305K (150305), avg 12.525K (12525), max 13.078K (13078), min 11.745K (11745) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 13s14ms, max 13s91ms, min 12s648ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=226): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 12.159ms, max 47.27ms, min 6.889ms - 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 31.94us, max 65.720us, min 16.435us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: sum 204, avg 17, max 18, min 12 - CloseTime: avg 8.6us, max 19.398us, min 5.270us - ExecTime: avg 182.843us, max 230.109us, min 150.787us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.73 MB, avg 574.00 KB, max 684.00 KB, min 456.00 KB - OpenTime: avg 14.647us, max 21.892us, min 12.416us - 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 6s4ms, max 7s342ms, min 263.591ms Fragment 66: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 21.115us, max 32.928us, min 8.877us - ExecTime: avg 4.334ms, max 5.822ms, min 3.387ms - InputRows: sum 150.305K (150305), avg 12.525K (12525), max 15.296K (15296), min 11.306K (11306) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.52 MB, avg 2.04 MB, max 2.66 MB, min 1.78 MB - OpenTime: avg 70.809us, max 97.630us, min 56.521us - RowsProduced: sum 150.305K (150305), avg 12.525K (12525), max 15.296K (15296), min 11.306K (11306) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: sum 145, avg 12, max 13, min 12 - CloseTime: avg 24.803us, max 93.523us, min 10.480us - ExecTime: avg 2.605ms, max 6.416ms, min 1.753ms - 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.849us, max 33.487us, min 9.909us - ProbeRows: sum 83.32K (83320), avg 6.943K (6943), max 7.238K (7238), min 6.649K (6649) - ProjectionTime: avg 673.734us, max 4.357ms, min 231.24us - RowsProduced: sum 150.305K (150305), avg 12.525K (12525), max 15.296K (15296), min 11.306K (11306) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: sum 144, avg 12, max 12, min 12 - CloseTime: avg 24.167us, max 42.11us, min 10.460us - ExecTime: avg 1.603ms, max 2.208ms, min 1.227ms - 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 13.171us, max 17.348us, min 8.997us - ProbeRows: sum 83.32K (83320), avg 6.943K (6943), max 7.238K (7238), min 6.649K (6649) - ProjectionTime: avg 187.598us, max 234.428us, min 155.737us - RowsProduced: sum 83.32K (83320), avg 6.943K (6943), max 7.238K (7238), min 6.649K (6649) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s949ms, max 4s782ms, min 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 10.284us, max 29.216us, min 3.11us - ExecTime: avg 136.734us, max 184.674us, min 110.59us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.07 MB, avg 346.92 KB, max 667.00 KB, min 103.00 KB - OpenTime: avg 16.185us, max 34.49us, min 10.8us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 83.32K (83320), avg 6.943K (6943), max 7.238K (7238), min 6.649K (6649) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 8s605ms, max 12s610ms, min 7s786ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=224): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 10.27ms, max 80.512ms, min 2.128ms - 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 20.205us, max 33.35us, min 11.728us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: sum 220, avg 18, max 20, min 10 - CloseTime: avg 7.571us, max 17.70us, min 4.578us - ExecTime: avg 177.6us, max 267.94us, min 131.561us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 787.81 KB, avg 65.65 KB, max 535.11 KB, min 2.21 KB - OpenTime: avg 14.563us, max 26.497us, min 8.552us - 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 5s816ms, max 7s22ms, min 303.226ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=223): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 19.184ms, max 105.374ms, min 3.238ms - 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 8.825us, max 14.337us, min 4.25us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: sum 850, avg 70, max 85, min 68 - CloseTime: avg 11.199us, max 19.696us, min 6.418us - ExecTime: avg 1.268ms, max 8.421ms, min 320.651us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.56 MB, avg 133.08 KB, max 184.00 KB, min 0.00 - OpenTime: avg 16.668us, max 30.284us, min 9.628us - 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 10s855ms, max 12s519ms, min 2s699ms Fragment 67: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 16.523us, max 46.220us, min 6.745us - ExecTime: avg 14.66ms, max 50.314ms, min 7.714ms - InputRows: sum 83.32K (83320), avg 6.943K (6943), max 10.594K (10594), min 5.891K (5891) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 10.45 MB, avg 891.71 KB, max 1.26 MB, min 689.50 KB - OpenTime: avg 75.145us, max 130.782us, min 52.93us - RowsProduced: sum 83.32K (83320), avg 6.943K (6943), max 10.594K (10594), min 5.891K (5891) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: sum 5.061K (5061), avg 421, max 526, min 397 - CloseTime: avg 28.46us, max 119.148us, min 13.977us - ExecTime: avg 135.510ms, max 195.463ms, min 83.598ms - 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 14.471us, max 17.83us, min 10.536us - ProbeRows: sum 20.367784M (20367784), avg 1.697315M (1697315), max 2.133717M (2133717), min 1.592816M (1592816) - ProjectionTime: avg 8.44ms, max 75.821ms, min 1.446ms - RowsProduced: sum 83.32K (83320), avg 6.943K (6943), max 10.594K (10594), min 5.891K (5891) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 10s204ms, max 11s142ms, min 5s535ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 5.067K (5067), avg 422, max 526, min 398 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 5.622ms, max 23.439ms, min 1.310ms - GetBlockFailedTime: sum 75, avg 6, max 19, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 265.20 MB, avg 22.10 MB, max 46.54 MB, min 12.47 MB - OpenTime: avg 716ns, max 904ns, min 564ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 20.367784M (20367784), avg 1.697315M (1697315), max 2.133717M (2133717), min 1.592816M (1592816) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s167ms, max 1s299ms, min 867.453ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 802.530us, max 1.932ms, min 100.633us - InputRows: sum 20.367784M (20367784), avg 1.697315M (1697315), max 3.389621M (3389621), min 233.415K (233415) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.637us, max 3.267us, min 1.125us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 9s246ms, max 11s95ms, min 0ns OLAP_SCAN_OPERATOR (id=220. table name = DIM_CUSTOMER): - BlocksProduced: sum 5.067K (5067), avg 422, max 836, min 60 - CloseTime: avg 83.729us, max 143.263us, min 31.241us - ExecTime: avg 393.859ms, max 636.266ms, min 244.249ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 242.524us, max 442.39us, min 148.525us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 20.367784M (20367784), avg 1.697315M (1697315), max 3.389621M (3389621), min 233.415K (233415) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 391.345ms, max 634.962ms, min 243.242ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 243.90 MB, avg 20.33 MB, max 36.78 MB, min 10.06 MB Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=221): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 18.271ms, max 170.53ms, min 44.119us - InputRows: sum 361.662K (361662), avg 30.138K (30138), max 180.831K (180831), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 34.65 MB, avg 2.89 MB, max 17.32 MB, min 0.00 - BuildKeyArena: sum 11.05 MB, avg 942.67 KB, max 5.52 MB, min 0.00 - HashTable: sum 3.38 MB, avg 288.40 KB, max 1.69 MB, min 0.00 - PeakMemoryUsage: sum 49.07 MB, avg 4.09 MB, max 24.53 MB, min 0.00 - OpenTime: avg 20.938us, max 38.370us, min 14.798us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 9s543ms, max 12s14ms, min 0ns EXCHANGE_OPERATOR (id=219): - BlocksProduced: sum 102, avg 8, max 56, min 0 - CloseTime: avg 6.958us, max 13.46us, min 3.221us - ExecTime: avg 186.667us, max 1.194ms, min 20.967us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.86 MB, avg 414.67 KB, max 4.21 MB, min 0.00 - OpenTime: avg 20.970us, max 32.166us, min 14.158us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 361.662K (361662), avg 30.138K (30138), max 180.831K (180831), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s508ms, max 11s962ms, min 0ns Fragment 68: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: sum 71, avg 23, max 25, min 23 - CloseTime: avg 13.545us, max 18.760us, min 10.115us - ExecTime: avg 15.859ms, max 19.906ms, min 10.652ms - InputRows: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.70 MB, avg 920.00 KB, max 920.00 KB, min 920.00 KB - OpenTime: avg 42.692us, max 46.377us, min 40.406us - 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=218): - BlocksProduced: sum 130, avg 43, max 47, min 41 - CloseTime: avg 13.26us, max 20.44us, min 9.9us - ExecTime: avg 22.765ms, max 47.769ms, min 8.646ms - 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 17.143us, max 24.632us, min 12.725us - ProbeRows: sum 518.706K (518706), avg 172.902K (172902), max 173.412K (173412), min 172.143K (172143) - ProjectionTime: avg 1.348ms, max 1.866ms, min 766.813us - RowsProduced: sum 180.831K (180831), avg 60.277K (60277), max 63.423K (63423), min 58.318K (58318) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s437ms, max 4s313ms, min 0ns OLAP_SCAN_OPERATOR (id=217. table name = QYWX_GROUPCHAT_MEMBER): - BlocksProduced: sum 139, avg 46, max 47, min 46 - CloseTime: avg 47.133us, max 48.297us, min 45.891us - ExecTime: avg 293.652ms, max 530.484ms, min 109.945ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 332.142us, max 415.518us, min 218.573us - ProjectionTime: avg 77.939ms, max 172.612ms, min 8.482ms - 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 209.171ms, max 340.46ms, min 100.698ms 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=218): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 145.163us, max 162.945us, min 114.916us - InputRows: sum 446, avg 148, max 160, min 139 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 29.45 KB, avg 9.82 KB, max 10.58 KB, min 9.18 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 58.20 KB, avg 19.40 KB, max 20.21 KB, min 18.72 KB - OpenTime: avg 17.990us, max 20.81us, min 13.961us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=216): - BlocksProduced: sum 4, avg 1, max 2, min 1 - CloseTime: avg 9.124us, max 16.65us, min 4.498us - ExecTime: avg 42.851us, max 54.558us, min 32.625us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 31.00 KB, avg 10.33 KB, max 15.50 KB, min 0.00 - OpenTime: avg 23.69us, max 33.130us, min 16.448us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 446, avg 148, max 160, min 139 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s342ms, max 5s217ms, min 904.595ms Fragment 69: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=216,dst_id=216): - BlocksProduced: sum 4, avg 4, max 4, min 4 - CloseTime: avg 15.158us, max 15.158us, min 15.158us - ExecTime: avg 165.890us, max 165.890us, min 165.890us - InputRows: sum 446, avg 446, max 446, min 446 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 46.50 KB, avg 46.50 KB, max 46.50 KB, min 46.50 KB - OpenTime: avg 29.99us, max 29.99us, min 29.99us - RowsProduced: sum 446, avg 446, max 446, min 446 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=215): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 13.774us, max 13.774us, min 13.774us - ExecTime: avg 157.79us, max 157.79us, min 157.79us - 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 16.52us, max 16.52us, min 16.52us - ProbeRows: sum 447, avg 447, max 447, min 447 - ProjectionTime: avg 17.256us, max 17.256us, min 17.256us - RowsProduced: sum 446, avg 446, max 446, min 446 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=214): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 1.728us, max 1.728us, min 1.728us - ExecTime: avg 50.341us, max 50.341us, min 50.341us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.602us, max 7.602us, min 7.602us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 447, avg 447, max 447, min 447 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 902.648ms, max 902.648ms, min 902.648ms Pipeline : 1(instance_num=1): HASH_JOIN_SINK_OPERATOR (id=215): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 36.20ms, max 36.20ms, min 36.20ms - 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 13.684us, max 13.684us, min 13.684us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=210): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 10.917us, max 10.917us, min 10.917us - ExecTime: avg 33.467us, max 33.467us, min 33.467us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 15.525us, max 15.525us, min 15.525us - 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 144.357us, max 144.357us, min 144.357us Pipeline : 2(instance_num=1): AGGREGATION_SINK_OPERATOR (id=214): - CloseTime: avg 15.968us, max 15.968us, min 15.968us - ExecTime: avg 228.43us, max 228.43us, min 228.43us - InputRows: sum 447, avg 447, max 447, min 447 - 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 53.566us, max 53.566us, min 53.566us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=213): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 9.730us, max 9.730us, min 9.730us - ExecTime: avg 42.973us, max 42.973us, min 42.973us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 30.00 KB, avg 30.00 KB, max 30.00 KB, min 30.00 KB - OpenTime: avg 24.932us, max 24.932us, min 24.932us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 447, avg 447, max 447, min 447 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 895.309ms, max 895.309ms, min 895.309ms 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 15.259us, max 15.259us, min 15.259us - ExecTime: avg 58.398us, max 58.398us, min 58.398us - InputRows: sum 447, avg 447, max 447, min 447 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 26.223us, max 26.223us, min 26.223us - RowsProduced: sum 447, avg 447, max 447, min 447 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=212): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 14.264us, max 14.264us, min 14.264us - ExecTime: avg 284.254us, max 284.254us, min 284.254us - 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 38.80us, max 38.80us, min 38.80us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 447, avg 447, max 447, min 447 OLAP_SCAN_OPERATOR (id=211. table name = QYWX_GROUPCHAT_INFO): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 42.270us, max 42.270us, min 42.270us - ExecTime: avg 90.450ms, max 90.450ms, min 90.450ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 400.965us, max 400.965us, min 400.965us - ProjectionTime: avg 36.627us, max 36.627us, min 36.627us - RowsProduced: sum 447, avg 447, max 447, min 447 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 89.937ms, max 89.937ms, min 89.937ms 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 2, avg 2, max 2, min 2 - CloseTime: avg 14.42us, max 14.42us, min 14.42us - ExecTime: avg 181.859us, max 181.859us, min 181.859us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 39.246us, max 39.246us, min 39.246us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 38.835us, max 38.835us, min 38.835us - ExecTime: avg 1.27ms, max 1.27ms, min 1.27ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 183.316us, max 183.316us, min 183.316us - ProjectionTime: avg 4.620us, max 4.620us, min 4.620us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 775.57us, max 775.57us, min 775.57us 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 626, avg 208, max 214, min 206 - CloseTime: avg 24.303us, max 30.803us, min 19.772us - ExecTime: avg 73.617ms, max 90.640ms, min 62.171ms - InputRows: sum 2.506017M (2506017), avg 835.339K (835339), max 835.915K (835915), min 834.234K (834234) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 24.39 MB, avg 8.13 MB, max 10.97 MB, min 2.85 MB - OpenTime: avg 65.59us, max 71.511us, min 60.876us - 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): - BlocksProduced: sum 618, avg 206, max 206, min 206 - CloseTime: avg 38.712us, max 46.25us, min 30.13us - ExecTime: avg 81.997ms, max 184.918ms, min 17.662ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.923ms, max 5.277ms, min 240.634us - 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 79.150ms, max 183.774ms, min 16.415ms 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=24): DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - BlocksProduced: sum 492, avg 20, max 34, min 14 - CloseTime: avg 17.64us, max 40.682us, min 7.46us - ExecTime: avg 10.195ms, max 116.198ms, min 160.713us - InputRows: sum 307.567K (307567), avg 12.815K (12815), max 62.352K (62352), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 10.47 MB, avg 446.62 KB, max 2.16 MB, min 384.00 B - OpenTime: avg 69.60us, max 162.978us, min 44.995us - RowsProduced: sum 307.567K (307567), avg 12.815K (12815), 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): - BlocksProduced: sum 95, avg 3, max 19, min 0 - CloseTime: avg 93.170us, max 205.634us, min 25.240us - ExecTime: avg 162.180ms, max 281.473ms, min 30.989ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.210ms, max 36.12ms, min 156.46us - ProjectionTime: avg 67.72us, max 372.112us, min 1.400us - RowsProduced: sum 307.567K (307567), avg 12.815K (12815), max 62.352K (62352), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 154.716ms, max 277.810ms, min 29.299ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 10.69 MB, avg 456.17 KB, max 1.80 MB, min 92.00 KB Fragment 74: Pipeline : 0(instance_num=5): DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - BlocksProduced: sum 162, avg 32, max 34, min 26 - CloseTime: avg 17.163us, max 20.665us, min 10.867us - ExecTime: avg 64.589ms, max 183.958ms, min 19.301ms - InputRows: sum 373.936K (373936), avg 74.787K (74787), max 78.716K (78716), min 71.341K (71341) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 29.17 MB, avg 5.83 MB, max 7.01 MB, min 5.31 MB - OpenTime: avg 57.487us, max 67.621us, min 45.529us - 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): - BlocksProduced: sum 100, avg 20, max 21, min 19 - CloseTime: avg 36.647us, max 44.792us, min 23.338us - ExecTime: avg 136.510ms, max 253.764ms, min 23.728ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.358ms, max 46.743ms, min 307.947us - 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 121.857ms, max 253.96ms, min 22.921ms 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 8, avg 4, max 5, min 3 - CloseTime: avg 23.114us, max 29.548us, min 16.681us - ExecTime: avg 895.51us, max 998.427us, min 791.675us - InputRows: sum 8.217K (8217), avg 4.108K (4108), max 4.177K (4177), min 4.04K (4040) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 472.00 KB, avg 236.00 KB, max 236.00 KB, min 236.00 KB - OpenTime: avg 42.606us, max 46.115us, min 39.97us - 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): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 1.739us, max 1.795us, min 1.684us - ExecTime: avg 1.415ms, max 1.720ms, min 1.109ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.377us, max 10.379us, min 6.375us - ProjectionTime: avg 751.194us, max 910.590us, min 591.799us - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.177K (4177), min 4.04K (4040) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 560.398ms, max 971.213ms, min 149.584ms Pipeline : 1(instance_num=2): AGGREGATION_SINK_OPERATOR (id=201): - CloseTime: avg 2.929us, max 4.268us, min 1.591us - ExecTime: avg 12.294ms, max 21.834ms, min 2.753ms - 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 25.106us, max 27.418us, min 22.795us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=200): - BlocksProduced: sum 6, avg 3, max 3, min 3 - CloseTime: avg 18.839us, max 26.572us, min 11.106us - ExecTime: avg 68.457us, max 70.835us, min 66.79us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 232.00 KB, avg 116.00 KB, max 180.00 KB, min 52.00 KB - OpenTime: avg 19.775us, max 20.23us, min 19.527us - 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 545.105ms, max 964.936ms, min 125.274ms Fragment 76: Pipeline : 0(instance_num=2): DATA_STREAM_SINK_OPERATOR (id=200,dst_id=200): - BlocksProduced: sum 6, avg 3, max 3, min 3 - CloseTime: avg 15.451us, max 16.277us, min 14.625us - ExecTime: avg 962.737us, max 1.34ms, min 890.713us - InputRows: sum 8.217K (8217), avg 4.108K (4108), max 4.401K (4401), min 3.816K (3816) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 824.00 KB, avg 412.00 KB, max 464.00 KB, min 360.00 KB - OpenTime: avg 38.32us, max 41.850us, min 34.215us - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.401K (4401), min 3.816K (3816) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=199): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 89.310us, max 95.960us, min 82.660us - ExecTime: avg 3.81ms, max 3.313ms, min 2.848ms - 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 39.852us, max 43.436us, min 36.268us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.401K (4401), min 3.816K (3816) HASH_JOIN_OPERATOR (id=198): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 17.791us, max 18.338us, min 17.245us - ExecTime: avg 738.57us, max 853.351us, min 622.764us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 124.00 KB, avg 62.00 KB, max 64.00 KB, min 60.00 KB - ProbeKeyArena: sum 124.00 KB, avg 62.00 KB, max 64.00 KB, min 60.00 KB - OpenTime: avg 28.862us, max 39.836us, min 17.888us - ProbeRows: sum 8.217K (8217), avg 4.108K (4108), max 4.401K (4401), min 3.816K (3816) - ProjectionTime: avg 355.502us, max 423.550us, min 287.455us - RowsProduced: sum 8.217K (8217), avg 4.108K (4108), max 4.401K (4401), min 3.816K (3816) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=197. table name = QYWX_USER_BEHAVIOR_DATA): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 96.860us, max 113.277us, min 80.444us - ExecTime: avg 77.562ms, max 122.763ms, min 32.361ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 567.532us, max 610.141us, min 524.923us - 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 29.710988M (29710988), avg 14.855494M (14855494), max 16.743736M (16743736), min 12.967252M (12967252) - filter id = -1 input: sum 29.963746M (29963746), avg 14.981873M (14981873), max 16.898754M (16898754), min 13.064992M (13064992) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 76.800ms, max 121.968ms, min 31.632ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 752.00 KB, avg 376.00 KB, max 376.00 KB, min 376.00 KB Pipeline : 1(instance_num=2): HASH_JOIN_SINK_OPERATOR (id=198): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 4.897ms, max 9.630ms, min 165.676us - InputRows: sum 160, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 1.21 KB, max 1.21 KB, min 1.21 KB - BuildKeyArena: sum 8.00 KB, avg 4.00 KB, max 4.00 KB, min 4.00 KB - HashTable: sum 1.64 KB, avg 840.00 B, max 840.00 B, min 840.00 B - PeakMemoryUsage: sum 4.05 KB, avg 2.02 KB, max 2.02 KB, min 2.02 KB - OpenTime: avg 43.417us, max 68.479us, min 18.355us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=196): - BlocksProduced: sum 3, avg 1, max 2, min 1 - CloseTime: avg 9.351us, max 12.378us, min 6.324us - ExecTime: avg 45.69us, max 53.582us, min 36.557us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 1.06 KB, max 2.13 KB, min 0.00 - OpenTime: avg 26.648us, max 32.1us, min 21.296us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 80, max 80, min 80 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2.197ms, max 3.644ms, min 751.748us Fragment 77: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=196,dst_id=196): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 12.114us, max 12.114us, min 12.114us - ExecTime: avg 165.179us, max 165.179us, min 165.179us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 53.448us, max 53.448us, min 53.448us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 47.887us, max 47.887us, min 47.887us - ExecTime: avg 925.429us, max 925.429us, min 925.429us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 212.275us, max 212.275us, min 212.275us - ProjectionTime: avg 5.992us, max 5.992us, min 5.992us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 625.646us, max 625.646us, min 625.646us 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=24): DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 15.641us, max 40.913us, min 6.396us - ExecTime: avg 788.451us, max 1.134ms, min 506.32us - InputRows: sum 1.844K (1844), avg 76, max 88, min 67 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 451.19 KB, avg 18.80 KB, max 20.50 KB, min 17.50 KB - OpenTime: avg 121.510us, max 194.320us, min 78.603us - RowsProduced: sum 1.844K (1844), avg 76, max 88, min 67 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=193): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 888ns, max 7.7us, min 176ns - ExecTime: avg 100.750us, max 164.114us, min 54.122us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.159us, max 24.406us, min 5.138us - ProjectionTime: avg 39.726us, max 65.192us, min 20.529us - RowsProduced: sum 1.844K (1844), avg 76, max 88, min 67 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 19s512ms, max 19s514ms, min 19s509ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=193): - CloseTime: avg 820ns, max 1.600us, min 359ns - ExecTime: avg 317.481us, max 410.405us, min 243.600us - InputRows: sum 3.706K (3706), avg 154, max 197, min 109 - MemoryUsage: sum , avg , max , min - HashTable: sum 71.44 KB, avg 2.98 KB, max 2.98 KB, min 2.98 KB - PeakMemoryUsage: sum 45.44 MB, avg 1.89 MB, max 1.89 MB, min 1.89 MB - SerializeKeyArena: sum 45.38 MB, avg 1.89 MB, max 1.89 MB, min 1.89 MB - OpenTime: avg 36.182us, max 56.769us, min 24.936us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: sum 861, avg 35, max 36, min 34 - CloseTime: avg 38.460us, max 801.404us, min 1.229us - ExecTime: avg 187.92us, max 915.338us, min 117.500us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 150.84 KB, avg 6.29 KB, max 9.75 KB, min 3.06 KB - OpenTime: avg 22.297us, max 47.812us, min 12.166us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.706K (3706), avg 154, max 197, min 109 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s510ms, max 19s512ms, min 19s507ms Fragment 79: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 14.977us, max 37.49us, min 9.260us - ExecTime: avg 936.494us, max 2.518ms, min 535.941us - InputRows: sum 3.706K (3706), avg 154, max 190, min 125 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 888.81 KB, avg 37.03 KB, max 42.94 KB, min 32.81 KB - OpenTime: avg 114.286us, max 172.848us, min 77.849us - RowsProduced: sum 3.706K (3706), avg 154, max 190, min 125 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=191): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 56.439us, max 96.826us, min 25.681us - ExecTime: avg 409.855us, max 589.98us, min 290.346us - MemoryUsage: sum , avg , max , min - HashTable: sum 143.44 KB, avg 5.98 KB, max 5.98 KB, min 5.98 KB - PeakMemoryUsage: sum 45.65 MB, avg 1.90 MB, max 1.90 MB, min 1.90 MB - SerializeKeyArena: sum 45.51 MB, avg 1.90 MB, max 1.90 MB, min 1.89 MB - OpenTime: avg 38.413us, max 88.231us, min 29.675us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.706K (3706), avg 154, max 190, min 125 HASH_JOIN_OPERATOR (id=190): - BlocksProduced: sum 77, avg 3, max 5, min 1 - CloseTime: avg 25.932us, max 57.660us, min 9.416us - ExecTime: avg 1.65ms, max 1.697ms, min 800.102us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.73 MB, avg 116.50 KB, max 192.00 KB, min 64.00 KB - ProbeKeyArena: sum 2.73 MB, avg 116.50 KB, max 192.00 KB, min 64.00 KB - OpenTime: avg 19.234us, max 35.903us, min 12.109us - ProbeRows: sum 338.667K (338667), avg 14.111K (14111), max 14.507K (14507), min 13.699K (13699) - ProjectionTime: avg 178.451us, max 286.575us, min 107.731us - RowsProduced: sum 4.339K (4339), avg 180, max 241, min 138 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 16s370ms, max 18s570ms, min 14s187ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: sum 180, avg 7, max 10, min 5 - CloseTime: avg 18.878us, max 155.525us, min 4.26us - ExecTime: avg 83.170us, max 203.972us, min 46.246us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.38 MB, avg 272.04 KB, max 541.50 KB, min 2.58 KB - OpenTime: avg 17.308us, max 50.63us, min 9.323us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), max 14.507K (14507), min 13.699K (13699) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s120ms, max 5s318ms, min 932.366ms Pipeline : 1(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=190): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 128.138us, max 231.162us, min 63.258us - InputRows: sum 4.144K (4144), avg 172, max 232, min 134 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 368.58 KB, avg 15.36 KB, max 20.62 KB, min 11.91 KB - BuildKeyArena: sum 152.00 KB, avg 6.33 KB, max 12.00 KB, min 4.00 KB - HashTable: sum 45.45 KB, avg 1.89 KB, max 3.14 KB, min 1.66 KB - PeakMemoryUsage: sum 469.83 KB, avg 19.58 KB, max 31.76 KB, min 13.57 KB - OpenTime: avg 21.670us, max 51.959us, min 11.86us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: sum 36, avg 1, max 2, min 1 - CloseTime: avg 13.46us, max 154.24us, min 1.682us - ExecTime: avg 36.603us, max 174.248us, min 16.614us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 274.25 KB, avg 11.43 KB, max 26.25 KB, min 0.00 - OpenTime: avg 16.97us, max 28.895us, min 8.238us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 4.144K (4144), avg 172, max 232, min 134 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s505ms, max 19s507ms, min 19s503ms Fragment 80: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 15.880us, max 39.243us, min 7.89us - ExecTime: avg 11.34ms, max 117.259ms, min 256.512us - InputRows: sum 338.667K (338667), avg 14.111K (14111), max 68.654K (68654), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 12.67 MB, avg 540.59 KB, max 2.53 MB, min 768.00 B - OpenTime: avg 109.833us, max 203.225us, min 84.835us - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), 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): - BlocksProduced: sum 95, avg 3, max 19, min 0 - CloseTime: avg 75.377us, max 180.271us, min 21.12us - ExecTime: avg 120.814ms, max 233.651ms, min 69.306ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 450.775us, max 5.554ms, min 133.198us - ProjectionTime: avg 3.310ms, max 47.607ms, min 1.383us - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 116.890ms, max 233.278ms, min 68.856ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.12 MB, avg 517.00 KB, max 2.09 MB, min 80.00 KB Fragment 81: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=187,dst_id=187): - BlocksProduced: sum 36, avg 36, max 36, min 36 - CloseTime: avg 12.417us, max 12.417us, min 12.417us - ExecTime: avg 1.741ms, max 1.741ms, min 1.741ms - InputRows: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 544.13 KB, avg 544.13 KB, max 544.13 KB, min 544.13 KB - OpenTime: avg 95.87us, max 95.87us, min 95.87us - 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): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 934ns, max 934ns, min 934ns - ExecTime: avg 785.66us, max 785.66us, min 785.66us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.713us, max 7.713us, min 7.713us - ProjectionTime: avg 91.640us, max 91.640us, min 91.640us - RowsProduced: sum 4.144K (4144), avg 4.144K (4144), max 4.144K (4144), min 4.144K (4144) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 19s503ms, max 19s503ms, min 19s503ms Pipeline : 1(instance_num=1): AGGREGATION_SINK_OPERATOR (id=186): - CloseTime: avg 2.355us, max 2.355us, min 2.355us - ExecTime: avg 2.373ms, max 2.373ms, min 2.373ms - 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 27.952us, max 27.952us, min 27.952us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=185): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 10.164us, max 10.164us, min 10.164us - ExecTime: avg 47.176us, max 47.176us, min 47.176us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 864.00 KB, avg 864.00 KB, max 864.00 KB, min 864.00 KB - OpenTime: avg 18.214us, max 18.214us, min 18.214us - 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 19s500ms, max 19s500ms, min 19s500ms 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 11.270us, max 11.270us, min 11.270us - ExecTime: avg 159.701us, max 159.701us, min 159.701us - 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 46.530us, max 46.530us, min 46.530us - 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): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 99.626us, max 99.626us, min 99.626us - ExecTime: avg 3.446ms, max 3.446ms, min 3.446ms - 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 28.267us, max 28.267us, min 28.267us - 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): - BlocksProduced: sum 2, avg 2, max 2, min 2 - CloseTime: avg 5.631us, max 5.631us, min 5.631us - ExecTime: avg 1.108ms, max 1.108ms, min 1.108ms - 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 28.862us, max 28.862us, min 28.862us - ProbeRows: sum 80, avg 80, max 80, min 80 - ProjectionTime: avg 350.814us, max 350.814us, min 350.814us - RowsProduced: sum 5.193K (5193), avg 5.193K (5193), max 5.193K (5193), min 5.193K (5193) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 18s587ms, max 18s587ms, min 18s587ms OLAP_SCAN_OPERATOR (id=182. table name = ODS_EXCEL_QYWX_ZONGBU): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 30.253us, max 30.253us, min 30.253us - ExecTime: avg 65.618ms, max 65.618ms, min 65.618ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 206.500us, max 206.500us, min 206.500us - ProjectionTime: avg 5.463us, max 5.463us, min 5.463us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 65.335ms, max 65.335ms, min 65.335ms 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 11.985ms, max 11.985ms, min 11.985ms - 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 17.54us, max 17.54us, min 17.54us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=181): - BlocksProduced: sum 1.379K (1379), avg 1.379K (1379), max 1.379K (1379), min 1.379K (1379) - CloseTime: avg 7.466us, max 7.466us, min 7.466us - ExecTime: avg 6.308ms, max 6.308ms, min 6.308ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 33.69 MB, avg 33.69 MB, max 33.69 MB, min 33.69 MB - OpenTime: avg 18.714us, max 18.714us, min 18.714us - 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 19s146ms, max 19s146ms, min 19s146ms Fragment 83: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: sum 1.378K (1378), avg 344, max 460, min 3 - CloseTime: avg 21.490us, max 24.565us, min 14.706us - ExecTime: avg 6.724ms, max 9.712ms, min 5.683ms - InputRows: sum 29.505K (29505), avg 7.376K (7376), max 7.643K (7643), min 6.762K (6762) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 344.00 KB, avg 86.00 KB, max 344.00 KB, min 0.00 - OpenTime: avg 37.475us, max 61.217us, min 23.630us - 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): - BlocksProduced: sum 1.828K (1828), avg 457, max 460, min 453 - CloseTime: avg 24.858us, max 52.713us, min 8.82us - ExecTime: avg 146.345ms, max 160.480ms, min 134.839ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.96 MB, avg 501.00 KB, max 552.00 KB, min 456.00 KB - ProbeKeyArena: sum 1.96 MB, avg 501.00 KB, max 552.00 KB, min 456.00 KB - OpenTime: avg 16.391us, max 19.797us, min 13.671us - ProbeRows: sum 8.336242M (8336242), avg 2.08406M (2084060), max 2.084433M (2084433), min 2.083779M (2083779) - ProjectionTime: avg 2.856ms, max 3.270ms, min 2.551ms - 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): - BlocksProduced: sum 2.517K (2517), avg 629, max 801, min 571 - CloseTime: avg 12.359us, max 20.720us, min 8.759us - ExecTime: avg 5.846ms, max 7.436ms, min 5.271ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 33.50 MB, avg 8.38 MB, max 12.22 MB, min 2.36 MB - OpenTime: avg 23.719us, max 39.16us, min 13.810us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.336242M (8336242), avg 2.08406M (2084060), max 2.084433M (2084433), min 2.083779M (2083779) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 17s726ms, max 18s820ms, min 14s692ms Pipeline : 1(instance_num=4): HASH_JOIN_SINK_OPERATOR (id=180): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.135ms, max 1.291ms, min 857.547us - 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 21.959us, max 28.370us, min 16.27us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: sum 10, avg 2, max 4, min 2 - CloseTime: avg 8.682us, max 11.785us, min 5.437us - ExecTime: avg 58.262us, max 70.214us, min 45.402us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.50 MB, avg 384.00 KB, max 512.00 KB, min 0.00 - OpenTime: avg 21.409us, max 32.333us, min 11.214us - 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 342.958ms, max 649.485ms, min 240.516ms Fragment 84: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - BlocksProduced: sum 1.84K (1840), avg 460, max 461, min 457 - CloseTime: avg 15.138us, max 18.717us, min 12.470us - ExecTime: avg 384.593ms, max 502.100ms, min 260.697ms - InputRows: sum 8.336242M (8336242), avg 2.08406M (2084060), max 2.087045M (2087045), min 2.080149M (2080149) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 372.50 MB, avg 93.12 MB, max 112.97 MB, min 38.08 MB - OpenTime: avg 41.591us, max 54.176us, min 34.684us - RowsProduced: sum 8.336242M (8336242), avg 2.08406M (2084060), max 2.087045M (2087045), min 2.080149M (2080149) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 3s354ms, max 13s418ms, min 0ns OLAP_SCAN_OPERATOR (id=178. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 42.862us, max 57.821us, min 24.385us - ExecTime: avg 283.285ms, max 378.80ms, min 225.918ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 180.425us, max 198.285us, min 147.407us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.336242M (8336242), avg 2.08406M (2084060), max 2.087045M (2087045), min 2.080149M (2080149) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 280.929ms, max 376.188ms, min 223.779ms 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 9, avg 9, max 9, min 9 - CloseTime: avg 12.640us, max 12.640us, min 12.640us - ExecTime: avg 3.742ms, max 3.742ms, min 3.742ms - 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.59 MB, avg 2.59 MB, max 2.59 MB, min 2.59 MB - OpenTime: avg 38.889us, max 38.889us, min 38.889us - 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): - BlocksProduced: sum 10, avg 10, max 10, min 10 - CloseTime: avg 51.984us, max 51.984us, min 51.984us - ExecTime: avg 236.451ms, max 236.451ms, min 236.451ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 193.66us, max 193.66us, min 193.66us - 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 236.69ms, max 236.69ms, min 236.69ms 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=24): DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 16.322us, max 57.581us, min 8.515us - ExecTime: avg 630.372us, max 1.34ms, min 400.902us - InputRows: sum 2.315K (2315), avg 96, max 112, min 77 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 275.84 KB, avg 11.49 KB, max 12.56 KB, min 9.84 KB - OpenTime: avg 110.402us, max 164.413us, min 87.349us - RowsProduced: sum 2.315K (2315), avg 96, max 112, min 77 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=174): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 911ns, max 1.589us, min 355ns - ExecTime: avg 82.797us, max 145.912us, min 51.487us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.699us, max 22.506us, min 4.919us - ProjectionTime: avg 32.638us, max 62.872us, min 17.66us - RowsProduced: sum 2.315K (2315), avg 96, max 112, min 77 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 19s402ms, max 19s405ms, min 19s398ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=174): - CloseTime: avg 1.96us, max 4.429us, min 511ns - ExecTime: avg 317.853us, max 469.171us, min 244.787us - InputRows: sum 12.758K (12758), avg 531, max 794, min 441 - MemoryUsage: sum , avg , max , min - HashTable: sum 71.44 KB, avg 2.98 KB, max 2.98 KB, min 2.98 KB - PeakMemoryUsage: sum 21.44 MB, avg 914.98 KB, max 914.98 KB, min 914.98 KB - SerializeKeyArena: sum 21.38 MB, avg 912.00 KB, max 912.00 KB, min 912.00 KB - OpenTime: avg 29.625us, max 115.306us, min 14.495us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 85.537us, max 1.928ms, min 2.152us - ExecTime: avg 213.451us, max 2.51ms, min 96.761us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 167.00 KB, avg 6.96 KB, max 13.69 KB, min 3.13 KB - OpenTime: avg 17.667us, max 30.604us, min 10.503us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 12.758K (12758), avg 531, max 794, min 441 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 18s591ms, max 19s402ms, min 574.913us Fragment 87: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 15.859us, max 36.174us, min 8.903us - ExecTime: avg 1.26ms, max 2.103ms, min 649.599us - InputRows: sum 12.758K (12758), avg 531, max 577, min 474 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1017.19 KB, avg 42.38 KB, max 45.69 KB, min 39.06 KB - OpenTime: avg 108.644us, max 135.955us, min 87.862us - RowsProduced: sum 12.758K (12758), avg 531, max 577, min 474 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=172): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 1.483us, max 10.454us, min 514ns - ExecTime: avg 147.823us, max 195.175us, min 106.230us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.291us, max 15.782us, min 4.912us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 12.758K (12758), avg 531, max 577, min 474 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 19s392ms, max 19s397ms, min 19s389ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=172): - CloseTime: avg 1.862us, max 7.463us, min 622ns - ExecTime: avg 575.121us, max 793.180us, min 390.414us - InputRows: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - MemoryUsage: sum , avg , max , min - HashTable: sum 575.44 KB, avg 23.98 KB, max 23.98 KB, min 23.98 KB - PeakMemoryUsage: sum 22.50 MB, avg 959.98 KB, max 959.98 KB, min 959.98 KB - SerializeKeyArena: sum 21.94 MB, avg 936.00 KB, max 936.00 KB, min 936.00 KB - OpenTime: avg 30.985us, max 79.889us, min 15.628us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: sum 72, avg 3, max 3, min 3 - CloseTime: avg 14.309us, max 24.707us, min 6.499us - ExecTime: avg 899.264us, max 1.210ms, min 588.472us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.16 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - ProbeKeyArena: sum 2.16 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - OpenTime: avg 19.432us, max 33.805us, min 12.861us - ProbeRows: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - ProjectionTime: avg 204.750us, max 292.833us, min 123.678us - RowsProduced: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 15s691ms, max 18s123ms, min 13s259ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: sum 48, avg 2, max 2, min 2 - CloseTime: avg 1.28us, max 6.661us, min 413ns - ExecTime: avg 628.783us, max 901.967us, min 412.557us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 11.38us, max 44.904us, min 4.534us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 3s696ms, max 6s130ms, min 1s263ms Pipeline : 2(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=171): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 443.133us, max 561.887us, min 355.331us - InputRows: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.59 MB, avg 153.15 KB, max 189.28 KB, min 128.64 KB - BuildKeyArena: sum 1.16 MB, avg 49.50 KB, max 60.00 KB, min 44.00 KB - HashTable: sum 571.85 KB, avg 23.83 KB, max 28.14 KB, min 16.26 KB - PeakMemoryUsage: sum 5.21 MB, avg 222.47 KB, max 273.42 KB, min 184.89 KB - OpenTime: avg 25.967us, max 41.388us, min 14.202us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: sum 432, avg 18, max 22, min 14 - CloseTime: avg 6.249us, max 19.132us, min 2.213us - ExecTime: avg 130.415us, max 247.338us, min 91.512us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.08 MB, avg 88.81 KB, max 193.74 KB, min 20.78 KB - OpenTime: avg 20.148us, max 35.394us, min 12.105us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s387ms, max 19s391ms, min 19s384ms Pipeline : 3(instance_num=24): AGGREGATION_SINK_OPERATOR (id=170): - CloseTime: avg 6.944us, max 24.11us, min 2.250us - ExecTime: avg 2.586ms, max 4.917ms, min 1.594ms - InputRows: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - MemoryUsage: sum , avg , max , min - HashTable: sum 4.50 MB, avg 191.98 KB, max 191.98 KB, min 191.98 KB - PeakMemoryUsage: sum 19.78 MB, avg 843.98 KB, max 843.98 KB, min 843.98 KB - SerializeKeyArena: sum 15.28 MB, avg 652.00 KB, max 652.00 KB, min 652.00 KB - OpenTime: avg 27.48us, max 114.523us, min 11.774us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: sum 180, avg 7, max 10, min 5 - CloseTime: avg 8.118us, max 23.52us, min 2.747us - ExecTime: avg 101.947us, max 224.770us, min 59.200us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.74 MB, avg 159.53 KB, max 421.50 KB, min 2.58 KB - OpenTime: avg 25.829us, max 156.589us, min 9.676us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s639ms, max 6s127ms, min 1s88ms Fragment 88: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 17.253us, max 37.210us, min 8.111us - ExecTime: avg 1.472ms, max 8.154ms, min 273.8us - InputRows: sum 152.419K (152419), avg 6.35K (6350), max 30.907K (30907), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.84 MB, avg 420.00 KB, max 1.97 MB, min 0.00 - OpenTime: avg 108.741us, max 129.231us, min 84.556us - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), 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): - BlocksProduced: sum 40, avg 1, max 8, min 0 - CloseTime: avg 89.543us, max 573.669us, min 477ns - ExecTime: avg 7.828ms, max 57.413ms, min 35.105us - MemoryUsage: sum , avg , max , min - HashTable: sum 7.50 MB, avg 320.00 KB, max 1.50 MB, min 0.00 - PeakMemoryUsage: sum 22.17 MB, avg 945.83 KB, max 4.43 MB, min 0.00 - SerializeKeyArena: sum 14.67 MB, avg 625.83 KB, max 2.93 MB, min 0.00 - OpenTime: avg 38.273us, max 91.683us, min 16.841us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), max 30.907K (30907), min 0 OLAP_SCAN_OPERATOR (id=167. table name = ODS_VIPSHOP_SALE): - BlocksProduced: sum 95, avg 3, max 19, min 0 - CloseTime: avg 78.569us, max 220.570us, min 27.889us - ExecTime: avg 127.98ms, max 218.468ms, min 81.397ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 226.155us, max 403.569us, min 140.577us - ProjectionTime: avg 1.408ms, max 20.149ms, min 1.428us - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 125.279ms, max 218.57ms, min 81.140ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.51 MB, avg 533.67 KB, max 2.16 MB, min 80.00 KB Fragment 89: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - BlocksProduced: sum 432, avg 36, max 36, min 36 - CloseTime: avg 16.257us, max 30.217us, min 9.170us - ExecTime: avg 2.557ms, max 4.263ms, min 1.577ms - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 10.526K (10526), min 2.889K (2889) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.50 MB, avg 469.34 KB, max 1.22 MB, min 341.69 KB - OpenTime: avg 112.642us, max 140.199us, min 93.198us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 10.526K (10526), min 2.889K (2889) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=165): - BlocksProduced: sum 144, avg 12, max 20, min 10 - CloseTime: avg 21.29us, max 31.75us, min 11.168us - ExecTime: avg 1.486ms, max 3.267ms, min 826.684us - 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 14.793us, max 29.660us, min 10.527us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 10.526K (10526), min 2.889K (2889) - ProjectionTime: avg 118.564us, max 200.573us, min 68.300us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 10.526K (10526), min 2.889K (2889) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 144, avg 12, max 20, min 10 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 40.871us, max 87.139us, min 23.308us - GetBlockFailedTime: sum 36, avg 3, max 8, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.99 MB, avg 254.88 KB, max 339.55 KB, min 70.00 KB - OpenTime: avg 906ns, max 2.631us, min 513ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 10.526K (10526), min 2.889K (2889) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 19s378ms, max 19s381ms, min 19s372ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 107.79us, max 226.854us, min 56.27us - 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.174us, max 1.356us, min 1.59us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 5.162us, max 10.924us, min 175ns - ExecTime: avg 3.75ms, max 3.481ms, min 2.578ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.667us, max 26.7us, min 4.52us - 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): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 6.702us, max 14.498us, min 4.45us - ExecTime: avg 157.971us, max 197.226us, min 126.627us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 146.00 KB, avg 12.17 KB, max 35.00 KB, min 0.00 - OpenTime: avg 17.507us, max 22.441us, min 13.318us - 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 19s376ms, max 19s380ms, min 19s373ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=165): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.275ms, max 8.395ms, min 12.800us - InputRows: sum 105.174K (105174), avg 8.764K (8764), max 52.587K (52587), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 7.42 MB, avg 633.35 KB, max 3.71 MB, min 0.00 - BuildKeyArena: sum 6.33 MB, avg 540.00 KB, max 3.16 MB, min 0.00 - HashTable: sum 922.85 KB, avg 76.90 KB, max 461.43 KB, min 0.00 - PeakMemoryUsage: sum 14.64 MB, avg 1.22 MB, max 7.32 MB, min 0.00 - OpenTime: avg 22.787us, max 97.127us, min 6.990us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 7s814ms, max 9s397ms, min 0ns EXCHANGE_OPERATOR (id=149): - BlocksProduced: sum 72, avg 6, max 38, min 0 - CloseTime: avg 50.105us, max 465.618us, min 3.160us - ExecTime: avg 117.420us, max 478.230us, min 16.186us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.48 MB, avg 211.33 KB, max 2.48 MB, min 0.00 - OpenTime: avg 14.861us, max 22.398us, min 9.978us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 105.174K (105174), avg 8.764K (8764), max 52.587K (52587), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s561ms, max 9s380ms, min 0ns Fragment 90: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 16.445us, max 25.496us, min 10.954us - ExecTime: avg 11.72ms, max 18.261ms, min 8.929ms - 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 78.897us, max 117.816us, min 66.765us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 7.56us, max 19.62us, min 2.857us - ExecTime: avg 7.711ms, max 13.655ms, min 5.642ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.984us, max 7.906us, min 3.800us - 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): - BlocksProduced: sum 8.777K (8777), avg 731, max 741, min 720 - CloseTime: avg 18.740us, max 37.816us, min 7.46us - ExecTime: avg 91.729ms, max 105.42ms, min 78.932ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 829.48 KB, avg 69.12 KB, max 69.28 KB, min 68.97 KB - ProbeKeyArena: sum 829.48 KB, avg 69.12 KB, max 69.28 KB, min 68.97 KB - OpenTime: avg 17.67us, max 23.465us, min 13.819us - ProbeRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 3.296837M (3296837), min 3.295033M (3295033) - ProjectionTime: avg 7.47ms, max 8.169ms, min 6.139ms - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 16s26ms, max 16s72ms, min 15s960ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: sum 11.697K (11697), avg 974, max 1.489K (1489), min 871 - CloseTime: avg 9.700us, max 18.747us, min 5.709us - ExecTime: avg 9.390ms, max 23.547ms, min 4.550ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 200.69 MB, avg 16.72 MB, max 19.62 MB, min 4.67 MB - OpenTime: avg 19.526us, max 35.732us, min 10.506us - 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 3s27ms, max 3s114ms, min 2s891ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=161): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 551.45us, max 935.332us, min 418.308us - 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 26.423us, max 48.47us, min 14.28us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: sum 224, avg 18, max 19, min 17 - CloseTime: avg 5.59us, max 10.418us, min 2.294us - ExecTime: avg 140.72us, max 234.807us, min 107.640us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 99.00 KB, avg 8.25 KB, max 66.00 KB, min 0.00 - OpenTime: avg 15.142us, max 25.888us, min 9.678us - 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 17s16ms, max 17s19ms, min 17s11ms Fragment 91: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - BlocksProduced: sum 9.492K (9492), avg 791, max 1.187K (1187), min 218 - CloseTime: avg 15.872us, max 22.947us, min 13.253us - ExecTime: avg 214.156ms, max 290.209ms, min 76.643ms - InputRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 388.94 MB, avg 32.41 MB, max 54.08 MB, min 2.52 MB - OpenTime: avg 72.12us, max 121.498us, min 53.961us - 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=159. table name = DIM_CUSTOMER): - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 55.721us, max 91.597us, min 24.774us - ExecTime: avg 131.85ms, max 253.336ms, min 75.587ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 170.347us, max 342.977us, min 106.592us - 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 126.678ms, max 251.236ms, min 74.481ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 203.52 MB, avg 16.96 MB, max 26.82 MB, min 7.63 MB Fragment 92: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - BlocksProduced: sum 224, avg 18, max 22, min 14 - CloseTime: avg 18.976us, max 29.980us, min 14.276us - ExecTime: avg 8.177ms, max 9.611ms, min 6.327ms - 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 67.118us, max 91.996us, min 46.997us - 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): - BlocksProduced: sum 2.002K (2002), avg 166, max 169, min 165 - CloseTime: avg 24.863us, max 58.880us, min 12.731us - ExecTime: avg 56.458ms, max 62.616ms, min 44.664ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.98 MB, avg 425.33 KB, max 468.00 KB, min 160.00 KB - ProbeKeyArena: sum 4.98 MB, avg 425.33 KB, max 468.00 KB, min 160.00 KB - OpenTime: avg 15.904us, max 34.508us, min 10.8us - ProbeRows: sum 8.342327M (8342327), avg 695.193K (695193), max 696.522K (696522), min 694.145K (694145) - ProjectionTime: avg 1.230ms, max 1.442ms, min 907.459us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s62ms, max 2s587ms, min 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: sum 3.079K (3079), avg 256, max 293, min 206 - CloseTime: avg 10.394us, max 26.902us, min 6.56us - ExecTime: avg 2.927ms, max 3.609ms, min 2.190ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 111.19 MB, avg 9.27 MB, max 19.95 MB, min 1.63 MB - OpenTime: avg 16.405us, max 27.573us, min 8.746us - 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 9s681ms, max 14s283ms, min 6s408ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=157): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 756.390us, max 1.372ms, min 475.202us - 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 28.515us, max 110.847us, min 13.291us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: sum 197, avg 16, max 17, min 16 - CloseTime: avg 8.509us, max 23.5us, min 4.211us - ExecTime: avg 95.984us, max 142.69us, min 58.143us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 570.00 KB, avg 47.50 KB, max 114.00 KB, min 0.00 - OpenTime: avg 16.963us, max 36.193us, min 8.321us - 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 1s848ms, max 3s918ms, min 365.934ms Fragment 93: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - BlocksProduced: sum 2.025K (2025), avg 506, max 509, min 504 - CloseTime: avg 20.15us, max 25.853us, min 14.429us - ExecTime: avg 367.453ms, max 398.210ms, min 352.418ms - InputRows: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 304.37 MB, avg 76.09 MB, max 95.92 MB, min 69.14 MB - OpenTime: avg 62.90us, max 71.624us, min 51.707us - 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=155. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 43.592us, max 47.931us, min 39.844us - ExecTime: avg 300.480ms, max 345.184ms, min 258.799ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 184.25us, max 298.267us, min 141.303us - 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 295.291ms, max 342.834ms, min 245.639ms 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 214, avg 17, max 19, min 17 - CloseTime: avg 16.126us, max 29.518us, min 8.204us - ExecTime: avg 1.231ms, max 2.426ms, min 259.678us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.19 MB, avg 357.58 KB, max 684.00 KB, min 0.00 - OpenTime: avg 73.506us, max 116.364us, min 51.33us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: sum 13, avg 1, max 2, min 0 - CloseTime: avg 15.371us, max 33.666us, min 3.961us - ExecTime: avg 5.476ms, max 59.978ms, min 40.86us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 680.00 KB, avg 56.67 KB, max 64.00 KB, min 0.00 - ProbeKeyArena: sum 680.00 KB, avg 56.67 KB, max 64.00 KB, min 0.00 - OpenTime: avg 15.382us, max 19.786us, min 11.75us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - ProjectionTime: avg 114.164us, max 199.868us, min 15.131us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), 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 18.336us, max 71.261us, min 4.609us - GetBlockFailedTime: sum 31, avg 2, max 7, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.98 MB, avg 254.67 KB, max 488.00 KB, min 0.00 - OpenTime: avg 1.506us, max 3.583us, min 642ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 256.699ms, max 379.243ms, min 99.424ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 26.189us, max 83.402us, min 7.796us - 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.636us, max 4.426us, min 1.42us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=152. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 13, avg 1, max 7, min 0 - CloseTime: avg 38.593us, max 53.290us, min 18.340us - ExecTime: avg 163.201ms, max 335.568ms, min 23.995ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 3.249ms, max 19.122ms, min 350.485us - ProjectionTime: avg 55.947us, max 396.488us, min 1.468us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 25.985K (25985), min 0 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 8.18166M (8181660), avg 743.787K (743787), max 1.157826M (1157826), min 191.49K (191490) - filter id = -1 input: sum 9.518478M (9518478), avg 865.316K (865316), max 1.349576M (1349576), min 191.5K (191500) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 159.819ms, max 334.994ms, min 23.401ms 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 2.465ms, max 29.56ms, min 28.414us - InputRows: sum 160, avg 13, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 206.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 140.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 345.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 23.936us, max 48.383us, min 13.774us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 21.970ms, max 45.62ms, min 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 361.525us, max 4.261ms, min 2.938us - ExecTime: avg 391.309us, max 4.287ms, min 21.540us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 181.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 28.347us, max 93.3us, min 15.616us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 13, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1.580ms, max 15.48ms, min 0ns Fragment 95: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=151,dst_id=151): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 14.375us, max 14.375us, min 14.375us - ExecTime: avg 148.490us, max 148.490us, min 148.490us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 40.483us, max 40.483us, min 40.483us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 31.912us, max 31.912us, min 31.912us - ExecTime: avg 3.403ms, max 3.403ms, min 3.403ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 160.958us, max 160.958us, min 160.958us - ProjectionTime: avg 3.833us, max 3.833us, min 3.833us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 3.182ms, max 3.182ms, min 3.182ms 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 60, avg 5, max 5, min 5 - CloseTime: avg 19.560us, max 37.923us, min 9.689us - ExecTime: avg 1.483ms, max 2.430ms, min 1.78ms - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.71 MB, avg 487.67 KB, max 552.00 KB, min 324.00 KB - OpenTime: avg 49.92us, max 82.242us, min 30.884us - 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): - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 1.179us, max 1.767us, min 614ns - ExecTime: avg 27.146ms, max 49.828ms, min 21.149ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.695us, max 11.312us, min 7.6us - ProjectionTime: avg 1.117ms, max 2.202ms, min 788.827us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s984ms, max 9s317ms, min 1s889ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=148): - CloseTime: avg 8.543us, max 20.237us, min 3.515us - ExecTime: avg 124.85ms, max 330.429ms, min 78.340ms - 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 24.129us, max 35.658us, min 16.902us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: sum 797, avg 66, max 74, min 60 - CloseTime: avg 6.147us, max 13.82us, min 3.2us - ExecTime: avg 956.809us, max 1.193ms, min 783.326us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.33 MB, avg 540.02 KB, max 1.81 MB, min 0.00 - OpenTime: avg 18.839us, max 28.588us, min 12.518us - 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 4s788ms, max 9s225ms, min 1s476ms Fragment 97: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - BlocksProduced: sum 624, avg 52, max 55, min 45 - CloseTime: avg 19.781us, max 28.178us, min 11.304us - ExecTime: avg 55.216ms, max 72.671ms, min 41.905ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 176.807K (176807), min 148.637K (148637) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 147.88 MB, avg 12.32 MB, max 14.25 MB, min 9.84 MB - OpenTime: avg 71.503us, max 101.61us, min 58.708us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 176.807K (176807), min 148.637K (148637) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: sum 527, avg 43, max 49, min 39 - CloseTime: avg 661.326us, max 1.95ms, min 475.662us - ExecTime: avg 57.482ms, max 118.845ms, min 36.538ms - 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 35.785us, max 67.138us, min 25.167us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 176.807K (176807), min 148.637K (148637) HASH_JOIN_OPERATOR (id=145): - BlocksProduced: sum 550, avg 45, max 51, min 40 - CloseTime: avg 28.67us, max 50.337us, min 15.768us - ExecTime: avg 18.344ms, max 36.210ms, min 12.602ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.69 MB, avg 144.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.69 MB, avg 144.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 14.774us, max 20.776us, min 12.158us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 176.807K (176807), min 148.637K (148637) - ProjectionTime: avg 2.200ms, max 2.607ms, min 1.776ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 176.807K (176807), min 148.637K (148637) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: sum 550, avg 45, max 51, min 40 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 295.915us, max 490.176us, min 219.245us - GetBlockFailedTime: sum 64, avg 5, max 17, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 96.66 MB, avg 8.06 MB, max 12.63 MB, min 1.60 MB - OpenTime: avg 1.261us, max 3.913us, min 582ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 176.807K (176807), min 148.637K (148637) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s102ms, max 1s742ms, min 166.455ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 311.540us, max 389.339us, min 238.73us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.404K (185404), min 148.878K (148878) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.191us, max 7.463us, min 1.21us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: sum 550, avg 45, max 52, min 41 - CloseTime: avg 17.966us, max 34.258us, min 10.197us - ExecTime: avg 20.247ms, max 27.947ms, min 11.786ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.39 MB, avg 118.67 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.39 MB, avg 118.67 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 22.231us, max 42.910us, min 7.957us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.404K (185404), min 148.878K (148878) - ProjectionTime: avg 2.810ms, max 3.685ms, min 1.759ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.404K (185404), min 148.878K (148878) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 908.760ms, max 1s559ms, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: sum 550, avg 45, max 52, min 41 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 200.900us, max 269.35us, min 150.766us - GetBlockFailedTime: sum 117, avg 9, max 24, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 101.89 MB, avg 8.49 MB, max 14.86 MB, min 1.16 MB - OpenTime: avg 981ns, max 3.145us, min 435ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.404K (185404), min 148.878K (148878) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 236.58ms, max 325.97ms, min 177.401ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 341.269us, max 804.581us, min 14.24us - 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 2.543us, max 6.560us, min 884ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=143. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 550, avg 45, max 113, min 0 - CloseTime: avg 35.418us, max 53.916us, min 24.80us - ExecTime: avg 285.927ms, max 490.120ms, min 64.390ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 3.891ms, max 19.506ms, min 282.195us - 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 - filter id = -1 filtered: sum 20.976568M (20976568), avg 1.90696M (1906960), max 2.991358M (2991358), min 389.738K (389738) - filter id = -1 input: sum 24.902648M (24902648), avg 2.263877M (2263877), max 3.287952M (3287952), min 454.022K (454022) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 281.675ms, max 471.409ms, min 64.3ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.48 MB, avg 3.37 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 96.622us, max 534.196us, min 28.921us - InputRows: sum 160, avg 13, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 206.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 140.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 345.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 26.496us, max 105.630us, min 13.280us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 26.271ms, max 40.547ms, min 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 6.902us, max 22.335us, min 3.673us - ExecTime: avg 27.332us, max 41.972us, min 17.242us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 181.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 18.671us, max 23.117us, min 12.292us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 13, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4.607ms, max 37.97ms, min 0ns Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=144): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 14.178ms, max 168.181ms, min 12.436us - InputRows: sum 87.194K (87194), avg 7.266K (7266), max 43.597K (43597), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.07 MB, avg 91.62 KB, max 549.72 KB, min 0.00 - BuildKeyArena: sum 2.17 MB, avg 185.33 KB, max 1.09 MB, min 0.00 - HashTable: sum 852.62 KB, avg 71.05 KB, max 426.31 KB, min 0.00 - PeakMemoryUsage: sum 4.07 MB, avg 347.34 KB, max 2.04 MB, min 0.00 - OpenTime: avg 8.264us, max 11.454us, min 4.900us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 871.991ms, max 1s741ms, min 0ns EXCHANGE_OPERATOR (id=142): - BlocksProduced: sum 33, avg 2, max 22, min 0 - CloseTime: avg 92.181us, max 1.30ms, min 2.872us - ExecTime: avg 117.914us, max 1.41ms, min 14.628us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 472.00 KB, avg 39.33 KB, max 472.00 KB, min 0.00 - OpenTime: avg 12.580us, max 18.96us, min 9.136us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 87.194K (87194), avg 7.266K (7266), max 43.597K (43597), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 129.839ms, max 1s553ms, min 0ns Fragment 98: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=142,dst_id=142): - BlocksProduced: sum 23, avg 23, max 23, min 23 - CloseTime: avg 12.603us, max 12.603us, min 12.603us - ExecTime: avg 1.693ms, max 1.693ms, min 1.693ms - InputRows: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 100.00 KB, avg 100.00 KB, max 100.00 KB, min 100.00 KB - OpenTime: avg 43.698us, max 43.698us, min 43.698us - 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): - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 37.186us, max 37.186us, min 37.186us - ExecTime: avg 3.338ms, max 3.338ms, min 3.338ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 207.724us, max 207.724us, min 207.724us - 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 3.15ms, max 3.15ms, min 3.15ms 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 3, avg 3, max 3, min 3 - CloseTime: avg 12.257us, max 12.257us, min 12.257us - ExecTime: avg 151.753us, max 151.753us, min 151.753us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 61.358us, max 61.358us, min 61.358us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 23.205us, max 23.205us, min 23.205us - ExecTime: avg 18.482ms, max 18.482ms, min 18.482ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 169.866us, max 169.866us, min 169.866us - ProjectionTime: avg 4.31us, max 4.31us, min 4.31us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 18.263ms, max 18.263ms, min 18.263ms 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 432, avg 36, max 36, min 36 - CloseTime: avg 11.896us, max 25.506us, min 6.749us - ExecTime: avg 449.716us, max 837.876us, min 282.653us - 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 118.703us, max 203.933us, min 84.924us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 670ns, max 1.264us, min 271ns - ExecTime: avg 32.659us, max 46.207us, min 17.118us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.512us, max 8.922us, min 5.524us - ProjectionTime: avg 9.427us, max 14.400us, min 5.212us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 18s942ms, max 18s949ms, min 18s936ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=137): - CloseTime: avg 572ns, max 1.131us, min 248ns - ExecTime: avg 32.850us, max 71.2us, min 18.747us - 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 29.665us, max 66.426us, min 15.709us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 4.499us, max 9.87us, min 1.590us - ExecTime: avg 25.116us, max 44.108us, min 17.798us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 20.45 KB, avg 1.70 KB, max 1.93 KB, min 1.38 KB - OpenTime: avg 19.70us, max 34.8us, min 11.397us - 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 18s942ms, max 18s949ms, min 18s936ms Fragment 101: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 19.14us, max 29.522us, min 8.667us - ExecTime: avg 375.983us, max 527.264us, min 296.304us - 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 76.864us, max 98.601us, min 60.836us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 1.11us, max 1.545us, min 351ns - ExecTime: avg 41.190us, max 54.567us, min 31.353us - 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 27.536us, max 36.737us, min 18.350us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 HASH_JOIN_OPERATOR (id=134): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 9.124us, max 41.640us, min 3.395us - ExecTime: avg 42.338us, max 71.924us, min 29.852us - 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.144us, max 38.781us, min 14.82us - ProbeRows: sum 0, avg 0, max 0, min 0 - ProjectionTime: avg 8.204us, max 11.207us, min 4.736us - 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=133): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 5.583us, max 15.941us, min 3.263us - ExecTime: avg 38.143us, max 53.572us, min 26.526us - 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.713us, max 17.545us, min 7.299us - ProbeRows: sum 0, avg 0, max 0, min 0 - ProjectionTime: avg 15.421us, max 26.273us, min 6.440us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 6.966us, max 10.942us, min 4.548us - ExecTime: avg 40.707us, max 49.926us, min 32.308us - 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.379us, max 17.232us, min 8.186us - ProbeRows: sum 0, avg 0, max 0, min 0 - ProjectionTime: avg 13.591us, max 22.492us, min 7.998us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s894ms, max 1s939ms, min 1s804ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 10.734us, max 27.844us, min 3.295us - ExecTime: avg 33.911us, max 47.855us, min 21.604us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 20.55us, max 30.413us, min 12.601us - 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 17s25ms, max 17s67ms, min 16s994ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=134): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 707.586us, max 967.684us, min 530.662us - 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 9.939us, max 14.263us, min 6.961us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 6.651us, max 12.373us, min 3.580us - ExecTime: avg 158.53us, max 249.455us, min 88.572us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 283.00 KB, avg 23.58 KB, max 48.00 KB, min 0.00 - OpenTime: avg 15.608us, max 25.83us, min 9.214us - 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 17s333ms, max 17s342ms, min 17s322ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=133): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 3.701ms, max 19.39ms, min 469.63us - 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 9.912us, max 14.992us, min 4.309us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: sum 48, avg 4, max 4, min 4 - CloseTime: avg 683ns, max 1.304us, min 347ns - ExecTime: avg 2.260ms, max 17.930ms, min 555.221us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.27us, max 11.381us, min 5.593us - 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 1s726ms, max 3s676ms, min 335.810ms Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=132): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 9.422ms, max 12.29ms, min 7.322ms - 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 9.34us, max 25.95us, min 4.227us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: sum 672, avg 56, max 66, min 42 - CloseTime: avg 10.686us, max 22.631us, min 4.724us - ExecTime: avg 643.940us, max 802.385us, min 501.524us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.69 MB, avg 144.00 KB, max 480.00 KB, min 0.00 - OpenTime: avg 16.549us, max 31.713us, min 9.750us - 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 18s913ms, max 18s919ms, min 18s898ms Pipeline : 4(instance_num=12): AGGREGATION_SINK_OPERATOR (id=115): - CloseTime: avg 4.683us, max 12.772us, min 1.891us - ExecTime: avg 9.904ms, max 60.259ms, min 4.697ms - 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 26.921us, max 47.579us, min 15.304us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: sum 85, avg 7, max 10, min 5 - CloseTime: avg 10.452us, max 17.710us, min 4.852us - ExecTime: avg 118.853us, max 201.776us, min 82.206us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.50 MB, avg 127.95 KB, max 505.50 KB, min 2.58 KB - OpenTime: avg 18.944us, max 36.331us, min 7.723us - 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 1s707ms, max 3s671ms, min 275.132ms Fragment 102: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 13.887us, max 34.449us, min 7.832us - ExecTime: avg 245.357us, max 324.649us, min 169.775us - 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 79.211us, max 137.355us, min 49.796us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 438ns, max 950ns, min 186ns - ExecTime: avg 6.897us, max 12.303us, min 3.789us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.579us, max 10.951us, min 2.998us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 4.47us, max 8.551us, min 2.19us - ExecTime: avg 27.988us, max 50.296us, min 18.492us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 22.145us, max 44.45us, min 13.791us - 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 16s995ms, max 16s996ms, min 16s995ms Fragment 103: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 23.436us, max 43.735us, min 15.633us - ExecTime: avg 243.109us, max 453.36us, min 152.94us - 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 71.961us, max 93.420us, min 60.176us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 850ns, max 1.90us, min 670ns - ExecTime: avg 6.827us, max 10.687us, min 4.802us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.796us, max 8.851us, min 3.97us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 0, avg 0, max 0, min 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 27.93us, max 47.853us, min 17.541us - ExecTime: avg 22.240ms, max 39.751ms, min 14.509ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.68 MB, avg 399.67 KB, max 456.00 KB, min 160.00 KB - ProbeKeyArena: sum 4.68 MB, avg 399.67 KB, max 456.00 KB, min 160.00 KB - OpenTime: avg 18.469us, max 40.923us, min 12.704us - ProbeRows: sum 5.727578M (5727578), avg 477.298K (477298), max 478.736K (478736), min 476.21K (476210) - ProjectionTime: avg 284.879us, max 379.222us, min 193.31us - RowsProduced: sum 0, avg 0, max 0, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s239ms, max 3s54ms, min 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: sum 2.097K (2097), avg 174, max 189, min 155 - CloseTime: avg 16.523us, max 33.970us, min 6.348us - ExecTime: avg 2.71ms, max 2.571ms, min 1.408ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 104.05 MB, avg 8.67 MB, max 19.58 MB, min 1.08 MB - OpenTime: avg 18.51us, max 24.592us, min 10.353us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 5.727578M (5727578), avg 477.298K (477298), max 478.736K (478736), min 476.21K (476210) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 8s806ms, max 13s799ms, min 5s188ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=127): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.391ms, max 4.123ms, min 451.853us - 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 37.509us, max 132.49us, min 13.120us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 6.498us, max 13.250us, min 3.845us - ExecTime: avg 27.279us, max 40.690us, min 16.291us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 13.66 KB, avg 1.14 KB, max 1.29 KB, min 945.00 B - OpenTime: avg 19.97us, max 33.444us, min 9.290us - 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 1s991ms, max 4s113ms, min 475.781ms Fragment 104: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - BlocksProduced: sum 1.407K (1407), avg 351, max 506, min 283 - CloseTime: avg 31.545us, max 58.573us, min 12.363us - ExecTime: avg 390.61ms, max 436.911ms, min 344.371ms - InputRows: sum 5.727578M (5727578), avg 1.431894M (1431894), max 2.086234M (2086234), min 1.13792M (1137920) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 217.95 MB, avg 54.49 MB, max 95.37 MB, min 38.18 MB - OpenTime: avg 55.928us, max 62.467us, min 45.360us - RowsProduced: sum 5.727578M (5727578), avg 1.431894M (1431894), max 2.086234M (2086234), min 1.13792M (1137920) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=125. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 1.41K (1410), avg 352, max 514, min 280 - CloseTime: avg 52.170us, max 59.7us, min 41.882us - ExecTime: avg 181.761ms, max 215.19ms, min 150.455ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 243.166us, max 380.467us, min 147.857us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 5.727578M (5727578), avg 1.431894M (1431894), max 2.086234M (2086234), min 1.13792M (1137920) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 179.766ms, max 212.98ms, min 148.700ms 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 214, avg 17, max 19, min 17 - CloseTime: avg 23.429us, max 42.938us, min 12.748us - ExecTime: avg 314.347us, max 478.955us, min 232.716us - 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.592us, max 140.241us, min 44.563us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 51.417us, max 75.796us, min 33.603us - ExecTime: avg 211.962ms, max 477.560ms, min 49.369ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.1ms, max 10.964ms, min 155.36us - ProjectionTime: avg 1.931us, max 2.434us, min 1.414us - RowsProduced: sum 0, avg 0, max 0, min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 209.861ms, max 476.341ms, min 49.125ms 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 512, avg 42, max 43, min 41 - CloseTime: avg 16.103us, max 24.992us, min 11.388us - ExecTime: avg 31.194ms, max 62.955ms, min 26.213ms - InputRows: sum 1.536379M (1536379), avg 128.031K (128031), max 128.782K (128782), min 127.346K (127346) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 53.41 MB, avg 4.45 MB, max 4.98 MB, min 4.12 MB - OpenTime: avg 62.134us, max 86.80us, min 50.682us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 10.851us, max 22.367us, min 6.80us - ExecTime: avg 80.924ms, max 94.696ms, min 67.18ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.592us, max 7.631us, min 3.283us - ProjectionTime: avg 4.760ms, max 5.277ms, min 4.183ms - RowsProduced: sum 1.536379M (1536379), avg 128.031K (128031), max 128.782K (128782), min 127.346K (127346) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: sum 4.058K (4058), avg 338, max 361, min 334 - CloseTime: avg 15.723us, max 22.200us, min 7.980us - ExecTime: avg 200.361ms, max 251.461ms, min 168.907ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.90 MB, avg 418.00 KB, max 480.00 KB, min 384.00 KB - ProbeKeyArena: sum 4.90 MB, avg 418.00 KB, max 480.00 KB, min 384.00 KB - OpenTime: avg 14.3us, max 19.102us, min 8.886us - ProbeRows: sum 16.655687M (16655687), avg 1.387973M (1387973), max 1.484334M (1484334), min 1.377716M (1377716) - ProjectionTime: avg 12.645ms, max 24.602ms, min 10.352ms - RowsProduced: sum 1.570003M (1570003), avg 130.833K (130833), max 131.739K (131739), min 130.102K (130102) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 9s747ms, max 11s387ms, min 1s956ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: sum 5.367K (5367), avg 447, max 582, min 416 - CloseTime: avg 9.147us, max 18.426us, min 4.555us - ExecTime: avg 5.523ms, max 12.947ms, min 4.266ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 212.49 MB, avg 17.71 MB, max 19.59 MB, min 13.59 MB - OpenTime: avg 16.536us, max 22.543us, min 12.4us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 16.655687M (16655687), avg 1.387973M (1387973), max 1.484334M (1484334), min 1.377716M (1377716) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 7s789ms, max 11s104ms, min 7s94ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=120): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 27.698ms, max 46.683ms, min 13.871ms - 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 19.954us, max 35.842us, min 13.688us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: sum 576, avg 48, max 48, min 48 - CloseTime: avg 12.807us, max 23.52us, min 9.186us - ExecTime: avg 8.421ms, max 95.934ms, min 411.350us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.78 MB, avg 237.33 KB, max 352.00 KB, min 176.00 KB - OpenTime: avg 18.593us, max 42.382us, min 9.802us - 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 10s680ms, max 12s311ms, min 2s888ms Fragment 107: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - BlocksProduced: sum 4.06K (4060), avg 338, max 818, min 122 - CloseTime: avg 21.755us, max 32.408us, min 12.708us - ExecTime: avg 249.644ms, max 534.561ms, min 127.211ms - InputRows: sum 16.655687M (16655687), avg 1.387973M (1387973), max 3.389621M (3389621), min 465.532K (465532) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 433.24 MB, avg 36.10 MB, max 61.19 MB, min 7.13 MB - OpenTime: avg 64.585us, max 86.895us, min 50.43us - RowsProduced: sum 16.655687M (16655687), avg 1.387973M (1387973), max 3.389621M (3389621), min 465.532K (465532) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=118. table name = DIM_CUSTOMER): - BlocksProduced: sum 4.158K (4158), avg 346, max 836, min 120 - CloseTime: avg 76.27us, max 141.203us, min 22.828us - ExecTime: avg 170.590ms, max 267.484ms, min 122.261ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.82ms, max 8.197ms, min 132.339us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 16.655687M (16655687), avg 1.387973M (1387973), max 3.389621M (3389621), min 465.532K (465532) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 167.135ms, max 261.773ms, min 118.177ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 233.32 MB, avg 19.44 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 484, avg 80, max 202, min 22 - CloseTime: avg 22.61us, max 30.609us, min 14.475us - ExecTime: avg 39.281ms, max 137.64ms, min 223.617us - InputRows: sum 1.570003M (1570003), avg 261.667K (261667), max 785.04K (785040), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 33.03 MB, avg 5.51 MB, max 26.11 MB, min 0.00 - OpenTime: avg 61.816us, max 81.292us, min 47.444us - 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): - BlocksProduced: sum 456, avg 76, max 228, min 0 - CloseTime: avg 117.70us, max 176.851us, min 49.19us - ExecTime: avg 304.835ms, max 370.349ms, min 193.734ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.836ms, max 12.185ms, min 217.589us - ProjectionTime: avg 1.905ms, max 6.146ms, min 3.732us - 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 45.988808M (45988808), avg 7.664801M (7664801), max 18.456922M (18456922), min 2.121624M (2121624) - filter id = -1 input: sum 95.896078M (95896078), avg 15.982679M (15982679), max 37.668144M (37668144), min 3.691704M (3691704) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 297.444ms, max 357.897ms, min 193.332ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 14.06 MB, avg 2.34 MB, max 6.88 MB, min 60.00 KB Fragment 109: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - BlocksProduced: sum 432, avg 18, max 19, min 17 - CloseTime: avg 18.620us, max 48.629us, min 9.534us - ExecTime: avg 2.611ms, max 33.617ms, min 212.239us - InputRows: sum 152.419K (152419), avg 6.35K (6350), max 30.907K (30907), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.84 MB, avg 420.00 KB, max 1.97 MB, min 0.00 - OpenTime: avg 75.531us, max 150.760us, min 49.87us - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), 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): - BlocksProduced: sum 40, avg 1, max 8, min 0 - CloseTime: avg 101.898us, max 743.384us, min 604ns - ExecTime: avg 7.215ms, max 92.729ms, min 34.995us - MemoryUsage: sum , avg , max , min - HashTable: sum 7.50 MB, avg 320.00 KB, max 1.50 MB, min 0.00 - PeakMemoryUsage: sum 22.17 MB, avg 945.83 KB, max 4.43 MB, min 0.00 - SerializeKeyArena: sum 14.67 MB, avg 625.83 KB, max 2.93 MB, min 0.00 - OpenTime: avg 31.70us, max 72.758us, min 16.816us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), max 30.907K (30907), min 0 OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - BlocksProduced: sum 95, avg 3, max 19, min 0 - CloseTime: avg 85.807us, max 280.258us, min 29.425us - ExecTime: avg 125.497ms, max 242.39ms, min 16.519ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.60ms, max 21.915ms, min 142.430us - ProjectionTime: avg 967.937us, max 6.446ms, min 1.720us - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 120.271ms, max 217.916ms, min 16.269ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.04 MB, avg 513.67 KB, max 2.16 MB, min 80.00 KB Fragment 110: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - BlocksProduced: sum 214, avg 17, max 19, min 17 - CloseTime: avg 22.399us, max 36.359us, min 16.314us - ExecTime: avg 2.776ms, max 3.857ms, min 1.888ms - 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 72.190us, max 111.359us, min 54.575us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 10.612us, max 19.911us, min 6.27us - ExecTime: avg 3.661ms, max 5.247ms, min 2.506ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.866us, max 6.954us, min 3.571us - ProjectionTime: avg 429.109us, max 647.693us, min 282.791us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.454K (4454), min 4.317K (4317) AGGREGATION_OPERATOR (id=109): - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 1.487us, max 3.794us, min 816ns - ExecTime: avg 37.247ms, max 49.585ms, min 26.319ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.322us, max 24.157us, min 5.687us - ProjectionTime: avg 1.400ms, max 1.950ms, min 950.968us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.454K (4454), min 4.317K (4317) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 13s35ms, max 17s278ms, min 10s23ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=109): - CloseTime: avg 1.970us, max 5.867us, min 1.117us - ExecTime: avg 103.156ms, max 132.223ms, min 89.108ms - 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 22.321us, max 35.886us, min 14.592us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: sum 2.008K (2008), avg 167, max 169, min 166 - CloseTime: avg 16.779us, max 34.148us, min 9.875us - ExecTime: avg 148.371ms, max 170.808ms, min 127.213ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.93 MB, avg 420.33 KB, max 456.00 KB, min 160.00 KB - ProbeKeyArena: sum 4.93 MB, avg 420.33 KB, max 456.00 KB, min 160.00 KB - OpenTime: avg 25.672us, max 63.70us, min 12.875us - ProbeRows: sum 8.342327M (8342327), avg 695.193K (695193), max 696.522K (696522), min 694.145K (694145) - ProjectionTime: avg 3.387ms, max 3.798ms, min 3.142ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 3s941ms, max 8s187ms, min 897.278ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: sum 3.078K (3078), avg 256, max 293, min 207 - CloseTime: avg 9.816us, max 22.586us, min 4.404us - ExecTime: avg 2.867ms, max 4.352ms, min 2.119ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 190.66 MB, avg 15.89 MB, max 19.78 MB, min 13.02 MB - OpenTime: avg 18.989us, max 24.293us, min 14.728us - 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 8s726ms, max 8s828ms, min 8s628ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=108): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 44.123ms, max 63.79ms, min 30.899ms - 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 24.720us, max 56.97us, min 14.598us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: sum 808, avg 67, max 74, min 60 - CloseTime: avg 10.659us, max 16.619us, min 6.995us - ExecTime: avg 2.633ms, max 22.62ms, min 661.0us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.16 MB, avg 440.00 KB, max 1.03 MB, min 0.00 - OpenTime: avg 17.77us, max 45.578us, min 8.591us - 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 4s969ms, max 9s306ms, min 1s787ms Fragment 111: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - BlocksProduced: sum 2.025K (2025), avg 506, max 509, min 504 - CloseTime: avg 23.240us, max 31.898us, min 16.368us - ExecTime: avg 438.156ms, max 481.688ms, min 373.86ms - InputRows: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 305.01 MB, avg 76.25 MB, max 95.94 MB, min 69.41 MB - OpenTime: avg 62.741us, max 69.641us, min 55.942us - 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): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 39.749us, max 50.684us, min 30.110us - ExecTime: avg 238.418ms, max 254.736ms, min 225.372ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 186.673us, max 238.668us, min 128.685us - 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 233.172ms, max 252.684ms, min 223.269ms 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 624, avg 52, max 55, min 43 - CloseTime: avg 17.939us, max 36.432us, min 12.155us - ExecTime: avg 56.340ms, max 117.828ms, min 31.494ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.025K (185025), min 139.684K (139684) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 151.75 MB, avg 12.65 MB, max 14.87 MB, min 10.00 MB - OpenTime: avg 71.321us, max 92.246us, min 53.110us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.025K (185025), min 139.684K (139684) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: sum 553, avg 46, max 51, min 41 - CloseTime: avg 31.494us, max 71.183us, min 12.483us - ExecTime: avg 16.395ms, max 44.875ms, min 12.480ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.34 MB, avg 114.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.34 MB, avg 114.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 19.379us, max 66.298us, min 11.61us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.025K (185025), min 139.684K (139684) - ProjectionTime: avg 1.759ms, max 2.131ms, min 1.473ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.025K (185025), min 139.684K (139684) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: sum 553, avg 46, max 51, min 41 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 279.96us, max 415.272us, min 225.914us - GetBlockFailedTime: sum 111, avg 9, max 23, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 85.52 MB, avg 7.13 MB, max 11.50 MB, min 1.28 MB - OpenTime: avg 861ns, max 2.675us, min 559ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.025K (185025), min 139.684K (139684) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s218ms, max 1s932ms, min 177.182ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 377.367us, max 440.716us, min 308.581us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 148.662K (148662) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.381us, max 3.244us, min 1.61us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: sum 553, avg 46, max 52, min 41 - CloseTime: avg 17.242us, max 35.203us, min 10.649us - ExecTime: avg 22.705ms, max 32.945ms, min 14.109ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.20 MB, avg 102.33 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.20 MB, avg 102.33 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 10.688us, max 15.257us, min 8.10us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 148.662K (148662) - ProjectionTime: avg 3.282ms, max 4.131ms, min 2.565ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 148.662K (148662) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s11ms, max 1s793ms, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 553, avg 46, max 52, min 41 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 219.408us, max 259.489us, min 188.809us - GetBlockFailedTime: sum 125, avg 10, max 24, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 103.98 MB, avg 8.66 MB, max 14.86 MB, min 1.45 MB - OpenTime: avg 1.5us, max 5.53us, min 464ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 148.662K (148662) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 234.859ms, max 293.458ms, min 134.832ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 305.474us, max 721.760us, min 25.312us - 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.360us, max 3.490us, min 896ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=102. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 553, avg 46, max 113, min 0 - CloseTime: avg 32.701us, max 44.405us, min 19.256us - ExecTime: avg 289.41ms, max 474.117ms, min 80.559ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.68ms, max 20.114ms, min 311.493us - 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 - filter id = -1 filtered: sum 20.976568M (20976568), avg 1.90696M (1906960), max 2.991358M (2991358), min 389.738K (389738) - filter id = -1 input: sum 24.902648M (24902648), avg 2.263877M (2263877), max 3.287952M (3287952), min 454.022K (454022) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 286.626ms, max 473.289ms, min 80.97ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.61 MB, avg 3.38 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 2.201ms, max 25.865ms, min 30.822us - InputRows: sum 160, avg 13, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 206.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 140.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 345.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 22.696us, max 60.506us, min 12.760us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 20.696ms, max 40.847ms, min 0ns EXCHANGE_OPERATOR (id=99): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 5.214us, max 9.812us, min 3.233us - ExecTime: avg 28.122us, max 59.803us, min 20.613us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 181.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 19.943us, max 28.427us, min 14.167us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 13, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1.210ms, max 13.806ms, min 0ns Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=103): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 425.426us, max 3.225ms, min 9.910us - InputRows: sum 87.194K (87194), avg 7.266K (7266), max 43.597K (43597), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.07 MB, avg 91.62 KB, max 549.72 KB, min 0.00 - BuildKeyArena: sum 2.17 MB, avg 185.33 KB, max 1.09 MB, min 0.00 - HashTable: sum 852.62 KB, avg 71.05 KB, max 426.31 KB, min 0.00 - PeakMemoryUsage: sum 4.07 MB, avg 347.34 KB, max 2.04 MB, min 0.00 - OpenTime: avg 10.18us, max 34.284us, min 4.939us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 973.538ms, max 1s930ms, min 0ns EXCHANGE_OPERATOR (id=101): - BlocksProduced: sum 33, avg 2, max 22, min 0 - CloseTime: avg 7.608us, max 19.223us, min 2.680us - ExecTime: avg 43.703us, max 199.254us, min 15.109us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 836.00 KB, avg 69.67 KB, max 836.00 KB, min 0.00 - OpenTime: avg 22.686us, max 92.298us, min 8.912us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 87.194K (87194), avg 7.266K (7266), max 43.597K (43597), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 158.959ms, max 1s887ms, min 0ns Fragment 113: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=101,dst_id=101): - BlocksProduced: sum 23, avg 23, max 23, min 23 - CloseTime: avg 15.709us, max 15.709us, min 15.709us - ExecTime: avg 1.691ms, max 1.691ms, min 1.691ms - InputRows: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 100.00 KB, avg 100.00 KB, max 100.00 KB, min 100.00 KB - OpenTime: avg 49.182us, max 49.182us, min 49.182us - 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): - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 20.630us, max 20.630us, min 20.630us - ExecTime: avg 19.391ms, max 19.391ms, min 19.391ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 148.50us, max 148.50us, min 148.50us - 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 19.157ms, max 19.157ms, min 19.157ms 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 3, avg 3, max 3, min 3 - CloseTime: avg 10.254us, max 10.254us, min 10.254us - ExecTime: avg 171.274us, max 171.274us, min 171.274us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 77.820us, max 77.820us, min 77.820us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 29.203us, max 29.203us, min 29.203us - ExecTime: avg 3.412ms, max 3.412ms, min 3.412ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 190.981us, max 190.981us, min 190.981us - ProjectionTime: avg 4.552us, max 4.552us, min 4.552us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 3.164ms, max 3.164ms, min 3.164ms 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=24): DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 15.606us, max 46.267us, min 8.466us - ExecTime: avg 722.243us, max 1.342ms, min 404.992us - InputRows: sum 2.315K (2315), avg 96, max 112, min 77 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 325.03 KB, avg 13.54 KB, max 14.84 KB, min 11.41 KB - OpenTime: avg 119.808us, max 162.882us, min 83.326us - RowsProduced: sum 2.315K (2315), avg 96, max 112, min 77 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=96): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 814ns, max 1.800us, min 377ns - ExecTime: avg 93.579us, max 134.112us, min 45.686us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 12.958us, max 71.775us, min 5.350us - ProjectionTime: avg 33.54us, max 55.50us, min 17.835us - RowsProduced: sum 2.315K (2315), avg 96, max 112, min 77 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 19s408ms, max 19s409ms, min 19s405ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=96): - CloseTime: avg 960ns, max 2.436us, min 439ns - ExecTime: avg 710.222us, max 2.530ms, min 423.283us - InputRows: sum 12.758K (12758), avg 531, max 794, min 441 - MemoryUsage: sum , avg , max , min - HashTable: sum 71.44 KB, avg 2.98 KB, max 2.98 KB, min 2.98 KB - PeakMemoryUsage: sum 30.44 MB, avg 1.27 MB, max 1.27 MB, min 1.27 MB - SerializeKeyArena: sum 30.38 MB, avg 1.27 MB, max 1.27 MB, min 1.27 MB - OpenTime: avg 33.730us, max 96.121us, min 17.993us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 39.619us, max 818.246us, min 2.102us - ExecTime: avg 226.951us, max 1.164ms, min 129.18us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 259.00 KB, avg 10.79 KB, max 55.81 KB, min 5.38 KB - OpenTime: avg 23.559us, max 50.883us, min 12.777us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 12.758K (12758), avg 531, max 794, min 441 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s404ms, max 19s406ms, min 19s403ms Fragment 116: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 14.956us, max 26.313us, min 9.636us - ExecTime: avg 1.220ms, max 3.785ms, min 638.140us - InputRows: sum 12.758K (12758), avg 531, max 577, min 474 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.23 MB, avg 95.31 KB, max 109.25 KB, min 85.31 KB - OpenTime: avg 111.330us, max 141.421us, min 94.297us - RowsProduced: sum 12.758K (12758), avg 531, max 577, min 474 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns AGGREGATION_OPERATOR (id=94): - BlocksProduced: sum 24, avg 1, max 1, min 1 - CloseTime: avg 2.272us, max 19.760us, min 501ns - ExecTime: avg 239.40us, max 405.963us, min 142.835us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.662us, max 25.210us, min 5.133us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 12.758K (12758), avg 531, max 577, min 474 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 19s400ms, max 19s405ms, min 19s393ms Pipeline : 1(instance_num=24): AGGREGATION_SINK_OPERATOR (id=94): - CloseTime: avg 1.10us, max 1.697us, min 619ns - ExecTime: avg 1.100ms, max 2.11ms, min 760.422us - InputRows: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - MemoryUsage: sum , avg , max , min - HashTable: sum 575.44 KB, avg 23.98 KB, max 23.98 KB, min 23.98 KB - PeakMemoryUsage: sum 31.50 MB, avg 1.31 MB, max 1.31 MB, min 1.31 MB - SerializeKeyArena: sum 30.94 MB, avg 1.29 MB, max 1.29 MB, min 1.29 MB - OpenTime: avg 32.157us, max 56.557us, min 16.146us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: sum 72, avg 3, max 3, min 3 - CloseTime: avg 14.385us, max 25.638us, min 7.814us - ExecTime: avg 950.114us, max 1.576ms, min 588.702us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.16 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - ProbeKeyArena: sum 2.16 MB, avg 92.00 KB, max 92.00 KB, min 92.00 KB - OpenTime: avg 18.348us, max 24.69us, min 11.882us - ProbeRows: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - ProjectionTime: avg 238.994us, max 439.491us, min 137.254us - RowsProduced: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 15s391ms, max 17s892ms, min 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: sum 48, avg 2, max 2, min 2 - CloseTime: avg 835ns, max 1.645us, min 485ns - ExecTime: avg 716.584us, max 2.685ms, min 428.837us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 10.993us, max 48.46us, min 4.937us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s5ms, max 6s502ms, min 1s507ms Pipeline : 2(instance_num=24): HASH_JOIN_SINK_OPERATOR (id=93): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 445.487us, max 683.915us, min 317.967us - InputRows: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.59 MB, avg 153.15 KB, max 189.28 KB, min 128.64 KB - BuildKeyArena: sum 1.16 MB, avg 49.50 KB, max 60.00 KB, min 44.00 KB - HashTable: sum 571.85 KB, avg 23.83 KB, max 28.14 KB, min 16.26 KB - PeakMemoryUsage: sum 5.21 MB, avg 222.47 KB, max 273.42 KB, min 184.89 KB - OpenTime: avg 30.31us, max 113.495us, min 15.652us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: sum 432, avg 18, max 22, min 14 - CloseTime: avg 5.157us, max 9.210us, min 3.563us - ExecTime: avg 118.873us, max 174.326us, min 88.938us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.52 MB, avg 64.89 KB, max 140.49 KB, min 18.78 KB - OpenTime: avg 21.937us, max 50.626us, min 12.766us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 2.01K (2010), max 2.485K (2485), min 1.689K (1689) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19s394ms, max 19s401ms, min 19s387ms Pipeline : 3(instance_num=24): AGGREGATION_SINK_OPERATOR (id=92): - CloseTime: avg 6.78us, max 19.230us, min 1.872us - ExecTime: avg 3.23ms, max 15.726ms, min 1.722ms - InputRows: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - MemoryUsage: sum , avg , max , min - HashTable: sum 4.50 MB, avg 191.98 KB, max 191.98 KB, min 191.98 KB - PeakMemoryUsage: sum 19.78 MB, avg 843.98 KB, max 843.98 KB, min 843.98 KB - SerializeKeyArena: sum 15.28 MB, avg 652.00 KB, max 652.00 KB, min 652.00 KB - OpenTime: avg 20.628us, max 43.403us, min 11.155us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: sum 180, avg 7, max 10, min 5 - CloseTime: avg 25.885us, max 427.364us, min 2.740us - ExecTime: avg 115.827us, max 523.56us, min 58.886us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.59 MB, avg 110.32 KB, max 337.50 KB, min 2.58 KB - OpenTime: avg 15.423us, max 29.508us, min 8.309us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), max 6.466K (6466), min 6.216K (6216) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s963ms, max 6s500ms, min 1s395ms Fragment 117: Pipeline : 0(instance_num=24): DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - BlocksProduced: sum 864, avg 36, max 36, min 36 - CloseTime: avg 18.571us, max 38.845us, min 7.179us - ExecTime: avg 2.797ms, max 34.432ms, min 251.309us - InputRows: sum 152.419K (152419), avg 6.35K (6350), max 30.907K (30907), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.84 MB, avg 420.00 KB, max 1.97 MB, min 0.00 - OpenTime: avg 118.161us, max 152.999us, min 91.799us - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), 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): - BlocksProduced: sum 40, avg 1, max 8, min 0 - CloseTime: avg 94.844us, max 557.140us, min 339ns - ExecTime: avg 7.30ms, max 101.761ms, min 29.635us - MemoryUsage: sum , avg , max , min - HashTable: sum 7.50 MB, avg 320.00 KB, max 1.50 MB, min 0.00 - PeakMemoryUsage: sum 22.17 MB, avg 945.83 KB, max 4.43 MB, min 0.00 - SerializeKeyArena: sum 14.67 MB, avg 625.83 KB, max 2.93 MB, min 0.00 - OpenTime: avg 35.743us, max 135.625us, min 17.944us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 152.419K (152419), avg 6.35K (6350), max 30.907K (30907), min 0 OLAP_SCAN_OPERATOR (id=89. table name = ODS_VIPSHOP_SALE): - BlocksProduced: sum 95, avg 3, max 19, min 0 - CloseTime: avg 79.33us, max 196.882us, min 24.880us - ExecTime: avg 113.628ms, max 159.378ms, min 84.576ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 494.622us, max 7.146ms, min 116.607us - ProjectionTime: avg 847.473us, max 4.869ms, min 1.404us - RowsProduced: sum 338.667K (338667), avg 14.111K (14111), max 68.654K (68654), min 0 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 112.104ms, max 159.159ms, min 84.256ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 12.74 MB, avg 543.67 KB, max 2.16 MB, min 80.00 KB Fragment 118: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - BlocksProduced: sum 432, avg 36, max 36, min 36 - CloseTime: avg 13.617us, max 33.510us, min 8.956us - ExecTime: avg 2.559ms, max 5.143ms, min 1.711ms - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 10.54K (10540), min 2.893K (2893) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.39 MB, avg 459.59 KB, max 1.17 MB, min 339.75 KB - OpenTime: avg 117.217us, max 197.837us, min 89.613us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 10.54K (10540), min 2.893K (2893) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=87): - BlocksProduced: sum 144, avg 12, max 20, min 10 - CloseTime: avg 20.399us, max 47.734us, min 11.650us - ExecTime: avg 1.682ms, max 4.20ms, min 909.463us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 744.00 KB, avg 62.00 KB, max 144.00 KB, min 24.00 KB - ProbeKeyArena: sum 744.00 KB, avg 62.00 KB, max 144.00 KB, min 24.00 KB - OpenTime: avg 13.964us, max 15.746us, min 10.598us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 10.54K (10540), min 2.893K (2893) - ProjectionTime: avg 122.255us, max 288.656us, min 57.691us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 10.54K (10540), min 2.893K (2893) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: sum 144, avg 12, max 20, min 10 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 49.837us, max 100.794us, min 27.712us - GetBlockFailedTime: sum 43, avg 3, max 11, min 2 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.95 MB, avg 251.50 KB, max 315.00 KB, min 70.00 KB - OpenTime: avg 713ns, max 850ns, min 515ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 10.54K (10540), min 2.893K (2893) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 19s380ms, max 19s384ms, min 19s377ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 104.25us, max 243.18us, min 45.654us - 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.575us, max 3.285us, min 1.28us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 10.124us, max 22.752us, min 257ns - ExecTime: avg 2.993ms, max 3.675ms, min 2.498ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 7.505us, max 21.330us, min 4.303us - 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): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 6.31us, max 8.577us, min 4.338us - ExecTime: avg 157.175us, max 251.815us, min 117.890us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 142.00 KB, avg 11.83 KB, max 35.00 KB, min 0.00 - OpenTime: avg 24.513us, max 90.528us, min 13.220us - 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 19s376ms, max 19s378ms, min 19s373ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=87): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 1.809ms, max 11.828ms, min 10.490us - InputRows: sum 105.174K (105174), avg 8.764K (8764), max 52.587K (52587), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 7.42 MB, avg 633.35 KB, max 3.71 MB, min 0.00 - BuildKeyArena: sum 6.33 MB, avg 540.00 KB, max 3.16 MB, min 0.00 - HashTable: sum 922.85 KB, avg 76.90 KB, max 461.43 KB, min 0.00 - PeakMemoryUsage: sum 14.64 MB, avg 1.22 MB, max 7.32 MB, min 0.00 - OpenTime: avg 10.228us, max 14.617us, min 5.906us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 7s790ms, max 9s367ms, min 0ns EXCHANGE_OPERATOR (id=71): - BlocksProduced: sum 72, avg 6, max 38, min 0 - CloseTime: avg 7.766us, max 18.964us, min 1.981us - ExecTime: avg 92.132us, max 448.724us, min 11.535us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.12 MB, avg 181.31 KB, max 2.12 MB, min 0.00 - OpenTime: avg 21.97us, max 85.528us, min 8.202us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 105.174K (105174), avg 8.764K (8764), max 52.587K (52587), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s556ms, max 9s351ms, min 0ns Fragment 119: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 15.466us, max 23.857us, min 10.193us - ExecTime: avg 10.193ms, max 12.156ms, min 9.221ms - 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 79.942us, max 121.431us, min 56.306us - 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): - BlocksProduced: sum 0, avg 0, max 0, min 0 - CloseTime: avg 6.741us, max 11.72us, min 3.424us - ExecTime: avg 6.888ms, max 11.64ms, min 5.32ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 4.821us, max 7.169us, min 3.537us - 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): - BlocksProduced: sum 8.769K (8769), avg 730, max 737, min 722 - CloseTime: avg 13.344us, max 27.804us, min 8.160us - ExecTime: avg 92.904ms, max 109.974ms, min 75.31ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 828.89 KB, avg 69.07 KB, max 69.28 KB, min 68.88 KB - ProbeKeyArena: sum 828.89 KB, avg 69.07 KB, max 69.28 KB, min 68.88 KB - OpenTime: avg 15.746us, max 25.795us, min 11.955us - ProbeRows: sum 39.547397M (39547397), avg 3.295616M (3295616), max 3.296777M (3296777), min 3.294982M (3294982) - ProjectionTime: avg 10.321ms, max 36.465ms, min 5.636ms - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 9.221K (9221), min 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 15s848ms, max 15s890ms, min 15s698ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: sum 11.7K (11700), avg 975, max 1.489K (1489), min 869 - CloseTime: avg 8.748us, max 18.394us, min 4.761us - ExecTime: avg 14.1ms, max 28.479ms, min 5.5ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 202.02 MB, avg 16.84 MB, max 19.58 MB, min 4.65 MB - OpenTime: avg 26.412us, max 88.745us, min 9.698us - 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 3s170ms, max 3s231ms, min 2s992ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=83): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 613.936us, max 1.146ms, min 416.879us - 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 25.868us, max 53.277us, min 15.742us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: sum 224, avg 18, max 19, min 17 - CloseTime: avg 5.788us, max 8.720us, min 3.500us - ExecTime: avg 153.244us, max 225.899us, min 111.325us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 66.00 KB, avg 5.50 KB, max 33.00 KB, min 0.00 - OpenTime: avg 18.431us, max 39.803us, min 8.128us - 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 17s17ms, max 17s21ms, min 17s14ms Fragment 120: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - BlocksProduced: sum 9.49K (9490), avg 790, max 1.188K (1188), min 218 - CloseTime: avg 18.175us, max 26.790us, min 12.857us - ExecTime: avg 165.804ms, max 289.378ms, min 32.374ms - InputRows: sum 39.547397M (39547397), avg 3.295616M (3295616), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 390.12 MB, avg 32.51 MB, max 54.64 MB, min 2.40 MB - OpenTime: avg 66.814us, max 92.904us, min 53.582us - 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=81. table name = DIM_CUSTOMER): - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 54.366us, max 84.475us, min 26.468us - ExecTime: avg 111.299ms, max 176.277ms, min 90.727ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 170.635us, max 336.982us, min 111.114us - 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 107.874ms, max 175.270ms, min 86.287ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 217.05 MB, avg 18.09 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 224, avg 18, max 22, min 14 - CloseTime: avg 17.210us, max 28.807us, min 11.281us - ExecTime: avg 10.401ms, max 26.3ms, min 5.345ms - 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 73.293us, max 130.97us, min 47.596us - 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): - BlocksProduced: sum 2.002K (2002), avg 166, max 169, min 165 - CloseTime: avg 21.614us, max 34.419us, min 12.342us - ExecTime: avg 56.863ms, max 61.848ms, min 44.392ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.06 MB, avg 346.33 KB, max 444.00 KB, min 160.00 KB - ProbeKeyArena: sum 4.06 MB, avg 346.33 KB, max 444.00 KB, min 160.00 KB - OpenTime: avg 15.784us, max 31.384us, min 8.846us - ProbeRows: sum 8.342327M (8342327), avg 695.193K (695193), max 696.522K (696522), min 694.145K (694145) - ProjectionTime: avg 1.226ms, max 1.503ms, min 862.35us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 4.133K (4133), min 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 1s100ms, max 2s677ms, min 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: sum 3.076K (3076), avg 256, max 294, min 207 - CloseTime: avg 8.514us, max 13.603us, min 5.97us - ExecTime: avg 2.888ms, max 3.422ms, min 1.948ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 102.43 MB, avg 8.54 MB, max 19.55 MB, min 736.00 KB - OpenTime: avg 25.867us, max 129.61us, min 11.140us - 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 9s695ms, max 14s228ms, min 6s458ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=79): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 2.66ms, max 13.879ms, min 586.628us - 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 18.671us, max 26.975us, min 11.698us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: sum 197, avg 16, max 17, min 16 - CloseTime: avg 6.777us, max 11.140us, min 2.752us - ExecTime: avg 106.768us, max 121.534us, min 91.129us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 456.00 KB, avg 38.00 KB, max 142.50 KB, min 0.00 - OpenTime: avg 16.788us, max 33.576us, min 8.140us - 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 1s794ms, max 3s819ms, min 349.55ms Fragment 122: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - BlocksProduced: sum 2.025K (2025), avg 506, max 509, min 504 - CloseTime: avg 21.245us, max 31.660us, min 15.840us - ExecTime: avg 376.377ms, max 419.887ms, min 353.633ms - InputRows: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 304.61 MB, avg 76.15 MB, max 96.00 MB, min 68.69 MB - OpenTime: avg 62.538us, max 69.501us, min 53.837us - 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=77. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 42.827us, max 56.376us, min 27.149us - ExecTime: avg 230.616ms, max 268.316ms, min 196.821ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.84ms, max 3.816ms, min 131.911us - 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 227.428ms, max 266.85ms, min 194.180ms 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 214, avg 17, max 19, min 17 - CloseTime: avg 14.867us, max 27.30us, min 7.815us - ExecTime: avg 3.203ms, max 23.932ms, min 142.639us - InputRows: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.19 MB, avg 357.58 KB, max 684.00 KB, min 0.00 - OpenTime: avg 61.351us, max 89.634us, min 49.954us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: sum 13, avg 1, max 2, min 0 - CloseTime: avg 22.197us, max 59.845us, min 8.303us - ExecTime: avg 626.115us, max 983.797us, min 40.347us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 680.00 KB, avg 56.67 KB, max 64.00 KB, min 0.00 - ProbeKeyArena: sum 680.00 KB, avg 56.67 KB, max 64.00 KB, min 0.00 - OpenTime: avg 19.21us, max 53.888us, min 9.733us - ProbeRows: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - ProjectionTime: avg 131.837us, max 303.632us, min 7.195us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), 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.299us, max 42.540us, min 1.331us - GetBlockFailedTime: sum 30, avg 2, max 6, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.31 MB, avg 282.67 KB, max 520.00 KB, min 0.00 - OpenTime: avg 1.218us, max 4.284us, min 641ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 7.79K (7790), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 276.708ms, max 355.869ms, min 167.348ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 31.592us, max 136.801us, min 5.332us - 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.930us, max 3.656us, min 1.6us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=74. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 13, avg 1, max 7, min 0 - CloseTime: avg 42.856us, max 69.940us, min 19.37us - ExecTime: avg 174.992ms, max 307.765ms, min 41.866ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 469.749us, max 682.705us, min 339.630us - ProjectionTime: avg 63.91us, max 418.463us, min 1.468us - RowsProduced: sum 48.258K (48258), avg 4.021K (4021), max 25.985K (25985), min 0 - RuntimeFilterInfo: sum , avg , max , min - filter id = -1 filtered: sum 8.18166M (8181660), avg 743.787K (743787), max 1.157826M (1157826), min 191.49K (191490) - filter id = -1 input: sum 9.518478M (9518478), avg 865.316K (865316), max 1.349576M (1349576), min 191.5K (191500) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 174.373ms, max 307.229ms, min 41.370ms 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 2.706ms, max 31.951ms, min 27.463us - InputRows: sum 160, avg 13, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 206.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 140.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 345.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 23.682us, max 53.322us, min 11.206us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 25.908ms, max 46.998ms, min 0ns EXCHANGE_OPERATOR (id=73): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 104.366us, max 1.187ms, min 2.685us - ExecTime: avg 127.924us, max 1.201ms, min 21.232us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 181.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 21.785us, max 41.994us, min 12.710us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 13, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1.804ms, max 14.735ms, min 0ns Fragment 124: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=73,dst_id=73): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 14.689us, max 14.689us, min 14.689us - ExecTime: avg 167.180us, max 167.180us, min 167.180us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 43.920us, max 43.920us, min 43.920us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 53.499us, max 53.499us, min 53.499us - ExecTime: avg 7.614ms, max 7.614ms, min 7.614ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 236.403us, max 236.403us, min 236.403us - ProjectionTime: avg 4.711us, max 4.711us, min 4.711us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 7.297ms, max 7.297ms, min 7.297ms 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 60, avg 5, max 5, min 5 - CloseTime: avg 20.396us, max 37.663us, min 13.463us - ExecTime: avg 1.783ms, max 2.497ms, min 1.143ms - InputRows: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.88 MB, avg 501.33 KB, max 552.00 KB, min 328.00 KB - OpenTime: avg 47.139us, max 104.543us, min 29.723us - 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): - BlocksProduced: sum 492, avg 41, max 41, min 41 - CloseTime: avg 1.174us, max 1.563us, min 800ns - ExecTime: avg 31.235ms, max 44.220ms, min 21.888ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.347us, max 25.208us, min 5.753us - ProjectionTime: avg 1.314ms, max 1.944ms, min 899.864us - RowsProduced: sum 52.587K (52587), avg 4.382K (4382), max 4.533K (4533), min 4.236K (4236) - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 4s836ms, max 9s292ms, min 1s652ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=70): - CloseTime: avg 9.771us, max 21.923us, min 3.89us - ExecTime: avg 105.225ms, max 171.9ms, min 82.987ms - 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 24.345us, max 42.771us, min 18.394us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: sum 814, avg 67, max 75, min 62 - CloseTime: avg 8.601us, max 16.692us, min 4.28us - ExecTime: avg 1.33ms, max 1.286ms, min 804.794us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.03 MB, avg 344.00 KB, max 1024.00 KB, min 0.00 - OpenTime: avg 19.407us, max 23.425us, min 15.166us - 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 4s620ms, max 9s198ms, min 1s263ms Fragment 126: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - BlocksProduced: sum 626, avg 52, max 55, min 43 - CloseTime: avg 19.162us, max 41.656us, min 11.183us - ExecTime: avg 53.224ms, max 87.346ms, min 40.116ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 184.739K (184739), min 142.782K (142782) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 149.33 MB, avg 12.44 MB, max 14.66 MB, min 9.94 MB - OpenTime: avg 83.597us, max 124.550us, min 64.724us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 184.739K (184739), min 142.782K (142782) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: sum 527, avg 43, max 50, min 39 - CloseTime: avg 638.438us, max 965.439us, min 480.500us - ExecTime: avg 58.182ms, max 86.252ms, min 31.464ms - 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 34.457us, max 63.3us, min 22.910us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 184.739K (184739), min 142.782K (142782) HASH_JOIN_OPERATOR (id=67): - BlocksProduced: sum 552, avg 46, max 51, min 40 - CloseTime: avg 25.753us, max 68.59us, min 13.131us - ExecTime: avg 19.666ms, max 37.327ms, min 11.962ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.61 MB, avg 137.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.61 MB, avg 137.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 17.32us, max 29.614us, min 12.218us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 184.739K (184739), min 142.782K (142782) - ProjectionTime: avg 2.390ms, max 4.349ms, min 1.452ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 184.739K (184739), min 142.782K (142782) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: sum 552, avg 46, max 51, min 40 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 314.596us, max 489.187us, min 203.163us - GetBlockFailedTime: sum 61, avg 5, max 17, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 75.38 MB, avg 6.28 MB, max 12.43 MB, min 1.28 MB - OpenTime: avg 920ns, max 1.960us, min 602ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 184.739K (184739), min 142.782K (142782) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 925.504ms, max 1s462ms, min 163.642ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 343.649us, max 479.234us, min 291.580us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 147.776K (147776) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 1.414us, max 3.584us, min 1.41us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: sum 552, avg 46, max 52, min 42 - CloseTime: avg 19.597us, max 28.918us, min 7.14us - ExecTime: avg 23.909ms, max 43.257ms, min 14.540ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.79 MB, avg 152.33 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.79 MB, avg 152.33 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 17.34us, max 46.714us, min 8.570us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 147.776K (147776) - ProjectionTime: avg 3.227ms, max 4.96ms, min 2.644ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 147.776K (147776) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 728.167ms, max 1s290ms, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: sum 552, avg 46, max 52, min 42 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 218.906us, max 288.612us, min 179.497us - GetBlockFailedTime: sum 112, avg 9, max 22, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 104.75 MB, avg 8.73 MB, max 14.86 MB, min 1.64 MB - OpenTime: avg 7.759us, max 82.551us, min 457ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 185.381K (185381), min 147.776K (147776) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 237.745ms, max 290.61ms, min 165.306ms Pipeline : 2(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 327.936us, max 710.217us, min 14.494us - 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.255us, max 1.725us, min 876ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=65. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 552, avg 46, max 113, min 0 - CloseTime: avg 35.406us, max 56.930us, min 17.883us - ExecTime: avg 289.950ms, max 468.554ms, min 93.695ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 490.516us, max 828.426us, min 313.844us - 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 - filter id = -1 filtered: sum 20.976568M (20976568), avg 1.90696M (1906960), max 2.991358M (2991358), min 389.738K (389738) - filter id = -1 input: sum 24.902648M (24902648), avg 2.263877M (2263877), max 3.287952M (3287952), min 454.022K (454022) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 289.108ms, max 467.445ms, min 93.234ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 40.45 MB, avg 3.37 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 711.129us, max 8.20ms, min 24.869us - InputRows: sum 160, avg 13, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 206.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 140.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 345.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 17.978us, max 28.201us, min 14.231us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 27.380ms, max 43.631ms, min 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 6.486us, max 22.678us, min 2.546us - ExecTime: avg 35.457us, max 65.185us, min 21.130us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 181.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 26.916us, max 47.871us, min 15.277us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 13, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 4.308ms, max 33.376ms, min 0ns Pipeline : 4(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=66): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 7.334ms, max 86.119ms, min 16.463us - InputRows: sum 87.194K (87194), avg 7.266K (7266), max 43.597K (43597), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 1.07 MB, avg 91.62 KB, max 549.72 KB, min 0.00 - BuildKeyArena: sum 2.17 MB, avg 185.33 KB, max 1.09 MB, min 0.00 - HashTable: sum 852.62 KB, avg 71.05 KB, max 426.31 KB, min 0.00 - PeakMemoryUsage: sum 4.07 MB, avg 347.34 KB, max 2.04 MB, min 0.00 - OpenTime: avg 12.505us, max 20.193us, min 6.669us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 734.684ms, max 1s458ms, min 0ns EXCHANGE_OPERATOR (id=64): - BlocksProduced: sum 33, avg 2, max 22, min 0 - CloseTime: avg 1.14ms, max 12.71ms, min 2.876us - ExecTime: avg 1.45ms, max 12.85ms, min 14.552us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 936.00 KB, avg 78.00 KB, max 936.00 KB, min 0.00 - OpenTime: avg 14.920us, max 33.496us, min 9.399us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 87.194K (87194), avg 7.266K (7266), max 43.597K (43597), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 113.240ms, max 1s344ms, min 0ns Fragment 127: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=64,dst_id=64): - BlocksProduced: sum 23, avg 23, max 23, min 23 - CloseTime: avg 14.601us, max 14.601us, min 14.601us - ExecTime: avg 3.209ms, max 3.209ms, min 3.209ms - InputRows: sum 43.597K (43597), avg 43.597K (43597), max 43.597K (43597), min 43.597K (43597) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 100.00 KB, avg 100.00 KB, max 100.00 KB, min 100.00 KB - OpenTime: avg 57.470us, max 57.470us, min 57.470us - 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): - BlocksProduced: sum 11, avg 11, max 11, min 11 - CloseTime: avg 27.165us, max 27.165us, min 27.165us - ExecTime: avg 14.189ms, max 14.189ms, min 14.189ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 165.625us, max 165.625us, min 165.625us - 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 13.875ms, max 13.875ms, min 13.875ms 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 3, avg 3, max 3, min 3 - CloseTime: avg 14.231us, max 14.231us, min 14.231us - ExecTime: avg 186.510us, max 186.510us, min 186.510us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 35.287us, max 35.287us, min 35.287us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 42.27us, max 42.27us, min 42.27us - ExecTime: avg 18.278ms, max 18.278ms, min 18.278ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 285.630us, max 285.630us, min 285.630us - ProjectionTime: avg 4.2us, max 4.2us, min 4.2us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 17.901ms, max 17.901ms, min 17.901ms 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 36, avg 3, max 3, min 3 - CloseTime: avg 12.906us, max 20.971us, min 8.71us - ExecTime: avg 119.245us, max 164.673us, min 72.153us - InputRows: sum 964, avg 80, max 97, min 55 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 50.00 KB, avg 4.17 KB, max 5.13 KB, min 2.63 KB - OpenTime: avg 43.36us, max 66.482us, min 29.715us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 1.5us, max 1.454us, min 466ns - ExecTime: avg 73.524us, max 114.659us, min 41.176us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 13.309us, max 54.314us, min 5.782us - ProjectionTime: avg 29.669us, max 53.337us, min 15.379us - RowsProduced: sum 964, avg 80, max 97, min 55 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 17s237ms, max 17s249ms, min 17s181ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=59): - CloseTime: avg 913ns, max 1.536us, min 548ns - ExecTime: avg 184.894us, max 241.962us, min 131.921us - 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 23.669us, max 37.441us, min 14.104us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 5.153us, max 17.950us, min 1.918us - ExecTime: avg 74.915us, max 98.362us, min 58.286us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 57.38 KB, avg 4.78 KB, max 8.63 KB, min 768.00 B - OpenTime: avg 17.837us, max 29.239us, min 10.372us - 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 17s231ms, max 17s243ms, min 17s180ms Fragment 130: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 14.647us, max 29.729us, min 7.942us - ExecTime: avg 340.599us, max 442.270us, min 228.408us - 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 88.630us, max 163.304us, min 54.309us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 27.912us, max 39.689us, min 18.811us - ExecTime: avg 229.427us, max 352.606us, min 171.734us - 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 36.62us, max 102.903us, min 20.678us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.471K (1471), avg 122, max 146, min 100 HASH_JOIN_OPERATOR (id=56): - BlocksProduced: sum 109, avg 9, max 10, min 9 - CloseTime: avg 17.992us, max 37.663us, min 9.538us - ExecTime: avg 1.726ms, max 2.698ms, min 1.392ms - 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 15.795us, max 31.421us, min 10.641us - ProbeRows: sum 405.258K (405258), avg 33.771K (33771), max 33.999K (33999), min 33.587K (33587) - ProjectionTime: avg 80.842us, max 109.803us, min 60.394us - RowsProduced: sum 1.631K (1631), avg 135, max 164, min 111 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 11s591ms, max 15s956ms, min 10s683ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: sum 185, avg 15, max 18, min 8 - CloseTime: avg 10.706us, max 29.20us, min 3.578us - ExecTime: avg 123.211us, max 270.849us, min 58.785us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.61 MB, avg 223.09 KB, max 1.33 MB, min 0.00 - OpenTime: avg 28.962us, max 102.690us, min 11.769us - 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 5s572ms, max 6s483ms, min 1s185ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=56): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 179.327us, max 278.480us, min 129.965us - 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 26.419us, max 60.9us, min 15.989us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: sum 86, avg 7, max 8, min 7 - CloseTime: avg 5.540us, max 8.71us, min 3.908us - ExecTime: avg 49.478us, max 102.859us, min 33.173us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 45.54 KB, avg 3.79 KB, max 7.75 KB, min 0.00 - OpenTime: avg 15.205us, max 36.407us, min 7.742us - 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 17s156ms, max 17s170ms, min 17s150ms Fragment 131: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=55,dst_id=55): - BlocksProduced: sum 113, avg 113, max 113, min 113 - CloseTime: avg 26.114us, max 26.114us, min 26.114us - ExecTime: avg 78.61ms, max 78.61ms, min 78.61ms - InputRows: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.25 MB, avg 4.25 MB, max 4.25 MB, min 4.25 MB - OpenTime: avg 90.66us, max 90.66us, min 90.66us - 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): - BlocksProduced: sum 100, avg 100, max 100, min 100 - CloseTime: avg 37.976us, max 37.976us, min 37.976us - ExecTime: avg 99.465ms, max 99.465ms, min 99.465ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 299.919us, max 299.919us, min 299.919us - 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.467ms, max 98.467ms, min 98.467ms 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 184, avg 15, max 22, min 14 - CloseTime: avg 15.456us, max 32.468us, min 9.739us - ExecTime: avg 456.477us, max 789.469us, min 259.462us - InputRows: sum 1.631K (1631), avg 135, max 503, min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 239.44 KB, avg 19.95 KB, max 73.75 KB, min 0.00 - OpenTime: avg 70.159us, max 109.918us, min 56.956us - RowsProduced: sum 1.631K (1631), avg 135, max 503, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: sum 27, avg 2, max 10, min 0 - CloseTime: avg 11.713us, max 25.449us, min 3.653us - ExecTime: avg 457.914us, max 1.759ms, min 28.836us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 300.00 KB, avg 25.00 KB, max 76.00 KB, min 0.00 - ProbeKeyArena: sum 300.00 KB, avg 25.00 KB, max 76.00 KB, min 0.00 - OpenTime: avg 15.980us, max 27.660us, min 9.982us - ProbeRows: sum 11.25K (11250), avg 937, max 3.376K (3376), min 0 - ProjectionTime: avg 33.449us, max 94.582us, min 6.624us - RowsProduced: sum 1.631K (1631), avg 135, max 503, min 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 14s863ms, max 15s725ms, min 10s682ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 28, avg 2, max 10, min 0 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 14.398us, max 41.527us, min 1.353us - GetBlockFailedTime: sum 12, avg 1, max 1, min 1 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.89 MB, avg 161.67 KB, max 668.00 KB, min 0.00 - OpenTime: avg 791ns, max 1.446us, min 630ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 11.25K (11250), avg 937, max 3.376K (3376), min 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 1s387ms, max 1s466ms, min 1s195ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 20.508us, max 54.249us, min 5.823us - 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.704us, max 5.243us, min 1.66us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=51. table name = DIM_CUSTOMER): - BlocksProduced: sum 28, avg 2, max 3, min 2 - CloseTime: avg 74.21us, max 125.306us, min 32.384us - ExecTime: avg 205.754ms, max 464.558ms, min 130.693ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 213.548us, max 305.371us, min 151.266us - ProjectionTime: avg 1.690ms, max 13.687ms, min 227.160us - 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 203.658ms, max 463.229ms, min 129.683ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 2.82 MB, avg 241.00 KB, max 360.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 27.651ms, max 166.958ms, min 40.458us - InputRows: sum 1.416596M (1416596), avg 118.049K (118049), max 708.298K (708298), min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 113.45 MB, avg 9.45 MB, max 56.72 MB, min 0.00 - BuildKeyArena: sum 63.99 MB, avg 5.33 MB, max 32.00 MB, min 0.00 - HashTable: sum 13.40 MB, avg 1.12 MB, max 6.70 MB, min 0.00 - PeakMemoryUsage: sum 190.83 MB, avg 15.90 MB, max 95.42 MB, min 0.00 - OpenTime: avg 18.110us, max 21.239us, min 13.696us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 13s854ms, max 17s151ms, min 0ns EXCHANGE_OPERATOR (id=50): - BlocksProduced: sum 516, avg 43, max 301, min 0 - CloseTime: avg 9.147us, max 29.683us, min 3.734us - ExecTime: avg 637.142us, max 3.934ms, min 18.44us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 552.00 KB, avg 46.00 KB, max 552.00 KB, min 0.00 - OpenTime: avg 20.460us, max 41.258us, min 11.937us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.416596M (1416596), avg 118.049K (118049), max 708.298K (708298), min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 2s365ms, max 16s884ms, min 0ns Fragment 133: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: sum 348, avg 87, max 87, min 87 - CloseTime: avg 18.289us, max 24.958us, min 13.136us - ExecTime: avg 60.330ms, max 106.870ms, min 40.919ms - InputRows: sum 708.298K (708298), avg 177.074K (177074), max 177.744K (177744), min 176.388K (176388) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.16 MB, avg 552.00 KB, max 552.00 KB, min 552.00 KB - OpenTime: avg 44.118us, max 58.754us, min 37.190us - 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): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 16.682us, max 17.600us, min 15.435us - ExecTime: avg 315.119ms, max 487.298ms, min 239.439ms - 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 15.583us, max 17.728us, min 11.860us - ProbeRows: sum 8.342064M (8342064), avg 2.085516M (2085516), max 2.086985M (2086985), min 2.082107M (2082107) - ProjectionTime: avg 3.270ms, max 4.395ms, min 2.665ms - RowsProduced: sum 708.298K (708298), avg 177.074K (177074), max 177.744K (177744), min 176.388K (176388) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 6s40ms, max 8s72ms, min 0ns OLAP_SCAN_OPERATOR (id=48. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 50.510us, max 79.584us, min 32.933us - ExecTime: avg 228.21ms, max 279.541ms, min 196.98ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 310.703us, max 423.500us, min 224.401us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.342064M (8342064), avg 2.085516M (2085516), max 2.086985M (2086985), min 2.082107M (2082107) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 225.600ms, max 276.373ms, min 193.971ms 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 44.169ms, max 49.159ms, min 38.612ms - 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 17.642us, max 27.704us, min 11.649us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: sum 268, avg 67, max 71, min 55 - CloseTime: avg 10.538us, max 11.834us, min 9.672us - ExecTime: avg 553.828us, max 644.793us, min 492.560us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.31 MB, avg 848.06 KB, max 1.41 MB, min 0.00 - OpenTime: avg 18.207us, max 21.970us, min 14.411us - 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 7s106ms, max 9s313ms, min 502.824ms Fragment 134: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - BlocksProduced: sum 206, avg 17, max 23, min 9 - CloseTime: avg 15.288us, max 21.204us, min 10.30us - ExecTime: avg 21.951ms, max 48.985ms, min 5.421ms - InputRows: sum 712.703K (712703), avg 59.391K (59391), max 82.979K (82979), min 32.378K (32378) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 31.66 MB, avg 2.64 MB, max 3.19 MB, min 2.16 MB - OpenTime: avg 48.504us, max 122.627us, min 31.659us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 82.979K (82979), min 32.378K (32378) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: sum 201, avg 16, max 23, min 10 - CloseTime: avg 24.860us, max 67.296us, min 10.474us - ExecTime: avg 9.963ms, max 25.412ms, min 2.763ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.04 MB, avg 89.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.04 MB, avg 89.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 14.958us, max 23.583us, min 10.575us - ProbeRows: sum 712.703K (712703), avg 59.391K (59391), max 82.979K (82979), min 32.378K (32378) - ProjectionTime: avg 630.928us, max 925.772us, min 331.745us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 82.979K (82979), min 32.378K (32378) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 201, avg 16, max 23, min 10 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 97.487us, max 141.863us, min 38.419us - GetBlockFailedTime: sum 89, avg 7, max 11, min 5 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 10.99 MB, avg 938.00 KB, max 1.31 MB, min 752.00 KB - OpenTime: avg 771ns, max 1000ns, min 615ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 82.979K (82979), min 32.378K (32378) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 245.767ms, max 337.285ms, min 126.363ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 90.298us, max 181.658us, min 8.46us - 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.703us, max 3.598us, min 1.49us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=45. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 201, avg 16, max 49, min 1 - CloseTime: avg 41.262us, max 65.139us, min 31.804us - ExecTime: avg 182.685ms, max 335.134ms, min 42.400ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 5.796ms, max 29.303ms, min 328.534us - ProjectionTime: avg 896.982us, max 2.262ms, min 11.369us - 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 175.770ms, max 314.434ms, min 41.920ms 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 2.402ms, max 28.287ms, min 30.186us - InputRows: sum 218, avg 18, max 109, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.30 KB, avg 281.00 B, max 1.65 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.87 KB, avg 159.00 B, max 956.00 B, min 0.00 - PeakMemoryUsage: sum 5.15 KB, avg 439.00 B, max 2.58 KB, min 0.00 - OpenTime: avg 20.771us, max 35.357us, min 14.447us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 23.35ms, max 43.306ms, min 0ns EXCHANGE_OPERATOR (id=44): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 5.695us, max 10.394us, min 3.803us - ExecTime: avg 27.317us, max 48.738us, min 18.297us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 277.00 B, max 3.25 KB, min 0.00 - OpenTime: avg 20.181us, max 31.898us, min 12.729us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 218, avg 18, max 109, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1.51ms, max 10.203ms, min 0ns Fragment 135: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=44,dst_id=44): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 20.581us, max 20.581us, min 20.581us - ExecTime: avg 187.145us, max 187.145us, min 187.145us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 3.25 KB, max 3.25 KB, min 3.25 KB - OpenTime: avg 37.846us, max 37.846us, min 37.846us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 29.857us, max 29.857us, min 29.857us - ExecTime: avg 6.490ms, max 6.490ms, min 6.490ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 305.986us, max 305.986us, min 305.986us - ProjectionTime: avg 6.636us, max 6.636us, min 6.636us - RowsProduced: sum 109, avg 109, max 109, min 109 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 6.119ms, max 6.119ms, min 6.119ms 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 432, avg 36, max 36, min 36 - CloseTime: avg 14.575us, max 23.423us, min 9.863us - ExecTime: avg 616.856us, max 1.6ms, min 330.786us - InputRows: sum 542, avg 45, max 53, min 36 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 79.34 KB, avg 6.61 KB, max 7.16 KB, min 5.97 KB - OpenTime: avg 113.533us, max 194.893us, min 92.137us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 872ns, max 1.459us, min 456ns - ExecTime: avg 75.435us, max 160.104us, min 37.151us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 8.620us, max 11.273us, min 5.230us - ProjectionTime: avg 30.510us, max 75.186us, min 14.315us - RowsProduced: sum 542, avg 45, max 53, min 36 - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: avg 20s322ms, max 20s326ms, min 20s319ms Pipeline : 1(instance_num=12): AGGREGATION_SINK_OPERATOR (id=41): - CloseTime: avg 1.50us, max 1.501us, min 494ns - ExecTime: avg 182.246us, max 256.57us, min 125.707us - 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 18.265us, max 24.516us, min 13.245us - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: sum 182, avg 15, max 22, min 14 - CloseTime: avg 9.977us, max 70.34us, min 1.125us - ExecTime: avg 90.441us, max 130.479us, min 50.725us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.44 KB, avg 464.00 B, max 1.06 KB, min 0.00 - OpenTime: avg 17.527us, max 31.556us, min 11.624us - 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 20s320ms, max 20s325ms, min 20s318ms Fragment 137: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - BlocksProduced: sum 184, avg 15, max 22, min 14 - CloseTime: avg 19.432us, max 32.28us, min 9.548us - ExecTime: avg 484.439us, max 916.624us, min 352.36us - 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 69.466us, max 89.492us, min 61.446us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 16.770us, max 29.227us, min 11.487us - ExecTime: avg 401.820us, max 605.20us, min 269.219us - 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 43.148us, max 128.77us, min 21.807us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 659, avg 54, max 76, min 40 HASH_JOIN_OPERATOR (id=38): - BlocksProduced: sum 225, avg 18, max 31, min 12 - CloseTime: avg 14.863us, max 26.419us, min 8.823us - ExecTime: avg 1.458ms, max 5.933ms, min 866.151us - 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.498us, max 23.579us, min 12.748us - ProbeRows: sum 1.031K (1031), avg 85, max 109, min 64 - ProjectionTime: avg 746.479us, max 4.569ms, min 320.44us - 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): - BlocksProduced: sum 356, avg 29, max 45, min 23 - CloseTime: avg 21.647us, max 40.927us, min 8.293us - ExecTime: avg 135.74ms, max 634.640ms, min 62.82ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.75 MB, avg 405.00 KB, max 696.00 KB, min 144.00 KB - ProbeKeyArena: sum 4.75 MB, avg 405.00 KB, max 696.00 KB, min 144.00 KB - OpenTime: avg 13.329us, max 27.753us, min 7.504us - ProbeRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 31.713017M (31713017), min 711.28K (711280) - ProjectionTime: avg 1.18ms, max 6.150ms, min 439.201us - RowsProduced: sum 1.031K (1031), avg 85, max 109, min 64 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 8s707ms, max 8s977ms, min 8s533ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: sum 7.558K (7558), avg 629, max 5.109K (5109), min 197 - CloseTime: avg 11.322us, max 25.916us, min 4.981us - ExecTime: avg 7.127ms, max 64.885ms, min 1.538ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 145.13 MB, avg 12.09 MB, max 114.55 MB, min 2.20 MB - OpenTime: avg 23.181us, max 59.800us, min 10.843us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 39.547993M (39547993), avg 3.295666M (3295666), max 31.713017M (31713017), min 711.28K (711280) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 3s455ms, max 10s527ms, min 1s521ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=38): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 2.673ms, max 4.575ms, min 1.787ms - 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 21.347us, max 41.918us, min 14.17us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: sum 110, avg 9, max 10, min 5 - CloseTime: avg 8.724us, max 19.324us, min 4.116us - ExecTime: avg 117.100us, max 164.645us, min 85.901us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 480.00 KB, avg 40.00 KB, max 240.00 KB, min 0.00 - OpenTime: avg 15.22us, max 21.953us, min 8.728us - 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 8s258ms, max 9s855ms, min 422.232ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=37): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 4.187ms, max 6.20ms, min 2.955ms - InputRows: sum 299.958K (299958), avg 24.996K (24996), max 25.297K (25297), min 24.741K (24741) - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 24.02 MB, avg 2.00 MB, max 2.03 MB, min 1.98 MB - BuildKeyArena: sum 9.51 MB, avg 811.67 KB, max 820.00 KB, min 804.00 KB - HashTable: sum 2.93 MB, avg 250.06 KB, max 251.53 KB, min 248.81 KB - PeakMemoryUsage: sum 36.42 MB, avg 3.03 MB, max 3.07 MB, min 3.01 MB - OpenTime: avg 22.895us, max 66.922us, min 8.413us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: sum 130, avg 10, max 11, min 10 - CloseTime: avg 9.111us, max 22.226us, min 4.720us - ExecTime: avg 177.891us, max 259.710us, min 133.49us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 752.00 KB, avg 62.67 KB, max 376.00 KB, min 0.00 - OpenTime: avg 14.671us, max 19.403us, min 9.715us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 299.958K (299958), avg 24.996K (24996), max 25.297K (25297), min 24.741K (24741) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 10s6ms, max 10s21ms, min 10s0ms Fragment 138: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - BlocksProduced: sum 6.617K (6617), avg 551, max 864, min 198 - CloseTime: avg 16.114us, max 28.571us, min 8.662us - ExecTime: avg 219.734ms, max 333.870ms, min 131.349ms - InputRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 793.19 MB, avg 66.10 MB, max 118.87 MB, min 5.04 MB - OpenTime: avg 70.677us, max 142.225us, min 50.14us - 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=35. table name = DIM_CUSTOMER): - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 37.405us, max 60.513us, min 20.148us - ExecTime: avg 172.237ms, max 245.392ms, min 98.880ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 210.999us, max 357.73us, min 127.271us - 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 167.795ms, max 244.83ms, min 94.544ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 249.01 MB, avg 20.75 MB, max 33.58 MB, min 10.12 MB Fragment 139: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - BlocksProduced: sum 100, avg 25, max 58, min 14 - CloseTime: avg 14.392us, max 16.668us, min 9.649us - ExecTime: avg 32.421ms, max 94.900ms, min 10.997ms - InputRows: sum 299.958K (299958), avg 74.989K (74989), max 176.903K (176903), min 40.857K (40857) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 19.85 MB, avg 4.96 MB, max 6.77 MB, min 4.36 MB - OpenTime: avg 67.369us, max 77.50us, min 57.947us - RowsProduced: sum 299.958K (299958), avg 74.989K (74989), max 176.903K (176903), min 40.857K (40857) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=33): - BlocksProduced: sum 763, avg 190, max 514, min 83 - CloseTime: avg 20.511us, max 29.707us, min 13.792us - ExecTime: avg 119.873ms, max 352.247ms, min 40.911ms - 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 17.78us, max 20.870us, min 14.235us - ProbeRows: sum 3.079241M (3079241), avg 769.81K (769810), max 2.086112M (2086112), min 330.874K (330874) - ProjectionTime: avg 1.639ms, max 4.394ms, min 693.379us - RowsProduced: sum 299.958K (299958), avg 74.989K (74989), max 176.903K (176903), min 40.857K (40857) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 6s473ms, max 8s665ms, min 0ns OLAP_SCAN_OPERATOR (id=32. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 763, avg 190, max 514, min 83 - CloseTime: avg 51.489us, max 75.743us, min 33.209us - ExecTime: avg 235.35ms, max 274.966ms, min 220.982ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 338.844us, max 518.894us, min 264.210us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 3.079241M (3079241), avg 769.81K (769810), max 2.086112M (2086112), min 330.874K (330874) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 233.441ms, max 271.876ms, min 219.941ms 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=33): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 50.946ms, max 98.590ms, min 26.609ms - 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 16.332us, max 18.224us, min 13.842us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: sum 270, avg 67, max 73, min 55 - CloseTime: avg 10.798us, max 12.809us, min 7.633us - ExecTime: avg 787.321us, max 850.556us, min 705.719us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.29 MB, avg 1.07 MB, max 1.43 MB, min 0.00 - OpenTime: avg 19.700us, max 30.511us, min 15.242us - 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 7s486ms, max 9s789ms, min 599.14ms Fragment 140: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - BlocksProduced: sum 203, avg 16, max 23, min 9 - CloseTime: avg 17.304us, max 22.428us, min 10.761us - ExecTime: avg 29.997ms, max 77.742ms, min 6.328ms - InputRows: sum 712.703K (712703), avg 59.391K (59391), max 83.043K (83043), min 32.967K (32967) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 40.28 MB, avg 3.36 MB, max 4.24 MB, min 2.81 MB - OpenTime: avg 44.529us, max 66.605us, min 34.386us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 83.043K (83043), min 32.967K (32967) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: sum 202, avg 16, max 23, min 10 - CloseTime: avg 20.568us, max 26.727us, min 12.449us - ExecTime: avg 15.981ms, max 59.32ms, min 3.255ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.04 MB, avg 89.00 KB, max 168.00 KB, min 64.00 KB - ProbeKeyArena: sum 1.04 MB, avg 89.00 KB, max 168.00 KB, min 64.00 KB - OpenTime: avg 15.236us, max 22.434us, min 10.15us - ProbeRows: sum 712.703K (712703), avg 59.391K (59391), max 83.043K (83043), min 32.967K (32967) - ProjectionTime: avg 1.52ms, max 3.817ms, min 414.452us - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 83.043K (83043), min 32.967K (32967) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: sum 202, avg 16, max 23, min 10 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 103.242us, max 181.860us, min 45.590us - GetBlockFailedTime: sum 88, avg 7, max 10, min 6 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 13.53 MB, avg 1.13 MB, max 1.97 MB, min 896.00 KB - OpenTime: avg 707ns, max 845ns, min 619ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 712.703K (712703), avg 59.391K (59391), max 83.043K (83043), min 32.967K (32967) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 269.398ms, max 349.667ms, min 162.769ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 105.154us, max 235.703us, min 18.36us - 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.596us, max 3.765us, min 1.16us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=29. table name = QYWX_USER_CONTACT_RELATION): - BlocksProduced: sum 202, avg 16, max 49, min 1 - CloseTime: avg 40.48us, max 59.124us, min 23.534us - ExecTime: avg 132.440ms, max 255.32ms, min 10.559ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 459.529us, max 614.428us, min 313.741us - ProjectionTime: avg 916.327us, max 2.142ms, min 10.729us - 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 130.845ms, max 251.850ms, min 9.886ms 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 61.548us, max 148.836us, min 25.177us - InputRows: sum 218, avg 18, max 109, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 3.30 KB, avg 281.00 B, max 1.65 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.87 KB, avg 159.00 B, max 956.00 B, min 0.00 - PeakMemoryUsage: sum 5.15 KB, avg 439.00 B, max 2.58 KB, min 0.00 - OpenTime: avg 26.499us, max 86.703us, min 11.495us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 101.111ms, max 133.450ms, min 0ns EXCHANGE_OPERATOR (id=28): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 6.414us, max 10.369us, min 3.610us - ExecTime: avg 27.975us, max 43.661us, min 18.851us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 277.00 B, max 3.25 KB, min 0.00 - OpenTime: avg 20.64us, max 37.621us, min 14.452us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 218, avg 18, max 109, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 19.454ms, max 130.31ms, min 0ns Fragment 141: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=28,dst_id=28): - BlocksProduced: sum 3, avg 3, max 3, min 3 - CloseTime: avg 23.215us, max 23.215us, min 23.215us - ExecTime: avg 157.514us, max 157.514us, min 157.514us - InputRows: sum 109, avg 109, max 109, min 109 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.25 KB, avg 3.25 KB, max 3.25 KB, min 3.25 KB - OpenTime: avg 41.281us, max 41.281us, min 41.281us - 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): - BlocksProduced: sum 1, avg 1, max 1, min 1 - CloseTime: avg 44.799us, max 44.799us, min 44.799us - ExecTime: avg 100.943ms, max 100.943ms, min 100.943ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 69.97ms, max 69.97ms, min 69.97ms - ProjectionTime: avg 9.314us, max 9.314us, min 9.314us - RowsProduced: sum 109, avg 109, max 109, min 109 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 31.741ms, max 31.741ms, min 31.741ms 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 70, avg 70, max 70, min 70 - CloseTime: avg 20.539us, max 20.539us, min 20.539us - ExecTime: avg 163.531ms, max 163.531ms, min 163.531ms - InputRows: sum 209.907K (209907), avg 209.907K (209907), max 209.907K (209907), min 209.907K (209907) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 4.28 MB, avg 4.28 MB, max 4.28 MB, min 4.28 MB - OpenTime: avg 59.659us, max 59.659us, min 59.659us - 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): - BlocksProduced: sum 99, avg 99, max 99, min 99 - CloseTime: avg 55.730us, max 55.730us, min 55.730us - ExecTime: avg 393.668ms, max 393.668ms, min 393.668ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 252.343us, max 252.343us, min 252.343us - ProjectionTime: avg 131.0ms, max 131.0ms, min 131.0ms - 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 261.61ms, max 261.61ms, min 261.61ms 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 102, avg 8, max 9, min 6 - CloseTime: avg 17.570us, max 24.135us, min 11.193us - ExecTime: avg 5.7ms, max 17.375ms, min 2.541ms - 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 42.214us, max 51.323us, min 32.765us - 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): - BlocksProduced: sum 12, avg 1, max 1, min 1 - CloseTime: avg 328.766us, max 481.379us, min 221.717us - ExecTime: avg 79.366ms, max 245.199ms, min 51.399ms - 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 88.577us, max 164.197us, min 67.285us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 876, avg 73, max 75, min 72 HASH_JOIN_OPERATOR (id=21): - BlocksProduced: sum 556, avg 46, max 200, min 32 - CloseTime: avg 33.7us, max 78.587us, min 20.415us - ExecTime: avg 97.34ms, max 290.548ms, min 66.74ms - 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 23.321us, max 34.861us, min 18.352us - ProbeRows: sum 405.258K (405258), avg 33.771K (33771), max 33.999K (33999), min 33.587K (33587) - ProjectionTime: avg 71.113ms, max 225.857ms, min 47.385ms - RowsProduced: sum 1.963094M (1963094), avg 163.591K (163591), max 785.077K (785077), min 106.608K (106608) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 14s854ms, max 18s730ms, min 13s977ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: sum 186, avg 15, max 18, min 8 - CloseTime: avg 9.163us, max 13.167us, min 6.717us - ExecTime: avg 154.72us, max 199.884us, min 108.792us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 5.83 MB, avg 497.33 KB, max 2.94 MB, min 0.00 - OpenTime: avg 23.298us, max 53.813us, min 15.511us - 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 5s57ms, max 5s953ms, min 1s84ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=21): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 32.425ms, max 146.252ms, min 17.923ms - 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 26.852us, max 49.148us, min 13.151us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: sum 718, avg 59, max 208, min 42 - CloseTime: avg 8.235us, max 11.994us, min 5.290us - ExecTime: avg 1.482ms, max 5.54ms, min 1.37ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 26.83 MB, avg 2.24 MB, max 16.21 MB, min 0.00 - OpenTime: avg 20.96us, max 48.787us, min 10.622us - 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 19s891ms, max 19s902ms, min 19s806ms Fragment 144: Pipeline : 0(instance_num=1): DATA_STREAM_SINK_OPERATOR (id=20,dst_id=20): - BlocksProduced: sum 113, avg 113, max 113, min 113 - CloseTime: avg 46.233us, max 46.233us, min 46.233us - ExecTime: avg 208.356ms, max 208.356ms, min 208.356ms - InputRows: sum 405.258K (405258), avg 405.258K (405258), max 405.258K (405258), min 405.258K (405258) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 9.58 MB, avg 9.58 MB, max 9.58 MB, min 9.58 MB - OpenTime: avg 61.127us, max 61.127us, min 61.127us - 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): - BlocksProduced: sum 100, avg 100, max 100, min 100 - CloseTime: avg 69.820us, max 69.820us, min 69.820us - ExecTime: avg 138.814ms, max 138.814ms, min 138.814ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 344.59us, max 344.59us, min 344.59us - 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 137.514ms, max 137.514ms, min 137.514ms 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 638, avg 53, max 204, min 38 - CloseTime: avg 15.912us, max 21.287us, min 10.672us - ExecTime: avg 59.118ms, max 87.829ms, min 43.909ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 294.81 MB, avg 24.57 MB, max 94.50 MB, min 12.13 MB - OpenTime: avg 70.732us, max 91.148us, min 59.202us - 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): - BlocksProduced: sum 2.124K (2124), avg 177, max 496, min 148 - CloseTime: avg 23.575us, max 36.554us, min 13.514us - ExecTime: avg 106.176ms, max 162.936ms, min 79.855ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 839.31 KB, avg 69.94 KB, max 86.58 KB, min 68.17 KB - ProbeKeyArena: sum 839.31 KB, avg 69.94 KB, max 86.58 KB, min 68.17 KB - OpenTime: avg 18.505us, max 23.416us, min 15.497us - ProbeRows: sum 8.279003M (8279003), avg 689.916K (689916), max 1.41758M (1417580), min 622.435K (622435) - ProjectionTime: avg 4.520ms, max 12.114ms, min 3.226ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 18s16ms, max 18s205ms, min 17s945ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: sum 2.601K (2601), avg 216, max 418, min 185 - CloseTime: avg 6.497us, max 8.906us, min 3.197us - ExecTime: avg 2.149ms, max 3.840ms, min 1.627ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 107.41 MB, avg 8.95 MB, max 19.62 MB, min 7.61 MB - OpenTime: avg 28.143us, max 152.151us, min 10.422us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.279003M (8279003), avg 689.916K (689916), max 1.41758M (1417580), min 622.435K (622435) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1s433ms, max 1s485ms, min 1s332ms Pipeline : 1(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=17): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 31.142ms, max 88.78ms, min 19.207ms - 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 18.231us, max 26.292us, min 12.650us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: sum 9.608K (9608), avg 800, max 949, min 784 - CloseTime: avg 29.689us, max 67.785us, min 19.543us - ExecTime: avg 280.317ms, max 323.647ms, min 211.222ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 828.66 KB, avg 69.05 KB, max 69.16 KB, min 68.95 KB - ProbeKeyArena: sum 828.66 KB, avg 69.05 KB, max 69.16 KB, min 68.95 KB - OpenTime: avg 19.921us, max 41.281us, min 10.27us - ProbeRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 3.296837M (3296837), min 3.295033M (3295033) - ProjectionTime: avg 11.961ms, max 18.498ms, min 10.254ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 15s768ms, max 15s943ms, min 15s614ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: sum 11.704K (11704), avg 975, max 1.489K (1489), min 869 - CloseTime: avg 7.487us, max 9.852us, min 4.611us - ExecTime: avg 21.102ms, max 32.442ms, min 15.26ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 224.91 MB, avg 18.74 MB, max 19.67 MB, min 18.03 MB - OpenTime: avg 18.316us, max 62.597us, min 8.969us - 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 3s105ms, max 3s132ms, min 2s947ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=14): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 19.605ms, max 120.772ms, min 6.387ms - 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 36.75us, max 79.42us, min 13.460us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: sum 943, avg 78, max 231, min 64 - CloseTime: avg 14.641us, max 21.989us, min 9.211us - ExecTime: avg 37.539ms, max 89.616ms, min 22.397ms - 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 17.553us, max 40.121us, min 12.739us - ProbeRows: sum 2.506017M (2506017), avg 208.834K (208834), max 209.241K (209241), min 208.294K (208294) - ProjectionTime: avg 1.985ms, max 8.629ms, min 1.122ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 785.358K (785358), min 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 15s735ms, max 15s811ms, min 15s575ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: sum 850, avg 70, max 85, min 68 - CloseTime: avg 8.818us, max 12.90us, min 6.579us - ExecTime: avg 410.223us, max 679.542us, min 308.289us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 36.67 MB, avg 3.06 MB, max 3.45 MB, min 1.63 MB - OpenTime: avg 16.682us, max 24.514us, min 12.183us - 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 1s179ms, max 1s183ms, min 1s176ms Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=11): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 20.821ms, max 116.735ms, min 7.349ms - 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 19.527us, max 34.836us, min 9.631us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: sum 782, avg 65, max 271, min 43 - CloseTime: avg 7.256us, max 10.581us, min 5.210us - ExecTime: avg 941.19us, max 3.650ms, min 637.117us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.72 MB, avg 146.67 KB, max 880.00 KB, min 0.00 - OpenTime: avg 17.168us, max 33.60us, min 10.470us - 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 16s961ms, max 16s980ms, min 16s819ms Fragment 146: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - BlocksProduced: sum 1.977K (1977), avg 494, max 504, min 491 - CloseTime: avg 16.742us, max 19.206us, min 15.4us - ExecTime: avg 202.129ms, max 257.313ms, min 163.381ms - InputRows: sum 8.279003M (8279003), avg 2.06975M (2069750), max 2.086234M (2086234), min 2.061039M (2061039) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 273.85 MB, avg 68.46 MB, max 85.65 MB, min 17.41 MB - OpenTime: avg 73.35us, max 94.664us, min 53.360us - RowsProduced: sum 8.279003M (8279003), avg 2.06975M (2069750), max 2.086234M (2086234), min 2.061039M (2061039) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns OLAP_SCAN_OPERATOR (id=15. table name = DIM_CUSTOMER_QYWX): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 48.174us, max 63.816us, min 34.535us - ExecTime: avg 339.470ms, max 380.849ms, min 275.677ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 199.800us, max 220.792us, min 174.884us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 8.279003M (8279003), avg 2.06975M (2069750), max 2.086234M (2086234), min 2.061039M (2061039) - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 336.857ms, max 378.657ms, min 272.74ms 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.494K (9494), avg 791, max 1.187K (1187), min 218 - CloseTime: avg 18.258us, max 41.204us, min 11.757us - ExecTime: avg 373.294ms, max 550.306ms, min 139.720ms - InputRows: sum 39.547993M (39547993), avg 3.295666M (3295666), max 4.97661M (4976610), min 876.719K (876719) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1.82 GB, avg 155.56 MB, max 254.28 MB, min 15.48 MB - OpenTime: avg 69.346us, max 86.618us, min 45.920us - 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): - BlocksProduced: sum 9.75K (9750), avg 812, max 1.228K (1228), min 216 - CloseTime: avg 91.775us, max 175.612us, min 47.852us - ExecTime: avg 260.427ms, max 461.450ms, min 205.185ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 430.872us, max 2.787ms, min 140.105us - 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 255.353ms, max 458.505ms, min 201.77ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 241.85 MB, avg 20.15 MB, max 32.70 MB, min 10.27 MB Fragment 148: Pipeline : 0(instance_num=3): DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - BlocksProduced: sum 626, avg 208, max 214, min 206 - CloseTime: avg 22.270us, max 34.97us, min 15.757us - ExecTime: avg 85.722ms, max 120.384ms, min 49.252ms - 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.20 MB, avg 12.73 MB, max 17.22 MB, min 4.48 MB - OpenTime: avg 60.239us, max 67.644us, min 55.363us - 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): - BlocksProduced: sum 618, avg 206, max 206, min 206 - CloseTime: avg 50.674us, max 83.624us, min 33.672us - ExecTime: avg 164.897ms, max 223.473ms, min 117.644ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 223.276us, max 276.864us, min 162.726us - 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 162.581ms, max 222.56ms, min 114.32ms 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 585, avg 48, max 62, min 36 - CloseTime: avg 20.243us, max 31.913us, min 9.153us - ExecTime: avg 41.690ms, max 59.429ms, min 21.447ms - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 209.42K (209420), min 108.157K (108157) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 133.89 MB, avg 11.16 MB, max 21.34 MB, min 6.41 MB - OpenTime: avg 75.201us, max 121.92us, min 53.117us - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 209.42K (209420), min 108.157K (108157) - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForRpcBufferQueue: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: sum 924, avg 77, max 80, min 75 - CloseTime: avg 34.600us, max 69.781us, min 17.280us - ExecTime: avg 18.0ms, max 22.360ms, min 12.803ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 1016.00 KB, avg 84.67 KB, max 144.00 KB, min 64.00 KB - ProbeKeyArena: sum 1016.00 KB, avg 84.67 KB, max 144.00 KB, min 64.00 KB - OpenTime: avg 18.48us, max 28.892us, min 10.994us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 209.42K (209420), min 108.157K (108157) - ProjectionTime: avg 2.647ms, max 3.81ms, min 2.133ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 209.42K (209420), min 108.157K (108157) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: sum 924, avg 77, max 80, min 75 - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 402.439us, max 459.912us, min 326.587us - GetBlockFailedTime: sum 654, avg 54, max 67, min 43 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 16.37 MB, avg 1.36 MB, max 2.27 MB, min 664.00 KB - OpenTime: avg 819ns, max 2.333us, min 576ns - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 209.42K (209420), min 108.157K (108157) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: avg 10s835ms, max 16s942ms, min 6s468ms Pipeline : 1(instance_num=12): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 865.860us, max 1.262ms, min 625.544us - 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.384us, max 3.755us, min 1.85us - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: sum 924, avg 77, max 77, min 77 - CloseTime: avg 19.750us, max 36.938us, min 9.452us - ExecTime: avg 77.546ms, max 109.124ms, min 54.455ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 3.87 MB, avg 330.00 KB, max 336.00 KB, min 312.00 KB - ProbeKeyArena: sum 3.87 MB, avg 330.00 KB, max 336.00 KB, min 312.00 KB - OpenTime: avg 13.374us, max 30.772us, min 8.224us - ProbeRows: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - ProjectionTime: avg 3.288ms, max 3.952ms, min 2.599ms - RowsProduced: sum 1.96304M (1963040), avg 163.586K (163586), max 163.982K (163982), min 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: avg 10s633ms, max 16s808ms, min 6s228ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: sum 784, avg 65, max 70, min 62 - CloseTime: avg 11.972us, max 40.283us, min 4.634us - ExecTime: avg 783.474us, max 977.766us, min 606.725us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 101.93 MB, avg 8.49 MB, max 10.09 MB, min 6.23 MB - OpenTime: avg 17.920us, max 29.350us, min 12.37us - 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 133.681ms, max 148.233ms, min 117.561ms Pipeline : 2(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=7): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 3.148ms, max 37.81ms, min 24.986us - InputRows: sum 160, avg 13, max 80, min 0 - MemoryUsage: sum , avg , max , min - BuildBlocks: sum 2.42 KB, avg 206.00 B, max 1.21 KB, min 0.00 - BuildKeyArena: sum 8.00 KB, avg 682.00 B, max 4.00 KB, min 0.00 - HashTable: sum 1.64 KB, avg 140.00 B, max 840.00 B, min 0.00 - PeakMemoryUsage: sum 4.05 KB, avg 345.00 B, max 2.02 KB, min 0.00 - OpenTime: avg 35.186us, max 107.98us, min 14.23us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 28.917ms, max 51.368ms, min 0ns EXCHANGE_OPERATOR (id=1): - BlocksProduced: sum 3, avg 0, max 2, min 0 - CloseTime: avg 5.49us, max 8.804us, min 2.593us - ExecTime: avg 20.567us, max 31.189us, min 13.438us - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 181.00 B, max 2.13 KB, min 0.00 - OpenTime: avg 13.858us, max 20.235us, min 8.631us - ProjectionTime: avg 0ns, max 0ns, min 0ns - RowsProduced: sum 160, avg 13, max 80, min 0 - WaitForDependencyTime: avg 0ns, max 0ns, min 0ns - WaitForData0: avg 1.873ms, max 12.613ms, min 0ns Pipeline : 3(instance_num=12): HASH_JOIN_SINK_OPERATOR (id=6): - CloseTime: avg 0ns, max 0ns, min 0ns - ExecTime: avg 156.310ms, max 302.182ms, min 99.610ms - 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 12.716us, max 75.683us, min 5.7us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: avg 0ns, max 0ns, min 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: sum 3.078K (3078), avg 256, max 294, min 206 - CloseTime: avg 11.571us, max 14.945us, min 9.22us - ExecTime: avg 10.746ms, max 99.817ms, min 1.860ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 6.38 MB, avg 544.00 KB, max 1.44 MB, min 0.00 - OpenTime: avg 14.801us, max 23.402us, min 10.478us - 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 10s433ms, max 16s714ms, min 5s908ms Fragment 150: Pipeline : 0(instance_num=12): DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - BlocksProduced: sum 610, avg 50, max 101, min 17 - CloseTime: avg 25.603us, max 57.600us, min 13.808us - ExecTime: avg 71.396ms, max 186.548ms, min 224.220us - InputRows: sum 1.96304M (1963040), avg 163.586K (163586), max 394.725K (394725), min 0 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 124.45 MB, avg 10.37 MB, max 25.27 MB, min 0.00 - OpenTime: avg 80.744us, max 214.299us, min 46.787us - 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): - BlocksProduced: sum 556, avg 46, max 115, min 0 - CloseTime: avg 61.817us, max 126.273us, min 30.654us - ExecTime: avg 194.999ms, max 313.955ms, min 67.66ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 2.952ms, max 17.363ms, min 340.953us - 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 - filter id = -1 filtered: sum 20.976568M (20976568), avg 1.90696M (1906960), max 2.991358M (2991358), min 389.738K (389738) - filter id = -1 input: sum 24.902648M (24902648), avg 2.263877M (2263877), max 3.287952M (3287952), min 454.022K (454022) - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 191.491ms, max 296.743ms, min 66.380ms VScanner: - MemoryUsage: sum , avg , max , min - FreeBlocks: sum 42.63 MB, avg 3.55 MB, max 7.58 MB, min 80.00 KB Fragment 151: Pipeline : 0(instance_num=4): DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - BlocksProduced: sum 2.025K (2025), avg 506, max 509, min 504 - CloseTime: avg 23.931us, max 31.754us, min 18.432us - ExecTime: avg 448.303ms, max 618.411ms, min 372.729ms - InputRows: sum 8.342327M (8342327), avg 2.085581M (2085581), max 2.087045M (2087045), min 2.082156M (2082156) - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 305.56 MB, avg 76.39 MB, max 95.66 MB, min 69.13 MB - OpenTime: avg 68.240us, max 75.133us, min 60.640us - 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): - BlocksProduced: sum 2.058K (2058), avg 514, max 515, min 514 - CloseTime: avg 34.136us, max 37.859us, min 26.320us - ExecTime: avg 191.584ms, max 328.477ms, min 131.495ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 9.724ms, max 33.915ms, min 161.90us - 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 179.932ms, max 325.895ms, min 129.612ms 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 3, avg 3, max 3, min 3 - CloseTime: avg 10.651us, max 10.651us, min 10.651us - ExecTime: avg 206.221us, max 206.221us, min 206.221us - InputRows: sum 80, avg 80, max 80, min 80 - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 2.13 KB, avg 2.13 KB, max 2.13 KB, min 2.13 KB - OpenTime: avg 38.818us, max 38.818us, min 38.818us - 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 18.223us, max 18.223us, min 18.223us - ExecTime: avg 9.33ms, max 9.33ms, min 9.33ms - MemoryUsage: sum , avg , max , min - PeakMemoryUsage: sum 0.00 , avg 0.00 , max 0.00 , min 0.00 - OpenTime: avg 218.546us, max 218.546us, min 218.546us - ProjectionTime: avg 4.201us, max 4.201us, min 4.201us - RowsProduced: sum 80, avg 80, max 80, min 80 - RuntimeFilterInfo: sum , avg , max , min - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: avg 8.751ms, max 8.751ms, min 8.751ms 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 ad30f1be4140453a-aabc120b5ecc81ef:(Active: 21s614ms, % non-child: 0.00%) Fragments: Fragment 0: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 33.690ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 33.522ms - CloseTime: 12.308us - GetBlockTime: 491.244us - OpenTime: 51.219us - PrepareTime: 95.316us - SinkTime: 32.832ms - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.648ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 538.735us RESULT_SINK_OPERATOR (id=0): - AppendBatchTime: 32.817ms - CopyBufferTime: 0ns - ResultSendTime: 1.569ms - TupleConvertTime: 30.745ms - BlocksProduced: 7 - BytesSent: 1.21 MB - CloseTime: 5.489us - ExecTime: 32.891ms - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumSentRows: 9.2K (9200) - OpenTime: 59.484us - PendingFinishDependency: 0ns - RowsProduced: 9.2K (9200) - WaitForDependencyTime: 0ns - WaitForDependency[RESULT_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=389): - BlocksProduced: 10 - BytesReceived: 1.31 MB - CloseTime: 4.883us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.934ms - ExecTime: 522.751us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1020.00 KB - MemoryUsage: - Blocks: 1.82 MB - PeakMemoryUsage: 483.00 KB - OpenTime: 35.164us - ProjectionTime: 0ns - RowsProduced: 9.2K (9200) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s667ms Fragment 1: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 4.196ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.765ms - CloseTime: 84.973us - GetBlockTime: 3.96ms - OpenTime: 13.47us - PrepareTime: 324.138us - SinkTime: 582.669us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.95ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 333.933us DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.660us - CompressTime: 0ns - ExecTime: 678.343us - InputRows: 1.495K (1495) - LocalBytesSent: 689.44 KB - LocalSendTime: 569.99us - LocalSentRows: 1.495K (1495) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 79.230us - 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: 43.743us - ExecTime: 1.596ms - InitProbeSideTime: 75.124us - JoinFilterTimer: 193ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 68.218us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.51us - ProbeFindNextTime: 0ns - ProbeRows: 1.495K (1495) - ProbeTime: 1.28ms - ProbeWhenBuildSideOutputTime: 209.600us - ProbeWhenProbeSideOutputTime: 421.239us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 63.11us - ProjectionTime: 441.674us - RowsProduced: 1.495K (1495) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 194.504ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 16.327us - ExecTime: 1.605ms - InitProbeSideTime: 22.627us - JoinFilterTimer: 250ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 43.131us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 644ns - ProbeFindNextTime: 0ns - ProbeRows: 7 - ProbeTime: 1.100ms - ProbeWhenBuildSideOutputTime: 431.74us - ProbeWhenProbeSideOutputTime: 18.383us - ProbeWhenProcessHashTableTime: 395.190us - ProbeWhenSearchHashTableTime: 35.940us - ProjectionTime: 433.184us - RowsProduced: 1.495K (1495) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s439ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 1.57us - DeserializeAndMergeTime: 0ns - ExecTime: 66.888us - GetResultsTime: 19.606us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 950ns - HashTableSize: 7 - InsertKeysToColumnTime: 6.33us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.263us - ProjectionTime: 16.760us - RowsProduced: 7 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s918ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 284.516us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 200.487us - CloseTime: 2.940us - GetBlockTime: 91.948us - OpenTime: 3.25us - PrepareTime: 73.378us - SinkTime: 83.261us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 274.57us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 166.737us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 662ns - BuildRows: 13 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.423us - BuildTableInsertTime: 10.981us - BuildTableTime: 24.221us - CloseTime: 0ns - ExecTime: 100.337us - InputRows: 12 - MemoryUsage: - BuildBlocks: 1.40 KB - BuildKeyArena: 4.00 KB - HashTable: 120.00 B - PeakMemoryUsage: 1.51 KB - OpenTime: 17.597us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 1.43us - DeserializeAndMergeTime: 0ns - ExecTime: 102.452us - GetResultsTime: 36.292us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 829ns - HashTableSize: 12 - InsertKeysToColumnTime: 8.393us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.459us - ProjectionTime: 30.31us - RowsProduced: 12 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s552ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 1.767ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.649ms - CloseTime: 5.540us - GetBlockTime: 448.21us - OpenTime: 2.496us - PrepareTime: 103.401us - SinkTime: 1.72ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.734ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 612.751us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.327us - BuildRows: 1.496K (1496) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 718.983us - BuildTableInsertTime: 60.608us - BuildTableTime: 63.556us - CloseTime: 0ns - ExecTime: 1.109ms - InputRows: 1.495K (1495) - MemoryUsage: - BuildBlocks: 505.48 KB - BuildKeyArena: 28.00 KB - HashTable: 15.31 KB - PeakMemoryUsage: 544.78 KB - OpenTime: 43.971us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 110.337us - RuntimeFilterComputeTime: 61.163us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 36 - BytesReceived: 118.73 KB - CloseTime: 3.364us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 935.93us - ExecTime: 466.458us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 434.00 KB - MemoryUsage: - Blocks: 110.88 KB - PeakMemoryUsage: 85.25 KB - OpenTime: 26.243us - ProjectionTime: 0ns - RowsProduced: 1.495K (1495) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s355ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 2.470ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.345ms - CloseTime: 12.285us - GetBlockTime: 76.155us - OpenTime: 3.347us - PrepareTime: 102.939us - SinkTime: 2.183ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.437ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 400.999us AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.275us - DeserializeAndMergeTime: 2.87ms - ExecTime: 2.225ms - ExprTime: 0ns - HashTableComputeTime: 39.730us - HashTableEmplaceTime: 25.410us - HashTableInputCount: 28 - InputRows: 28 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 2.160ms - OpenTime: 45.377us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 9 - BytesReceived: 143.55 KB - CloseTime: 9.268us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 76.28us - ExecTime: 101.141us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.31 KB - MemoryUsage: - Blocks: 64.31 KB - PeakMemoryUsage: 0.00 - OpenTime: 24.263us - ProjectionTime: 0ns - RowsProduced: 28 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s915ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=4):(Active: 73.938ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 73.741ms - CloseTime: 12.280us - GetBlockTime: 314.468us - OpenTime: 2.215us - PrepareTime: 176.578us - SinkTime: 73.315ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 73.880ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 812.938us AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 1.403us - DeserializeAndMergeTime: 72.823ms - ExecTime: 73.404ms - ExprTime: 0ns - HashTableComputeTime: 77.430us - HashTableEmplaceTime: 51.972us - HashTableInputCount: 140 - InputRows: 140 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 73.246ms - OpenTime: 99.362us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 14 - BytesReceived: 1.21 MB - CloseTime: 8.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 406.971us - ExecTime: 332.625us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.54 MB - MemoryUsage: - Blocks: 4.84 MB - PeakMemoryUsage: 2.91 MB - OpenTime: 30.897us - ProjectionTime: 0ns - RowsProduced: 140 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s477ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 5.590ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.101ms - CloseTime: 209.253us - GetBlockTime: 3.411ms - OpenTime: 18.194us - PrepareTime: 251.125us - SinkTime: 1.608ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.364ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 627.929us DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 343.03 KB - CloseTime: 34.348us - CompressTime: 0ns - ExecTime: 1.708ms - InputRows: 1.955K (1955) - LocalBytesSent: 0.00 - LocalSendTime: 0ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 998.00 KB - MergeBlockTime: 489.692us - OpenTime: 68.622us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 30.744ms - RowsProduced: 1.955K (1955) - RpcAvgTime: 3.651ms - RpcCount: 1 - RpcMaxTime: 3.651ms - RpcMinTime: 3.651ms - RpcSumTime: 3.651ms - SerializeBatchTime: 519.15us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 957.48 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 116.442us - ExecTime: 1.780ms - InitProbeSideTime: 108.721us - JoinFilterTimer: 422ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 64.381us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.314us - ProbeFindNextTime: 0ns - ProbeRows: 1.955K (1955) - ProbeTime: 1.97ms - ProbeWhenBuildSideOutputTime: 311.401us - ProbeWhenProbeSideOutputTime: 385.943us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 66.925us - ProjectionTime: 488.557us - RowsProduced: 1.955K (1955) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 216.0ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 48.696us - ExecTime: 1.837ms - InitProbeSideTime: 46.133us - JoinFilterTimer: 437ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 40.530us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 750ns - ProbeFindNextTime: 0ns - ProbeRows: 9 - ProbeTime: 1.214ms - ProbeWhenBuildSideOutputTime: 433.591us - ProbeWhenProbeSideOutputTime: 19.176us - ProbeWhenProcessHashTableTime: 466.346us - ProbeWhenSearchHashTableTime: 61.909us - ProjectionTime: 522.382us - RowsProduced: 1.955K (1955) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s415ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 1.257us - DeserializeAndMergeTime: 0ns - ExecTime: 61.968us - GetResultsTime: 21.380us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 813ns - HashTableSize: 9 - InsertKeysToColumnTime: 8.540us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.81us - ProjectionTime: 15.913us - RowsProduced: 9 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s946ms PipelineXTask (index=5):(Active: 3.998ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.710ms - CloseTime: 78.338us - GetBlockTime: 2.366ms - OpenTime: 11.220us - PrepareTime: 191.685us - SinkTime: 1.256ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.889ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 489.940us DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 238.14 KB - CloseTime: 15.417us - CompressTime: 0ns - ExecTime: 1.312ms - InputRows: 1.38K (1380) - LocalBytesSent: 0.00 - LocalSendTime: 0ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 934.00 KB - MergeBlockTime: 485.314us - OpenTime: 42.470us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.246ms - RowsProduced: 1.38K (1380) - RpcAvgTime: 2.315ms - RpcCount: 1 - RpcMaxTime: 2.315ms - RpcMinTime: 2.315ms - RpcSumTime: 2.315ms - SerializeBatchTime: 385.735us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 678.40 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 41.328us - ExecTime: 1.256ms - InitProbeSideTime: 56.321us - JoinFilterTimer: 183ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 44.493us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.109us - ProbeFindNextTime: 0ns - ProbeRows: 1.38K (1380) - ProbeTime: 775.548us - ProbeWhenBuildSideOutputTime: 214.265us - ProbeWhenProbeSideOutputTime: 309.558us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 40.286us - ProjectionTime: 383.238us - RowsProduced: 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 233.133ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 16.420us - ExecTime: 1.214ms - InitProbeSideTime: 18.988us - JoinFilterTimer: 217ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 34.931us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 338ns - ProbeFindNextTime: 0ns - ProbeRows: 6 - ProbeTime: 818.689us - ProbeWhenBuildSideOutputTime: 348.205us - ProbeWhenProbeSideOutputTime: 10.843us - ProbeWhenProcessHashTableTime: 285.793us - ProbeWhenSearchHashTableTime: 27.969us - ProjectionTime: 337.523us - RowsProduced: 1.38K (1380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s412ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 979ns - DeserializeAndMergeTime: 0ns - ExecTime: 34.406us - GetResultsTime: 9.242us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 616ns - HashTableSize: 6 - InsertKeysToColumnTime: 1.736us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.906us - ProjectionTime: 11.614us - RowsProduced: 6 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s949ms PipelineXTask (index=10):(Active: 4.996ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.686ms - CloseTime: 91.128us - GetBlockTime: 3.109ms - OpenTime: 21.380us - PrepareTime: 190.487us - SinkTime: 1.512ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.892ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 307.175us DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 375.92 KB - CloseTime: 18.988us - CompressTime: 0ns - ExecTime: 1.580ms - InputRows: 2.185K (2185) - LocalBytesSent: 0.00 - LocalSendTime: 0ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 1.82 MB - MergeBlockTime: 565.285us - OpenTime: 51.727us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.500ms - RowsProduced: 2.185K (2185) - RpcAvgTime: 3.445ms - RpcCount: 1 - RpcMaxTime: 3.445ms - RpcMinTime: 3.445ms - RpcSumTime: 3.445ms - SerializeBatchTime: 506.631us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 1.05 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 50.890us - ExecTime: 1.605ms - InitProbeSideTime: 80.743us - JoinFilterTimer: 412ns - MemoryUsage: - PeakMemoryUsage: 36.00 KB - ProbeKeyArena: 36.00 KB - OpenTime: 40.509us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.649us - ProbeFindNextTime: 0ns - ProbeRows: 2.185K (2185) - ProbeTime: 955.717us - ProbeWhenBuildSideOutputTime: 240.831us - ProbeWhenProbeSideOutputTime: 385.943us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 51.61us - ProjectionTime: 545.158us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 311.843ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 15.734us - ExecTime: 1.598ms - InitProbeSideTime: 23.637us - JoinFilterTimer: 343ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 37.307us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 664ns - ProbeFindNextTime: 0ns - ProbeRows: 6 - ProbeTime: 1.70ms - ProbeWhenBuildSideOutputTime: 337.237us - ProbeWhenProbeSideOutputTime: 12.749us - ProbeWhenProcessHashTableTime: 507.232us - ProbeWhenSearchHashTableTime: 53.448us - ProjectionTime: 465.989us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s413ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 1.158us - DeserializeAndMergeTime: 0ns - ExecTime: 54.129us - GetResultsTime: 14.875us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 843ns - HashTableSize: 6 - InsertKeysToColumnTime: 3.946us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.269us - ProjectionTime: 14.383us - RowsProduced: 6 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s949ms PipelineXTask (index=15):(Active: 4.773ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.475ms - CloseTime: 72.111us - GetBlockTime: 2.736ms - OpenTime: 30.495us - PrepareTime: 188.199us - SinkTime: 1.663ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.690ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 269.430us DATA_STREAM_SINK_OPERATOR (id=389,dst_id=389): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 379.83 KB - CloseTime: 13.887us - CompressTime: 0ns - ExecTime: 1.718ms - InputRows: 2.185K (2185) - LocalBytesSent: 0.00 - LocalSendTime: 0ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 1.82 MB - MergeBlockTime: 707.556us - OpenTime: 43.222us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.248ms - RowsProduced: 2.185K (2185) - RpcAvgTime: 3.486ms - RpcCount: 1 - RpcMaxTime: 3.486ms - RpcMinTime: 3.486ms - RpcSumTime: 3.486ms - SerializeBatchTime: 458.158us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 1.04 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=388): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 39.298us - ExecTime: 1.358ms - InitProbeSideTime: 70.244us - JoinFilterTimer: 136ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 52.193us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 896ns - ProbeFindNextTime: 0ns - ProbeRows: 2.185K (2185) - ProbeTime: 828.110us - ProbeWhenBuildSideOutputTime: 249.625us - ProbeWhenProbeSideOutputTime: 323.881us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 37.278us - ProjectionTime: 428.692us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 324.124ms HASH_JOIN_OPERATOR (id=387): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 14.930us - ExecTime: 1.468ms - InitProbeSideTime: 23.682us - JoinFilterTimer: 378ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 42.997us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 434ns - ProbeFindNextTime: 0ns - ProbeRows: 11 - ProbeTime: 991.988us - ProbeWhenBuildSideOutputTime: 474.961us - ProbeWhenProbeSideOutputTime: 18.115us - ProbeWhenProcessHashTableTime: 285.828us - ProbeWhenSearchHashTableTime: 50.362us - ProjectionTime: 411.527us - RowsProduced: 2.185K (2185) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s411ms AGGREGATION_OPERATOR (id=386): - BlocksProduced: 1 - CloseTime: 717ns - DeserializeAndMergeTime: 0ns - ExecTime: 59.2us - GetResultsTime: 17.582us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 660ns - HashTableSize: 11 - InsertKeysToColumnTime: 5.261us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.522us - ProjectionTime: 23.599us - RowsProduced: 11 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s950ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 342.838us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 264.388us - CloseTime: 2.854us - GetBlockTime: 126.387us - OpenTime: 1.572us - PrepareTime: 68.533us - SinkTime: 117.151us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 332.145us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 290.321us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.82us - BuildRows: 16 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.26us - BuildTableInsertTime: 15.873us - BuildTableTime: 33.852us - CloseTime: 0ns - ExecTime: 132.500us - InputRows: 15 - MemoryUsage: - BuildBlocks: 1.75 KB - BuildKeyArena: 4.00 KB - HashTable: 196.00 B - PeakMemoryUsage: 1.94 KB - OpenTime: 16.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 821ns - DeserializeAndMergeTime: 0ns - ExecTime: 135.694us - GetResultsTime: 56.348us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 907ns - HashTableSize: 15 - InsertKeysToColumnTime: 8.777us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.901us - ProjectionTime: 37.953us - RowsProduced: 15 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s577ms PipelineXTask (index=6):(Active: 267.927us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 196.217us - CloseTime: 2.294us - GetBlockTime: 85.916us - OpenTime: 6.70us - PrepareTime: 57.941us - SinkTime: 67.33us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 254.527us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.757us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 649ns - BuildRows: 12 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.981us - BuildTableInsertTime: 12.685us - BuildTableTime: 27.819us - CloseTime: 0ns - ExecTime: 86.433us - InputRows: 11 - MemoryUsage: - BuildBlocks: 1.28 KB - BuildKeyArena: 4.00 KB - HashTable: 116.00 B - PeakMemoryUsage: 1.39 KB - OpenTime: 19.154us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 838ns - DeserializeAndMergeTime: 0ns - ExecTime: 97.42us - GetResultsTime: 39.770us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 755ns - HashTableSize: 11 - InsertKeysToColumnTime: 4.496us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.215us - ProjectionTime: 28.101us - RowsProduced: 11 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s595ms PipelineXTask (index=11):(Active: 375.208us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 310.619us - CloseTime: 2.613us - GetBlockTime: 148.420us - OpenTime: 9.911us - PrepareTime: 46.206us - SinkTime: 106.169us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 362.519us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 166.900us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.89us - BuildRows: 20 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.128us - BuildTableInsertTime: 17.751us - BuildTableTime: 37.407us - CloseTime: 0ns - ExecTime: 116.794us - InputRows: 19 - MemoryUsage: - BuildBlocks: 2.22 KB - BuildKeyArena: 4.00 KB - HashTable: 212.00 B - PeakMemoryUsage: 2.42 KB - OpenTime: 11.43us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 983ns - DeserializeAndMergeTime: 0ns - ExecTime: 154.444us - GetResultsTime: 65.167us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 973ns - HashTableSize: 19 - InsertKeysToColumnTime: 18.633us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.496us - ProjectionTime: 36.540us - RowsProduced: 19 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s673ms PipelineXTask (index=16):(Active: 334.909us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 265.170us - CloseTime: 6.525us - GetBlockTime: 107.292us - OpenTime: 4.417us - PrepareTime: 52.779us - SinkTime: 84.238us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 279.413us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.851us HASH_JOIN_SINK_OPERATOR (id=388): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 732ns - BuildRows: 19 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.718us - BuildTableInsertTime: 11.957us - BuildTableTime: 26.810us - CloseTime: 0ns - ExecTime: 91.771us - InputRows: 18 - MemoryUsage: - BuildBlocks: 2.10 KB - BuildKeyArena: 4.00 KB - HashTable: 208.00 B - PeakMemoryUsage: 2.29 KB - OpenTime: 7.623us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=24): - BlocksProduced: 1 - CloseTime: 728ns - DeserializeAndMergeTime: 0ns - ExecTime: 119.957us - GetResultsTime: 55.278us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 637ns - HashTableSize: 18 - InsertKeysToColumnTime: 4.630us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.335us - ProjectionTime: 33.144us - RowsProduced: 18 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s686ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 2.713ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.611ms - CloseTime: 6.133us - GetBlockTime: 682.865us - OpenTime: 2.530us - PrepareTime: 85.918us - SinkTime: 1.646ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 50 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.599ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 638.192us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.211us - BuildRows: 1.956K (1956) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.179ms - BuildTableInsertTime: 119.60us - BuildTableTime: 123.941us - CloseTime: 0ns - ExecTime: 1.670ms - InputRows: 1.955K (1955) - MemoryUsage: - BuildBlocks: 660.58 KB - BuildKeyArena: 36.00 KB - HashTable: 25.55 KB - PeakMemoryUsage: 718.12 KB - OpenTime: 33.33us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.516us - RuntimeFilterComputeTime: 96.561us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 36 - BytesReceived: 145.05 KB - CloseTime: 3.862us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 842.367us - ExecTime: 701.153us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 517.38 KB - MemoryUsage: - Blocks: 85.25 KB - PeakMemoryUsage: 85.25 KB - OpenTime: 27.117us - ProjectionTime: 0ns - RowsProduced: 1.955K (1955) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s358ms PipelineXTask (index=7):(Active: 1.992ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.888ms - CloseTime: 17.218us - GetBlockTime: 577.340us - OpenTime: 1.990us - PrepareTime: 77.726us - SinkTime: 1.68ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.920ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.177ms HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.359us - BuildRows: 1.381K (1381) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 808.417us - BuildTableInsertTime: 73.988us - BuildTableTime: 75.908us - CloseTime: 0ns - ExecTime: 1.79ms - InputRows: 1.38K (1380) - MemoryUsage: - BuildBlocks: 468.09 KB - BuildKeyArena: 28.00 KB - HashTable: 14.75 KB - PeakMemoryUsage: 506.83 KB - OpenTime: 17.391us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.996us - RuntimeFilterComputeTime: 67.582us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 36 - BytesReceived: 111.93 KB - CloseTime: 15.744us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 942.355us - ExecTime: 606.369us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 373.13 KB - MemoryUsage: - Blocks: 109.63 KB - PeakMemoryUsage: 93.88 KB - OpenTime: 23.800us - ProjectionTime: 0ns - RowsProduced: 1.38K (1380) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s359ms PipelineXTask (index=12):(Active: 2.459ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 2.373ms - CloseTime: 4.871us - GetBlockTime: 550.918us - OpenTime: 4.345us - PrepareTime: 68.866us - SinkTime: 1.606ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.402ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 900.68us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.346us - BuildRows: 2.186K (2186) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.295ms - BuildTableInsertTime: 93.429us - BuildTableTime: 95.839us - CloseTime: 0ns - ExecTime: 1.622ms - InputRows: 2.185K (2185) - MemoryUsage: - BuildBlocks: 745.14 KB - BuildKeyArena: 40.00 KB - HashTable: 26.68 KB - PeakMemoryUsage: 807.81 KB - OpenTime: 26.24us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.48us - RuntimeFilterComputeTime: 101.568us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 36 - BytesReceived: 157.32 KB - CloseTime: 3.324us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 886.701us - ExecTime: 546.339us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 538.50 KB - MemoryUsage: - Blocks: 93.38 KB - PeakMemoryUsage: 93.13 KB - OpenTime: 18.720us - ProjectionTime: 0ns - RowsProduced: 2.185K (2185) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s359ms PipelineXTask (index=17):(Active: 2.351ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 2.273ms - CloseTime: 4.50us - GetBlockTime: 490.959us - OpenTime: 2.777us - PrepareTime: 63.831us - SinkTime: 1.618ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.313ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 768.118us HASH_JOIN_SINK_OPERATOR (id=387): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.14us - BuildRows: 2.186K (2186) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.307ms - BuildTableInsertTime: 81.5us - BuildTableTime: 83.130us - CloseTime: 0ns - ExecTime: 1.627ms - InputRows: 2.185K (2185) - MemoryUsage: - BuildBlocks: 736.94 KB - BuildKeyArena: 40.00 KB - HashTable: 26.68 KB - PeakMemoryUsage: 799.61 KB - OpenTime: 15.857us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 62.756us - RuntimeFilterComputeTime: 61.914us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=375): - BlocksProduced: 36 - BytesReceived: 161.37 KB - CloseTime: 2.716us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.70ms - ExecTime: 500.203us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 524.25 KB - MemoryUsage: - Blocks: 97.00 KB - PeakMemoryUsage: 91.13 KB - OpenTime: 21.184us - ProjectionTime: 0ns - RowsProduced: 2.185K (2185) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s359ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 4.54ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.932ms - CloseTime: 18.447us - GetBlockTime: 133.177us - OpenTime: 5.362us - PrepareTime: 91.791us - SinkTime: 3.667ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.846ms AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.974us - DeserializeAndMergeTime: 3.545ms - ExecTime: 3.719ms - ExprTime: 0ns - HashTableComputeTime: 44.508us - HashTableEmplaceTime: 32.690us - HashTableInputCount: 41 - InputRows: 41 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 3.628ms - OpenTime: 56.722us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 6 - BytesReceived: 58.40 KB - CloseTime: 13.970us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 24.172us - ExecTime: 151.556us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 385.75 KB - MemoryUsage: - Blocks: 128.56 KB - PeakMemoryUsage: 128.56 KB - OpenTime: 14.952us - ProjectionTime: 0ns - RowsProduced: 41 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s939ms PipelineXTask (index=8):(Active: 1.677ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.570ms - CloseTime: 11.183us - GetBlockTime: 42.223us - OpenTime: 6.570us - PrepareTime: 82.501us - SinkTime: 1.430ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.635ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.371ms AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 2.149us - DeserializeAndMergeTime: 1.324ms - ExecTime: 1.471ms - ExprTime: 0ns - HashTableComputeTime: 44.560us - HashTableEmplaceTime: 31.536us - HashTableInputCount: 16 - InputRows: 16 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 1.396ms - OpenTime: 42.80us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 6 - BytesReceived: 21.47 KB - CloseTime: 7.451us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 48.61us - ExecTime: 64.97us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 101.09 KB - MemoryUsage: - Blocks: 32.31 KB - PeakMemoryUsage: 32.31 KB - OpenTime: 22.331us - ProjectionTime: 0ns - RowsProduced: 16 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s946ms PipelineXTask (index=13):(Active: 1.845ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.757ms - CloseTime: 6.156us - GetBlockTime: 107.744us - OpenTime: 4.123us - PrepareTime: 71.875us - SinkTime: 1.545ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.813ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 454.371us AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.146us - DeserializeAndMergeTime: 1.398ms - ExecTime: 1.577ms - ExprTime: 0ns - HashTableComputeTime: 83.28us - HashTableEmplaceTime: 60.670us - HashTableInputCount: 21 - InputRows: 21 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 1.521ms - OpenTime: 39.307us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 6 - BytesReceived: 33.59 KB - CloseTime: 4.186us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 15.792us - ExecTime: 116.89us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.19 KB - MemoryUsage: - Blocks: 64.31 KB - PeakMemoryUsage: 64.31 KB - OpenTime: 13.383us - ProjectionTime: 0ns - RowsProduced: 21 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s947ms PipelineXTask (index=18):(Active: 3.779ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.673ms - CloseTime: 10.228us - GetBlockTime: 78.407us - OpenTime: 3.30us - PrepareTime: 87.796us - SinkTime: 3.524ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 278.683us AGGREGATION_SINK_OPERATOR (id=386): - BuildTime: 0ns - CloseTime: 1.739us - DeserializeAndMergeTime: 3.396ms - ExecTime: 3.566ms - ExprTime: 0ns - HashTableComputeTime: 49.586us - HashTableEmplaceTime: 39.429us - HashTableInputCount: 41 - InputRows: 41 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 3.490ms - OpenTime: 48.241us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=385): - BlocksProduced: 6 - BytesReceived: 69.32 KB - CloseTime: 7.91us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 14.465us - ExecTime: 83.799us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 449.50 KB - MemoryUsage: - Blocks: 128.56 KB - PeakMemoryUsage: 128.56 KB - OpenTime: 15.676us - ProjectionTime: 0ns - RowsProduced: 41 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s946ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 101.536ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 101.398ms - CloseTime: 11.680us - GetBlockTime: 312.811us - OpenTime: 2.415us - PrepareTime: 118.133us - SinkTime: 100.923ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.489ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.134ms AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 1.734us - DeserializeAndMergeTime: 100.436ms - ExecTime: 100.992ms - ExprTime: 0ns - HashTableComputeTime: 97.610us - HashTableEmplaceTime: 67.913us - HashTableInputCount: 177 - InputRows: 177 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 100.873ms - OpenTime: 76.347us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 22 - BytesReceived: 10.53 MB - CloseTime: 7.848us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.416ms - ExecTime: 319.254us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.36 MB - MemoryUsage: - Blocks: 3.43 MB - PeakMemoryUsage: 1.18 MB - OpenTime: 18.468us - ProjectionTime: 0ns - RowsProduced: 177 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s473ms PipelineXTask (index=9):(Active: 51.409ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 51.271ms - CloseTime: 9.542us - GetBlockTime: 534.160us - OpenTime: 2.590us - PrepareTime: 118.263us - SinkTime: 50.482ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 51.348ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.168ms AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 1.741us - DeserializeAndMergeTime: 49.952ms - ExecTime: 50.556ms - ExprTime: 0ns - HashTableComputeTime: 158.328us - HashTableEmplaceTime: 119.819us - HashTableInputCount: 132 - InputRows: 132 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 50.422ms - OpenTime: 82.501us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 22 - BytesReceived: 5.89 MB - CloseTime: 6.292us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.139ms - ExecTime: 534.634us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.05 MB - MemoryUsage: - Blocks: 5.19 MB - PeakMemoryUsage: 571.06 KB - OpenTime: 16.79us - ProjectionTime: 0ns - RowsProduced: 132 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s542ms PipelineXTask (index=14):(Active: 88.689ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 88.558ms - CloseTime: 12.575us - GetBlockTime: 349.35us - OpenTime: 2.993us - PrepareTime: 106.759us - SinkTime: 88.16ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.620ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 632.500us AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 2.34us - DeserializeAndMergeTime: 87.551ms - ExecTime: 88.80ms - ExprTime: 0ns - HashTableComputeTime: 126.353us - HashTableEmplaceTime: 74.536us - HashTableInputCount: 221 - InputRows: 221 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 87.966ms - OpenTime: 72.73us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 22 - BytesReceived: 10.97 MB - CloseTime: 8.514us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 9.222ms - ExecTime: 354.401us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.66 MB - MemoryUsage: - Blocks: 10.21 MB - PeakMemoryUsage: 852.06 KB - OpenTime: 15.631us - ProjectionTime: 0ns - RowsProduced: 221 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s584ms PipelineXTask (index=19):(Active: 122.573ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 122.434ms - CloseTime: 6.828us - GetBlockTime: 370.108us - OpenTime: 2.785us - PrepareTime: 123.842us - SinkTime: 121.898ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.528ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 728.123us AGGREGATION_SINK_OPERATOR (id=24): - BuildTime: 0ns - CloseTime: 1.65us - DeserializeAndMergeTime: 121.395ms - ExecTime: 121.976ms - ExprTime: 0ns - HashTableComputeTime: 111.400us - HashTableEmplaceTime: 65.380us - HashTableInputCount: 206 - InputRows: 206 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 121.841ms - OpenTime: 86.44us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=23): - BlocksProduced: 22 - BytesReceived: 11.99 MB - CloseTime: 4.138us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.412ms - ExecTime: 375.691us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.47 MB - MemoryUsage: - Blocks: 5.49 MB - PeakMemoryUsage: 1.24 MB - OpenTime: 18.949us - ProjectionTime: 0ns - RowsProduced: 206 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s563ms Fragment 2: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 23.531ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.221ms - CloseTime: 67.296us - GetBlockTime: 22.816ms - OpenTime: 3.948us - PrepareTime: 232.19us - SinkTime: 319.349us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 23.454ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.929ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 41.82 KB - CloseTime: 16.342us - CompressTime: 0ns - ExecTime: 392.60us - InputRows: 31 - LocalBytesSent: 173.42 KB - LocalSendTime: 109.314us - LocalSentRows: 25 - MemoryUsage: - PeakMemoryUsage: 321.81 KB - MergeBlockTime: 0ns - OpenTime: 57.455us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s587ms - RowsProduced: 31 - RpcAvgTime: 2s586ms - RpcCount: 1 - RpcMaxTime: 2s586ms - RpcMinTime: 2s586ms - RpcSumTime: 2s586ms - SerializeBatchTime: 47.345us - SplitBlockDistributeByChannelTime: 48.27us - SplitBlockHashComputeTime: 10.263us - UncompressedRowBatchSize: 41.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 5.245ms - CloseTime: 19.705us - DeserializeAndMergeTime: 0ns - ExecTime: 5.827ms - ExprTime: 20.183us - GetResultsTime: 450.601us - HashTableComputeTime: 1.726ms - HashTableEmplaceTime: 909.386us - HashTableInputCount: 36.774K (36774) - HashTableIterateTime: 1.446us - HashTableSize: 31 - InsertKeysToColumnTime: 7.240us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 45.291us - ProjectionTime: 0ns - RowsProduced: 31 - SerializeDataTime: 427.987us - SerializeKeyTime: 0ns - SerializeResultTime: 453.133us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 20.197us - ExecTime: 16.736ms - InitProbeSideTime: 6.620ms - JoinFilterTimer: 4.227us - MemoryUsage: - PeakMemoryUsage: 900.00 KB - ProbeKeyArena: 900.00 KB - OpenTime: 18.388us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.583us - ProbeFindNextTime: 0ns - ProbeRows: 78.852K (78852) - ProbeTime: 15.694ms - ProbeWhenBuildSideOutputTime: 1.47ms - ProbeWhenProbeSideOutputTime: 448.989us - ProbeWhenProcessHashTableTime: 1.787ms - ProbeWhenSearchHashTableTime: 5.336ms - ProjectionTime: 819.347us - RowsProduced: 36.774K (36774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s268ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 23 - BytesReceived: 473.68 KB - CloseTime: 6.675us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 977.59us - ExecTime: 222.171us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.27 MB - MemoryUsage: - Blocks: 7.89 MB - PeakMemoryUsage: 6.27 MB - OpenTime: 26.834us - ProjectionTime: 0ns - RowsProduced: 78.852K (78852) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 645.376ms PipelineXTask (index=2):(Active: 19.850ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.527ms - CloseTime: 102.571us - GetBlockTime: 19.165ms - OpenTime: 8.313us - PrepareTime: 207.321us - SinkTime: 266.964us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 19.739ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.852ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 43.85 KB - CloseTime: 22.10us - CompressTime: 0ns - ExecTime: 349.808us - InputRows: 30 - LocalBytesSent: 140.22 KB - LocalSendTime: 80.924us - LocalSentRows: 23 - MemoryUsage: - PeakMemoryUsage: 325.72 KB - MergeBlockTime: 0ns - OpenTime: 61.545us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s708ms - RowsProduced: 30 - RpcAvgTime: 2s708ms - RpcCount: 1 - RpcMaxTime: 2s708ms - RpcMinTime: 2s708ms - RpcSumTime: 2s708ms - SerializeBatchTime: 43.789us - SplitBlockDistributeByChannelTime: 54.719us - SplitBlockHashComputeTime: 7.392us - UncompressedRowBatchSize: 43.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 4.903ms - CloseTime: 28.444us - DeserializeAndMergeTime: 0ns - ExecTime: 5.226ms - ExprTime: 16.624us - GetResultsTime: 169.458us - HashTableComputeTime: 1.495ms - HashTableEmplaceTime: 773.366us - HashTableInputCount: 32.103K (32103) - HashTableIterateTime: 589ns - HashTableSize: 30 - InsertKeysToColumnTime: 4.646us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 67.695us - ProjectionTime: 0ns - RowsProduced: 30 - SerializeDataTime: 156.240us - SerializeKeyTime: 0ns - SerializeResultTime: 171.776us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 32.502us - ExecTime: 13.658ms - InitProbeSideTime: 6.905ms - JoinFilterTimer: 2.989us - MemoryUsage: - PeakMemoryUsage: 996.00 KB - ProbeKeyArena: 996.00 KB - OpenTime: 17.984us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.446us - ProbeFindNextTime: 0ns - ProbeRows: 81.45K (81450) - ProbeTime: 12.720ms - ProbeWhenBuildSideOutputTime: 676.856us - ProbeWhenProbeSideOutputTime: 375.123us - ProbeWhenProcessHashTableTime: 1.229ms - ProbeWhenSearchHashTableTime: 3.13ms - ProjectionTime: 706.69us - RowsProduced: 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s127ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 24 - BytesReceived: 415.31 KB - CloseTime: 13.300us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 991.446us - ExecTime: 310.693us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.42 MB - MemoryUsage: - Blocks: 7.87 MB - PeakMemoryUsage: 6.42 MB - OpenTime: 14.76us - ProjectionTime: 0ns - RowsProduced: 81.45K (81450) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 645.670ms PipelineXTask (index=4):(Active: 20.895ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 20.665ms - CloseTime: 64.834us - GetBlockTime: 20.293ms - OpenTime: 4.329us - PrepareTime: 155.158us - SinkTime: 278.503us - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 20.820ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.895ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 35.66 KB - CloseTime: 15.50us - CompressTime: 0ns - ExecTime: 332.365us - InputRows: 31 - LocalBytesSent: 179.76 KB - LocalSendTime: 68.987us - LocalSentRows: 24 - MemoryUsage: - PeakMemoryUsage: 321.75 KB - MergeBlockTime: 0ns - OpenTime: 39.420us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s683ms - RowsProduced: 31 - RpcAvgTime: 2s683ms - RpcCount: 1 - RpcMaxTime: 2s683ms - RpcMinTime: 2s683ms - RpcSumTime: 2s683ms - SerializeBatchTime: 41.696us - SplitBlockDistributeByChannelTime: 73.170us - SplitBlockHashComputeTime: 6.716us - UncompressedRowBatchSize: 35.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 5.600ms - CloseTime: 17.863us - DeserializeAndMergeTime: 0ns - ExecTime: 5.968ms - ExprTime: 17.768us - GetResultsTime: 240.614us - HashTableComputeTime: 1.923ms - HashTableEmplaceTime: 939.922us - HashTableInputCount: 38.892K (38892) - HashTableIterateTime: 960ns - HashTableSize: 31 - InsertKeysToColumnTime: 6.627us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 38.853us - ProjectionTime: 0ns - RowsProduced: 31 - SerializeDataTime: 222.792us - SerializeKeyTime: 0ns - SerializeResultTime: 242.842us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 27 - BuildOutputBlock: 0ns - CloseTime: 20.975us - ExecTime: 14.43ms - InitProbeSideTime: 6.124ms - JoinFilterTimer: 4.579us - MemoryUsage: - PeakMemoryUsage: 912.00 KB - ProbeKeyArena: 912.00 KB - OpenTime: 14.357us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.333us - ProbeFindNextTime: 0ns - ProbeRows: 78.302K (78302) - ProbeTime: 13.48ms - ProbeWhenBuildSideOutputTime: 802.717us - ProbeWhenProbeSideOutputTime: 356.754us - ProbeWhenProcessHashTableTime: 1.581ms - ProbeWhenSearchHashTableTime: 3.736ms - ProjectionTime: 757.251us - RowsProduced: 38.892K (38892) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s152ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 24 - BytesReceived: 439.66 KB - CloseTime: 6.698us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 949.82us - ExecTime: 241.696us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.02 MB - MemoryUsage: - Blocks: 7.50 MB - PeakMemoryUsage: 6.02 MB - OpenTime: 24.87us - ProjectionTime: 0ns - RowsProduced: 78.302K (78302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 646.536ms PipelineXTask (index=6):(Active: 17.594ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.293ms - CloseTime: 97.131us - GetBlockTime: 16.970ms - OpenTime: 5.344us - PrepareTime: 193.151us - SinkTime: 229.278us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.474ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.858ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.12 KB - CloseTime: 15.604us - CompressTime: 0ns - ExecTime: 282.584us - InputRows: 27 - LocalBytesSent: 181.70 KB - LocalSendTime: 68.662us - LocalSentRows: 23 - MemoryUsage: - PeakMemoryUsage: 337.50 KB - MergeBlockTime: 0ns - OpenTime: 38.614us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s593ms - RowsProduced: 27 - RpcAvgTime: 2s593ms - RpcCount: 1 - RpcMaxTime: 2s593ms - RpcMinTime: 2s593ms - RpcSumTime: 2s593ms - SerializeBatchTime: 23.337us - SplitBlockDistributeByChannelTime: 35.696us - SplitBlockHashComputeTime: 5.449us - UncompressedRowBatchSize: 22.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.820ms - CloseTime: 46.513us - DeserializeAndMergeTime: 0ns - ExecTime: 4.203ms - ExprTime: 19.744us - GetResultsTime: 241.918us - HashTableComputeTime: 1.265ms - HashTableEmplaceTime: 638.39us - HashTableInputCount: 35.067K (35067) - HashTableIterateTime: 960ns - HashTableSize: 27 - InsertKeysToColumnTime: 6.470us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 35.264us - ProjectionTime: 0ns - RowsProduced: 27 - SerializeDataTime: 221.973us - SerializeKeyTime: 0ns - SerializeResultTime: 244.392us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 24.181us - ExecTime: 12.495ms - InitProbeSideTime: 4.824ms - JoinFilterTimer: 3.656us - MemoryUsage: - PeakMemoryUsage: 852.00 KB - ProbeKeyArena: 852.00 KB - OpenTime: 12.899us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.667us - ProbeFindNextTime: 0ns - ProbeRows: 77.326K (77326) - ProbeTime: 11.625ms - ProbeWhenBuildSideOutputTime: 729.510us - ProbeWhenProbeSideOutputTime: 341.557us - ProbeWhenProcessHashTableTime: 1.535ms - ProbeWhenSearchHashTableTime: 3.730ms - ProjectionTime: 644.0us - RowsProduced: 35.067K (35067) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s266ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 24 - BytesReceived: 454.93 KB - CloseTime: 6.820us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 890.466us - ExecTime: 265.136us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.03 MB - MemoryUsage: - Blocks: 7.65 MB - PeakMemoryUsage: 6.03 MB - OpenTime: 24.691us - ProjectionTime: 0ns - RowsProduced: 77.326K (77326) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 646.160ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 15.724ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 15.616ms - CloseTime: 12.775us - GetBlockTime: 241.869us - OpenTime: 3.153us - PrepareTime: 86.269us - SinkTime: 15.225ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.680ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.760ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.177us - BuildRows: 36.775K (36775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.693ms - BuildTableInsertTime: 6.28ms - BuildTableTime: 6.41ms - CloseTime: 0ns - ExecTime: 15.258ms - InputRows: 36.774K (36774) - MemoryUsage: - BuildBlocks: 2.97 MB - BuildKeyArena: 2.43 MB - HashTable: 435.57 KB - PeakMemoryUsage: 5.81 MB - OpenTime: 43.456us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 25.478us - RuntimeFilterComputeTime: 3.354ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 14 - BytesReceived: 469.87 KB - CloseTime: 9.619us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 627.722us - ExecTime: 252.259us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.54 MB - MemoryUsage: - Blocks: 876.00 KB - PeakMemoryUsage: 876.00 KB - OpenTime: 16.998us - ProjectionTime: 0ns - RowsProduced: 36.774K (36774) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s891ms PipelineXTask (index=3):(Active: 11.787ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 11.684ms - CloseTime: 14.153us - GetBlockTime: 224.849us - OpenTime: 5.30us - PrepareTime: 77.203us - SinkTime: 11.310ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.742ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.522ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.502us - BuildRows: 32.104K (32104) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.549ms - BuildTableInsertTime: 3.639ms - BuildTableTime: 3.645ms - CloseTime: 0ns - ExecTime: 11.329ms - InputRows: 32.103K (32103) - MemoryUsage: - BuildBlocks: 2.58 MB - BuildKeyArena: 2.12 MB - HashTable: 412.76 KB - PeakMemoryUsage: 5.09 MB - OpenTime: 27.822us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.426us - RuntimeFilterComputeTime: 2.988ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 11 - BytesReceived: 316.61 KB - CloseTime: 10.950us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 343.672us - ExecTime: 252.784us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.77 MB - MemoryUsage: - Blocks: 688.00 KB - PeakMemoryUsage: 688.00 KB - OpenTime: 30.535us - ProjectionTime: 0ns - RowsProduced: 32.103K (32103) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s756ms PipelineXTask (index=5):(Active: 15.30ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 14.947ms - CloseTime: 14.138us - GetBlockTime: 270.77us - OpenTime: 1.925us - PrepareTime: 60.447us - SinkTime: 14.536ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.986ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.304ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 38.299us - BuildRows: 38.893K (38893) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.908ms - BuildTableInsertTime: 5.367ms - BuildTableTime: 5.374ms - CloseTime: 0ns - ExecTime: 14.550ms - InputRows: 38.892K (38892) - MemoryUsage: - BuildBlocks: 3.15 MB - BuildKeyArena: 2.57 MB - HashTable: 445.91 KB - PeakMemoryUsage: 6.14 MB - OpenTime: 23.492us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 34.811us - RuntimeFilterComputeTime: 3.67ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 13 - BytesReceived: 417.44 KB - CloseTime: 11.111us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 536.745us - ExecTime: 276.246us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.02 MB - MemoryUsage: - Blocks: 1.09 MB - PeakMemoryUsage: 1.09 MB - OpenTime: 13.214us - ProjectionTime: 0ns - RowsProduced: 38.892K (38892) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s773ms PipelineXTask (index=7):(Active: 10.846ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 10.748ms - CloseTime: 21.688us - GetBlockTime: 179.758us - OpenTime: 1.876us - PrepareTime: 67.528us - SinkTime: 10.463ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.798ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.756ms HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.586us - BuildRows: 35.068K (35068) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.245ms - BuildTableInsertTime: 4.41ms - BuildTableTime: 4.45ms - CloseTime: 0ns - ExecTime: 10.485ms - InputRows: 35.067K (35067) - MemoryUsage: - BuildBlocks: 2.84 MB - BuildKeyArena: 2.31 MB - HashTable: 427.23 KB - PeakMemoryUsage: 5.57 MB - OpenTime: 28.537us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 112.860us - RuntimeFilterComputeTime: 1.949ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 14 - BytesReceived: 447.32 KB - CloseTime: 18.58us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 646.393us - ExecTime: 195.192us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.66 MB - MemoryUsage: - Blocks: 688.00 KB - PeakMemoryUsage: 560.00 KB - OpenTime: 13.661us - ProjectionTime: 0ns - RowsProduced: 35.067K (35067) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s895ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 14.647ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 14.244ms - CloseTime: 94.440us - GetBlockTime: 13.745ms - OpenTime: 13.213us - PrepareTime: 286.932us - SinkTime: 402.91us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.511ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.842ms DATA_STREAM_SINK_OPERATOR (id=385,dst_id=385): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 182.69 KB - CloseTime: 22.437us - CompressTime: 0ns - ExecTime: 500.200us - InputRows: 28 - LocalBytesSent: 35.87 KB - LocalSendTime: 19.961us - LocalSentRows: 4 - MemoryUsage: - PeakMemoryUsage: 353.81 KB - MergeBlockTime: 0ns - OpenTime: 75.915us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.421ms - RowsProduced: 28 - RpcAvgTime: 30.477ms - RpcCount: 4 - RpcMaxTime: 31.876ms - RpcMinTime: 27.636ms - RpcSumTime: 121.909ms - SerializeBatchTime: 91.393us - SplitBlockDistributeByChannelTime: 38.293us - SplitBlockHashComputeTime: 16.566us - UncompressedRowBatchSize: 182.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=384): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.616ms - CloseTime: 31.883us - DeserializeAndMergeTime: 0ns - ExecTime: 3.988ms - ExprTime: 11.813us - GetResultsTime: 227.512us - HashTableComputeTime: 1.165ms - HashTableEmplaceTime: 593.981us - HashTableInputCount: 37.995K (37995) - HashTableIterateTime: 1.426us - HashTableSize: 28 - InsertKeysToColumnTime: 4.531us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 544.28 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 65.162us - ProjectionTime: 0ns - RowsProduced: 28 - SerializeDataTime: 204.440us - SerializeKeyTime: 0ns - SerializeResultTime: 229.334us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=383): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 20.774us - ExecTime: 9.631ms - InitProbeSideTime: 4.50ms - JoinFilterTimer: 1.561us - MemoryUsage: - PeakMemoryUsage: 1.04 MB - ProbeKeyArena: 1.04 MB - OpenTime: 25.772us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 36.964us - ProbeFindNextTime: 0ns - ProbeRows: 83.153K (83153) - ProbeTime: 8.897ms - ProbeWhenBuildSideOutputTime: 556.943us - ProbeWhenProbeSideOutputTime: 245.450us - ProbeWhenProcessHashTableTime: 1.288ms - ProbeWhenSearchHashTableTime: 2.424ms - ProjectionTime: 526.89us - RowsProduced: 37.995K (37995) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s419ms EXCHANGE_OPERATOR (id=382): - BlocksProduced: 36 - BytesReceived: 1.87 MB - CloseTime: 11.887us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.942ms - ExecTime: 184.485us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.81 MB - MemoryUsage: - Blocks: 8.15 MB - PeakMemoryUsage: 1.81 MB - OpenTime: 25.608us - ProjectionTime: 0ns - RowsProduced: 83.153K (83153) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s480ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 12.466ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 12.327ms - CloseTime: 12.431us - GetBlockTime: 179.316us - OpenTime: 3.325us - PrepareTime: 116.11us - SinkTime: 12.25ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.422ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 531.955us HASH_JOIN_SINK_OPERATOR (id=383): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.416us - BuildRows: 37.996K (37996) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.243ms - BuildTableInsertTime: 4.117ms - BuildTableTime: 4.123ms - CloseTime: 0ns - ExecTime: 12.75ms - InputRows: 37.995K (37995) - MemoryUsage: - BuildBlocks: 3.08 MB - BuildKeyArena: 2.51 MB - HashTable: 441.53 KB - PeakMemoryUsage: 6.02 MB - OpenTime: 56.694us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 251.678us - RuntimeFilterComputeTime: 3.276ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=380): - BlocksProduced: 15 - BytesReceived: 835.91 KB - CloseTime: 9.455us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.210ms - ExecTime: 196.440us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.46 MB - MemoryUsage: - Blocks: 560.00 KB - PeakMemoryUsage: 560.00 KB - OpenTime: 20.365us - ProjectionTime: 0ns - RowsProduced: 37.995K (37995) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s91ms Fragment 3: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 11.592ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 10.896ms - CloseTime: 45.195us - GetBlockTime: 163.821us - OpenTime: 182.948us - PrepareTime: 457.276us - SinkTime: 10.493ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 11.533ms - WaitBfTime: 671.768ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 285.504us DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.74 MB - CloseTime: 15.983us - CompressTime: 0ns - ExecTime: 10.595ms - InputRows: 78.985K (78985) - LocalBytesSent: 1.13 MB - LocalSendTime: 27.236us - LocalSentRows: 17.616K (17616) - MemoryUsage: - PeakMemoryUsage: 3.59 MB - MergeBlockTime: 0ns - OpenTime: 90.252us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s80ms - RowsProduced: 78.985K (78985) - RpcAvgTime: 265.713ms - RpcCount: 16 - RpcMaxTime: 1s66ms - RpcMinTime: 1s58ms - RpcSumTime: 4s251ms - SerializeBatchTime: 4.894ms - SplitBlockDistributeByChannelTime: 2.779ms - SplitBlockHashComputeTime: 2.53ms - UncompressedRowBatchSize: 3.98 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 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: 6.613us - BlocksProduced: 20 - CloseTime: 25.783us - ExecTime: 6.577ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 444.986us - ProcessConjunctTime: 50.728us - ProjectionTime: 0ns - RowsProduced: 78.985K (78985) - RowsRead: 78.985K (78985) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 89.243us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 5.946ms - 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.679ms, ] - PerScannerRowsRead: [78.98K, ] - PerScannerWaitTime: [89.243us, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.594ms - MemoryUsage: - FreeBlocks: 5.62 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 908.684us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 909ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.860ms - ScannerCtxSchedTime: 86.274us - ScannerFilterTime: 9.87us - ScannerGetBlockTime: 4.662ms - ScannerInitTime: 83.330us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 349ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.624us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 63.837us - BlockInitTime: 128.680us - BlockLoadTime: 5.368ms - BlocksLoad: 21 - CachedPagesNum: 31 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 305.216us - FirstReadTime: 5.160ms - IOTimer: 0ns - InvertedIndexFilterTime: 920ns - 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: 3.681us - OutputIndexResultColumnTimer: 3.169us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 11.3ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 10.334ms - CloseTime: 80.457us - GetBlockTime: 225.605us - OpenTime: 327.519us - PrepareTime: 249.965us - SinkTime: 9.677ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.717ms - WaitBfTime: 638.370ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 315.94us DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 545.82 KB - CloseTime: 22.345us - CompressTime: 0ns - ExecTime: 9.737ms - InputRows: 83.949K (83949) - LocalBytesSent: 4.19 MB - LocalSendTime: 142.481us - LocalSentRows: 65.341K (65341) - MemoryUsage: - PeakMemoryUsage: 6.71 MB - MergeBlockTime: 0ns - OpenTime: 44.785us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s281ms - RowsProduced: 83.949K (83949) - RpcAvgTime: 1s849ms - RpcCount: 5 - RpcMaxTime: 9s249ms - RpcMinTime: 9s249ms - RpcSumTime: 9s249ms - SerializeBatchTime: 1.672ms - SplitBlockDistributeByChannelTime: 4.795ms - SplitBlockHashComputeTime: 2.391ms - UncompressedRowBatchSize: 1.21 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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: 9.504us - BlocksProduced: 21 - CloseTime: 53.33us - ExecTime: 7.9ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 455.733us - ProcessConjunctTime: 64.516us - ProjectionTime: 0ns - RowsProduced: 83.949K (83949) - RowsRead: 83.949K (83949) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 57.769us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 6.283ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [5.112ms, ] - PerScannerRowsRead: [83.95K, ] - PerScannerWaitTime: [57.769us, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.34ms - MemoryUsage: - FreeBlocks: 6.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 861.32us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 909ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 6.233ms - ScannerCtxSchedTime: 55.621us - ScannerFilterTime: 7.992us - ScannerGetBlockTime: 5.96ms - ScannerInitTime: 200.523us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 274ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.614us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 43.3us - BlockInitTime: 69.580us - BlockLoadTime: 5.792ms - BlocksLoad: 22 - CachedPagesNum: 35 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 42 - FirstReadSeekTime: 258.941us - FirstReadTime: 5.650ms - IOTimer: 0ns - InvertedIndexFilterTime: 387ns - 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.187us - OutputIndexResultColumnTimer: 1.922us - 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: 12.98ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 11.604ms - CloseTime: 87.126us - GetBlockTime: 238.142us - OpenTime: 224.401us - PrepareTime: 174.32us - SinkTime: 11.81ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 11.727ms - WaitBfTime: 638.439ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 540.307us DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 425.66 KB - CloseTime: 40.784us - CompressTime: 0ns - ExecTime: 11.156ms - InputRows: 76.266K (76266) - LocalBytesSent: 3.95 MB - LocalSendTime: 83.910us - LocalSentRows: 61.685K (61685) - MemoryUsage: - PeakMemoryUsage: 6.50 MB - MergeBlockTime: 0ns - OpenTime: 40.398us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s437ms - RowsProduced: 76.266K (76266) - RpcAvgTime: 2s106ms - RpcCount: 4 - RpcMaxTime: 8s427ms - RpcMinTime: 8s427ms - RpcSumTime: 8s427ms - SerializeBatchTime: 1.674ms - SplitBlockDistributeByChannelTime: 5.809ms - SplitBlockHashComputeTime: 2.861ms - UncompressedRowBatchSize: 967.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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: 2.619us - BlocksProduced: 19 - CloseTime: 41.860us - ExecTime: 10.436ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 297.203us - ProcessConjunctTime: 27.311us - ProjectionTime: 0ns - RowsProduced: 76.266K (76266) - RowsRead: 76.266K (76266) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 43.897us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 9.866ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [8.126ms, ] - PerScannerRowsRead: [76.27K, ] - PerScannerWaitTime: [43.897us, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.35ms - MemoryUsage: - FreeBlocks: 5.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.429ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 757ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.829ms - ScannerCtxSchedTime: 41.574us - ScannerFilterTime: 10.646us - ScannerGetBlockTime: 8.106ms - ScannerInitTime: 150.674us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 234ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.307us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 47.620us - BlockInitTime: 74.15us - BlockLoadTime: 9.351ms - BlocksLoad: 20 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 38 - FirstReadSeekTime: 689.791us - FirstReadTime: 9.172ms - IOTimer: 0ns - InvertedIndexFilterTime: 374ns - 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.137us - OutputIndexResultColumnTimer: 3.100us - 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: 17.406ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.23ms - CloseTime: 80.355us - GetBlockTime: 253.949us - OpenTime: 113.584us - PrepareTime: 179.931us - SinkTime: 16.570ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.314ms - WaitBfTime: 638.597ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 598.737us DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 438.37 KB - CloseTime: 35.372us - CompressTime: 0ns - ExecTime: 16.636ms - InputRows: 80.456K (80456) - LocalBytesSent: 4.19 MB - LocalSendTime: 143.469us - LocalSentRows: 65.394K (65394) - MemoryUsage: - PeakMemoryUsage: 6.92 MB - MergeBlockTime: 0ns - OpenTime: 39.204us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s435ms - RowsProduced: 80.456K (80456) - RpcAvgTime: 2s107ms - RpcCount: 4 - RpcMaxTime: 8s428ms - RpcMinTime: 8s428ms - RpcSumTime: 8s428ms - SerializeBatchTime: 2.467ms - SplitBlockDistributeByChannelTime: 10.98ms - SplitBlockHashComputeTime: 2.904ms - UncompressedRowBatchSize: 1001.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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: 2.589us - BlocksProduced: 20 - CloseTime: 41.602us - ExecTime: 7.24ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 199.394us - ProcessConjunctTime: 21.345us - ProjectionTime: 0ns - RowsProduced: 80.456K (80456) - RowsRead: 80.456K (80456) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 64.396us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 6.538ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [5.406ms, ] - PerScannerRowsRead: [80.46K, ] - PerScannerWaitTime: [64.396us, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.334ms - MemoryUsage: - FreeBlocks: 5.75 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 771.849us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 912ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 6.484ms - ScannerCtxSchedTime: 62.766us - ScannerFilterTime: 8.211us - ScannerGetBlockTime: 5.391ms - ScannerInitTime: 50.381us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 118ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 723ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 30.222us - BlockInitTime: 46.119us - BlockLoadTime: 6.38ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 399.139us - FirstReadTime: 5.900ms - IOTimer: 0ns - InvertedIndexFilterTime: 197ns - 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.878us - OutputIndexResultColumnTimer: 2.478us - 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: 15.526ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 15.165ms - CloseTime: 54.695us - GetBlockTime: 313.525us - OpenTime: 110.10us - PrepareTime: 187.460us - SinkTime: 14.645ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 15.459ms - WaitBfTime: 638.621ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 691.205us DATA_STREAM_SINK_OPERATOR (id=382,dst_id=382): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 505.16 KB - CloseTime: 23.812us - CompressTime: 0ns - ExecTime: 14.699ms - InputRows: 79.427K (79427) - LocalBytesSent: 3.99 MB - LocalSendTime: 168.40us - LocalSentRows: 62.141K (62141) - MemoryUsage: - PeakMemoryUsage: 6.63 MB - MergeBlockTime: 0ns - OpenTime: 38.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s438ms - RowsProduced: 79.427K (79427) - RpcAvgTime: 2s108ms - RpcCount: 4 - RpcMaxTime: 8s432ms - RpcMinTime: 8s432ms - RpcSumTime: 8s432ms - SerializeBatchTime: 2.745ms - SplitBlockDistributeByChannelTime: 7.690ms - SplitBlockHashComputeTime: 3.89ms - UncompressedRowBatchSize: 1.12 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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.592us - BlocksProduced: 20 - CloseTime: 27.615us - ExecTime: 5.564ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 184.63us - ProcessConjunctTime: 18.732us - ProjectionTime: 0ns - RowsProduced: 79.427K (79427) - RowsRead: 79.427K (79427) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 71.505us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 5.50ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 114, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 115, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 116, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 117, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [4.113ms, ] - PerScannerRowsRead: [79.43K, ] - PerScannerWaitTime: [71.505us, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.51ms - MemoryUsage: - FreeBlocks: 5.68 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 612.388us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.301us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.975ms - ScannerCtxSchedTime: 69.318us - ScannerFilterTime: 6.443us - ScannerGetBlockTime: 4.101ms - ScannerInitTime: 53.240us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 123ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 840ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 34.644us - BlockInitTime: 83.12us - BlockLoadTime: 4.597ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 237.355us - FirstReadTime: 4.437ms - IOTimer: 0ns - InvertedIndexFilterTime: 235ns - 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.142us - OutputIndexResultColumnTimer: 2.219us - 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 Fragment 4: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 36.75ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.304ms - CloseTime: 97.177us - GetBlockTime: 15.489ms - OpenTime: 293.729us - PrepareTime: 367.680us - SinkTime: 19.354ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 35.953ms - WaitBfTime: 671.850ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 529.68us DATA_STREAM_SINK_OPERATOR (id=380,dst_id=380): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.61 MB - CloseTime: 18.924us - CompressTime: 0ns - ExecTime: 19.404ms - InputRows: 63.423K (63423) - LocalBytesSent: 1004.15 KB - LocalSendTime: 86.338us - LocalSentRows: 12.097K (12097) - MemoryUsage: - PeakMemoryUsage: 4.02 MB - MergeBlockTime: 0ns - OpenTime: 58.678us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 570.55ms - RowsProduced: 63.423K (63423) - RpcAvgTime: 152.367ms - RpcCount: 14 - RpcMaxTime: 602.224ms - RpcMinTime: 464.450ms - RpcSumTime: 2s133ms - SerializeBatchTime: 8.956ms - SplitBlockDistributeByChannelTime: 5.513ms - SplitBlockHashComputeTime: 3.554ms - UncompressedRowBatchSize: 4.21 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=379): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 13.633us - ExecTime: 15.13ms - InitProbeSideTime: 6.540ms - JoinFilterTimer: 5.985us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 30.313us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.975us - ProbeFindNextTime: 0ns - ProbeRows: 173.151K (173151) - ProbeTime: 13.786ms - ProbeWhenBuildSideOutputTime: 1.68ms - ProbeWhenProbeSideOutputTime: 2.392ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.136ms - ProjectionTime: 1.58ms - RowsProduced: 63.423K (63423) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s597ms 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: 6.752us - BlocksProduced: 46 - CloseTime: 57.779us - ExecTime: 44.49ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 437.689us - ProcessConjunctTime: 131.75us - ProjectionTime: 6.832ms - RowsProduced: 173.151K (173151) - RowsRead: 355.894K (355894) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 113.978us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 36.269ms - 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: [27.044ms, ] - PerScannerRowsRead: [355.89K, ] - PerScannerWaitTime: [113.978us, ] - BlockConvertTime: 0ns - BlockFetchTime: 17.612ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.380ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.677us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 37.181ms - ScannerCtxSchedTime: 110.150us - ScannerFilterTime: 9.224ms - ScannerGetBlockTime: 17.784ms - ScannerInitTime: 103.513us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.275us - BlockConditionsFilteredBloomFilterTime: 3.60us - BlockConditionsFilteredDictTime: 911ns - BlockConditionsFilteredTime: 93.320us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 65.386us - BlockInitSeekCount: 9 - BlockInitSeekTime: 100.446us - BlockInitTime: 234.332us - BlockLoadTime: 19.763ms - BlocksLoad: 94 - CachedPagesNum: 212 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 186 - FirstReadSeekTime: 906.1us - FirstReadTime: 7.616ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.400us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.858ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.722ms - OutputIndexResultColumnTimer: 21.612us - 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: 431.687us - TotalPagesNum: 212 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 610.849us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 418.458us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 308.450us - CloseTime: 13.780us - GetBlockTime: 12.647us - OpenTime: 2.494us - PrepareTime: 88.184us - SinkTime: 250.677us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 395.409us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 219.234us HASH_JOIN_SINK_OPERATOR (id=379): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.723us - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.216us - BuildTableInsertTime: 26.324us - BuildTableTime: 31.77us - CloseTime: 0ns - ExecTime: 276.581us - InputRows: 160 - MemoryUsage: - BuildBlocks: 8.10 KB - BuildKeyArena: 12.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 17.73 KB - OpenTime: 27.162us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.484us - RuntimeFilterComputeTime: 124.973us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=377): - BlocksProduced: 2 - BytesReceived: 5.19 KB - CloseTime: 10.943us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.480us - ExecTime: 48.283us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 0.00 - OpenTime: 26.393us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s286ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 46.847ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.263ms - CloseTime: 104.702us - GetBlockTime: 32.596ms - OpenTime: 235.701us - PrepareTime: 234.368us - SinkTime: 13.257ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.309ms - WaitBfTime: 638.299ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.925ms DATA_STREAM_SINK_OPERATOR (id=380,dst_id=380): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 414.97 KB - CloseTime: 16.750us - CompressTime: 0ns - ExecTime: 13.288ms - InputRows: 59.09K (59090) - LocalBytesSent: 3.73 MB - LocalSendTime: 160.395us - LocalSentRows: 46.191K (46191) - MemoryUsage: - PeakMemoryUsage: 6.30 MB - MergeBlockTime: 0ns - OpenTime: 40.121us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s370ms - RowsProduced: 59.09K (59090) - RpcAvgTime: 2s103ms - RpcCount: 4 - RpcMaxTime: 8s414ms - RpcMinTime: 8s414ms - RpcSumTime: 8s414ms - SerializeBatchTime: 2.512ms - SplitBlockDistributeByChannelTime: 7.618ms - SplitBlockHashComputeTime: 2.107ms - UncompressedRowBatchSize: 1.06 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=379): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 20.193us - ExecTime: 32.35ms - InitProbeSideTime: 3.786ms - JoinFilterTimer: 5.784us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 15.24us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.561us - ProbeFindNextTime: 0ns - ProbeRows: 173.412K (173412) - ProbeTime: 30.862ms - ProbeWhenBuildSideOutputTime: 1.378ms - ProbeWhenProbeSideOutputTime: 23.156ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.866ms - ProjectionTime: 1.33ms - 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: 3.20us - BlocksProduced: 46 - CloseTime: 63.850us - ExecTime: 50.794ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 316.562us - ProcessConjunctTime: 65.248us - ProjectionTime: 9.631ms - RowsProduced: 173.412K (173412) - RowsRead: 345.71K (345710) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 171.922us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 40.208ms - 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: [35.251ms, ] - PerScannerRowsRead: [345.71K, ] - PerScannerWaitTime: [171.922us, ] - BlockConvertTime: 0ns - BlockFetchTime: 20.632ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.412ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.343us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.784ms - ScannerCtxSchedTime: 167.874us - ScannerFilterTime: 14.291ms - ScannerGetBlockTime: 20.885ms - ScannerInitTime: 115.416us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 550ns - BlockConditionsFilteredBloomFilterTime: 1.895us - BlockConditionsFilteredDictTime: 328ns - BlockConditionsFilteredTime: 64.271us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 55.629us - BlockInitSeekCount: 9 - BlockInitSeekTime: 63.247us - BlockInitTime: 149.808us - BlockLoadTime: 21.790ms - BlocksLoad: 92 - CachedPagesNum: 205 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 182 - FirstReadSeekTime: 321.158us - FirstReadTime: 8.209ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.383us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.872ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.819ms - OutputIndexResultColumnTimer: 16.978us - 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: 539.262us - TotalPagesNum: 205 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 635.209us PipelineXTask (index=2):(Active: 46.193ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 45.667ms - CloseTime: 132.548us - GetBlockTime: 32.906ms - OpenTime: 150.67us - PrepareTime: 234.54us - SinkTime: 12.424ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.75ms - WaitBfTime: 638.586ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.864ms DATA_STREAM_SINK_OPERATOR (id=380,dst_id=380): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 18 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 420.66 KB - CloseTime: 21.809us - CompressTime: 0ns - ExecTime: 12.461ms - InputRows: 58.318K (58318) - LocalBytesSent: 3.66 MB - LocalSendTime: 194.363us - LocalSentRows: 45.319K (45319) - MemoryUsage: - PeakMemoryUsage: 5.78 MB - MergeBlockTime: 0ns - OpenTime: 37.748us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s364ms - RowsProduced: 58.318K (58318) - RpcAvgTime: 2s102ms - RpcCount: 4 - RpcMaxTime: 8s410ms - RpcMinTime: 8s410ms - RpcSumTime: 8s410ms - SerializeBatchTime: 2.383ms - SplitBlockDistributeByChannelTime: 7.252ms - SplitBlockHashComputeTime: 1.806ms - UncompressedRowBatchSize: 1.07 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=379): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 45.674us - ExecTime: 11.386ms - InitProbeSideTime: 3.895ms - JoinFilterTimer: 5.18us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 10.720us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.121us - ProbeFindNextTime: 0ns - ProbeRows: 172.143K (172143) - ProbeTime: 10.51ms - ProbeWhenBuildSideOutputTime: 955.577us - ProbeWhenProbeSideOutputTime: 3.51ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.539ms - ProjectionTime: 1.171ms - RowsProduced: 58.318K (58318) - 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: [15210] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.16us - BlocksProduced: 47 - CloseTime: 59.615us - ExecTime: 75.282ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 256.325us - ProcessConjunctTime: 23.945us - ProjectionTime: 6.315ms - RowsProduced: 172.143K (172143) - RowsRead: 344.73K (344730) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.662ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 47.59ms - 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: [35.672ms, ] - PerScannerRowsRead: [344.73K, ] - PerScannerWaitTime: [1.662ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.51ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.902ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.592us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.774ms - ScannerCtxSchedTime: 1.657ms - ScannerFilterTime: 10.216ms - ScannerGetBlockTime: 25.395ms - ScannerInitTime: 73.524us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.667us - BlockConditionsFilteredBloomFilterTime: 5.295us - BlockConditionsFilteredDictTime: 1.36us - BlockConditionsFilteredTime: 97.326us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 73.838us - BlockInitSeekCount: 25 - BlockInitSeekTime: 147.200us - BlockInitTime: 328.267us - BlockLoadTime: 26.390ms - BlocksLoad: 95 - CachedPagesNum: 189 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 184 - FirstReadSeekTime: 874.926us - FirstReadTime: 10.698ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.855us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.824ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 5.565ms - OutputIndexResultColumnTimer: 19.972us - 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: 589.492us - TotalPagesNum: 189 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 806.197us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 267.765us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 168.42us - CloseTime: 9.748us - GetBlockTime: 12.633us - OpenTime: 4.203us - PrepareTime: 73.375us - SinkTime: 128.662us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 243.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.515ms HASH_JOIN_SINK_OPERATOR (id=379): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.233us - BuildRows: 149 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.163us - BuildTableInsertTime: 25.492us - BuildTableTime: 27.810us - CloseTime: 0ns - ExecTime: 162.958us - InputRows: 148 - MemoryUsage: - BuildBlocks: 7.48 KB - BuildKeyArena: 12.00 KB - HashTable: 1.59 KB - PeakMemoryUsage: 17.06 KB - OpenTime: 34.403us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.292us - RuntimeFilterComputeTime: 50.110us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=377): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.737us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 17.444us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 640.387ms PipelineXTask (index=3):(Active: 244.903us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 163.534us - CloseTime: 16.335us - GetBlockTime: 5.15us - OpenTime: 3.156us - PrepareTime: 56.985us - SinkTime: 133.899us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.318us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 247.420us HASH_JOIN_SINK_OPERATOR (id=379): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 808ns - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.662us - BuildTableInsertTime: 29.483us - BuildTableTime: 32.884us - CloseTime: 0ns - ExecTime: 146.685us - InputRows: 139 - MemoryUsage: - BuildBlocks: 7.03 KB - BuildKeyArena: 12.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 16.57 KB - OpenTime: 13.374us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.171us - RuntimeFilterComputeTime: 49.448us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=377): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 13.864us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.453us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 16.966us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 642.507ms Fragment 5: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.219ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 609.160us - CloseTime: 152.311us - GetBlockTime: 55.627us - OpenTime: 262.21us - PrepareTime: 185.896us - SinkTime: 261.94us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 902.903us - WaitBfTime: 638.422ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 283.434us DATA_STREAM_SINK_OPERATOR (id=377,dst_id=377): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 4 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.16 KB - CloseTime: 26.84us - CompressTime: 0ns - ExecTime: 324.92us - InputRows: 447 - LocalBytesSent: 14.51 KB - LocalSendTime: 36.230us - LocalSentRows: 287 - MemoryUsage: - PeakMemoryUsage: 36.75 KB - MergeBlockTime: 0ns - OpenTime: 37.242us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s656ms - RowsProduced: 447 - RpcAvgTime: 3s644ms - RpcCount: 1 - RpcMaxTime: 3s644ms - RpcMinTime: 3s644ms - RpcSumTime: 3s644ms - SerializeBatchTime: 51.188us - SplitBlockDistributeByChannelTime: 40.354us - SplitBlockHashComputeTime: 32.958us - UncompressedRowBatchSize: 8.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 6.35us - BlocksProduced: 1 - CloseTime: 121.33us - ExecTime: 4.147ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 335.827us - ProcessConjunctTime: 60.154us - ProjectionTime: 76.965us - RowsProduced: 447 - RowsRead: 447 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 88.695us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 3.580ms - 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: [1.647ms, ] - PerScannerRowsRead: [447, ] - PerScannerWaitTime: [88.695us, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.579ms - MemoryUsage: - FreeBlocks: 116.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.531ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 121ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 3.497ms - ScannerCtxSchedTime: 86.360us - ScannerFilterTime: 4.797us - ScannerGetBlockTime: 1.633ms - ScannerInitTime: 145.728us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 381ns - BlockConditionsFilteredBloomFilterTime: 1.996us - BlockConditionsFilteredDictTime: 356ns - BlockConditionsFilteredTime: 15.47us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.60us - BlockInitSeekCount: 8 - BlockInitSeekTime: 118.373us - BlockInitTime: 163.696us - BlockLoadTime: 2.967ms - BlocksLoad: 7 - CachedPagesNum: 11 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 340.618us - FirstReadSeekCount: 6 - FirstReadSeekTime: 18.502us - FirstReadTime: 73.363us - IOTimer: 0ns - InvertedIndexFilterTime: 1.470us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.189ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 48.475us - OutputIndexResultColumnTimer: 1.471us - 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: 1.612ms - ShortPredEvalTime: 530ns - TotalPagesNum: 11 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 36.229us Fragment 6: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.693ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.551ms - CloseTime: 17.115us - GetBlockTime: 750.219us - OpenTime: 27.367us - PrepareTime: 90.583us - SinkTime: 737.532us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.665ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.843us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.44 KB - CloseTime: 14.406us - CompressTime: 0ns - ExecTime: 804.421us - InputRows: 358 - LocalBytesSent: 103.45 KB - LocalSendTime: 102.366us - LocalSentRows: 305 - MemoryUsage: - PeakMemoryUsage: 189.88 KB - MergeBlockTime: 0ns - OpenTime: 53.316us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.327ms - RowsProduced: 358 - RpcAvgTime: 1.46ms - RpcCount: 1 - RpcMaxTime: 1.46ms - RpcMinTime: 1.46ms - RpcSumTime: 1.46ms - SerializeBatchTime: 42.541us - SplitBlockDistributeByChannelTime: 298.826us - SplitBlockHashComputeTime: 27.725us - UncompressedRowBatchSize: 19.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 981ns - DeserializeAndMergeTime: 0ns - ExecTime: 758.88us - GetResultsTime: 553.596us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.292us - HashTableSize: 358 - InsertKeysToColumnTime: 76.702us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.610us - ProjectionTime: 164.804us - RowsProduced: 358 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=2):(Active: 1.747ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.654ms - CloseTime: 13.309us - GetBlockTime: 843.235us - OpenTime: 5.341us - PrepareTime: 68.576us - SinkTime: 779.962us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.725ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 253.666us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.92 KB - CloseTime: 11.803us - CompressTime: 0ns - ExecTime: 828.706us - InputRows: 415 - LocalBytesSent: 119.30 KB - LocalSendTime: 154.110us - LocalSentRows: 352 - MemoryUsage: - PeakMemoryUsage: 220.00 KB - MergeBlockTime: 0ns - OpenTime: 37.791us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.107ms - RowsProduced: 415 - RpcAvgTime: 868.292us - RpcCount: 1 - RpcMaxTime: 868.292us - RpcMinTime: 868.292us - RpcSumTime: 868.292us - SerializeBatchTime: 52.293us - SplitBlockDistributeByChannelTime: 291.408us - SplitBlockHashComputeTime: 12.764us - UncompressedRowBatchSize: 23.28 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 445ns - DeserializeAndMergeTime: 0ns - ExecTime: 851.779us - GetResultsTime: 582.565us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.346us - HashTableSize: 415 - InsertKeysToColumnTime: 67.196us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.51us - ProjectionTime: 217.402us - RowsProduced: 415 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=4):(Active: 1.162ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.59ms - CloseTime: 9.986us - GetBlockTime: 498.132us - OpenTime: 5.70us - PrepareTime: 81.152us - SinkTime: 536.180us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.144ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.193us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.45 KB - CloseTime: 7.950us - CompressTime: 0ns - ExecTime: 583.173us - InputRows: 380 - LocalBytesSent: 106.58 KB - LocalSendTime: 109.835us - LocalSentRows: 315 - MemoryUsage: - PeakMemoryUsage: 196.88 KB - MergeBlockTime: 0ns - OpenTime: 39.611us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.638ms - RowsProduced: 380 - RpcAvgTime: 1.277ms - RpcCount: 1 - RpcMaxTime: 1.277ms - RpcMinTime: 1.277ms - RpcSumTime: 1.277ms - SerializeBatchTime: 29.186us - SplitBlockDistributeByChannelTime: 196.108us - SplitBlockHashComputeTime: 9.399us - UncompressedRowBatchSize: 24.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 1.20us - DeserializeAndMergeTime: 0ns - ExecTime: 509.881us - GetResultsTime: 351.399us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.407us - HashTableSize: 380 - InsertKeysToColumnTime: 31.625us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.485us - ProjectionTime: 126.215us - RowsProduced: 380 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=6):(Active: 1.750ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.626ms - CloseTime: 27.340us - GetBlockTime: 679.261us - OpenTime: 1.937us - PrepareTime: 89.373us - SinkTime: 927.52us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.714ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.726us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.87 KB - CloseTime: 24.197us - CompressTime: 0ns - ExecTime: 987.809us - InputRows: 373 - LocalBytesSent: 104.94 KB - LocalSendTime: 164.891us - LocalSentRows: 310 - MemoryUsage: - PeakMemoryUsage: 195.88 KB - MergeBlockTime: 0ns - OpenTime: 37.752us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.530ms - RowsProduced: 373 - RpcAvgTime: 227.336us - RpcCount: 1 - RpcMaxTime: 227.336us - RpcMinTime: 227.336us - RpcSumTime: 227.336us - SerializeBatchTime: 72.12us - SplitBlockDistributeByChannelTime: 373.898us - SplitBlockHashComputeTime: 12.336us - UncompressedRowBatchSize: 23.37 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 943ns - DeserializeAndMergeTime: 0ns - ExecTime: 702.926us - GetResultsTime: 478.861us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.281us - HashTableSize: 373 - InsertKeysToColumnTime: 43.237us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 23.681us - ProjectionTime: 170.177us - RowsProduced: 373 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=8):(Active: 2.653ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.551ms - CloseTime: 8.243us - GetBlockTime: 713.467us - OpenTime: 2.203us - PrepareTime: 86.244us - SinkTime: 1.816ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.436ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 460.724us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.03 KB - CloseTime: 6.820us - CompressTime: 0ns - ExecTime: 1.878ms - InputRows: 413 - LocalBytesSent: 120.62 KB - LocalSendTime: 104.667us - LocalSentRows: 356 - MemoryUsage: - PeakMemoryUsage: 191.13 KB - MergeBlockTime: 0ns - OpenTime: 55.622us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.997ms - RowsProduced: 413 - RpcAvgTime: 1.281ms - RpcCount: 1 - RpcMaxTime: 1.281ms - RpcMinTime: 1.281ms - RpcSumTime: 1.281ms - SerializeBatchTime: 37.832us - SplitBlockDistributeByChannelTime: 192.989us - SplitBlockHashComputeTime: 16.637us - UncompressedRowBatchSize: 21.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 400ns - DeserializeAndMergeTime: 0ns - ExecTime: 717.503us - GetResultsTime: 510.993us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.496us - HashTableSize: 413 - InsertKeysToColumnTime: 40.321us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.76us - ProjectionTime: 170.831us - RowsProduced: 413 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s354ms PipelineXTask (index=10):(Active: 1.388ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.281ms - CloseTime: 26.223us - GetBlockTime: 661.275us - OpenTime: 3.957us - PrepareTime: 70.781us - SinkTime: 594.546us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.301ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.699ms DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.06 KB - CloseTime: 13.649us - CompressTime: 0ns - ExecTime: 659.938us - InputRows: 385 - LocalBytesSent: 108.82 KB - LocalSendTime: 169.86us - LocalSentRows: 321 - MemoryUsage: - PeakMemoryUsage: 214.13 KB - MergeBlockTime: 0ns - OpenTime: 43.65us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.203ms - RowsProduced: 385 - RpcAvgTime: 1.198ms - RpcCount: 1 - RpcMaxTime: 1.198ms - RpcMinTime: 1.198ms - RpcSumTime: 1.198ms - SerializeBatchTime: 47.488us - SplitBlockDistributeByChannelTime: 193.224us - SplitBlockHashComputeTime: 22.812us - UncompressedRowBatchSize: 23.67 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 822ns - DeserializeAndMergeTime: 0ns - ExecTime: 666.257us - GetResultsTime: 468.903us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.580us - HashTableSize: 385 - InsertKeysToColumnTime: 54.417us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.538us - ProjectionTime: 125.595us - RowsProduced: 385 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=12):(Active: 1.534ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.434ms - CloseTime: 15.55us - GetBlockTime: 779.319us - OpenTime: 2.704us - PrepareTime: 77.446us - SinkTime: 636.474us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.484ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.676ms DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.21 KB - CloseTime: 12.296us - CompressTime: 0ns - ExecTime: 697.679us - InputRows: 382 - LocalBytesSent: 105.45 KB - LocalSendTime: 96.858us - LocalSentRows: 311 - MemoryUsage: - PeakMemoryUsage: 198.13 KB - MergeBlockTime: 0ns - OpenTime: 49.828us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.982ms - RowsProduced: 382 - RpcAvgTime: 1.82ms - RpcCount: 1 - RpcMaxTime: 1.82ms - RpcMinTime: 1.82ms - RpcSumTime: 1.82ms - SerializeBatchTime: 39.999us - SplitBlockDistributeByChannelTime: 259.939us - SplitBlockHashComputeTime: 12.689us - UncompressedRowBatchSize: 26.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 775ns - DeserializeAndMergeTime: 0ns - ExecTime: 784.193us - GetResultsTime: 579.201us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.787us - HashTableSize: 382 - InsertKeysToColumnTime: 47.425us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.294us - ProjectionTime: 167.481us - RowsProduced: 382 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=14):(Active: 1.874ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.725ms - CloseTime: 17.226us - GetBlockTime: 859.477us - OpenTime: 5.743us - PrepareTime: 120.484us - SinkTime: 839.467us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.827ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 255.945us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.09 KB - CloseTime: 13.966us - CompressTime: 0ns - ExecTime: 901.148us - InputRows: 342 - LocalBytesSent: 96.28 KB - LocalSendTime: 180.355us - LocalSentRows: 284 - MemoryUsage: - PeakMemoryUsage: 178.88 KB - MergeBlockTime: 0ns - OpenTime: 48.857us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.552ms - RowsProduced: 342 - RpcAvgTime: 932.630us - RpcCount: 1 - RpcMaxTime: 932.630us - RpcMinTime: 932.630us - RpcSumTime: 932.630us - SerializeBatchTime: 42.167us - SplitBlockDistributeByChannelTime: 337.503us - SplitBlockHashComputeTime: 22.808us - UncompressedRowBatchSize: 21.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 1.28us - DeserializeAndMergeTime: 0ns - ExecTime: 911.808us - GetResultsTime: 648.103us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.288us - HashTableSize: 342 - InsertKeysToColumnTime: 89.167us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 52.754us - ProjectionTime: 186.637us - RowsProduced: 342 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s354ms PipelineXTask (index=16):(Active: 1.543ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.424ms - CloseTime: 13.403us - GetBlockTime: 691.587us - OpenTime: 6.148us - PrepareTime: 93.488us - SinkTime: 701.630us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.521ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.62us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.47 KB - CloseTime: 10.909us - CompressTime: 0ns - ExecTime: 771.564us - InputRows: 380 - LocalBytesSent: 106.64 KB - LocalSendTime: 127.988us - LocalSentRows: 315 - MemoryUsage: - PeakMemoryUsage: 201.75 KB - MergeBlockTime: 0ns - OpenTime: 59.983us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.756ms - RowsProduced: 380 - RpcAvgTime: 1.157ms - RpcCount: 1 - RpcMaxTime: 1.157ms - RpcMinTime: 1.157ms - RpcSumTime: 1.157ms - SerializeBatchTime: 59.32us - SplitBlockDistributeByChannelTime: 280.377us - SplitBlockHashComputeTime: 11.695us - UncompressedRowBatchSize: 24.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 829ns - DeserializeAndMergeTime: 0ns - ExecTime: 698.586us - GetResultsTime: 500.914us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.543us - HashTableSize: 380 - InsertKeysToColumnTime: 31.588us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.727us - ProjectionTime: 169.161us - RowsProduced: 380 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s354ms PipelineXTask (index=18):(Active: 980.128us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 884.152us - CloseTime: 15.572us - GetBlockTime: 468.864us - OpenTime: 3.514us - PrepareTime: 71.641us - SinkTime: 390.143us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 957.326us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 797.217us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.87 KB - CloseTime: 13.203us - CompressTime: 0ns - ExecTime: 444.994us - InputRows: 371 - LocalBytesSent: 104.31 KB - LocalSendTime: 66.86us - LocalSentRows: 308 - MemoryUsage: - PeakMemoryUsage: 200.63 KB - MergeBlockTime: 0ns - OpenTime: 41.903us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.862ms - RowsProduced: 371 - RpcAvgTime: 958.389us - RpcCount: 1 - RpcMaxTime: 958.389us - RpcMinTime: 958.389us - RpcSumTime: 958.389us - SerializeBatchTime: 26.92us - SplitBlockDistributeByChannelTime: 148.423us - SplitBlockHashComputeTime: 8.440us - UncompressedRowBatchSize: 23.36 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 526ns - DeserializeAndMergeTime: 0ns - ExecTime: 473.684us - GetResultsTime: 345.861us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.333us - HashTableSize: 371 - InsertKeysToColumnTime: 26.711us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.926us - ProjectionTime: 108.828us - RowsProduced: 371 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s354ms PipelineXTask (index=20):(Active: 1.819ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.725ms - CloseTime: 17.991us - GetBlockTime: 887.361us - OpenTime: 2.674us - PrepareTime: 67.657us - SinkTime: 817.270us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.793ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 171.89us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.89 KB - CloseTime: 14.987us - CompressTime: 0ns - ExecTime: 866.548us - InputRows: 390 - LocalBytesSent: 110.71 KB - LocalSendTime: 160.368us - LocalSentRows: 327 - MemoryUsage: - PeakMemoryUsage: 209.13 KB - MergeBlockTime: 0ns - OpenTime: 35.82us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.0ms - RowsProduced: 390 - RpcAvgTime: 640.488us - RpcCount: 1 - RpcMaxTime: 640.488us - RpcMinTime: 640.488us - RpcSumTime: 640.488us - SerializeBatchTime: 63.980us - SplitBlockDistributeByChannelTime: 343.396us - SplitBlockHashComputeTime: 12.605us - UncompressedRowBatchSize: 23.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 772ns - DeserializeAndMergeTime: 0ns - ExecTime: 891.762us - GetResultsTime: 638.659us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.760us - HashTableSize: 390 - InsertKeysToColumnTime: 68.471us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.930us - ProjectionTime: 206.540us - RowsProduced: 390 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s355ms PipelineXTask (index=22):(Active: 1.479ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.331ms - CloseTime: 17.996us - GetBlockTime: 592.883us - OpenTime: 21.0us - PrepareTime: 103.54us - SinkTime: 702.122us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.281ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 144.121us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.69 KB - CloseTime: 14.720us - CompressTime: 0ns - ExecTime: 784.805us - InputRows: 413 - LocalBytesSent: 117.27 KB - LocalSendTime: 302.230us - LocalSentRows: 346 - MemoryUsage: - PeakMemoryUsage: 216.13 KB - MergeBlockTime: 0ns - OpenTime: 68.240us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.374ms - RowsProduced: 413 - RpcAvgTime: 834.778us - RpcCount: 1 - RpcMaxTime: 834.778us - RpcMinTime: 834.778us - RpcSumTime: 834.778us - SerializeBatchTime: 38.650us - SplitBlockDistributeByChannelTime: 181.406us - SplitBlockHashComputeTime: 12.795us - UncompressedRowBatchSize: 24.96 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 1.253us - DeserializeAndMergeTime: 0ns - ExecTime: 600.943us - GetResultsTime: 422.43us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.509us - HashTableSize: 413 - InsertKeysToColumnTime: 35.646us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.776us - ProjectionTime: 152.617us - RowsProduced: 413 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s355ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.230ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.74ms - CloseTime: 18.91us - GetBlockTime: 236.235us - OpenTime: 5.134us - PrepareTime: 126.269us - SinkTime: 747.508us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.182ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.304ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 749ns - DeserializeAndMergeTime: 99.284us - ExecTime: 835.133us - ExprTime: 0ns - HashTableComputeTime: 476.314us - HashTableEmplaceTime: 440.122us - HashTableInputCount: 358 - InputRows: 358 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 726.642us - OpenTime: 90.19us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 47.67 KB - CloseTime: 16.73us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 505.705us - ExecTime: 260.381us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 108.00 KB - MemoryUsage: - Blocks: 25.56 KB - PeakMemoryUsage: 24.81 KB - OpenTime: 15.502us - ProjectionTime: 0ns - RowsProduced: 358 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s349ms PipelineXTask (index=3):(Active: 1.801ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 1.669ms - CloseTime: 2.870us - GetBlockTime: 355.237us - OpenTime: 4.970us - PrepareTime: 116.932us - SinkTime: 1.195ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.773ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.621ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 421ns - DeserializeAndMergeTime: 147.128us - ExecTime: 1.270ms - ExprTime: 0ns - HashTableComputeTime: 786.569us - HashTableEmplaceTime: 699.475us - HashTableInputCount: 415 - InputRows: 415 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.167ms - OpenTime: 82.43us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 57.61 KB - CloseTime: 1.999us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 551.374us - ExecTime: 362.596us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 108.94 KB - MemoryUsage: - Blocks: 50.31 KB - PeakMemoryUsage: 31.94 KB - OpenTime: 18.247us - ProjectionTime: 0ns - RowsProduced: 415 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s348ms PipelineXTask (index=5):(Active: 1.651ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 1.515ms - CloseTime: 7.160us - GetBlockTime: 294.168us - OpenTime: 5.653us - PrepareTime: 115.54us - SinkTime: 1.75ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.612ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.245ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 590ns - DeserializeAndMergeTime: 126.5us - ExecTime: 1.142ms - ExprTime: 0ns - HashTableComputeTime: 711.226us - HashTableEmplaceTime: 628.569us - HashTableInputCount: 380 - InputRows: 380 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.49ms - OpenTime: 72.427us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 56.11 KB - CloseTime: 6.132us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 594.919us - ExecTime: 310.927us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 102.06 KB - MemoryUsage: - Blocks: 26.81 KB - PeakMemoryUsage: 26.31 KB - OpenTime: 21.633us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s349ms PipelineXTask (index=7):(Active: 1.741ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 1.596ms - CloseTime: 8.225us - GetBlockTime: 385.884us - OpenTime: 2.754us - PrepareTime: 127.267us - SinkTime: 1.86ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.702ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.341ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.133us - DeserializeAndMergeTime: 140.728us - ExecTime: 1.164ms - ExprTime: 0ns - HashTableComputeTime: 667.962us - HashTableEmplaceTime: 606.900us - HashTableInputCount: 373 - InputRows: 373 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.54ms - OpenTime: 84.19us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 57.51 KB - CloseTime: 5.956us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 624.382us - ExecTime: 393.314us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 97.88 KB - MemoryUsage: - Blocks: 24.63 KB - PeakMemoryUsage: 24.00 KB - OpenTime: 15.671us - ProjectionTime: 0ns - RowsProduced: 373 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s349ms PipelineXTask (index=9):(Active: 1.415ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.269ms - CloseTime: 5.704us - GetBlockTime: 294.96us - OpenTime: 3.603us - PrepareTime: 129.969us - SinkTime: 869.283us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.385ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.985ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 877ns - DeserializeAndMergeTime: 103.337us - ExecTime: 965.73us - ExprTime: 0ns - HashTableComputeTime: 571.534us - HashTableEmplaceTime: 524.63us - HashTableInputCount: 413 - InputRows: 413 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 843.171us - OpenTime: 99.64us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 58.59 KB - CloseTime: 3.752us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 576.79us - ExecTime: 299.336us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 104.88 KB - MemoryUsage: - Blocks: 26.63 KB - PeakMemoryUsage: 25.44 KB - OpenTime: 11.982us - ProjectionTime: 0ns - RowsProduced: 413 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s351ms PipelineXTask (index=11):(Active: 1.345ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.210ms - CloseTime: 4.135us - GetBlockTime: 305.947us - OpenTime: 2.544us - PrepareTime: 121.558us - SinkTime: 794.581us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.318ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.655ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.847us - DeserializeAndMergeTime: 98.99us - ExecTime: 864.215us - ExprTime: 0ns - HashTableComputeTime: 511.40us - HashTableEmplaceTime: 461.310us - HashTableInputCount: 385 - InputRows: 385 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 772.518us - OpenTime: 71.785us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 57.22 KB - CloseTime: 1.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 641.169us - ExecTime: 311.546us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 98.13 KB - MemoryUsage: - Blocks: 49.63 KB - PeakMemoryUsage: 33.63 KB - OpenTime: 14.874us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=13):(Active: 1.339ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.199ms - CloseTime: 5.704us - GetBlockTime: 248.759us - OpenTime: 2.981us - PrepareTime: 125.23us - SinkTime: 852.52us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.311ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.67ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 790ns - DeserializeAndMergeTime: 104.197us - ExecTime: 929.929us - ExprTime: 0ns - HashTableComputeTime: 566.124us - HashTableEmplaceTime: 509.865us - HashTableInputCount: 382 - InputRows: 382 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 836.548us - OpenTime: 81.177us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 54.21 KB - CloseTime: 3.916us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 516.280us - ExecTime: 270.969us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 102.69 KB - MemoryUsage: - Blocks: 34.25 KB - PeakMemoryUsage: 24.94 KB - OpenTime: 27.976us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s351ms PipelineXTask (index=15):(Active: 1.447ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.302ms - CloseTime: 5.178us - GetBlockTime: 319.340us - OpenTime: 4.104us - PrepareTime: 130.228us - SinkTime: 871.949us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.420ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.192ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 509ns - DeserializeAndMergeTime: 102.559us - ExecTime: 950.879us - ExprTime: 0ns - HashTableComputeTime: 555.769us - HashTableEmplaceTime: 491.329us - HashTableInputCount: 342 - InputRows: 342 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 854.493us - OpenTime: 83.28us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 48.12 KB - CloseTime: 3.788us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 506.441us - ExecTime: 334.686us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 98.75 KB - MemoryUsage: - Blocks: 40.94 KB - PeakMemoryUsage: 24.69 KB - OpenTime: 21.825us - ProjectionTime: 0ns - RowsProduced: 342 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=17):(Active: 1.700ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.545ms - CloseTime: 6.256us - GetBlockTime: 349.155us - OpenTime: 3.110us - PrepareTime: 137.909us - SinkTime: 1.86ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.667ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.602ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 2.499us - DeserializeAndMergeTime: 141.458us - ExecTime: 1.176ms - ExprTime: 0ns - HashTableComputeTime: 704.632us - HashTableEmplaceTime: 646.505us - HashTableInputCount: 380 - InputRows: 380 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.53ms - OpenTime: 92.306us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 55.50 KB - CloseTime: 3.200us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 483.522us - ExecTime: 358.949us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 105.94 KB - MemoryUsage: - Blocks: 25.69 KB - PeakMemoryUsage: 25.63 KB - OpenTime: 18.17us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s351ms PipelineXTask (index=19):(Active: 1.481ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.354ms - CloseTime: 3.664us - GetBlockTime: 335.828us - OpenTime: 2.656us - PrepareTime: 114.284us - SinkTime: 897.844us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.447ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.688ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 544ns - DeserializeAndMergeTime: 119.254us - ExecTime: 960.459us - ExprTime: 0ns - HashTableComputeTime: 568.934us - HashTableEmplaceTime: 507.472us - HashTableInputCount: 371 - InputRows: 371 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 881.336us - OpenTime: 66.842us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 54.76 KB - CloseTime: 2.569us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 631.912us - ExecTime: 354.7us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 98.44 KB - MemoryUsage: - Blocks: 65.69 KB - PeakMemoryUsage: 48.56 KB - OpenTime: 24.888us - ProjectionTime: 0ns - RowsProduced: 371 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=21):(Active: 1.919ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.789ms - CloseTime: 5.366us - GetBlockTime: 419.571us - OpenTime: 3.304us - PrepareTime: 114.3us - SinkTime: 1.182ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.872ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.773ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.166us - DeserializeAndMergeTime: 159.362us - ExecTime: 1.241ms - ExprTime: 0ns - HashTableComputeTime: 743.670us - HashTableEmplaceTime: 669.550us - HashTableInputCount: 390 - InputRows: 390 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.145ms - OpenTime: 63.833us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 56.43 KB - CloseTime: 3.403us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 453.233us - ExecTime: 427.863us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 107.88 KB - MemoryUsage: - Blocks: 52.94 KB - PeakMemoryUsage: 34.94 KB - OpenTime: 17.832us - ProjectionTime: 0ns - RowsProduced: 390 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s351ms PipelineXTask (index=23):(Active: 1.637ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.508ms - CloseTime: 6.295us - GetBlockTime: 312.341us - OpenTime: 2.820us - PrepareTime: 112.577us - SinkTime: 1.78ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.603ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.796ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 863ns - DeserializeAndMergeTime: 119.879us - ExecTime: 1.144ms - ExprTime: 0ns - HashTableComputeTime: 708.913us - HashTableEmplaceTime: 646.115us - HashTableInputCount: 413 - InputRows: 413 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.59ms - OpenTime: 70.415us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 57.30 KB - CloseTime: 4.560us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 533.446us - ExecTime: 323.730us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 104.13 KB - MemoryUsage: - Blocks: 49.13 KB - PeakMemoryUsage: 34.63 KB - OpenTime: 16.107us - ProjectionTime: 0ns - RowsProduced: 413 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s352ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 1.669ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.521ms - CloseTime: 14.25us - GetBlockTime: 805.848us - OpenTime: 3.91us - PrepareTime: 124.85us - SinkTime: 666.561us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.622ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.158us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 48.56 KB - CloseTime: 11.683us - CompressTime: 0ns - ExecTime: 745.592us - InputRows: 401 - LocalBytesSent: 23.01 KB - LocalSendTime: 19.575us - LocalSentRows: 68 - MemoryUsage: - PeakMemoryUsage: 220.00 KB - MergeBlockTime: 0ns - OpenTime: 68.19us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.139ms - RowsProduced: 401 - RpcAvgTime: 2.596ms - RpcCount: 4 - RpcMaxTime: 3.6ms - RpcMinTime: 2.390ms - RpcSumTime: 10.385ms - SerializeBatchTime: 111.741us - SplitBlockDistributeByChannelTime: 217.754us - SplitBlockHashComputeTime: 25.205us - UncompressedRowBatchSize: 122.99 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 585ns - DeserializeAndMergeTime: 0ns - ExecTime: 817.657us - GetResultsTime: 627.817us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.190us - HashTableSize: 401 - InsertKeysToColumnTime: 56.500us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.711us - ProjectionTime: 138.911us - RowsProduced: 401 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=2):(Active: 1.668ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.525ms - CloseTime: 15.239us - GetBlockTime: 726.47us - OpenTime: 6.140us - PrepareTime: 112.706us - SinkTime: 762.644us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.641ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 222.362us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 45.75 KB - CloseTime: 12.489us - CompressTime: 0ns - ExecTime: 838.619us - InputRows: 367 - LocalBytesSent: 18.23 KB - LocalSendTime: 23.823us - LocalSentRows: 54 - MemoryUsage: - PeakMemoryUsage: 179.88 KB - MergeBlockTime: 0ns - OpenTime: 63.920us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.960ms - RowsProduced: 367 - RpcAvgTime: 3.214ms - RpcCount: 4 - RpcMaxTime: 3.520ms - RpcMinTime: 2.924ms - RpcSumTime: 12.856ms - SerializeBatchTime: 132.854us - SplitBlockDistributeByChannelTime: 272.476us - SplitBlockHashComputeTime: 12.362us - UncompressedRowBatchSize: 115.98 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 916ns - DeserializeAndMergeTime: 0ns - ExecTime: 737.79us - GetResultsTime: 537.0us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.850us - HashTableSize: 367 - InsertKeysToColumnTime: 39.399us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.155us - ProjectionTime: 161.344us - RowsProduced: 367 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=4):(Active: 1.717ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.580ms - CloseTime: 8.43us - GetBlockTime: 761.807us - OpenTime: 4.380us - PrepareTime: 117.471us - SinkTime: 784.818us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.697ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 171.606us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 49.03 KB - CloseTime: 6.937us - CompressTime: 0ns - ExecTime: 848.417us - InputRows: 399 - LocalBytesSent: 21.04 KB - LocalSendTime: 27.290us - LocalSentRows: 62 - MemoryUsage: - PeakMemoryUsage: 207.00 KB - MergeBlockTime: 0ns - OpenTime: 57.527us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.982ms - RowsProduced: 399 - RpcAvgTime: 3.134ms - RpcCount: 4 - RpcMaxTime: 3.440ms - RpcMinTime: 2.755ms - RpcSumTime: 12.539ms - SerializeBatchTime: 164.235us - SplitBlockDistributeByChannelTime: 256.659us - SplitBlockHashComputeTime: 13.997us - UncompressedRowBatchSize: 124.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 444ns - DeserializeAndMergeTime: 0ns - ExecTime: 773.663us - GetResultsTime: 540.168us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.884us - HashTableSize: 399 - InsertKeysToColumnTime: 55.402us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.817us - ProjectionTime: 187.22us - RowsProduced: 399 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=6):(Active: 1.847ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.713ms - CloseTime: 13.10us - GetBlockTime: 806.964us - OpenTime: 1.607us - PrepareTime: 113.626us - SinkTime: 884.264us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.821ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.570us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 47.24 KB - CloseTime: 11.80us - CompressTime: 0ns - ExecTime: 961.110us - InputRows: 384 - LocalBytesSent: 20.59 KB - LocalSendTime: 43.386us - LocalSentRows: 61 - MemoryUsage: - PeakMemoryUsage: 202.13 KB - MergeBlockTime: 0ns - OpenTime: 66.620us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.757ms - RowsProduced: 384 - RpcAvgTime: 3.945ms - RpcCount: 4 - RpcMaxTime: 4.564ms - RpcMinTime: 3.505ms - RpcSumTime: 15.780ms - SerializeBatchTime: 150.217us - SplitBlockDistributeByChannelTime: 305.522us - SplitBlockHashComputeTime: 12.723us - UncompressedRowBatchSize: 119.53 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 683ns - DeserializeAndMergeTime: 0ns - ExecTime: 819.279us - GetResultsTime: 620.913us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.874us - HashTableSize: 384 - InsertKeysToColumnTime: 82.294us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.626us - ProjectionTime: 155.371us - RowsProduced: 384 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=8):(Active: 1.200ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.77ms - CloseTime: 12.925us - GetBlockTime: 506.93us - OpenTime: 3.26us - PrepareTime: 101.772us - SinkTime: 554.710us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.180ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.904us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.14 KB - CloseTime: 10.663us - CompressTime: 0ns - ExecTime: 615.599us - InputRows: 371 - LocalBytesSent: 18.25 KB - LocalSendTime: 20.457us - LocalSentRows: 54 - MemoryUsage: - PeakMemoryUsage: 179.63 KB - MergeBlockTime: 0ns - OpenTime: 50.524us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.156ms - RowsProduced: 371 - RpcAvgTime: 2.490ms - RpcCount: 4 - RpcMaxTime: 2.848ms - RpcMinTime: 2.239ms - RpcSumTime: 9.962ms - SerializeBatchTime: 100.545us - SplitBlockDistributeByChannelTime: 142.681us - SplitBlockHashComputeTime: 9.390us - UncompressedRowBatchSize: 117.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 589ns - DeserializeAndMergeTime: 0ns - ExecTime: 519.30us - GetResultsTime: 337.935us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.101us - HashTableSize: 371 - InsertKeysToColumnTime: 31.842us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.957us - ProjectionTime: 148.172us - RowsProduced: 371 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=10):(Active: 1.957ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.826ms - CloseTime: 13.774us - GetBlockTime: 857.446us - OpenTime: 1.848us - PrepareTime: 110.594us - SinkTime: 953.345us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.936ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.333us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.42 KB - CloseTime: 11.157us - CompressTime: 0ns - ExecTime: 1.14ms - InputRows: 390 - LocalBytesSent: 22.33 KB - LocalSendTime: 57.792us - LocalSentRows: 66 - MemoryUsage: - PeakMemoryUsage: 214.13 KB - MergeBlockTime: 0ns - OpenTime: 50.496us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.464ms - RowsProduced: 390 - RpcAvgTime: 4.973ms - RpcCount: 4 - RpcMaxTime: 5.465ms - RpcMinTime: 4.141ms - RpcSumTime: 19.895ms - SerializeBatchTime: 157.172us - SplitBlockDistributeByChannelTime: 337.482us - SplitBlockHashComputeTime: 15.25us - UncompressedRowBatchSize: 120.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 688ns - DeserializeAndMergeTime: 0ns - ExecTime: 876.507us - GetResultsTime: 634.593us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.287us - HashTableSize: 390 - InsertKeysToColumnTime: 73.835us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 19.320us - ProjectionTime: 195.145us - RowsProduced: 390 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=12):(Active: 2.65ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.916ms - CloseTime: 12.880us - GetBlockTime: 845.337us - OpenTime: 4.402us - PrepareTime: 125.332us - SinkTime: 1.45ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.918ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 139.201us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.08 KB - CloseTime: 9.998us - CompressTime: 0ns - ExecTime: 1.108ms - InputRows: 383 - LocalBytesSent: 22.66 KB - LocalSendTime: 158.989us - LocalSentRows: 67 - MemoryUsage: - PeakMemoryUsage: 196.88 KB - MergeBlockTime: 0ns - OpenTime: 54.74us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.314ms - RowsProduced: 383 - RpcAvgTime: 5.131ms - RpcCount: 4 - RpcMaxTime: 5.619ms - RpcMinTime: 4.409ms - RpcSumTime: 20.525ms - SerializeBatchTime: 136.102us - SplitBlockDistributeByChannelTime: 353.210us - SplitBlockHashComputeTime: 13.957us - UncompressedRowBatchSize: 116.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 905ns - DeserializeAndMergeTime: 0ns - ExecTime: 871.29us - GetResultsTime: 616.704us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.600us - HashTableSize: 383 - InsertKeysToColumnTime: 56.940us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 25.680us - ProjectionTime: 190.51us - RowsProduced: 383 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s352ms PipelineXTask (index=14):(Active: 1.799ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.671ms - CloseTime: 13.921us - GetBlockTime: 805.462us - OpenTime: 2.258us - PrepareTime: 106.174us - SinkTime: 845.974us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.777ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 500.518us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 49.02 KB - CloseTime: 11.710us - CompressTime: 0ns - ExecTime: 908.163us - InputRows: 395 - LocalBytesSent: 19.60 KB - LocalSendTime: 30.713us - LocalSentRows: 58 - MemoryUsage: - PeakMemoryUsage: 183.75 KB - MergeBlockTime: 0ns - OpenTime: 51.514us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.372ms - RowsProduced: 395 - RpcAvgTime: 5.943ms - RpcCount: 4 - RpcMaxTime: 6.196ms - RpcMinTime: 5.651ms - RpcSumTime: 23.772ms - SerializeBatchTime: 132.169us - SplitBlockDistributeByChannelTime: 257.694us - SplitBlockHashComputeTime: 15.757us - UncompressedRowBatchSize: 124.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 515ns - DeserializeAndMergeTime: 0ns - ExecTime: 817.638us - GetResultsTime: 593.532us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.619us - HashTableSize: 395 - InsertKeysToColumnTime: 52.316us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.867us - ProjectionTime: 176.963us - RowsProduced: 395 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=16):(Active: 1.314ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.198ms - CloseTime: 12.102us - GetBlockTime: 592.191us - OpenTime: 2.180us - PrepareTime: 96.23us - SinkTime: 589.939us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.279ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 147.653us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 44.28 KB - CloseTime: 9.434us - CompressTime: 0ns - ExecTime: 652.867us - InputRows: 370 - LocalBytesSent: 21.27 KB - LocalSendTime: 23.471us - LocalSentRows: 63 - MemoryUsage: - PeakMemoryUsage: 214.13 KB - MergeBlockTime: 0ns - OpenTime: 54.160us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.745ms - RowsProduced: 370 - RpcAvgTime: 4.182ms - RpcCount: 4 - RpcMaxTime: 4.711ms - RpcMinTime: 3.782ms - RpcSumTime: 16.728ms - SerializeBatchTime: 105.146us - SplitBlockDistributeByChannelTime: 192.493us - SplitBlockHashComputeTime: 10.31us - UncompressedRowBatchSize: 113.94 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 835ns - DeserializeAndMergeTime: 0ns - ExecTime: 601.409us - GetResultsTime: 425.255us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.55us - HashTableSize: 370 - InsertKeysToColumnTime: 47.653us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.9us - ProjectionTime: 145.681us - RowsProduced: 370 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=18):(Active: 1.290ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.177ms - CloseTime: 8.643us - GetBlockTime: 571.778us - OpenTime: 2.367us - PrepareTime: 96.984us - SinkTime: 587.931us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.274ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.252us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.62 KB - CloseTime: 7.323us - CompressTime: 0ns - ExecTime: 650.127us - InputRows: 382 - LocalBytesSent: 20.93 KB - LocalSendTime: 23.127us - LocalSentRows: 62 - MemoryUsage: - PeakMemoryUsage: 189.88 KB - MergeBlockTime: 0ns - OpenTime: 55.569us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.701ms - RowsProduced: 382 - RpcAvgTime: 4.495ms - RpcCount: 4 - RpcMaxTime: 5.59ms - RpcMinTime: 3.970ms - RpcSumTime: 17.983ms - SerializeBatchTime: 114.540us - SplitBlockDistributeByChannelTime: 197.163us - SplitBlockHashComputeTime: 11.653us - UncompressedRowBatchSize: 118.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 297ns - DeserializeAndMergeTime: 0ns - ExecTime: 582.178us - GetResultsTime: 416.791us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.563us - HashTableSize: 382 - InsertKeysToColumnTime: 53.730us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.788us - ProjectionTime: 125.13us - RowsProduced: 382 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=20):(Active: 2.52ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.927ms - CloseTime: 13.774us - GetBlockTime: 895.652us - OpenTime: 2.11us - PrepareTime: 102.568us - SinkTime: 991.69us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.28ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.845us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 45.35 KB - CloseTime: 11.0us - CompressTime: 0ns - ExecTime: 1.46ms - InputRows: 372 - LocalBytesSent: 20.69 KB - LocalSendTime: 34.7us - LocalSentRows: 61 - MemoryUsage: - PeakMemoryUsage: 189.88 KB - MergeBlockTime: 0ns - OpenTime: 44.695us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.157ms - RowsProduced: 372 - RpcAvgTime: 6.257ms - RpcCount: 4 - RpcMaxTime: 6.372ms - RpcMinTime: 6.174ms - RpcSumTime: 25.28ms - SerializeBatchTime: 180.910us - SplitBlockDistributeByChannelTime: 312.454us - SplitBlockHashComputeTime: 15.35us - UncompressedRowBatchSize: 115.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 799ns - DeserializeAndMergeTime: 0ns - ExecTime: 917.59us - GetResultsTime: 639.119us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.874us - HashTableSize: 372 - InsertKeysToColumnTime: 53.958us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 21.452us - ProjectionTime: 220.863us - RowsProduced: 372 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms PipelineXTask (index=22):(Active: 1.278ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.161ms - CloseTime: 10.931us - GetBlockTime: 531.40us - OpenTime: 988ns - PrepareTime: 100.355us - SinkTime: 556.357us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.237ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.0us DATA_STREAM_SINK_OPERATOR (id=375,dst_id=375): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.23 KB - CloseTime: 8.850us - CompressTime: 0ns - ExecTime: 619.994us - InputRows: 384 - LocalBytesSent: 22.62 KB - LocalSendTime: 28.283us - LocalSentRows: 67 - MemoryUsage: - PeakMemoryUsage: 196.88 KB - MergeBlockTime: 0ns - OpenTime: 55.84us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.600ms - RowsProduced: 384 - RpcAvgTime: 4.795ms - RpcCount: 4 - RpcMaxTime: 5.314ms - RpcMinTime: 4.239ms - RpcSumTime: 19.180ms - SerializeBatchTime: 101.255us - SplitBlockDistributeByChannelTime: 189.480us - SplitBlockHashComputeTime: 9.705us - UncompressedRowBatchSize: 117.37 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=374): - BlocksProduced: 1 - CloseTime: 497ns - DeserializeAndMergeTime: 0ns - ExecTime: 541.495us - GetResultsTime: 403.202us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.50us - HashTableSize: 384 - InsertKeysToColumnTime: 36.602us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.564us - ProjectionTime: 110.615us - RowsProduced: 384 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s353ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.633ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.417ms - CloseTime: 7.770us - GetBlockTime: 343.416us - OpenTime: 1.703us - PrepareTime: 199.484us - SinkTime: 957.233us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.595ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.714ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.542us - DeserializeAndMergeTime: 132.447us - ExecTime: 1.84ms - ExprTime: 0ns - HashTableComputeTime: 581.198us - HashTableEmplaceTime: 518.804us - HashTableInputCount: 401 - InputRows: 401 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 916.147us - OpenTime: 132.910us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 58.10 KB - CloseTime: 4.720us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 522.783us - ExecTime: 372.322us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 107.56 KB - MemoryUsage: - Blocks: 45.00 KB - PeakMemoryUsage: 15.25 KB - OpenTime: 36.542us - ProjectionTime: 0ns - RowsProduced: 401 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s349ms PipelineXTask (index=3):(Active: 1.697ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.475ms - CloseTime: 8.917us - GetBlockTime: 349.339us - OpenTime: 2.18us - PrepareTime: 204.128us - SinkTime: 998.470us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.658ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.720ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 3.377us - DeserializeAndMergeTime: 133.977us - ExecTime: 1.140ms - ExprTime: 0ns - HashTableComputeTime: 601.92us - HashTableEmplaceTime: 532.740us - HashTableInputCount: 367 - InputRows: 367 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 961.752us - OpenTime: 144.951us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 55.75 KB - CloseTime: 4.452us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 403.478us - ExecTime: 368.160us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 98.50 KB - MemoryUsage: - Blocks: 32.94 KB - PeakMemoryUsage: 23.63 KB - OpenTime: 26.820us - ProjectionTime: 0ns - RowsProduced: 367 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s349ms PipelineXTask (index=5):(Active: 1.701ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.549ms - CloseTime: 4.439us - GetBlockTime: 372.165us - OpenTime: 3.80us - PrepareTime: 136.422us - SinkTime: 1.38ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.663ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.238ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 900ns - DeserializeAndMergeTime: 143.3us - ExecTime: 1.120ms - ExprTime: 0ns - HashTableComputeTime: 664.792us - HashTableEmplaceTime: 570.1us - HashTableInputCount: 399 - InputRows: 399 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.18ms - OpenTime: 87.800us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 61.86 KB - CloseTime: 2.737us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 459.549us - ExecTime: 385.859us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 96.25 KB - MemoryUsage: - Blocks: 35.06 KB - PeakMemoryUsage: 8.81 KB - OpenTime: 23.934us - ProjectionTime: 0ns - RowsProduced: 399 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s349ms PipelineXTask (index=7):(Active: 1.625ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 1.431ms - CloseTime: 5.298us - GetBlockTime: 343.824us - OpenTime: 2.485us - PrepareTime: 176.848us - SinkTime: 955.139us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.586ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.564ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 1.123us - DeserializeAndMergeTime: 129.880us - ExecTime: 1.66ms - ExprTime: 0ns - HashTableComputeTime: 562.17us - HashTableEmplaceTime: 498.146us - HashTableInputCount: 384 - InputRows: 384 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 927.17us - OpenTime: 116.556us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 57.41 KB - CloseTime: 2.353us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 413.487us - ExecTime: 348.59us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 100.31 KB - MemoryUsage: - Blocks: 26.44 KB - PeakMemoryUsage: 26.44 KB - OpenTime: 23.347us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s349ms PipelineXTask (index=9):(Active: 1.593ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 1.408ms - CloseTime: 5.386us - GetBlockTime: 338.844us - OpenTime: 3.13us - PrepareTime: 169.882us - SinkTime: 952.834us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.559ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.420ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 763ns - DeserializeAndMergeTime: 132.657us - ExecTime: 1.50ms - ExprTime: 0ns - HashTableComputeTime: 575.128us - HashTableEmplaceTime: 503.869us - HashTableInputCount: 371 - InputRows: 371 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 920.979us - OpenTime: 103.55us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 51.63 KB - CloseTime: 3.585us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 473.357us - ExecTime: 358.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 99.44 KB - MemoryUsage: - Blocks: 35.75 KB - PeakMemoryUsage: 24.88 KB - OpenTime: 28.62us - ProjectionTime: 0ns - RowsProduced: 371 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=11):(Active: 1.481ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 1.322ms - CloseTime: 5.88us - GetBlockTime: 283.625us - OpenTime: 2.164us - PrepareTime: 144.509us - SinkTime: 908.784us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.443ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.541ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 604ns - DeserializeAndMergeTime: 108.431us - ExecTime: 991.72us - ExprTime: 0ns - HashTableComputeTime: 582.445us - HashTableEmplaceTime: 528.592us - HashTableInputCount: 390 - InputRows: 390 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 885.409us - OpenTime: 87.353us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 56.99 KB - CloseTime: 3.419us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 458.338us - ExecTime: 299.750us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 101.56 KB - MemoryUsage: - Blocks: 26.88 KB - PeakMemoryUsage: 24.88 KB - OpenTime: 25.190us - ProjectionTime: 0ns - RowsProduced: 390 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=13):(Active: 1.702ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 1.546ms - CloseTime: 4.550us - GetBlockTime: 348.909us - OpenTime: 2.254us - PrepareTime: 143.62us - SinkTime: 1.63ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.668ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.258ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 791ns - DeserializeAndMergeTime: 157.956us - ExecTime: 1.149ms - ExprTime: 0ns - HashTableComputeTime: 624.581us - HashTableEmplaceTime: 561.313us - HashTableInputCount: 383 - InputRows: 383 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.39ms - OpenTime: 90.953us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 57.99 KB - CloseTime: 2.948us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 468.996us - ExecTime: 359.644us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 100.13 KB - MemoryUsage: - Blocks: 27.38 KB - PeakMemoryUsage: 27.38 KB - OpenTime: 19.27us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=15):(Active: 1.504ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 1.350ms - CloseTime: 7.183us - GetBlockTime: 308.30us - OpenTime: 1.994us - PrepareTime: 136.546us - SinkTime: 924.194us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.465ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.527ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 855ns - DeserializeAndMergeTime: 115.48us - ExecTime: 1.4ms - ExprTime: 0ns - HashTableComputeTime: 582.659us - HashTableEmplaceTime: 530.622us - HashTableInputCount: 395 - InputRows: 395 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 907.433us - OpenTime: 84.332us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 56.66 KB - CloseTime: 5.264us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 566.887us - ExecTime: 327.488us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 101.81 KB - MemoryUsage: - Blocks: 18.06 KB - PeakMemoryUsage: 27.06 KB - OpenTime: 25.531us - ProjectionTime: 0ns - RowsProduced: 395 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=17):(Active: 1.538ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.355ms - CloseTime: 8.989us - GetBlockTime: 303.602us - OpenTime: 2.841us - PrepareTime: 164.80us - SinkTime: 929.216us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.498ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.164ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 4.799us - DeserializeAndMergeTime: 137.600us - ExecTime: 1.30ms - ExprTime: 0ns - HashTableComputeTime: 574.963us - HashTableEmplaceTime: 519.882us - HashTableInputCount: 370 - InputRows: 370 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 912.319us - OpenTime: 101.249us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 48.20 KB - CloseTime: 3.196us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 470.227us - ExecTime: 328.523us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 111.56 KB - MemoryUsage: - Blocks: 23.25 KB - PeakMemoryUsage: 22.81 KB - OpenTime: 33.356us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=19):(Active: 1.586ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 1.399ms - CloseTime: 3.296us - GetBlockTime: 296.17us - OpenTime: 2.928us - PrepareTime: 173.510us - SinkTime: 969.559us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.554ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.435ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 500ns - DeserializeAndMergeTime: 107.813us - ExecTime: 1.68ms - ExprTime: 0ns - HashTableComputeTime: 648.126us - HashTableEmplaceTime: 598.796us - HashTableInputCount: 382 - InputRows: 382 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 944.595us - OpenTime: 104.164us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 57.12 KB - CloseTime: 2.207us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 500.232us - ExecTime: 316.610us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 99.31 KB - MemoryUsage: - Blocks: 25.25 KB - PeakMemoryUsage: 25.25 KB - OpenTime: 30.185us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=21):(Active: 1.812ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 1.648ms - CloseTime: 4.649us - GetBlockTime: 367.160us - OpenTime: 2.371us - PrepareTime: 148.629us - SinkTime: 1.115ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.767ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.142ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 698ns - DeserializeAndMergeTime: 149.968us - ExecTime: 1.209ms - ExprTime: 0ns - HashTableComputeTime: 643.222us - HashTableEmplaceTime: 560.651us - HashTableInputCount: 372 - InputRows: 372 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.87ms - OpenTime: 102.456us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 55.61 KB - CloseTime: 2.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 465.409us - ExecTime: 374.291us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 98.38 KB - MemoryUsage: - Blocks: 22.06 KB - PeakMemoryUsage: 17.19 KB - OpenTime: 19.370us - ProjectionTime: 0ns - RowsProduced: 372 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms PipelineXTask (index=23):(Active: 1.917ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 1.776ms - CloseTime: 3.195us - GetBlockTime: 381.893us - OpenTime: 2.87us - PrepareTime: 129.57us - SinkTime: 1.117ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.791ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.488ms AGGREGATION_SINK_OPERATOR (id=374): - BuildTime: 0ns - CloseTime: 794ns - DeserializeAndMergeTime: 160.10us - ExecTime: 1.185ms - ExprTime: 0ns - HashTableComputeTime: 700.209us - HashTableEmplaceTime: 615.115us - HashTableInputCount: 384 - InputRows: 384 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 1.93ms - OpenTime: 74.540us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=373): - BlocksProduced: 36 - BytesReceived: 56.27 KB - CloseTime: 1.773us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 536.179us - ExecTime: 393.534us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 100.56 KB - MemoryUsage: - Blocks: 19.00 KB - PeakMemoryUsage: 19.00 KB - OpenTime: 21.464us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s350ms Fragment 7: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 3.379ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.758ms - CloseTime: 147.427us - GetBlockTime: 1.363ms - OpenTime: 4.528us - PrepareTime: 462.220us - SinkTime: 1.360ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.221ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 196.973us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 55.69 KB - CloseTime: 11.142us - CompressTime: 0ns - ExecTime: 1.516ms - InputRows: 376 - LocalBytesSent: 46.69 KB - LocalSendTime: 150.604us - LocalSentRows: 177 - MemoryUsage: - PeakMemoryUsage: 198.44 KB - MergeBlockTime: 0ns - OpenTime: 145.997us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.27ms - RowsProduced: 376 - RpcAvgTime: 3.371ms - RpcCount: 12 - RpcMaxTime: 3.514ms - RpcMinTime: 2.947ms - RpcSumTime: 40.454ms - SerializeBatchTime: 99.505us - SplitBlockDistributeByChannelTime: 455.188us - SplitBlockHashComputeTime: 22.346us - UncompressedRowBatchSize: 56.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 482.751us - CloseTime: 60.919us - DeserializeAndMergeTime: 0ns - ExecTime: 1.61ms - ExprTime: 13.923us - GetResultsTime: 400.111us - HashTableComputeTime: 432.216us - HashTableEmplaceTime: 404.257us - HashTableInputCount: 376 - HashTableIterateTime: 2.248us - HashTableSize: 376 - InsertKeysToColumnTime: 45.940us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 107.710us - ProjectionTime: 0ns - RowsProduced: 376 - SerializeDataTime: 331.501us - SerializeKeyTime: 0ns - SerializeResultTime: 403.575us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 63.308us - ExecTime: 576.697us - InitProbeSideTime: 32.33us - JoinFilterTimer: 152ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 54.892us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 550ns - ProbeFindNextTime: 0ns - ProbeRows: 376 - ProbeTime: 313.368us - ProbeWhenBuildSideOutputTime: 36.592us - ProbeWhenProbeSideOutputTime: 87.389us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.907us - ProjectionTime: 133.742us - RowsProduced: 376 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 50.42 KB - CloseTime: 6.578us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 151.372us - ExecTime: 73.670us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 60.198us - ProjectionTime: 0ns - RowsProduced: 376 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s341ms PipelineXTask (index=2):(Active: 3.981ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.441ms - CloseTime: 116.18us - GetBlockTime: 1.511ms - OpenTime: 4.391us - PrepareTime: 413.500us - SinkTime: 1.870ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.854ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.509ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 50.82 KB - CloseTime: 8.836us - CompressTime: 0ns - ExecTime: 2.26ms - InputRows: 380 - LocalBytesSent: 51.44 KB - LocalSendTime: 217.761us - LocalSentRows: 199 - MemoryUsage: - PeakMemoryUsage: 201.06 KB - MergeBlockTime: 0ns - OpenTime: 135.913us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.933ms - RowsProduced: 380 - RpcAvgTime: 3.533ms - RpcCount: 12 - RpcMaxTime: 3.830ms - RpcMinTime: 3.291ms - RpcSumTime: 42.396ms - SerializeBatchTime: 118.677us - SplitBlockDistributeByChannelTime: 610.456us - SplitBlockHashComputeTime: 28.7us - UncompressedRowBatchSize: 51.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 558.533us - CloseTime: 30.530us - DeserializeAndMergeTime: 0ns - ExecTime: 1.241ms - ExprTime: 23.396us - GetResultsTime: 532.332us - HashTableComputeTime: 474.895us - HashTableEmplaceTime: 432.691us - HashTableInputCount: 380 - HashTableIterateTime: 3.72us - HashTableSize: 380 - InsertKeysToColumnTime: 65.244us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 108.182us - ProjectionTime: 0ns - RowsProduced: 380 - SerializeDataTime: 447.694us - SerializeKeyTime: 0ns - SerializeResultTime: 537.195us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 55.536us - ExecTime: 498.526us - InitProbeSideTime: 35.26us - JoinFilterTimer: 228ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 44.306us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 720ns - ProbeFindNextTime: 0ns - ProbeRows: 380 - ProbeTime: 257.114us - ProbeWhenBuildSideOutputTime: 10.634us - ProbeWhenProbeSideOutputTime: 110.765us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 20.594us - ProjectionTime: 132.499us - RowsProduced: 380 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 50.88 KB - CloseTime: 17.385us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 106.140us - ExecTime: 45.247us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 22.567us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s342ms PipelineXTask (index=4):(Active: 3.802ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.265ms - CloseTime: 75.905us - GetBlockTime: 1.362ms - OpenTime: 12.334us - PrepareTime: 442.282us - SinkTime: 1.849ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.715ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 385.207us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 53.18 KB - CloseTime: 10.983us - CompressTime: 0ns - ExecTime: 2.33ms - InputRows: 372 - LocalBytesSent: 46.66 KB - LocalSendTime: 318.116us - LocalSentRows: 180 - MemoryUsage: - PeakMemoryUsage: 204.00 KB - MergeBlockTime: 0ns - OpenTime: 172.886us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.214ms - RowsProduced: 372 - RpcAvgTime: 3.759ms - RpcCount: 12 - RpcMaxTime: 4.24ms - RpcMinTime: 3.239ms - RpcSumTime: 45.113ms - SerializeBatchTime: 147.781us - SplitBlockDistributeByChannelTime: 408.779us - SplitBlockHashComputeTime: 18.378us - UncompressedRowBatchSize: 54.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 538.951us - CloseTime: 29.280us - DeserializeAndMergeTime: 0ns - ExecTime: 1.178ms - ExprTime: 19.227us - GetResultsTime: 462.454us - HashTableComputeTime: 475.984us - HashTableEmplaceTime: 446.765us - HashTableInputCount: 372 - HashTableIterateTime: 2.126us - HashTableSize: 372 - InsertKeysToColumnTime: 43.331us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 133.308us - ProjectionTime: 0ns - RowsProduced: 372 - SerializeDataTime: 399.490us - SerializeKeyTime: 0ns - SerializeResultTime: 470.691us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 26.381us - ExecTime: 409.497us - InitProbeSideTime: 42.618us - JoinFilterTimer: 95ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 50.469us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 859ns - ProbeFindNextTime: 0ns - ProbeRows: 372 - ProbeTime: 209.465us - ProbeWhenBuildSideOutputTime: 17.192us - ProbeWhenProbeSideOutputTime: 73.628us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 6.762us - ProjectionTime: 114.550us - RowsProduced: 372 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.148us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 187.57 KB - OpenTime: 28.372us - ProjectionTime: 0ns - RowsProduced: 372 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s340ms PipelineXTask (index=6):(Active: 2.714ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.133ms - CloseTime: 176.420us - GetBlockTime: 1.9ms - OpenTime: 13.418us - PrepareTime: 383.190us - SinkTime: 1.81ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.529ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.48ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 50.49 KB - CloseTime: 20.491us - CompressTime: 0ns - ExecTime: 1.255ms - InputRows: 387 - LocalBytesSent: 53.31 KB - LocalSendTime: 133.885us - LocalSentRows: 204 - MemoryUsage: - PeakMemoryUsage: 199.94 KB - MergeBlockTime: 0ns - OpenTime: 153.878us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.556ms - RowsProduced: 387 - RpcAvgTime: 3.465ms - RpcCount: 12 - RpcMaxTime: 3.555ms - RpcMinTime: 3.179ms - RpcSumTime: 41.589ms - SerializeBatchTime: 86.286us - SplitBlockDistributeByChannelTime: 333.658us - SplitBlockHashComputeTime: 18.390us - UncompressedRowBatchSize: 51.69 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 391.581us - CloseTime: 62.557us - DeserializeAndMergeTime: 0ns - ExecTime: 869.526us - ExprTime: 14.888us - GetResultsTime: 311.917us - HashTableComputeTime: 334.547us - HashTableEmplaceTime: 307.431us - HashTableInputCount: 387 - HashTableIterateTime: 1.838us - HashTableSize: 387 - InsertKeysToColumnTime: 23.152us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 94.850us - ProjectionTime: 0ns - RowsProduced: 387 - SerializeDataTime: 275.525us - SerializeKeyTime: 0ns - SerializeResultTime: 315.14us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 87.75us - ExecTime: 428.853us - InitProbeSideTime: 17.452us - JoinFilterTimer: 94ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 51.586us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 627ns - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 167.415us - ProbeWhenBuildSideOutputTime: 11.41us - ProbeWhenProbeSideOutputTime: 55.897us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.846us - ProjectionTime: 115.892us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 51.78 KB - CloseTime: 3.42us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 76.156us - ExecTime: 27.625us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 20.556us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s342ms PipelineXTask (index=8):(Active: 3.703ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.117ms - CloseTime: 90.956us - GetBlockTime: 1.353ms - OpenTime: 10.200us - PrepareTime: 478.29us - SinkTime: 1.734ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.605ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.621ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 53.21 KB - CloseTime: 7.531us - CompressTime: 0ns - ExecTime: 1.918ms - InputRows: 361 - LocalBytesSent: 43.92 KB - LocalSendTime: 184.956us - LocalSentRows: 171 - MemoryUsage: - PeakMemoryUsage: 198.00 KB - MergeBlockTime: 0ns - OpenTime: 177.133us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.377ms - RowsProduced: 361 - RpcAvgTime: 3.640ms - RpcCount: 12 - RpcMaxTime: 3.904ms - RpcMinTime: 3.429ms - RpcSumTime: 43.691ms - SerializeBatchTime: 99.46us - SplitBlockDistributeByChannelTime: 610.505us - SplitBlockHashComputeTime: 26.561us - UncompressedRowBatchSize: 54.63 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 486.142us - CloseTime: 35.906us - DeserializeAndMergeTime: 0ns - ExecTime: 1.95ms - ExprTime: 14.215us - GetResultsTime: 433.926us - HashTableComputeTime: 424.880us - HashTableEmplaceTime: 388.212us - HashTableInputCount: 361 - HashTableIterateTime: 2.649us - HashTableSize: 361 - InsertKeysToColumnTime: 33.54us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 117.4us - ProjectionTime: 0ns - RowsProduced: 361 - SerializeDataTime: 382.70us - SerializeKeyTime: 0ns - SerializeResultTime: 450.254us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 41.801us - ExecTime: 496.937us - InitProbeSideTime: 31.71us - JoinFilterTimer: 227ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 53.363us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 615ns - ProbeFindNextTime: 0ns - ProbeRows: 361 - ProbeTime: 227.946us - ProbeWhenBuildSideOutputTime: 16.156us - ProbeWhenProbeSideOutputTime: 86.746us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.115us - ProjectionTime: 162.621us - RowsProduced: 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 48.71 KB - CloseTime: 2.895us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 108.122us - ExecTime: 43.993us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 164.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 35.694us - ProjectionTime: 0ns - RowsProduced: 361 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s342ms PipelineXTask (index=10):(Active: 5.415ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.492ms - CloseTime: 178.551us - GetBlockTime: 2.77ms - OpenTime: 11.425us - PrepareTime: 724.367us - SinkTime: 2.369ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.225ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 267.72us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 50.05 KB - CloseTime: 28.822us - CompressTime: 0ns - ExecTime: 2.632ms - InputRows: 377 - LocalBytesSent: 53.28 KB - LocalSendTime: 306.303us - LocalSentRows: 202 - MemoryUsage: - PeakMemoryUsage: 201.50 KB - MergeBlockTime: 0ns - OpenTime: 234.536us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.443ms - RowsProduced: 377 - RpcAvgTime: 3.173ms - RpcCount: 12 - RpcMaxTime: 3.549ms - RpcMinTime: 2.730ms - RpcSumTime: 38.77ms - SerializeBatchTime: 201.189us - SplitBlockDistributeByChannelTime: 594.466us - SplitBlockHashComputeTime: 29.962us - UncompressedRowBatchSize: 50.52 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 569.558us - CloseTime: 69.289us - DeserializeAndMergeTime: 0ns - ExecTime: 1.974ms - ExprTime: 19.428us - GetResultsTime: 1.44ms - HashTableComputeTime: 494.961us - HashTableEmplaceTime: 455.101us - HashTableInputCount: 377 - HashTableIterateTime: 5.323us - HashTableSize: 377 - InsertKeysToColumnTime: 69.464us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 266.20us - ProjectionTime: 0ns - RowsProduced: 377 - SerializeDataTime: 934.813us - SerializeKeyTime: 0ns - SerializeResultTime: 1.61ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 70.592us - ExecTime: 537.323us - InitProbeSideTime: 43.747us - JoinFilterTimer: 80ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 70.816us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 677ns - ProbeFindNextTime: 0ns - ProbeRows: 377 - ProbeTime: 247.768us - ProbeWhenBuildSideOutputTime: 13.894us - ProbeWhenProbeSideOutputTime: 102.896us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.12us - ProjectionTime: 135.614us - RowsProduced: 377 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.325us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.426us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 187.57 KB - OpenTime: 40.790us - ProjectionTime: 0ns - RowsProduced: 377 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s341ms PipelineXTask (index=12):(Active: 4.562ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.872ms - CloseTime: 109.872us - GetBlockTime: 1.771ms - OpenTime: 11.295us - PrepareTime: 558.503us - SinkTime: 2.64ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.420ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.820us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 54.39 KB - CloseTime: 9.800us - CompressTime: 0ns - ExecTime: 2.301ms - InputRows: 392 - LocalBytesSent: 50.80 KB - LocalSendTime: 290.879us - LocalSentRows: 195 - MemoryUsage: - PeakMemoryUsage: 203.06 KB - MergeBlockTime: 0ns - OpenTime: 227.681us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.986ms - RowsProduced: 392 - RpcAvgTime: 4.847ms - RpcCount: 12 - RpcMaxTime: 5.763ms - RpcMinTime: 3.910ms - RpcSumTime: 58.164ms - SerializeBatchTime: 149.28us - SplitBlockDistributeByChannelTime: 681.941us - SplitBlockHashComputeTime: 37.3us - UncompressedRowBatchSize: 55.92 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 652.708us - CloseTime: 28.350us - DeserializeAndMergeTime: 0ns - ExecTime: 1.501ms - ExprTime: 20.412us - GetResultsTime: 651.968us - HashTableComputeTime: 576.984us - HashTableEmplaceTime: 530.605us - HashTableInputCount: 392 - HashTableIterateTime: 4.300us - HashTableSize: 392 - InsertKeysToColumnTime: 53.136us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 156.113us - ProjectionTime: 0ns - RowsProduced: 392 - SerializeDataTime: 576.664us - SerializeKeyTime: 0ns - SerializeResultTime: 656.620us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 41.706us - ExecTime: 526.829us - InitProbeSideTime: 29.699us - JoinFilterTimer: 150ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 47.216us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 821ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 269.327us - ProbeWhenBuildSideOutputTime: 27.530us - ProbeWhenProbeSideOutputTime: 84.313us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.151us - ProjectionTime: 156.286us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 52.35 KB - CloseTime: 26.207us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 123.776us - ExecTime: 63.299us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 28.459us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s345ms PipelineXTask (index=14):(Active: 3.602ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.27ms - CloseTime: 116.917us - GetBlockTime: 1.626ms - OpenTime: 6.478us - PrepareTime: 445.832us - SinkTime: 1.362ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.475ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 256.824us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 56.65 KB - CloseTime: 11.839us - CompressTime: 0ns - ExecTime: 1.550ms - InputRows: 392 - LocalBytesSent: 48.38 KB - LocalSendTime: 182.324us - LocalSentRows: 183 - MemoryUsage: - PeakMemoryUsage: 212.69 KB - MergeBlockTime: 0ns - OpenTime: 177.86us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.213ms - RowsProduced: 392 - RpcAvgTime: 3.882ms - RpcCount: 12 - RpcMaxTime: 4.321ms - RpcMinTime: 3.491ms - RpcSumTime: 46.587ms - SerializeBatchTime: 101.659us - SplitBlockDistributeByChannelTime: 429.924us - SplitBlockHashComputeTime: 26.367us - UncompressedRowBatchSize: 59.19 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 485.227us - CloseTime: 45.422us - DeserializeAndMergeTime: 0ns - ExecTime: 1.477ms - ExprTime: 15.505us - GetResultsTime: 797.187us - HashTableComputeTime: 429.892us - HashTableEmplaceTime: 402.185us - HashTableInputCount: 392 - HashTableIterateTime: 7.197us - HashTableSize: 392 - InsertKeysToColumnTime: 101.387us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 135.413us - ProjectionTime: 0ns - RowsProduced: 392 - SerializeDataTime: 669.616us - SerializeKeyTime: 0ns - SerializeResultTime: 804.349us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 49.901us - ExecTime: 402.229us - InitProbeSideTime: 23.523us - JoinFilterTimer: 119ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 42.717us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 700ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 199.750us - ProbeWhenBuildSideOutputTime: 25.554us - ProbeWhenProbeSideOutputTime: 63.284us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.352us - ProjectionTime: 97.261us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.616us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.755us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 172.50 KB - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 191.57 KB - OpenTime: 27.341us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s344ms PipelineXTask (index=16):(Active: 3.168ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.603ms - CloseTime: 114.192us - GetBlockTime: 1.508ms - OpenTime: 4.873us - PrepareTime: 439.781us - SinkTime: 1.63ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.43ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.66ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 50.65 KB - CloseTime: 12.814us - CompressTime: 0ns - ExecTime: 1.242ms - InputRows: 378 - LocalBytesSent: 49.46 KB - LocalSendTime: 202.484us - LocalSentRows: 188 - MemoryUsage: - PeakMemoryUsage: 203.81 KB - MergeBlockTime: 0ns - OpenTime: 166.255us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.161ms - RowsProduced: 378 - RpcAvgTime: 4.336ms - RpcCount: 12 - RpcMaxTime: 4.533ms - RpcMinTime: 4.84ms - RpcSumTime: 52.34ms - SerializeBatchTime: 72.864us - SplitBlockDistributeByChannelTime: 306.169us - SplitBlockHashComputeTime: 16.508us - UncompressedRowBatchSize: 52.47 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 563.160us - CloseTime: 48.258us - DeserializeAndMergeTime: 0ns - ExecTime: 1.280ms - ExprTime: 18.190us - GetResultsTime: 535.231us - HashTableComputeTime: 489.720us - HashTableEmplaceTime: 455.948us - HashTableInputCount: 378 - HashTableIterateTime: 3.120us - HashTableSize: 378 - InsertKeysToColumnTime: 33.305us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 125.368us - ProjectionTime: 0ns - RowsProduced: 378 - SerializeDataTime: 487.633us - SerializeKeyTime: 0ns - SerializeResultTime: 538.192us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 42.660us - ExecTime: 473.656us - InitProbeSideTime: 39.112us - JoinFilterTimer: 122ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 43.837us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 656ns - ProbeFindNextTime: 0ns - ProbeRows: 378 - ProbeTime: 238.55us - ProbeWhenBuildSideOutputTime: 18.521us - ProbeWhenProbeSideOutputTime: 97.934us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.429us - ProjectionTime: 139.382us - RowsProduced: 378 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.511us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.80us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 187.57 KB - OpenTime: 24.906us - ProjectionTime: 0ns - RowsProduced: 378 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s344ms PipelineXTask (index=18):(Active: 3.867ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.347ms - CloseTime: 83.186us - GetBlockTime: 1.281ms - OpenTime: 5.743us - PrepareTime: 424.425us - SinkTime: 2.24ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.768ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 139.893us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 49.26 KB - CloseTime: 10.105us - CompressTime: 0ns - ExecTime: 2.189ms - InputRows: 367 - LocalBytesSent: 51.32 KB - LocalSendTime: 261.169us - LocalSentRows: 195 - MemoryUsage: - PeakMemoryUsage: 197.94 KB - MergeBlockTime: 0ns - OpenTime: 155.178us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.67ms - RowsProduced: 367 - RpcAvgTime: 4.215ms - RpcCount: 12 - RpcMaxTime: 4.536ms - RpcMinTime: 3.832ms - RpcSumTime: 50.591ms - SerializeBatchTime: 152.870us - SplitBlockDistributeByChannelTime: 694.543us - SplitBlockHashComputeTime: 30.254us - UncompressedRowBatchSize: 50.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 453.43us - CloseTime: 33.482us - DeserializeAndMergeTime: 0ns - ExecTime: 1.171ms - ExprTime: 16.565us - GetResultsTime: 534.24us - HashTableComputeTime: 399.614us - HashTableEmplaceTime: 371.65us - HashTableInputCount: 367 - HashTableIterateTime: 3.54us - HashTableSize: 367 - InsertKeysToColumnTime: 38.117us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 137.685us - ProjectionTime: 0ns - RowsProduced: 367 - SerializeDataTime: 471.742us - SerializeKeyTime: 0ns - SerializeResultTime: 541.344us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 31.573us - ExecTime: 336.33us - InitProbeSideTime: 21.400us - JoinFilterTimer: 97ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 39.619us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 742ns - ProbeFindNextTime: 0ns - ProbeRows: 367 - ProbeTime: 159.557us - ProbeWhenBuildSideOutputTime: 18.423us - ProbeWhenProbeSideOutputTime: 49.568us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 8.572us - ProjectionTime: 92.967us - RowsProduced: 367 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.13us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.21us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 183.76 KB - OpenTime: 22.50us - ProjectionTime: 0ns - RowsProduced: 367 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s344ms PipelineXTask (index=20):(Active: 3.53ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.489ms - CloseTime: 101.729us - GetBlockTime: 1.124ms - OpenTime: 3.832us - PrepareTime: 452.445us - SinkTime: 1.342ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.944ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.243ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 51.98 KB - CloseTime: 7.214us - CompressTime: 0ns - ExecTime: 1.520ms - InputRows: 393 - LocalBytesSent: 53.74 KB - LocalSendTime: 183.80us - LocalSentRows: 203 - MemoryUsage: - PeakMemoryUsage: 202.75 KB - MergeBlockTime: 0ns - OpenTime: 171.260us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.73ms - RowsProduced: 393 - RpcAvgTime: 4.789ms - RpcCount: 12 - RpcMaxTime: 5.744ms - RpcMinTime: 3.921ms - RpcSumTime: 57.476ms - SerializeBatchTime: 89.58us - SplitBlockDistributeByChannelTime: 393.871us - SplitBlockHashComputeTime: 18.479us - UncompressedRowBatchSize: 52.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 459.401us - CloseTime: 35.485us - DeserializeAndMergeTime: 0ns - ExecTime: 973.959us - ExprTime: 15.136us - GetResultsTime: 335.562us - HashTableComputeTime: 410.774us - HashTableEmplaceTime: 383.107us - HashTableInputCount: 393 - HashTableIterateTime: 2.41us - HashTableSize: 393 - InsertKeysToColumnTime: 35.484us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 135.91us - ProjectionTime: 0ns - RowsProduced: 393 - SerializeDataTime: 287.175us - SerializeKeyTime: 0ns - SerializeResultTime: 338.666us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 39.610us - ExecTime: 385.768us - InitProbeSideTime: 32.897us - JoinFilterTimer: 205ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 35.87us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 621ns - ProbeFindNextTime: 0ns - ProbeRows: 393 - ProbeTime: 190.272us - ProbeWhenBuildSideOutputTime: 17.336us - ProbeWhenProbeSideOutputTime: 63.272us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.406us - ProjectionTime: 113.341us - RowsProduced: 393 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 52.52 KB - CloseTime: 16.929us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 109.306us - ExecTime: 48.902us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 26.865us - ProjectionTime: 0ns - RowsProduced: 393 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s345ms PipelineXTask (index=22):(Active: 4.498ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.941ms - CloseTime: 97.803us - GetBlockTime: 1.796ms - OpenTime: 3.937us - PrepareTime: 449.853us - SinkTime: 2.117ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.392ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.101us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 55.25 KB - CloseTime: 13.601us - CompressTime: 0ns - ExecTime: 2.285ms - InputRows: 389 - LocalBytesSent: 48.35 KB - LocalSendTime: 245.422us - LocalSentRows: 185 - MemoryUsage: - PeakMemoryUsage: 201.94 KB - MergeBlockTime: 0ns - OpenTime: 154.453us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.903ms - RowsProduced: 389 - RpcAvgTime: 5.47ms - RpcCount: 12 - RpcMaxTime: 5.780ms - RpcMinTime: 3.910ms - RpcSumTime: 60.575ms - SerializeBatchTime: 177.471us - SplitBlockDistributeByChannelTime: 767.428us - SplitBlockHashComputeTime: 38.583us - UncompressedRowBatchSize: 57.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 673.585us - CloseTime: 30.903us - DeserializeAndMergeTime: 0ns - ExecTime: 1.505ms - ExprTime: 22.729us - GetResultsTime: 676.462us - HashTableComputeTime: 596.302us - HashTableEmplaceTime: 548.468us - HashTableInputCount: 389 - HashTableIterateTime: 4.377us - HashTableSize: 389 - InsertKeysToColumnTime: 62.165us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 114.185us - ProjectionTime: 0ns - RowsProduced: 389 - SerializeDataTime: 594.802us - SerializeKeyTime: 0ns - SerializeResultTime: 680.562us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 43.401us - ExecTime: 505.408us - InitProbeSideTime: 30.32us - JoinFilterTimer: 182ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 41.505us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.4us - ProbeFindNextTime: 0ns - ProbeRows: 389 - ProbeTime: 259.505us - ProbeWhenBuildSideOutputTime: 9.609us - ProbeWhenProbeSideOutputTime: 82.246us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.480us - ProjectionTime: 148.601us - RowsProduced: 389 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 52.07 KB - CloseTime: 5.605us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 128.577us - ExecTime: 37.340us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 23.450us - ProjectionTime: 0ns - RowsProduced: 389 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s345ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 293.731us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 206.237us - CloseTime: 8.374us - GetBlockTime: 40.179us - OpenTime: 2.181us - PrepareTime: 71.430us - SinkTime: 111.463us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 265.598us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 541.231us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.29us - BuildRows: 23 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.694us - BuildTableInsertTime: 24.15us - BuildTableTime: 31.261us - CloseTime: 0ns - ExecTime: 128.350us - InputRows: 22 - MemoryUsage: - BuildBlocks: 704.00 B - BuildKeyArena: 4.00 KB - HashTable: 224.00 B - PeakMemoryUsage: 920.00 B - OpenTime: 19.710us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 13 - BytesReceived: 238.00 B - CloseTime: 7.1us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 15.627us - ExecTime: 61.306us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.81 KB - MemoryUsage: - Blocks: 1.56 KB - PeakMemoryUsage: 2.03 KB - OpenTime: 19.679us - ProjectionTime: 0ns - RowsProduced: 22 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=3):(Active: 260.370us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 158.261us - CloseTime: 21.286us - GetBlockTime: 33.837us - OpenTime: 1.484us - PrepareTime: 73.874us - SinkTime: 80.276us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 224.500us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 460.844us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.692us - BuildRows: 14 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.168us - BuildTableInsertTime: 21.983us - BuildTableTime: 26.65us - CloseTime: 0ns - ExecTime: 90.207us - InputRows: 13 - MemoryUsage: - BuildBlocks: 416.00 B - BuildKeyArena: 4.00 KB - HashTable: 188.00 B - PeakMemoryUsage: 596.00 B - OpenTime: 12.448us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 11 - BytesReceived: 238.00 B - CloseTime: 20.271us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 9.417us - ExecTime: 75.32us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.06 KB - MemoryUsage: - Blocks: 928.00 B - PeakMemoryUsage: 1.21 KB - OpenTime: 24.757us - ProjectionTime: 0ns - RowsProduced: 13 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=5):(Active: 217.744us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 139.66us - CloseTime: 3.977us - GetBlockTime: 30.200us - OpenTime: 1.815us - PrepareTime: 67.605us - SinkTime: 67.749us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 201.289us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 806.312us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.10us - BuildRows: 30 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.305us - BuildTableInsertTime: 12.938us - BuildTableTime: 16.278us - CloseTime: 0ns - ExecTime: 85.968us - InputRows: 29 - MemoryUsage: - BuildBlocks: 928.00 B - BuildKeyArena: 4.00 KB - HashTable: 380.00 B - PeakMemoryUsage: 1.27 KB - OpenTime: 20.238us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 14 - BytesReceived: 336.00 B - CloseTime: 3.80us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.995us - ExecTime: 47.10us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.22 KB - MemoryUsage: - Blocks: 2.00 KB - PeakMemoryUsage: 2.00 KB - OpenTime: 18.182us - ProjectionTime: 0ns - RowsProduced: 29 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=7):(Active: 237.606us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 151.683us - CloseTime: 4.446us - GetBlockTime: 33.123us - OpenTime: 1.553us - PrepareTime: 74.580us - SinkTime: 73.615us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 217.790us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.197ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.104us - BuildRows: 21 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.649us - BuildTableInsertTime: 15.782us - BuildTableTime: 21.362us - CloseTime: 0ns - ExecTime: 93.665us - InputRows: 20 - MemoryUsage: - BuildBlocks: 640.00 B - BuildKeyArena: 4.00 KB - HashTable: 216.00 B - PeakMemoryUsage: 848.00 B - OpenTime: 22.725us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 238.00 B - CloseTime: 3.391us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.439us - ExecTime: 49.667us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.56 KB - MemoryUsage: - Blocks: 960.00 B - PeakMemoryUsage: 1.25 KB - OpenTime: 18.698us - ProjectionTime: 0ns - RowsProduced: 20 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=9):(Active: 378.599us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 133.345us - CloseTime: 119.986us - GetBlockTime: 29.593us - OpenTime: 1.327us - PrepareTime: 118.142us - SinkTime: 66.50us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 245.673us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 747.347us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.5us - BuildRows: 25 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.615us - BuildTableInsertTime: 11.61us - BuildTableTime: 14.120us - CloseTime: 0ns - ExecTime: 81.104us - InputRows: 24 - MemoryUsage: - BuildBlocks: 768.00 B - BuildKeyArena: 4.00 KB - HashTable: 232.00 B - PeakMemoryUsage: 992.00 B - OpenTime: 17.79us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 13 - BytesReceived: 238.00 B - CloseTime: 119.228us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.389us - ExecTime: 182.566us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.84 KB - MemoryUsage: - Blocks: 1.97 KB - PeakMemoryUsage: 2.12 KB - OpenTime: 38.286us - ProjectionTime: 0ns - RowsProduced: 24 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=11):(Active: 314.311us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 172.228us - CloseTime: 5.9us - GetBlockTime: 51.765us - OpenTime: 3.140us - PrepareTime: 122.704us - SinkTime: 71.610us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 292.488us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 625.145us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.976us - BuildRows: 28 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.317us - BuildTableInsertTime: 25.191us - BuildTableTime: 31.437us - CloseTime: 0ns - ExecTime: 92.417us - InputRows: 27 - MemoryUsage: - BuildBlocks: 864.00 B - BuildKeyArena: 4.00 KB - HashTable: 372.00 B - PeakMemoryUsage: 1.20 KB - OpenTime: 22.932us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 11 - BytesReceived: 135.00 B - CloseTime: 4.35us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.390us - ExecTime: 88.587us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.00 KB - MemoryUsage: - Blocks: 960.00 B - PeakMemoryUsage: 1.09 KB - OpenTime: 37.90us - ProjectionTime: 0ns - RowsProduced: 27 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=13):(Active: 240.915us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 153.946us - CloseTime: 8.9us - GetBlockTime: 41.511us - OpenTime: 1.444us - PrepareTime: 72.478us - SinkTime: 62.703us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 219.319us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 857.732us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.445us - BuildRows: 19 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.231us - BuildTableInsertTime: 20.197us - BuildTableTime: 28.451us - CloseTime: 0ns - ExecTime: 71.858us - InputRows: 18 - MemoryUsage: - BuildBlocks: 576.00 B - BuildKeyArena: 4.00 KB - HashTable: 208.00 B - PeakMemoryUsage: 776.00 B - OpenTime: 11.408us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 11 - BytesReceived: 135.00 B - CloseTime: 6.243us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.954us - ExecTime: 67.168us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.69 KB - MemoryUsage: - Blocks: 1.56 KB - PeakMemoryUsage: 1.72 KB - OpenTime: 24.217us - ProjectionTime: 0ns - RowsProduced: 18 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=15):(Active: 192.460us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 114.338us - CloseTime: 5.332us - GetBlockTime: 25.97us - OpenTime: 1.684us - PrepareTime: 65.815us - SinkTime: 50.578us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 173.657us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 606.818us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.104us - BuildRows: 20 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.525us - BuildTableInsertTime: 10.625us - BuildTableTime: 14.844us - CloseTime: 0ns - ExecTime: 59.234us - InputRows: 19 - MemoryUsage: - BuildBlocks: 608.00 B - BuildKeyArena: 4.00 KB - HashTable: 212.00 B - PeakMemoryUsage: 812.00 B - OpenTime: 10.497us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 303.00 B - CloseTime: 4.292us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.136us - ExecTime: 45.989us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.41 KB - MemoryUsage: - Blocks: 896.00 B - PeakMemoryUsage: 1.18 KB - OpenTime: 21.49us - ProjectionTime: 0ns - RowsProduced: 19 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=17):(Active: 258.131us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 143.36us - CloseTime: 11.400us - GetBlockTime: 26.620us - OpenTime: 1.989us - PrepareTime: 96.434us - SinkTime: 77.738us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 233.322us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.345ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.681us - BuildRows: 18 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.507us - BuildTableInsertTime: 21.350us - BuildTableTime: 27.205us - CloseTime: 0ns - ExecTime: 106.32us - InputRows: 17 - MemoryUsage: - BuildBlocks: 544.00 B - BuildKeyArena: 4.00 KB - HashTable: 204.00 B - PeakMemoryUsage: 740.00 B - OpenTime: 30.111us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 206.00 B - CloseTime: 10.415us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 9.489us - ExecTime: 53.141us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.41 KB - MemoryUsage: - Blocks: 1.78 KB - PeakMemoryUsage: 2.09 KB - OpenTime: 20.205us - ProjectionTime: 0ns - RowsProduced: 17 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s330ms PipelineXTask (index=19):(Active: 321.242us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 196.366us - CloseTime: 30.789us - GetBlockTime: 42.699us - OpenTime: 3.113us - PrepareTime: 85.992us - SinkTime: 90.577us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 264.655us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.256ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.865us - BuildRows: 22 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.680us - BuildTableInsertTime: 25.273us - BuildTableTime: 30.666us - CloseTime: 0ns - ExecTime: 99.815us - InputRows: 21 - MemoryUsage: - BuildBlocks: 672.00 B - BuildKeyArena: 4.00 KB - HashTable: 220.00 B - PeakMemoryUsage: 884.00 B - OpenTime: 12.560us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 12 - BytesReceived: 103.00 B - CloseTime: 29.691us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.590us - ExecTime: 107.353us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.06 KB - MemoryUsage: - Blocks: 1.56 KB - PeakMemoryUsage: 1.56 KB - OpenTime: 40.659us - ProjectionTime: 0ns - RowsProduced: 21 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s330ms PipelineXTask (index=21):(Active: 206.201us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 134.269us - CloseTime: 4.45us - GetBlockTime: 32.244us - OpenTime: 1.631us - PrepareTime: 60.987us - SinkTime: 60.185us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 186.699us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 291.852us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.398us - BuildRows: 27 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.888us - BuildTableInsertTime: 19.174us - BuildTableTime: 24.226us - CloseTime: 0ns - ExecTime: 74.183us - InputRows: 26 - MemoryUsage: - BuildBlocks: 832.00 B - BuildKeyArena: 4.00 KB - HashTable: 240.00 B - PeakMemoryUsage: 1.04 KB - OpenTime: 16.70us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 11 - BytesReceived: 135.00 B - CloseTime: 2.977us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.421us - ExecTime: 50.31us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.00 KB - MemoryUsage: - Blocks: 832.00 B - PeakMemoryUsage: 832.00 B - OpenTime: 18.326us - ProjectionTime: 0ns - RowsProduced: 26 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=23):(Active: 261.884us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 185.522us - CloseTime: 8.543us - GetBlockTime: 41.285us - OpenTime: 1.286us - PrepareTime: 61.581us - SinkTime: 96.817us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.858us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 522.607us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.718us - BuildRows: 24 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.759us - BuildTableInsertTime: 21.382us - BuildTableTime: 41.748us - CloseTime: 0ns - ExecTime: 105.17us - InputRows: 23 - MemoryUsage: - BuildBlocks: 736.00 B - BuildKeyArena: 4.00 KB - HashTable: 228.00 B - PeakMemoryUsage: 956.00 B - OpenTime: 10.736us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 14 - BytesReceived: 400.00 B - CloseTime: 6.451us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 17.469us - ExecTime: 62.152us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.97 KB - MemoryUsage: - Blocks: 672.00 B - PeakMemoryUsage: 672.00 B - OpenTime: 19.423us - ProjectionTime: 0ns - RowsProduced: 23 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.565ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.976ms - CloseTime: 204.428us - GetBlockTime: 2.999ms - OpenTime: 37.394us - PrepareTime: 338.821us - SinkTime: 2.879ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.349ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 235.693us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 53.17 KB - CloseTime: 14.976us - CompressTime: 0ns - ExecTime: 2.989ms - InputRows: 385 - LocalBytesSent: 51.78 KB - LocalSendTime: 330.75us - LocalSentRows: 196 - MemoryUsage: - PeakMemoryUsage: 205.31 KB - MergeBlockTime: 0ns - OpenTime: 96.111us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.833ms - RowsProduced: 385 - RpcAvgTime: 1.667ms - RpcCount: 12 - RpcMaxTime: 2.2ms - RpcMinTime: 859.79us - RpcSumTime: 20.13ms - SerializeBatchTime: 213.316us - SplitBlockDistributeByChannelTime: 964.269us - SplitBlockHashComputeTime: 46.927us - UncompressedRowBatchSize: 54.37 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.119ms - CloseTime: 94.6us - DeserializeAndMergeTime: 0ns - ExecTime: 2.344ms - ExprTime: 30.393us - GetResultsTime: 991.79us - HashTableComputeTime: 1.10ms - HashTableEmplaceTime: 955.579us - HashTableInputCount: 385 - HashTableIterateTime: 10.488us - HashTableSize: 385 - InsertKeysToColumnTime: 71.381us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 117.556us - ProjectionTime: 0ns - RowsProduced: 385 - SerializeDataTime: 842.223us - SerializeKeyTime: 0ns - SerializeResultTime: 1.0ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 81.618us - ExecTime: 993.191us - InitProbeSideTime: 58.435us - JoinFilterTimer: 296ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 66.893us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.242us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 545.363us - ProbeWhenBuildSideOutputTime: 23.775us - ProbeWhenProbeSideOutputTime: 250.446us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.956us - ProjectionTime: 275.33us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 51.49 KB - CloseTime: 7.669us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 121.142us - ExecTime: 54.856us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 36.634us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s342ms PipelineXTask (index=2):(Active: 3.745ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.298ms - CloseTime: 150.891us - GetBlockTime: 1.261ms - OpenTime: 7.203us - PrepareTime: 282.732us - SinkTime: 1.989ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.583ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 800.799us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 53.55 KB - CloseTime: 13.672us - CompressTime: 0ns - ExecTime: 2.97ms - InputRows: 385 - LocalBytesSent: 49.51 KB - LocalSendTime: 255.334us - LocalSentRows: 191 - MemoryUsage: - PeakMemoryUsage: 207.94 KB - MergeBlockTime: 0ns - OpenTime: 95.297us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.363ms - RowsProduced: 385 - RpcAvgTime: 803.860us - RpcCount: 12 - RpcMaxTime: 1.153ms - RpcMinTime: 6.989us - RpcSumTime: 9.646ms - SerializeBatchTime: 178.517us - SplitBlockDistributeByChannelTime: 680.653us - SplitBlockHashComputeTime: 20.219us - UncompressedRowBatchSize: 55.80 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 462.58us - CloseTime: 65.43us - DeserializeAndMergeTime: 0ns - ExecTime: 1.77ms - ExprTime: 19.878us - GetResultsTime: 445.867us - HashTableComputeTime: 402.650us - HashTableEmplaceTime: 374.989us - HashTableInputCount: 385 - HashTableIterateTime: 2.833us - HashTableSize: 385 - InsertKeysToColumnTime: 73.105us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 86.945us - ProjectionTime: 0ns - RowsProduced: 385 - SerializeDataTime: 352.446us - SerializeKeyTime: 0ns - SerializeResultTime: 454.926us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 61.552us - ExecTime: 416.923us - InitProbeSideTime: 45.712us - JoinFilterTimer: 83ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 33.885us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.442us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 200.610us - ProbeWhenBuildSideOutputTime: 18.203us - ProbeWhenProbeSideOutputTime: 63.746us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 8.188us - ProjectionTime: 111.356us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.154us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.538us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 189.48 KB - OpenTime: 12.230us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s343ms PipelineXTask (index=4):(Active: 3.58ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.562ms - CloseTime: 198.270us - GetBlockTime: 1.254ms - OpenTime: 13.751us - PrepareTime: 278.588us - SinkTime: 1.273ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.853ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 591.562us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 57.26 KB - CloseTime: 13.772us - CompressTime: 0ns - ExecTime: 1.397ms - InputRows: 398 - LocalBytesSent: 49.54 KB - LocalSendTime: 172.901us - LocalSentRows: 193 - MemoryUsage: - PeakMemoryUsage: 205.75 KB - MergeBlockTime: 0ns - OpenTime: 111.342us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.323ms - RowsProduced: 398 - RpcAvgTime: 1.57ms - RpcCount: 12 - RpcMaxTime: 1.508ms - RpcMinTime: 264.770us - RpcSumTime: 12.690ms - SerializeBatchTime: 88.537us - SplitBlockDistributeByChannelTime: 386.932us - SplitBlockHashComputeTime: 19.535us - UncompressedRowBatchSize: 59.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 510.13us - CloseTime: 105.918us - DeserializeAndMergeTime: 0ns - ExecTime: 1.88ms - ExprTime: 19.574us - GetResultsTime: 382.347us - HashTableComputeTime: 453.424us - HashTableEmplaceTime: 420.655us - HashTableInputCount: 398 - HashTableIterateTime: 2.40us - HashTableSize: 398 - InsertKeysToColumnTime: 33.788us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 81.108us - ProjectionTime: 0ns - RowsProduced: 398 - SerializeDataTime: 333.332us - SerializeKeyTime: 0ns - SerializeResultTime: 385.347us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 67.610us - ExecTime: 443.157us - InitProbeSideTime: 31.702us - JoinFilterTimer: 192ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 31.893us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 657ns - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 212.619us - ProbeWhenBuildSideOutputTime: 14.254us - ProbeWhenProbeSideOutputTime: 87.818us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.26us - ProjectionTime: 122.946us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 53.17 KB - CloseTime: 5.274us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 176.606us - ExecTime: 26.233us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 15.735us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s344ms PipelineXTask (index=6):(Active: 4.281ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.781ms - CloseTime: 198.424us - GetBlockTime: 1.562ms - OpenTime: 17.493us - PrepareTime: 276.511us - SinkTime: 2.162ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.68ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.386ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 56.54 KB - CloseTime: 15.556us - CompressTime: 0ns - ExecTime: 2.275ms - InputRows: 398 - LocalBytesSent: 51.14 KB - LocalSendTime: 279.152us - LocalSentRows: 197 - MemoryUsage: - PeakMemoryUsage: 206.31 KB - MergeBlockTime: 0ns - OpenTime: 98.399us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.25ms - RowsProduced: 398 - RpcAvgTime: 1.535ms - RpcCount: 12 - RpcMaxTime: 2.62ms - RpcMinTime: 790.701us - RpcSumTime: 18.424ms - SerializeBatchTime: 195.148us - SplitBlockDistributeByChannelTime: 655.382us - SplitBlockHashComputeTime: 26.293us - UncompressedRowBatchSize: 58.49 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 645.965us - CloseTime: 87.288us - DeserializeAndMergeTime: 0ns - ExecTime: 1.298ms - ExprTime: 23.792us - GetResultsTime: 465.799us - HashTableComputeTime: 574.788us - HashTableEmplaceTime: 536.721us - HashTableInputCount: 398 - HashTableIterateTime: 2.749us - HashTableSize: 398 - InsertKeysToColumnTime: 35.243us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 87.397us - ProjectionTime: 0ns - RowsProduced: 398 - SerializeDataTime: 410.583us - SerializeKeyTime: 0ns - SerializeResultTime: 469.940us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 70.526us - ExecTime: 533.926us - InitProbeSideTime: 32.917us - JoinFilterTimer: 200ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 39.106us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.50us - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 262.684us - ProbeWhenBuildSideOutputTime: 21.159us - ProbeWhenProbeSideOutputTime: 80.984us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.13us - ProjectionTime: 148.569us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 53.23 KB - CloseTime: 18.446us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 131.221us - ExecTime: 43.259us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 16.523us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s343ms PipelineXTask (index=8):(Active: 4.213ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.692ms - CloseTime: 187.636us - GetBlockTime: 1.911ms - OpenTime: 8.212us - PrepareTime: 319.50us - SinkTime: 1.730ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 694.400us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 55.63 KB - CloseTime: 14.288us - CompressTime: 0ns - ExecTime: 1.848ms - InputRows: 387 - LocalBytesSent: 48.49 KB - LocalSendTime: 215.4us - LocalSentRows: 182 - MemoryUsage: - PeakMemoryUsage: 206.81 KB - MergeBlockTime: 0ns - OpenTime: 104.659us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.227ms - RowsProduced: 387 - RpcAvgTime: 1.218ms - RpcCount: 12 - RpcMaxTime: 1.556ms - RpcMinTime: 539.146us - RpcSumTime: 14.622ms - SerializeBatchTime: 117.10us - SplitBlockDistributeByChannelTime: 563.764us - SplitBlockHashComputeTime: 40.994us - UncompressedRowBatchSize: 57.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 780.581us - CloseTime: 100.278us - DeserializeAndMergeTime: 0ns - ExecTime: 1.574ms - ExprTime: 37.844us - GetResultsTime: 583.913us - HashTableComputeTime: 660.693us - HashTableEmplaceTime: 611.91us - HashTableInputCount: 387 - HashTableIterateTime: 3.203us - HashTableSize: 387 - InsertKeysToColumnTime: 40.513us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 94.678us - ProjectionTime: 0ns - RowsProduced: 387 - SerializeDataTime: 518.957us - SerializeKeyTime: 0ns - SerializeResultTime: 588.507us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 63.35us - ExecTime: 604.793us - InitProbeSideTime: 33.84us - JoinFilterTimer: 332ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 31.210us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.336us - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 322.85us - ProbeWhenBuildSideOutputTime: 21.152us - ProbeWhenProbeSideOutputTime: 123.92us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.70us - ProjectionTime: 175.189us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.8us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.168us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 189.48 KB - OpenTime: 26.812us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s343ms PipelineXTask (index=10):(Active: 4.121ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.713ms - CloseTime: 95.438us - GetBlockTime: 1.633ms - OpenTime: 24.148us - PrepareTime: 282.27us - SinkTime: 2.4ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.14ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 587.247us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 52.27 KB - CloseTime: 11.617us - CompressTime: 0ns - ExecTime: 2.121ms - InputRows: 391 - LocalBytesSent: 54.29 KB - LocalSendTime: 209.759us - LocalSentRows: 206 - MemoryUsage: - PeakMemoryUsage: 212.44 KB - MergeBlockTime: 0ns - OpenTime: 106.1us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.776ms - RowsProduced: 391 - RpcAvgTime: 1.755ms - RpcCount: 12 - RpcMaxTime: 1.930ms - RpcMinTime: 865.934us - RpcSumTime: 21.67ms - SerializeBatchTime: 167.144us - SplitBlockDistributeByChannelTime: 693.564us - SplitBlockHashComputeTime: 40.269us - UncompressedRowBatchSize: 54.01 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 643.284us - CloseTime: 31.466us - DeserializeAndMergeTime: 0ns - ExecTime: 1.312ms - ExprTime: 26.608us - GetResultsTime: 543.596us - HashTableComputeTime: 571.66us - HashTableEmplaceTime: 523.389us - HashTableInputCount: 391 - HashTableIterateTime: 2.760us - HashTableSize: 391 - InsertKeysToColumnTime: 47.560us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 82.121us - ProjectionTime: 0ns - RowsProduced: 391 - SerializeDataTime: 476.183us - SerializeKeyTime: 0ns - SerializeResultTime: 548.589us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 43.851us - ExecTime: 516.80us - InitProbeSideTime: 21.947us - JoinFilterTimer: 224ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 48.684us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.96us - ProbeFindNextTime: 0ns - ProbeRows: 391 - ProbeTime: 235.360us - ProbeWhenBuildSideOutputTime: 8.100us - ProbeWhenProbeSideOutputTime: 120.749us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.844us - ProjectionTime: 178.111us - RowsProduced: 391 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 52.42 KB - CloseTime: 4.811us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 122.727us - ExecTime: 20.940us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 10.194us - ProjectionTime: 0ns - RowsProduced: 391 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s344ms PipelineXTask (index=12):(Active: 4.534ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.69ms - CloseTime: 164.760us - GetBlockTime: 1.863ms - OpenTime: 8.130us - PrepareTime: 286.158us - SinkTime: 2.173ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.361ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.874ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 53.69 KB - CloseTime: 15.272us - CompressTime: 0ns - ExecTime: 2.276ms - InputRows: 383 - LocalBytesSent: 48.45 KB - LocalSendTime: 306.140us - LocalSentRows: 187 - MemoryUsage: - PeakMemoryUsage: 202.00 KB - MergeBlockTime: 0ns - OpenTime: 88.962us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.480ms - RowsProduced: 383 - RpcAvgTime: 553.453us - RpcCount: 12 - RpcMaxTime: 810.404us - RpcMinTime: 450.853us - RpcSumTime: 6.641ms - SerializeBatchTime: 140.927us - SplitBlockDistributeByChannelTime: 663.977us - SplitBlockHashComputeTime: 36.723us - UncompressedRowBatchSize: 55.11 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 733.13us - CloseTime: 58.112us - DeserializeAndMergeTime: 0ns - ExecTime: 1.501ms - ExprTime: 19.887us - GetResultsTime: 615.130us - HashTableComputeTime: 636.855us - HashTableEmplaceTime: 596.64us - HashTableInputCount: 383 - HashTableIterateTime: 3.991us - HashTableSize: 383 - InsertKeysToColumnTime: 45.429us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 83.376us - ProjectionTime: 0ns - RowsProduced: 383 - SerializeDataTime: 545.884us - SerializeKeyTime: 0ns - SerializeResultTime: 618.768us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 79.730us - ExecTime: 619.517us - InitProbeSideTime: 28.963us - JoinFilterTimer: 305ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 49.653us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.293us - ProbeFindNextTime: 0ns - ProbeRows: 383 - ProbeTime: 293.478us - ProbeWhenBuildSideOutputTime: 12.938us - ProbeWhenProbeSideOutputTime: 143.682us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.395us - ProjectionTime: 185.780us - RowsProduced: 383 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 51.24 KB - CloseTime: 6.224us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 98.732us - ExecTime: 33.416us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 20.752us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s344ms PipelineXTask (index=14):(Active: 4.27ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.539ms - CloseTime: 186.724us - GetBlockTime: 1.722ms - OpenTime: 8.990us - PrepareTime: 285.96us - SinkTime: 1.781ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.830ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.33ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 54.05 KB - CloseTime: 15.772us - CompressTime: 0ns - ExecTime: 1.900ms - InputRows: 388 - LocalBytesSent: 50.88 KB - LocalSendTime: 247.163us - LocalSentRows: 193 - MemoryUsage: - PeakMemoryUsage: 209.56 KB - MergeBlockTime: 0ns - OpenTime: 105.100us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.994ms - RowsProduced: 388 - RpcAvgTime: 579.178us - RpcCount: 12 - RpcMaxTime: 811.608us - RpcMinTime: 440.694us - RpcSumTime: 6.950ms - SerializeBatchTime: 120.214us - SplitBlockDistributeByChannelTime: 452.516us - SplitBlockHashComputeTime: 41.361us - UncompressedRowBatchSize: 55.96 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 603.817us - CloseTime: 74.273us - DeserializeAndMergeTime: 0ns - ExecTime: 1.456ms - ExprTime: 17.596us - GetResultsTime: 673.753us - HashTableComputeTime: 541.219us - HashTableEmplaceTime: 506.761us - HashTableInputCount: 388 - HashTableIterateTime: 4.100us - HashTableSize: 388 - InsertKeysToColumnTime: 85.323us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 91.739us - ProjectionTime: 0ns - RowsProduced: 388 - SerializeDataTime: 560.554us - SerializeKeyTime: 0ns - SerializeResultTime: 679.661us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 78.755us - ExecTime: 524.837us - InitProbeSideTime: 23.322us - JoinFilterTimer: 78ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 26.146us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 974ns - ProbeFindNextTime: 0ns - ProbeRows: 388 - ProbeTime: 236.824us - ProbeWhenBuildSideOutputTime: 23.543us - ProbeWhenProbeSideOutputTime: 111.280us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.739us - ProjectionTime: 174.428us - RowsProduced: 388 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 51.94 KB - CloseTime: 7.129us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 95.503us - ExecTime: 27.461us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 172.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 14.487us - ProjectionTime: 0ns - RowsProduced: 388 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s343ms PipelineXTask (index=16):(Active: 4.122ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.606ms - CloseTime: 157.348us - GetBlockTime: 1.687ms - OpenTime: 16.854us - PrepareTime: 334.635us - SinkTime: 1.861ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.952ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.508ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 51.81 KB - CloseTime: 15.732us - CompressTime: 0ns - ExecTime: 1.987ms - InputRows: 384 - LocalBytesSent: 51.88 KB - LocalSendTime: 248.305us - LocalSentRows: 199 - MemoryUsage: - PeakMemoryUsage: 202.44 KB - MergeBlockTime: 0ns - OpenTime: 111.554us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.374ms - RowsProduced: 384 - RpcAvgTime: 1.521ms - RpcCount: 12 - RpcMaxTime: 1.876ms - RpcMinTime: 1.342ms - RpcSumTime: 18.261ms - SerializeBatchTime: 138.574us - SplitBlockDistributeByChannelTime: 599.350us - SplitBlockHashComputeTime: 26.724us - UncompressedRowBatchSize: 52.36 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 508.442us - CloseTime: 61.694us - DeserializeAndMergeTime: 0ns - ExecTime: 1.344ms - ExprTime: 16.322us - GetResultsTime: 664.811us - HashTableComputeTime: 457.341us - HashTableEmplaceTime: 430.907us - HashTableInputCount: 384 - HashTableIterateTime: 3.414us - HashTableSize: 384 - InsertKeysToColumnTime: 49.978us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 99.643us - ProjectionTime: 0ns - RowsProduced: 384 - SerializeDataTime: 598.466us - SerializeKeyTime: 0ns - SerializeResultTime: 667.886us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 64.756us - ExecTime: 587.658us - InitProbeSideTime: 43.600us - JoinFilterTimer: 195ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 38.284us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 857ns - ProbeFindNextTime: 0ns - ProbeRows: 384 - ProbeTime: 314.581us - ProbeWhenBuildSideOutputTime: 24.211us - ProbeWhenProbeSideOutputTime: 115.225us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.108us - ProjectionTime: 157.521us - RowsProduced: 384 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.33us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.18us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 189.48 KB - OpenTime: 19.42us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s343ms PipelineXTask (index=18):(Active: 5.794ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.253ms - CloseTime: 230.964us - GetBlockTime: 2.446ms - OpenTime: 7.276us - PrepareTime: 296.261us - SinkTime: 2.757ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.554ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 556.710us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 52.02 KB - CloseTime: 22.440us - CompressTime: 0ns - ExecTime: 2.870ms - InputRows: 370 - LocalBytesSent: 46.27 KB - LocalSendTime: 318.84us - LocalSentRows: 183 - MemoryUsage: - PeakMemoryUsage: 196.81 KB - MergeBlockTime: 0ns - OpenTime: 101.140us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.816ms - RowsProduced: 370 - RpcAvgTime: 1.708ms - RpcCount: 12 - RpcMaxTime: 1.919ms - RpcMinTime: 876.378us - RpcSumTime: 20.499ms - SerializeBatchTime: 198.93us - SplitBlockDistributeByChannelTime: 827.626us - SplitBlockHashComputeTime: 42.957us - UncompressedRowBatchSize: 53.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 974.449us - CloseTime: 98.539us - DeserializeAndMergeTime: 0ns - ExecTime: 1.974ms - ExprTime: 29.953us - GetResultsTime: 793.980us - HashTableComputeTime: 874.6us - HashTableEmplaceTime: 800.95us - HashTableInputCount: 370 - HashTableIterateTime: 5.194us - HashTableSize: 370 - InsertKeysToColumnTime: 97.217us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 91.170us - ProjectionTime: 0ns - RowsProduced: 370 - SerializeDataTime: 666.936us - SerializeKeyTime: 0ns - SerializeResultTime: 799.584us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 84.816us - ExecTime: 752.670us - InitProbeSideTime: 50.875us - JoinFilterTimer: 250ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 33.517us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.417us - ProbeFindNextTime: 0ns - ProbeRows: 370 - ProbeTime: 388.318us - ProbeWhenBuildSideOutputTime: 9.409us - ProbeWhenProbeSideOutputTime: 158.61us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.249us - ProjectionTime: 224.603us - RowsProduced: 370 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 15.274us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.788us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 189.48 KB - OpenTime: 19.161us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s343ms PipelineXTask (index=20):(Active: 4.349ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.847ms - CloseTime: 140.311us - GetBlockTime: 1.173ms - OpenTime: 14.460us - PrepareTime: 341.661us - SinkTime: 2.636ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.58ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 147.400us DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 51.57 KB - CloseTime: 17.17us - CompressTime: 0ns - ExecTime: 2.771ms - InputRows: 385 - LocalBytesSent: 52.32 KB - LocalSendTime: 1.353ms - LocalSentRows: 200 - MemoryUsage: - PeakMemoryUsage: 202.81 KB - MergeBlockTime: 0ns - OpenTime: 118.762us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.710ms - RowsProduced: 385 - RpcAvgTime: 666.321us - RpcCount: 12 - RpcMaxTime: 1.440ms - RpcMinTime: 451.253us - RpcSumTime: 7.995ms - SerializeBatchTime: 110.455us - SplitBlockDistributeByChannelTime: 367.387us - SplitBlockHashComputeTime: 19.127us - UncompressedRowBatchSize: 52.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 495.506us - CloseTime: 37.276us - DeserializeAndMergeTime: 0ns - ExecTime: 1.7ms - ExprTime: 19.934us - GetResultsTime: 361.270us - HashTableComputeTime: 441.484us - HashTableEmplaceTime: 415.312us - HashTableInputCount: 385 - HashTableIterateTime: 17.168us - HashTableSize: 385 - InsertKeysToColumnTime: 26.375us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 102.60us - ProjectionTime: 0ns - RowsProduced: 385 - SerializeDataTime: 304.619us - SerializeKeyTime: 0ns - SerializeResultTime: 365.256us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 73.646us - ExecTime: 402.401us - InitProbeSideTime: 13.603us - JoinFilterTimer: 154ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 34.740us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.538us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 173.491us - ProbeWhenBuildSideOutputTime: 12.519us - ProbeWhenProbeSideOutputTime: 67.369us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 8.385us - ProjectionTime: 112.707us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 2 - BytesReceived: 51.69 KB - CloseTime: 7.464us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 117.56us - ExecTime: 33.828us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 22.89 KB - OpenTime: 19.349us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s347ms PipelineXTask (index=22):(Active: 5.257ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.857ms - CloseTime: 111.191us - GetBlockTime: 2.169ms - OpenTime: 8.588us - PrepareTime: 273.578us - SinkTime: 2.643ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.133ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.236ms DATA_STREAM_SINK_OPERATOR (id=373,dst_id=373): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 52.60 KB - CloseTime: 12.808us - CompressTime: 0ns - ExecTime: 2.748ms - InputRows: 382 - LocalBytesSent: 50.95 KB - LocalSendTime: 313.477us - LocalSentRows: 193 - MemoryUsage: - PeakMemoryUsage: 205.94 KB - MergeBlockTime: 0ns - OpenTime: 92.909us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.843ms - RowsProduced: 382 - RpcAvgTime: 579.435us - RpcCount: 12 - RpcMaxTime: 748.220us - RpcMinTime: 401.320us - RpcSumTime: 6.953ms - SerializeBatchTime: 171.530us - SplitBlockDistributeByChannelTime: 884.79us - SplitBlockHashComputeTime: 37.459us - UncompressedRowBatchSize: 53.64 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 624.299us - CloseTime: 37.772us - DeserializeAndMergeTime: 0ns - ExecTime: 1.746ms - ExprTime: 20.292us - GetResultsTime: 997.135us - HashTableComputeTime: 559.144us - HashTableEmplaceTime: 509.878us - HashTableInputCount: 382 - HashTableIterateTime: 5.157us - HashTableSize: 382 - InsertKeysToColumnTime: 81.545us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 6.55 MB - SerializeKeyArena: 6.54 MB - MergeTime: 0ns - OpenTime: 72.854us - ProjectionTime: 0ns - RowsProduced: 382 - SerializeDataTime: 885.461us - SerializeKeyTime: 0ns - SerializeResultTime: 1.3ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=371): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 50.601us - ExecTime: 601.124us - InitProbeSideTime: 43.544us - JoinFilterTimer: 227ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 37.395us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.18us - ProbeFindNextTime: 0ns - ProbeRows: 382 - ProbeTime: 309.48us - ProbeWhenBuildSideOutputTime: 31.459us - ProbeWhenProbeSideOutputTime: 105.874us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.825us - ProjectionTime: 172.259us - RowsProduced: 382 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=370): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.182us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.367us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.50 KB - MemoryUsage: - Blocks: 168.50 KB - PeakMemoryUsage: 189.48 KB - OpenTime: 15.825us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s346ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 300.511us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 225.741us - CloseTime: 5.461us - GetBlockTime: 59.775us - OpenTime: 7.958us - PrepareTime: 55.549us - SinkTime: 101.155us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 277.337us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 347.215us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.629us - BuildRows: 23 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.106us - BuildTableInsertTime: 28.221us - BuildTableTime: 36.233us - CloseTime: 0ns - ExecTime: 116.732us - InputRows: 22 - MemoryUsage: - BuildBlocks: 704.00 B - BuildKeyArena: 4.00 KB - HashTable: 224.00 B - PeakMemoryUsage: 920.00 B - OpenTime: 18.898us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 18 - BytesReceived: 1.12 KB - CloseTime: 3.933us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 60.859us - ExecTime: 73.431us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 640.00 B - MemoryUsage: - Blocks: 640.00 B - PeakMemoryUsage: 320.00 B - OpenTime: 15.528us - ProjectionTime: 0ns - RowsProduced: 22 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=3):(Active: 432.793us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 351.845us - CloseTime: 9.755us - GetBlockTime: 192.694us - OpenTime: 2.747us - PrepareTime: 63.873us - SinkTime: 87.341us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 194.686us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.134us - BuildRows: 20 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.435us - BuildTableInsertTime: 32.325us - BuildTableTime: 39.537us - CloseTime: 0ns - ExecTime: 107.196us - InputRows: 19 - MemoryUsage: - BuildBlocks: 608.00 B - BuildKeyArena: 4.00 KB - HashTable: 212.00 B - PeakMemoryUsage: 812.00 B - OpenTime: 21.386us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 20 - BytesReceived: 1.29 KB - CloseTime: 8.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 59.924us - ExecTime: 213.103us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.50 KB - PeakMemoryUsage: 158.00 B - OpenTime: 14.613us - ProjectionTime: 0ns - RowsProduced: 19 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=5):(Active: 277.401us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 160.124us - CloseTime: 20.77us - GetBlockTime: 39.745us - OpenTime: 1.859us - PrepareTime: 90.315us - SinkTime: 87.362us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 246.573us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 391.965us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.691us - BuildRows: 25 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.496us - BuildTableInsertTime: 38.642us - BuildTableTime: 46.95us - CloseTime: 0ns - ExecTime: 96.8us - InputRows: 24 - MemoryUsage: - BuildBlocks: 768.00 B - BuildKeyArena: 4.00 KB - HashTable: 232.00 B - PeakMemoryUsage: 992.00 B - OpenTime: 10.434us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 16 - BytesReceived: 1.08 KB - CloseTime: 18.239us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 38.529us - ExecTime: 92.671us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 672.00 B - MemoryUsage: - Blocks: 2.13 KB - PeakMemoryUsage: 384.00 B - OpenTime: 38.141us - ProjectionTime: 0ns - RowsProduced: 24 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=7):(Active: 239.860us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 169.700us - CloseTime: 6.301us - GetBlockTime: 39.750us - OpenTime: 2.819us - PrepareTime: 55.354us - SinkTime: 79.604us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 220.5us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 315.173us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.109us - BuildRows: 27 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.70us - BuildTableInsertTime: 27.894us - BuildTableTime: 33.736us - CloseTime: 0ns - ExecTime: 92.338us - InputRows: 26 - MemoryUsage: - BuildBlocks: 832.00 B - BuildKeyArena: 4.00 KB - HashTable: 240.00 B - PeakMemoryUsage: 1.04 KB - OpenTime: 15.11us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 22 - BytesReceived: 1.32 KB - CloseTime: 4.929us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 63.55us - ExecTime: 54.48us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 640.00 B - MemoryUsage: - Blocks: 1.16 KB - PeakMemoryUsage: 320.00 B - OpenTime: 14.284us - ProjectionTime: 0ns - RowsProduced: 26 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=9):(Active: 280.851us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 216.400us - CloseTime: 5.317us - GetBlockTime: 54.470us - OpenTime: 4.120us - PrepareTime: 49.661us - SinkTime: 98.769us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 255.125us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.122ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.9us - BuildRows: 32 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.302us - BuildTableInsertTime: 26.61us - BuildTableTime: 29.655us - CloseTime: 0ns - ExecTime: 101.505us - InputRows: 31 - MemoryUsage: - BuildBlocks: 992.00 B - BuildKeyArena: 4.00 KB - HashTable: 388.00 B - PeakMemoryUsage: 1.34 KB - OpenTime: 5.918us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 20 - BytesReceived: 1.38 KB - CloseTime: 4.479us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 64.174us - ExecTime: 62.463us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 704.00 B - MemoryUsage: - Blocks: 832.00 B - PeakMemoryUsage: 320.00 B - OpenTime: 19.99us - ProjectionTime: 0ns - RowsProduced: 31 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s328ms PipelineXTask (index=11):(Active: 290.2us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 222.400us - CloseTime: 7.600us - GetBlockTime: 52.581us - OpenTime: 2.470us - PrepareTime: 52.56us - SinkTime: 116.943us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 266.20us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 377.486us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.200us - BuildRows: 22 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.422us - BuildTableInsertTime: 26.303us - BuildTableTime: 36.739us - CloseTime: 0ns - ExecTime: 123.118us - InputRows: 21 - MemoryUsage: - BuildBlocks: 672.00 B - BuildKeyArena: 4.00 KB - HashTable: 220.00 B - PeakMemoryUsage: 884.00 B - OpenTime: 9.546us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 17 - BytesReceived: 1.12 KB - CloseTime: 5.749us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 43.587us - ExecTime: 66.644us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 320.00 B - MemoryUsage: - Blocks: 768.00 B - PeakMemoryUsage: 158.00 B - OpenTime: 13.758us - ProjectionTime: 0ns - RowsProduced: 21 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=13):(Active: 262.183us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 193.931us - CloseTime: 3.244us - GetBlockTime: 43.351us - OpenTime: 2.410us - PrepareTime: 57.288us - SinkTime: 95.638us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 243.5us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 338.66us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.553us - BuildRows: 26 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 31.550us - BuildTableInsertTime: 29.947us - BuildTableTime: 34.286us - CloseTime: 0ns - ExecTime: 115.723us - InputRows: 25 - MemoryUsage: - BuildBlocks: 800.00 B - BuildKeyArena: 4.00 KB - HashTable: 236.00 B - PeakMemoryUsage: 1.00 KB - OpenTime: 22.882us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 20 - BytesReceived: 1.22 KB - CloseTime: 2.750us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 45.427us - ExecTime: 53.585us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 640.00 B - MemoryUsage: - Blocks: 640.00 B - PeakMemoryUsage: 320.00 B - OpenTime: 13.658us - ProjectionTime: 0ns - RowsProduced: 25 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=15):(Active: 230.915us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 155.911us - CloseTime: 4.24us - GetBlockTime: 35.621us - OpenTime: 3.326us - PrepareTime: 62.290us - SinkTime: 77.594us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 215.116us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 421.382us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.345us - BuildRows: 30 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 33.17us - BuildTableInsertTime: 14.670us - BuildTableTime: 18.676us - CloseTime: 0ns - ExecTime: 92.828us - InputRows: 29 - MemoryUsage: - BuildBlocks: 928.00 B - BuildKeyArena: 4.00 KB - HashTable: 380.00 B - PeakMemoryUsage: 1.27 KB - OpenTime: 17.383us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 22 - BytesReceived: 1.48 KB - CloseTime: 3.109us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 46.103us - ExecTime: 46.300us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 608.00 B - MemoryUsage: - Blocks: 1.59 KB - PeakMemoryUsage: 320.00 B - OpenTime: 13.197us - ProjectionTime: 0ns - RowsProduced: 29 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=17):(Active: 277.96us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 178.473us - CloseTime: 12.791us - GetBlockTime: 40.929us - OpenTime: 4.210us - PrepareTime: 75.750us - SinkTime: 91.228us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 249.348us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 370.752us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.855us - BuildRows: 25 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.569us - BuildTableInsertTime: 37.48us - BuildTableTime: 44.326us - CloseTime: 0ns - ExecTime: 109.133us - InputRows: 24 - MemoryUsage: - BuildBlocks: 768.00 B - BuildKeyArena: 4.00 KB - HashTable: 232.00 B - PeakMemoryUsage: 992.00 B - OpenTime: 20.322us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 20 - BytesReceived: 1.19 KB - CloseTime: 11.632us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 58.706us - ExecTime: 61.790us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 640.00 B - MemoryUsage: - Blocks: 1.28 KB - PeakMemoryUsage: 320.00 B - OpenTime: 14.155us - ProjectionTime: 0ns - RowsProduced: 24 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=19):(Active: 233.158us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 141.626us - CloseTime: 42.183us - GetBlockTime: 45.426us - OpenTime: 2.560us - PrepareTime: 41.752us - SinkTime: 59.438us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 180.330us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 542.619us HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.90us - BuildRows: 21 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.456us - BuildTableInsertTime: 11.140us - BuildTableTime: 13.296us - CloseTime: 0ns - ExecTime: 63.357us - InputRows: 20 - MemoryUsage: - BuildBlocks: 640.00 B - BuildKeyArena: 4.00 KB - HashTable: 216.00 B - PeakMemoryUsage: 848.00 B - OpenTime: 6.443us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 22 - BytesReceived: 1.20 KB - CloseTime: 41.748us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 75.100us - ExecTime: 96.955us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 608.00 B - MemoryUsage: - Blocks: 2.09 KB - PeakMemoryUsage: 288.00 B - OpenTime: 14.574us - ProjectionTime: 0ns - RowsProduced: 20 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=21):(Active: 252.947us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 198.326us - CloseTime: 5.10us - GetBlockTime: 46.241us - OpenTime: 4.548us - PrepareTime: 38.514us - SinkTime: 92.484us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 230.758us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.879ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.128us - BuildRows: 23 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.367us - BuildTableInsertTime: 16.23us - BuildTableTime: 20.528us - CloseTime: 0ns - ExecTime: 97.84us - InputRows: 22 - MemoryUsage: - BuildBlocks: 704.00 B - BuildKeyArena: 4.00 KB - HashTable: 224.00 B - PeakMemoryUsage: 920.00 B - OpenTime: 6.896us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 19 - BytesReceived: 1.28 KB - CloseTime: 3.940us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 74.168us - ExecTime: 61.446us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 288.00 B - MemoryUsage: - Blocks: 1024.00 B - PeakMemoryUsage: 288.00 B - OpenTime: 16.800us - ProjectionTime: 0ns - RowsProduced: 22 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s328ms PipelineXTask (index=23):(Active: 233.660us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 147.872us - CloseTime: 25.984us - GetBlockTime: 37.468us - OpenTime: 3.297us - PrepareTime: 50.644us - SinkTime: 65.693us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 196.974us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.595ms HASH_JOIN_SINK_OPERATOR (id=371): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.743us - BuildRows: 21 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.966us - BuildTableInsertTime: 13.107us - BuildTableTime: 17.8us - CloseTime: 0ns - ExecTime: 70.294us - InputRows: 20 - MemoryUsage: - BuildBlocks: 640.00 B - BuildKeyArena: 4.00 KB - HashTable: 216.00 B - PeakMemoryUsage: 848.00 B - OpenTime: 5.850us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=42): - BlocksProduced: 20 - BytesReceived: 1.09 KB - CloseTime: 24.962us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 67.411us - ExecTime: 68.347us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 672.00 B - MemoryUsage: - Blocks: 2.09 KB - PeakMemoryUsage: 288.00 B - OpenTime: 9.722us - ProjectionTime: 0ns - RowsProduced: 20 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s328ms Fragment 8: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 9.502ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.201ms - CloseTime: 75.453us - GetBlockTime: 3.740ms - OpenTime: 8.701us - PrepareTime: 208.143us - SinkTime: 5.312ms - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.408ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 316.547us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 356.54 KB - CloseTime: 10.340us - CompressTime: 0ns - ExecTime: 5.416ms - InputRows: 4.586K (4586) - LocalBytesSent: 623.96 KB - LocalSendTime: 521.831us - LocalSentRows: 1.908K (1908) - MemoryUsage: - PeakMemoryUsage: 1.99 MB - MergeBlockTime: 0ns - OpenTime: 101.594us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.416ms - RowsProduced: 4.586K (4586) - RpcAvgTime: 1.863ms - RpcCount: 12 - RpcMaxTime: 3.86ms - RpcMinTime: 793.905us - RpcSumTime: 22.356ms - SerializeBatchTime: 1.80ms - SplitBlockDistributeByChannelTime: 1.309ms - SplitBlockHashComputeTime: 246.880us - UncompressedRowBatchSize: 939.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 62.684us - ExecTime: 3.690ms - InitProbeSideTime: 171.288us - JoinFilterTimer: 2.581us - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 47.516us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.878us - ProbeFindNextTime: 0ns - ProbeRows: 4.586K (4586) - ProbeTime: 2.662ms - ProbeWhenBuildSideOutputTime: 102.665us - ProbeWhenProbeSideOutputTime: 1.386ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 242.556us - ProjectionTime: 827.779us - RowsProduced: 4.586K (4586) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 68.178us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 344.00 KB - OpenTime: 1.116us - ProjectionTime: 0ns - RowsProduced: 4.586K (4586) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s334ms PipelineXTask (index=4):(Active: 1.468ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.224ms - CloseTime: 28.762us - GetBlockTime: 169.335us - OpenTime: 7.123us - PrepareTime: 202.11us - SinkTime: 991.699us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.427ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 520.301us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.209us - CompressTime: 0ns - ExecTime: 1.121ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 270.234us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 116.213us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.735ms - RowsProduced: 0 - RpcAvgTime: 1.229ms - RpcCount: 12 - RpcMaxTime: 1.384ms - RpcMinTime: 1.2ms - RpcSumTime: 14.755ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 614ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10.986us - ExecTime: 156.873us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 33.503us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.806us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 101.38us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 32.789us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 336.00 KB - OpenTime: 773ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s339ms PipelineXTask (index=8):(Active: 1.760ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.553ms - CloseTime: 19.730us - GetBlockTime: 125.286us - OpenTime: 14.110us - PrepareTime: 166.835us - SinkTime: 1.381ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.729ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 408.774us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.803us - CompressTime: 0ns - ExecTime: 1.486ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 349.917us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 96.704us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.130ms - RowsProduced: 0 - RpcAvgTime: 942.165us - RpcCount: 12 - RpcMaxTime: 1.257ms - RpcMinTime: 607.693us - RpcSumTime: 11.305ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.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 HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 9.201us - ExecTime: 169.469us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 38.248us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 22.204us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 97.864us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.62us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 868ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s339ms PipelineXTask (index=12):(Active: 1.838ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.605ms - CloseTime: 34.643us - GetBlockTime: 103.294us - OpenTime: 7.108us - PrepareTime: 185.481us - SinkTime: 1.468ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.793ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 234.262us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.630us - CompressTime: 0ns - ExecTime: 1.588ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 388.154us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 107.21us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.183ms - RowsProduced: 0 - RpcAvgTime: 1.35ms - RpcCount: 12 - RpcMaxTime: 1.362ms - RpcMinTime: 679.226us - RpcSumTime: 12.420ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.78us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 17.25us - ExecTime: 146.723us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 29.904us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 22.184us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 75.445us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.829us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 583ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s339ms PipelineXTask (index=16):(Active: 1.325ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.47ms - CloseTime: 45.508us - GetBlockTime: 41.533us - OpenTime: 21.403us - PrepareTime: 203.682us - SinkTime: 958.135us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.268ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.768ms DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.401us - CompressTime: 0ns - ExecTime: 1.91ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 226.715us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 113.587us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.675ms - RowsProduced: 0 - RpcAvgTime: 1.205ms - RpcCount: 12 - RpcMaxTime: 1.376ms - RpcMinTime: 961.849us - RpcSumTime: 14.464ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 541ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 21.27us - ExecTime: 100.506us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 39.648us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.819us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 29.443us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.372us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 674ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=20):(Active: 1.303ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.37ms - CloseTime: 30.805us - GetBlockTime: 75.873us - OpenTime: 13.600us - PrepareTime: 215.367us - SinkTime: 924.942us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.263ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 222.5us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.975us - CompressTime: 0ns - ExecTime: 1.79ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 224.298us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 141.951us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.715ms - RowsProduced: 0 - RpcAvgTime: 1.214ms - RpcCount: 12 - RpcMaxTime: 1.402ms - RpcMinTime: 982.404us - RpcSumTime: 14.574ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 624ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 14.65us - ExecTime: 128.314us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 40.841us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 15.619us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 56.203us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.742us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 647ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s339ms PipelineXTask (index=24):(Active: 2.674ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.458ms - CloseTime: 40.760us - GetBlockTime: 156.27us - OpenTime: 6.735us - PrepareTime: 162.280us - SinkTime: 2.263ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.622ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 237.792us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.884us - CompressTime: 0ns - ExecTime: 2.374ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 646.399us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 98.502us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.309ms - RowsProduced: 0 - RpcAvgTime: 834.587us - RpcCount: 12 - RpcMaxTime: 1.243ms - RpcMinTime: 546.67us - RpcSumTime: 10.15ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 618ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 22.854us - ExecTime: 201.744us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 27.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 53.53us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 95.376us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 7.848us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.650us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s339ms PipelineXTask (index=28):(Active: 1.7ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 792.610us - CloseTime: 18.890us - GetBlockTime: 49.939us - OpenTime: 7.363us - PrepareTime: 181.641us - SinkTime: 713.78us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 979.184us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.978ms DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.818us - CompressTime: 0ns - ExecTime: 833.471us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 162.607us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 112.172us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.772ms - RowsProduced: 0 - RpcAvgTime: 1.162ms - RpcCount: 12 - RpcMaxTime: 1.302ms - RpcMinTime: 1.1ms - RpcSumTime: 13.944ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 515ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.61us - ExecTime: 87.699us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 31.125us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 10.985us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 35.687us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.511us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 666ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=32):(Active: 1.251ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.37ms - CloseTime: 19.98us - GetBlockTime: 70.360us - OpenTime: 6.363us - PrepareTime: 182.777us - SinkTime: 928.887us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.224ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 358.593us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.249us - CompressTime: 0ns - ExecTime: 1.44ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 250.140us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 107.651us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.694ms - RowsProduced: 0 - RpcAvgTime: 1.214ms - RpcCount: 12 - RpcMaxTime: 1.400ms - RpcMinTime: 960.315us - RpcSumTime: 14.576ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 745ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.250us - ExecTime: 101.551us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 26.76us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 13.456us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 51.796us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.371us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.55us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s339ms PipelineXTask (index=36):(Active: 1.25ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 754.496us - CloseTime: 37.242us - GetBlockTime: 39.471us - OpenTime: 17.594us - PrepareTime: 210.124us - SinkTime: 663.775us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 977.454us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.565us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.125us - CompressTime: 0ns - ExecTime: 807.343us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 150.537us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 126.846us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.950ms - RowsProduced: 0 - RpcAvgTime: 1.270ms - RpcCount: 12 - RpcMaxTime: 1.400ms - RpcMinTime: 1.67ms - RpcSumTime: 15.243ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 466ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 14.235us - ExecTime: 100.87us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 47.893us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 10.787us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 25.27us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.801us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 793ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s339ms PipelineXTask (index=40):(Active: 1.488ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.266ms - CloseTime: 29.953us - GetBlockTime: 88.82us - OpenTime: 7.34us - PrepareTime: 178.973us - SinkTime: 1.143ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.448ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.983ms DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.642us - CompressTime: 0ns - ExecTime: 1.251ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 334.406us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 99.998us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.288ms - RowsProduced: 0 - RpcAvgTime: 977.650us - RpcCount: 12 - RpcMaxTime: 1.246ms - RpcMinTime: 632.754us - RpcSumTime: 11.731ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 584ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 18.593us - ExecTime: 134.904us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 30.424us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 19.405us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 64.371us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.810us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 690ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=44):(Active: 876.462us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 663.549us - CloseTime: 36.322us - GetBlockTime: 42.922us - OpenTime: 7.825us - PrepareTime: 162.325us - SinkTime: 595.99us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 832.650us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.492ms DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.67us - CompressTime: 0ns - ExecTime: 697.483us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 144.658us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 91.515us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.399ms - RowsProduced: 0 - RpcAvgTime: 810.566us - RpcCount: 12 - RpcMaxTime: 964.760us - RpcMinTime: 634.620us - RpcSumTime: 9.726ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 360ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 22.524us - ExecTime: 94.102us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 29.812us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.698us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 32.364us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.252us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 617ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 853.445us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 706.46us - CloseTime: 38.1us - GetBlockTime: 625.627us - OpenTime: 16.955us - PrepareTime: 87.494us - SinkTime: 29.757us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 805.412us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 477.339us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 29.534us - InputRows: 385 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.362us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 33.695us - ExecTime: 643.24us - InitProbeSideTime: 92.86us - JoinFilterTimer: 307ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 28.197us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.606us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 378.706us - ProbeWhenBuildSideOutputTime: 27.218us - ProbeWhenProbeSideOutputTime: 144.35us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 34.823us - ProjectionTime: 186.719us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 46.13 KB - CloseTime: 3.104us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 128.811us - ExecTime: 34.398us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 9.97 KB - OpenTime: 21.324us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s338ms PipelineXTask (index=5):(Active: 696.618us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 563.527us - CloseTime: 28.294us - GetBlockTime: 507.153us - OpenTime: 7.191us - PrepareTime: 92.376us - SinkTime: 20.381us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 658.424us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.69ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.983us - InputRows: 376 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.195us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 22.666us - ExecTime: 536.797us - InitProbeSideTime: 40.468us - JoinFilterTimer: 189ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 22.854us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 955ns - ProbeFindNextTime: 0ns - ProbeRows: 376 - ProbeTime: 247.359us - ProbeWhenBuildSideOutputTime: 24.960us - ProbeWhenProbeSideOutputTime: 90.174us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.885us - ProjectionTime: 233.110us - RowsProduced: 376 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.643us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.778us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 155.48 KB - OpenTime: 35.484us - ProjectionTime: 0ns - RowsProduced: 376 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=9):(Active: 667.432us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 501.156us - CloseTime: 75.117us - GetBlockTime: 416.839us - OpenTime: 9.947us - PrepareTime: 74.863us - SinkTime: 34.156us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 579.677us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.563ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 33.491us - InputRows: 380 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.109us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 68.318us - ExecTime: 502.959us - InitProbeSideTime: 46.755us - JoinFilterTimer: 221ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 31.360us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 877ns - ProbeFindNextTime: 0ns - ProbeRows: 380 - ProbeTime: 236.869us - ProbeWhenBuildSideOutputTime: 27.694us - ProbeWhenProbeSideOutputTime: 74.4us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.281us - ProjectionTime: 154.486us - RowsProduced: 380 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 45.56 KB - CloseTime: 4.3us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 134.108us - ExecTime: 24.211us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 11.63 KB - OpenTime: 13.272us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=13):(Active: 563.474us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 423.850us - CloseTime: 27.374us - GetBlockTime: 360.578us - OpenTime: 20.225us - PrepareTime: 86.650us - SinkTime: 15.178us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 527.234us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 452.1us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 15.568us - InputRows: 387 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.484us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 24.471us - ExecTime: 412.685us - InitProbeSideTime: 46.475us - JoinFilterTimer: 165ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 36.271us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.189us - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 186.440us - ProbeWhenBuildSideOutputTime: 10.826us - ProbeWhenProbeSideOutputTime: 60.769us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.853us - ProjectionTime: 157.18us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 46.38 KB - CloseTime: 1.579us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 136.583us - ExecTime: 25.77us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 13.29 KB - OpenTime: 18.651us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s338ms PipelineXTask (index=17):(Active: 761.278us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 647.227us - CloseTime: 26.769us - GetBlockTime: 530.290us - OpenTime: 4.569us - PrepareTime: 77.396us - SinkTime: 74.513us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 726.22us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 313.887us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 73.806us - InputRows: 361 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.139us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 20.385us - ExecTime: 557.145us - InitProbeSideTime: 64.698us - JoinFilterTimer: 200ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 22.19us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.737us - ProbeFindNextTime: 0ns - ProbeRows: 361 - ProbeTime: 286.285us - ProbeWhenBuildSideOutputTime: 23.630us - ProbeWhenProbeSideOutputTime: 91.838us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.480us - ProjectionTime: 211.988us - RowsProduced: 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.480us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.977us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 146.50 KB - MemoryUsage: - Blocks: 146.50 KB - PeakMemoryUsage: 148.16 KB - OpenTime: 24.922us - ProjectionTime: 0ns - RowsProduced: 361 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s338ms PipelineXTask (index=21):(Active: 650.779us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 479.431us - CloseTime: 51.996us - GetBlockTime: 425.197us - OpenTime: 9.197us - PrepareTime: 105.133us - SinkTime: 12.782us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 588.901us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 229.152us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.252us - InputRows: 392 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.935us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 34.819us - ExecTime: 494.481us - InitProbeSideTime: 34.693us - JoinFilterTimer: 165ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 45.193us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 885ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 226.858us - ProbeWhenBuildSideOutputTime: 27.75us - ProbeWhenProbeSideOutputTime: 71.178us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.708us - ProjectionTime: 177.398us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 46.88 KB - CloseTime: 15.309us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 260.686us - ExecTime: 46.702us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 14.95 KB - OpenTime: 24.466us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s338ms PipelineXTask (index=25):(Active: 821.22us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 668.669us - CloseTime: 40.104us - GetBlockTime: 609.384us - OpenTime: 5.28us - PrepareTime: 101.904us - SinkTime: 21.588us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 770.542us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 529.846us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.985us - InputRows: 387 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.379us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 33.399us - ExecTime: 663.111us - InitProbeSideTime: 28.249us - JoinFilterTimer: 130ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 39.108us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 993ns - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 242.836us - ProbeWhenBuildSideOutputTime: 26.892us - ProbeWhenProbeSideOutputTime: 84.585us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 18.802us - ProjectionTime: 336.963us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.713us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 157.14 KB - OpenTime: 18.223us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s338ms PipelineXTask (index=29):(Active: 482.987us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 367.456us - CloseTime: 26.305us - GetBlockTime: 291.484us - OpenTime: 6.177us - PrepareTime: 76.628us - SinkTime: 51.662us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 449.428us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.470ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.697us - InputRows: 393 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.14us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 22.25us - ExecTime: 336.536us - InitProbeSideTime: 50.261us - JoinFilterTimer: 196ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 29.358us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.143us - ProbeFindNextTime: 0ns - ProbeRows: 393 - ProbeTime: 167.396us - ProbeWhenBuildSideOutputTime: 20.653us - ProbeWhenProbeSideOutputTime: 44.490us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.692us - ProjectionTime: 95.585us - RowsProduced: 393 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 47.06 KB - CloseTime: 2.656us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 142.214us - ExecTime: 24.288us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 19.93 KB - OpenTime: 17.488us - ProjectionTime: 0ns - RowsProduced: 393 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=33):(Active: 780.110us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 567.429us - CloseTime: 84.337us - GetBlockTime: 489.575us - OpenTime: 20.690us - PrepareTime: 102.550us - SinkTime: 21.926us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 684.511us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.689ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 21.852us - InputRows: 389 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.80us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 80.280us - ExecTime: 585.819us - InitProbeSideTime: 64.252us - JoinFilterTimer: 139ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 40.651us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.338us - ProbeFindNextTime: 0ns - ProbeRows: 389 - ProbeTime: 286.475us - ProbeWhenBuildSideOutputTime: 34.874us - ProbeWhenProbeSideOutputTime: 108.449us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.841us - ProjectionTime: 170.639us - RowsProduced: 389 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.476us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.347us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 154.50 KB - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 169.45 KB - OpenTime: 13.355us - ProjectionTime: 0ns - RowsProduced: 389 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=37):(Active: 437.563us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 330.219us - CloseTime: 17.671us - GetBlockTime: 282.452us - OpenTime: 5.178us - PrepareTime: 79.591us - SinkTime: 25.73us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 413.805us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 285.931us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 25.278us - InputRows: 384 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.38us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 14.489us - ExecTime: 314.20us - InitProbeSideTime: 36.520us - JoinFilterTimer: 86ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 23.740us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 950ns - ProbeFindNextTime: 0ns - ProbeRows: 384 - ProbeTime: 174.484us - ProbeWhenBuildSideOutputTime: 27.251us - ProbeWhenProbeSideOutputTime: 35.910us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 35.133us - ProjectionTime: 94.444us - RowsProduced: 384 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.175us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 168.77 KB - OpenTime: 16.776us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s339ms PipelineXTask (index=41):(Active: 587.979us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 430.230us - CloseTime: 56.497us - GetBlockTime: 382.346us - OpenTime: 9.117us - PrepareTime: 85.821us - SinkTime: 8.838us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 521.677us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.782ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.981us - InputRows: 370 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.124us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 38.726us - ExecTime: 439.406us - InitProbeSideTime: 36.717us - JoinFilterTimer: 197ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 26.500us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 951ns - ProbeFindNextTime: 0ns - ProbeRows: 370 - ProbeTime: 233.497us - ProbeWhenBuildSideOutputTime: 49.455us - ProbeWhenProbeSideOutputTime: 72.753us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.680us - ProjectionTime: 133.319us - RowsProduced: 370 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 16.660us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.869us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 163.79 KB - OpenTime: 15.296us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=45):(Active: 630.795us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 506.926us - CloseTime: 21.91us - GetBlockTime: 460.308us - OpenTime: 6.640us - PrepareTime: 89.730us - SinkTime: 5.686us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 598.47us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.401ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.911us - InputRows: 382 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.135us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 18.920us - ExecTime: 496.403us - InitProbeSideTime: 66.669us - JoinFilterTimer: 174ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 26.616us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1000ns - ProbeFindNextTime: 0ns - ProbeRows: 382 - ProbeTime: 297.215us - ProbeWhenBuildSideOutputTime: 47.667us - ProbeWhenProbeSideOutputTime: 101.267us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.602us - ProjectionTime: 143.314us - RowsProduced: 382 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 1.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.84us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 167.11 KB - OpenTime: 14.225us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 439.108us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 377.169us - CloseTime: 12.285us - GetBlockTime: 55.99us - OpenTime: 2.428us - PrepareTime: 42.187us - SinkTime: 280.481us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 417.379us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 344.701us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 5.427us - BuildRows: 965 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 86.979us - BuildTableInsertTime: 69.618us - BuildTableTime: 78.859us - CloseTime: 0ns - ExecTime: 285.133us - InputRows: 964 - MemoryUsage: - BuildBlocks: 30.11 KB - BuildKeyArena: 28.00 KB - HashTable: 11.77 KB - PeakMemoryUsage: 65.88 KB - OpenTime: 7.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=60): - BlocksProduced: 22 - BytesReceived: 16.91 KB - CloseTime: 10.434us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 125.884us - ExecTime: 71.541us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.25 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 4.13 KB - OpenTime: 11.692us - ProjectionTime: 0ns - RowsProduced: 964 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s256ms PipelineXTask (index=6):(Active: 121.679us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 61.351us - CloseTime: 7.798us - GetBlockTime: 0ns - OpenTime: 2.345us - PrepareTime: 45.747us - SinkTime: 25.513us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.490us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.644us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.158us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.135us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.853us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.923us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.432us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 110.388us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.601us - CloseTime: 5.324us - GetBlockTime: 0ns - OpenTime: 3.431us - PrepareTime: 65.201us - SinkTime: 11.699us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.361us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 219.45us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.569us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.27us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.337us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.358us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 77.627us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.638us - CloseTime: 6.0us - GetBlockTime: 0ns - OpenTime: 1.890us - PrepareTime: 45.458us - SinkTime: 4.965us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 66.305us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 303.979us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.827us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.162us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.769us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.242us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.719us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 97.425us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.807us - CloseTime: 4.720us - GetBlockTime: 0ns - OpenTime: 1.895us - PrepareTime: 41.426us - SinkTime: 30.278us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.223us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 317.442us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.483us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.468us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.630us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.136us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.622us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 102.260us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.326us - CloseTime: 13.654us - GetBlockTime: 0ns - OpenTime: 2.573us - PrepareTime: 60.137us - SinkTime: 5.900us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.305us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 320.253us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.692us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.957us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.852us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.41us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.490us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 98.44us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 38.937us - CloseTime: 7.644us - GetBlockTime: 0ns - OpenTime: 2.730us - PrepareTime: 42.886us - SinkTime: 17.323us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.990us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.330ms HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.800us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s255ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.291us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.63us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.119us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 80.121us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.9us - CloseTime: 4.27us - GetBlockTime: 0ns - OpenTime: 3.454us - PrepareTime: 43.840us - SinkTime: 6.105us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.964us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 196.614us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.820us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.903us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.834us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.698us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.99us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 92.339us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.872us - CloseTime: 5.455us - GetBlockTime: 0ns - OpenTime: 2.265us - PrepareTime: 48.201us - SinkTime: 5.663us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.641us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 330.573us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.915us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.338us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.328us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.570us - 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=38):(Active: 99.192us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.715us - CloseTime: 5.380us - GetBlockTime: 0ns - OpenTime: 2.577us - PrepareTime: 38.5us - SinkTime: 5.64us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.557us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 213.116us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.16us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.125us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.50us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.213us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.196us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=42):(Active: 117.177us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 38.828us - CloseTime: 10.117us - GetBlockTime: 0ns - OpenTime: 2.86us - PrepareTime: 60.725us - SinkTime: 18.597us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.600us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.733ms HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.947us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.704us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s255ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.655us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.445us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.94us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=46):(Active: 157.347us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 69.909us - CloseTime: 20.284us - GetBlockTime: 0ns - OpenTime: 4.280us - PrepareTime: 57.946us - SinkTime: 10.612us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.653us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.831us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876d - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.485us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.872us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s256ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 18.456us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.571us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.275us - 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: 444.544us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 381.97us - CloseTime: 8.82us - GetBlockTime: 129.651us - OpenTime: 2.185us - PrepareTime: 47.160us - SinkTime: 168.990us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 414.226us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 905.401us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.953us - BuildRows: 103 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 77.706us - BuildTableInsertTime: 31.796us - BuildTableTime: 40.271us - CloseTime: 0ns - ExecTime: 174.605us - InputRows: 102 - MemoryUsage: - BuildBlocks: 4.78 KB - BuildKeyArena: 4.00 KB - HashTable: 928.00 B - PeakMemoryUsage: 5.68 KB - OpenTime: 9.866us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.66 KB - CloseTime: 6.684us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 128.651us - ExecTime: 135.261us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.78 KB - MemoryUsage: - Blocks: 2.13 KB - PeakMemoryUsage: 2.88 KB - OpenTime: 9.209us - ProjectionTime: 0ns - RowsProduced: 102 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s417ms PipelineXTask (index=7):(Active: 393.394us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 319.52us - CloseTime: 7.183us - GetBlockTime: 95.813us - OpenTime: 1.695us - PrepareTime: 59.346us - SinkTime: 141.709us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 362.943us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.94ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.901us - BuildRows: 94 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 56.615us - BuildTableInsertTime: 26.322us - BuildTableTime: 35.491us - CloseTime: 0ns - ExecTime: 132.289us - InputRows: 93 - MemoryUsage: - BuildBlocks: 4.35 KB - BuildKeyArena: 4.00 KB - HashTable: 892.00 B - PeakMemoryUsage: 5.22 KB - OpenTime: 5.264us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.09 KB - CloseTime: 5.832us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 93.834us - ExecTime: 107.610us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.94 KB - MemoryUsage: - Blocks: 2.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 14.646us - ProjectionTime: 0ns - RowsProduced: 93 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s417ms PipelineXTask (index=11):(Active: 433.890us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 380.639us - CloseTime: 2.965us - GetBlockTime: 136.605us - OpenTime: 2.37us - PrepareTime: 40.950us - SinkTime: 145.461us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 401.378us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 802.105us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.906us - BuildRows: 92 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 63.389us - BuildTableInsertTime: 28.996us - BuildTableTime: 33.200us - CloseTime: 0ns - ExecTime: 154.424us - InputRows: 91 - MemoryUsage: - BuildBlocks: 4.27 KB - BuildKeyArena: 4.00 KB - HashTable: 884.00 B - PeakMemoryUsage: 5.12 KB - OpenTime: 15.180us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 34 - BytesReceived: 2.91 KB - CloseTime: 2.433us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 89.413us - ExecTime: 139.407us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.97 KB - MemoryUsage: - Blocks: 1.25 KB - PeakMemoryUsage: 1.25 KB - OpenTime: 11.579us - ProjectionTime: 0ns - RowsProduced: 91 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s417ms PipelineXTask (index=15):(Active: 394.132us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 332.215us - CloseTime: 6.30us - GetBlockTime: 104.556us - OpenTime: 2.699us - PrepareTime: 46.750us - SinkTime: 134.559us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 363.795us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.10ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.957us - BuildRows: 89 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 55.850us - BuildTableInsertTime: 23.561us - BuildTableTime: 30.180us - CloseTime: 0ns - ExecTime: 135.792us - InputRows: 88 - MemoryUsage: - BuildBlocks: 4.11 KB - BuildKeyArena: 4.00 KB - HashTable: 872.00 B - PeakMemoryUsage: 4.96 KB - OpenTime: 5.269us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.55 KB - CloseTime: 4.894us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 113.527us - ExecTime: 116.110us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.91 KB - MemoryUsage: - Blocks: 2.06 KB - PeakMemoryUsage: 2.06 KB - OpenTime: 16.659us - ProjectionTime: 0ns - RowsProduced: 88 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s416ms PipelineXTask (index=19):(Active: 405.682us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 352.540us - CloseTime: 4.570us - GetBlockTime: 156.604us - OpenTime: 2.730us - PrepareTime: 39.578us - SinkTime: 121.364us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 378.667us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.93ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.568us - BuildRows: 86 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 69.415us - BuildTableInsertTime: 12.381us - BuildTableTime: 16.204us - CloseTime: 0ns - ExecTime: 122.994us - InputRows: 85 - MemoryUsage: - BuildBlocks: 3.98 KB - BuildKeyArena: 4.00 KB - HashTable: 860.00 B - PeakMemoryUsage: 4.82 KB - OpenTime: 5.351us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.42 KB - CloseTime: 4.94us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 105.184us - ExecTime: 167.573us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.16 KB - MemoryUsage: - Blocks: 2.53 KB - PeakMemoryUsage: 2.53 KB - OpenTime: 16.652us - ProjectionTime: 0ns - RowsProduced: 85 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s416ms PipelineXTask (index=23):(Active: 410.136us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 353.669us - CloseTime: 3.713us - GetBlockTime: 111.768us - OpenTime: 3.501us - PrepareTime: 41.101us - SinkTime: 154.36us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 378.439us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.506ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 14.577us - BuildRows: 103 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 71.641us - BuildTableInsertTime: 20.934us - BuildTableTime: 27.622us - CloseTime: 0ns - ExecTime: 156.134us - InputRows: 102 - MemoryUsage: - BuildBlocks: 4.77 KB - BuildKeyArena: 4.00 KB - HashTable: 928.00 B - PeakMemoryUsage: 5.67 KB - OpenTime: 6.126us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.60 KB - CloseTime: 2.986us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 124.662us - ExecTime: 117.796us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.38 KB - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 12.916us - ProjectionTime: 0ns - RowsProduced: 102 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s415ms PipelineXTask (index=27):(Active: 436.208us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 358.832us - CloseTime: 3.997us - GetBlockTime: 123.140us - OpenTime: 2.563us - PrepareTime: 64.172us - SinkTime: 149.131us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 405.705us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 851.706us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.470us - BuildRows: 105 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 68.334us - BuildTableInsertTime: 15.433us - BuildTableTime: 29.731us - CloseTime: 0ns - ExecTime: 156.587us - InputRows: 104 - MemoryUsage: - BuildBlocks: 4.86 KB - BuildKeyArena: 4.00 KB - HashTable: 936.00 B - PeakMemoryUsage: 5.77 KB - OpenTime: 12.657us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.37 KB - CloseTime: 3.72us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 98.672us - ExecTime: 142.543us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.25 KB - MemoryUsage: - Blocks: 2.25 KB - PeakMemoryUsage: 2.25 KB - OpenTime: 27.606us - ProjectionTime: 0ns - RowsProduced: 104 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s418ms PipelineXTask (index=31):(Active: 435.606us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 385.749us - CloseTime: 2.915us - GetBlockTime: 140.167us - OpenTime: 2.427us - PrepareTime: 37.153us - SinkTime: 148.612us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 406.370us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.557ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 14.823us - BuildRows: 98 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 67.339us - BuildTableInsertTime: 14.297us - BuildTableTime: 20.968us - CloseTime: 0ns - ExecTime: 149.80us - InputRows: 97 - MemoryUsage: - BuildBlocks: 4.54 KB - BuildKeyArena: 4.00 KB - HashTable: 908.00 B - PeakMemoryUsage: 5.41 KB - OpenTime: 4.942us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.04 KB - CloseTime: 2.218us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 130.710us - ExecTime: 145.743us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.69 KB - MemoryUsage: - Blocks: 2.25 KB - PeakMemoryUsage: 2.25 KB - OpenTime: 13.124us - ProjectionTime: 0ns - RowsProduced: 97 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s416ms PipelineXTask (index=35):(Active: 466.103us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 403.518us - CloseTime: 4.652us - GetBlockTime: 133.648us - OpenTime: 3.40us - PrepareTime: 48.501us - SinkTime: 168.722us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 434.624us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.193ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.263us - BuildRows: 100 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 80.167us - BuildTableInsertTime: 22.21us - BuildTableTime: 27.719us - CloseTime: 0ns - ExecTime: 171.516us - InputRows: 99 - MemoryUsage: - BuildBlocks: 4.63 KB - BuildKeyArena: 4.00 KB - HashTable: 916.00 B - PeakMemoryUsage: 5.52 KB - OpenTime: 7.871us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.74 KB - CloseTime: 3.899us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 140.914us - ExecTime: 137.983us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.59 KB - MemoryUsage: - Blocks: 2.88 KB - PeakMemoryUsage: 2.88 KB - OpenTime: 11.481us - ProjectionTime: 0ns - RowsProduced: 99 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s417ms PipelineXTask (index=39):(Active: 422.371us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 357.232us - CloseTime: 15.750us - GetBlockTime: 116.864us - OpenTime: 1.806us - PrepareTime: 41.16us - SinkTime: 144.774us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 380.965us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.50ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.50us - BuildRows: 92 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 65.420us - BuildTableInsertTime: 26.405us - BuildTableTime: 31.626us - CloseTime: 0ns - ExecTime: 147.701us - InputRows: 91 - MemoryUsage: - BuildBlocks: 4.26 KB - BuildKeyArena: 4.00 KB - HashTable: 884.00 B - PeakMemoryUsage: 5.11 KB - OpenTime: 7.525us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.14 KB - CloseTime: 15.66us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 86.688us - ExecTime: 127.494us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.13 KB - MemoryUsage: - Blocks: 1.94 KB - PeakMemoryUsage: 3.13 KB - OpenTime: 10.362us - ProjectionTime: 0ns - RowsProduced: 91 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s417ms PipelineXTask (index=43):(Active: 379.12us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 326.687us - CloseTime: 2.489us - GetBlockTime: 112.692us - OpenTime: 2.492us - PrepareTime: 40.890us - SinkTime: 127.608us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 344.327us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 797.723us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.397us - BuildRows: 85 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 65.602us - BuildTableInsertTime: 14.585us - BuildTableTime: 20.110us - CloseTime: 0ns - ExecTime: 131.604us - InputRows: 84 - MemoryUsage: - BuildBlocks: 3.93 KB - BuildKeyArena: 4.00 KB - HashTable: 856.00 B - PeakMemoryUsage: 4.76 KB - OpenTime: 8.777us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 2.72 KB - CloseTime: 1.738us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 130.761us - ExecTime: 101.666us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.16 KB - MemoryUsage: - Blocks: 2.00 KB - PeakMemoryUsage: 2.00 KB - OpenTime: 8.709us - ProjectionTime: 0ns - RowsProduced: 84 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s418ms PipelineXTask (index=47):(Active: 406.338us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 336.910us - CloseTime: 3.734us - GetBlockTime: 96.911us - OpenTime: 2.431us - PrepareTime: 56.805us - SinkTime: 125.636us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 356.945us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 660.787us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.104us - BuildRows: 99 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 54.327us - BuildTableInsertTime: 13.972us - BuildTableTime: 24.200us - CloseTime: 0ns - ExecTime: 135.500us - InputRows: 98 - MemoryUsage: - BuildBlocks: 4.55 KB - BuildKeyArena: 4.00 KB - HashTable: 912.00 B - PeakMemoryUsage: 5.44 KB - OpenTime: 14.85us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 35 - BytesReceived: 2.80 KB - CloseTime: 3.168us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 98.385us - ExecTime: 99.693us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.44 KB - MemoryUsage: - Blocks: 2.69 KB - PeakMemoryUsage: 2.90 KB - OpenTime: 11.490us - ProjectionTime: 0ns - RowsProduced: 98 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s418ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 6.236ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.842ms - CloseTime: 79.646us - GetBlockTime: 2.733ms - OpenTime: 11.618us - PrepareTime: 294.620us - SinkTime: 2.964ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.132ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 356.62us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 362.99 KB - CloseTime: 11.135us - CompressTime: 0ns - ExecTime: 3.143ms - InputRows: 4.614K (4614) - LocalBytesSent: 616.47 KB - LocalSendTime: 267.377us - LocalSentRows: 1.886K (1886) - MemoryUsage: - PeakMemoryUsage: 2.00 MB - MergeBlockTime: 0ns - OpenTime: 175.592us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.556ms - RowsProduced: 4.614K (4614) - RpcAvgTime: 4.509ms - RpcCount: 12 - RpcMaxTime: 6.612ms - RpcMinTime: 2.989ms - RpcSumTime: 54.116ms - SerializeBatchTime: 677.221us - SplitBlockDistributeByChannelTime: 789.414us - SplitBlockHashComputeTime: 191.979us - UncompressedRowBatchSize: 957.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 64.343us - ExecTime: 2.699ms - InitProbeSideTime: 143.72us - JoinFilterTimer: 1.458us - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 60.965us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.43us - ProbeFindNextTime: 0ns - ProbeRows: 4.614K (4614) - ProbeTime: 1.924ms - ProbeWhenBuildSideOutputTime: 90.819us - ProbeWhenProbeSideOutputTime: 963.683us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 188.863us - ProjectionTime: 578.834us - RowsProduced: 4.614K (4614) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 69.695us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 340.00 KB - OpenTime: 1.762us - ProjectionTime: 0ns - RowsProduced: 4.614K (4614) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s334ms PipelineXTask (index=4):(Active: 1.913ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.634ms - CloseTime: 27.622us - GetBlockTime: 309.530us - OpenTime: 9.671us - PrepareTime: 235.673us - SinkTime: 1.184ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.861ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 764.447us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.431us - CompressTime: 0ns - ExecTime: 1.333ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 313.635us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 137.514us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.282ms - RowsProduced: 0 - RpcAvgTime: 3.802ms - RpcCount: 12 - RpcMaxTime: 4.541ms - RpcMinTime: 1.989ms - RpcSumTime: 45.632ms - 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 HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 11.669us - ExecTime: 274.744us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 52.92us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 11.971us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 193.870us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 55.985us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 173.85 KB - OpenTime: 1.267us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=8):(Active: 1.146ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 814.899us - CloseTime: 54.259us - GetBlockTime: 79.224us - OpenTime: 7.738us - PrepareTime: 264.269us - SinkTime: 711.797us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.85ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.320us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.776us - CompressTime: 0ns - ExecTime: 890.174us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 200.303us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 161.185us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.635ms - RowsProduced: 0 - RpcAvgTime: 3.763ms - RpcCount: 12 - RpcMaxTime: 4.577ms - RpcMinTime: 2.329ms - RpcSumTime: 45.163ms - 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 HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 25.271us - ExecTime: 151.945us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 43.831us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 29.837us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 44.206us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.559us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.353us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=12):(Active: 1.244ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 950.891us - CloseTime: 31.494us - GetBlockTime: 82.647us - OpenTime: 5.938us - PrepareTime: 250.761us - SinkTime: 845.465us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.206ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 294.559us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.264us - CompressTime: 0ns - ExecTime: 988.138us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 217.957us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 132.690us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.509ms - RowsProduced: 0 - RpcAvgTime: 3.941ms - RpcCount: 12 - RpcMaxTime: 4.570ms - RpcMinTime: 2.727ms - RpcSumTime: 47.300ms - 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: 19.558us - ExecTime: 142.135us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 41.980us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 19.640us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 59.8us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.253us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.54us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=16):(Active: 943.459us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 650.962us - CloseTime: 50.306us - GetBlockTime: 51.962us - OpenTime: 3.478us - PrepareTime: 233.231us - SinkTime: 578.206us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 886.168us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.11ms DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.431us - CompressTime: 0ns - ExecTime: 747.542us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 146.735us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 143.179us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.32ms - RowsProduced: 0 - RpcAvgTime: 4.265ms - RpcCount: 12 - RpcMaxTime: 4.415ms - RpcMinTime: 4.181ms - RpcSumTime: 51.184ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 224ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 21.416us - ExecTime: 107.668us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 36.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.50us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 40.328us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.208us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.141us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=20):(Active: 1.751ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.462ms - CloseTime: 33.474us - GetBlockTime: 85.144us - OpenTime: 14.753us - PrepareTime: 234.686us - SinkTime: 1.342ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.709ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.392us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.405us - CompressTime: 0ns - ExecTime: 1.494ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 365.850us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 131.113us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.10ms - RowsProduced: 0 - RpcAvgTime: 3.927ms - RpcCount: 12 - RpcMaxTime: 4.552ms - RpcMinTime: 2.743ms - RpcSumTime: 47.128ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 744ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.393us - ExecTime: 138.148us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 46.387us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 22.369us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 58.76us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.210us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.190us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=24):(Active: 1.752ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.477ms - CloseTime: 30.570us - GetBlockTime: 90.822us - OpenTime: 10.998us - PrepareTime: 225.764us - SinkTime: 1.347ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.710ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.222us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.982us - CompressTime: 0ns - ExecTime: 1.496ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 380.516us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 133.382us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.6ms - RowsProduced: 0 - RpcAvgTime: 3.887ms - RpcCount: 12 - RpcMaxTime: 4.553ms - RpcMinTime: 2.529ms - RpcSumTime: 46.645ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 548ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.619us - ExecTime: 141.247us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 42.843us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 25.533us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 58.607us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.47us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.311us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=28):(Active: 1.61ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 783.273us - CloseTime: 24.80us - GetBlockTime: 59.674us - OpenTime: 3.773us - PrepareTime: 245.202us - SinkTime: 697.818us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.29ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 360.514us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.894us - CompressTime: 0ns - ExecTime: 852.180us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 172.43us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 142.180us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.622ms - RowsProduced: 0 - RpcAvgTime: 3.830ms - RpcCount: 12 - RpcMaxTime: 4.571ms - RpcMinTime: 2.714ms - RpcSumTime: 45.966ms - 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 HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 9.384us - ExecTime: 105.127us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 38.655us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 16.386us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 38.923us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.362us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.135us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=32):(Active: 1.240ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 939.526us - CloseTime: 45.307us - GetBlockTime: 66.64us - OpenTime: 5.405us - PrepareTime: 244.511us - SinkTime: 851.355us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.187ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 158.774us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.406us - CompressTime: 0ns - ExecTime: 1.30ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 190.936us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 155.436us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.504ms - RowsProduced: 0 - RpcAvgTime: 3.947ms - RpcCount: 12 - RpcMaxTime: 4.571ms - RpcMinTime: 2.730ms - RpcSumTime: 47.375ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 588ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 17.612us - ExecTime: 120.943us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 39.382us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 15.148us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 46.896us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.270us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.308us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=36):(Active: 1.86ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 819.953us - CloseTime: 26.21us - GetBlockTime: 49.63us - OpenTime: 8.326us - PrepareTime: 227.99us - SinkTime: 729.641us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.51ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 311.496us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.578us - CompressTime: 0ns - ExecTime: 870.534us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 174.66us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 131.842us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.494ms - RowsProduced: 0 - RpcAvgTime: 3.947ms - RpcCount: 12 - RpcMaxTime: 4.549ms - RpcMinTime: 2.602ms - RpcSumTime: 47.374ms - 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 HASH_JOIN_OPERATOR (id=369): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 14.471us - ExecTime: 103.638us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 42.484us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 13.464us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 31.415us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.19us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 872ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=40):(Active: 1.69ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 681.774us - CloseTime: 38.777us - GetBlockTime: 43.61us - OpenTime: 3.337us - PrepareTime: 339.361us - SinkTime: 618.982us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.23ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 326.777us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.246us - CompressTime: 0ns - ExecTime: 833.264us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 170.688us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 206.276us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.645ms - RowsProduced: 0 - RpcAvgTime: 3.829ms - RpcCount: 12 - RpcMaxTime: 4.561ms - RpcMinTime: 2.728ms - RpcSumTime: 45.955ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 391ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 29.38us - ExecTime: 111.342us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 41.55us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 10.454us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 29.431us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.272us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.133us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms PipelineXTask (index=44):(Active: 1.446ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.115ms - CloseTime: 48.467us - GetBlockTime: 89.360us - OpenTime: 3.997us - PrepareTime: 273.44us - SinkTime: 994.844us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.389ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.319us DATA_STREAM_SINK_OPERATOR (id=370,dst_id=370): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 28.621us - CompressTime: 0ns - ExecTime: 1.188ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 247.64us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 5.25 KB - MergeBlockTime: 0ns - OpenTime: 166.452us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.330ms - RowsProduced: 0 - RpcAvgTime: 3.866ms - RpcCount: 12 - RpcMaxTime: 4.555ms - RpcMinTime: 2.715ms - RpcSumTime: 46.399ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 717ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 17.445us - ExecTime: 147.422us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 44.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 22.647us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 60.332us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 5.723us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.4us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s338ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 814.78us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 647.65us - CloseTime: 39.236us - GetBlockTime: 578.293us - OpenTime: 2.845us - PrepareTime: 120.85us - SinkTime: 32.367us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 764.264us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 334.571us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 33.211us - InputRows: 385 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.420us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 34.272us - ExecTime: 631.497us - InitProbeSideTime: 43.767us - JoinFilterTimer: 367ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 32.917us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.280us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 350.486us - ProbeWhenBuildSideOutputTime: 51.780us - ProbeWhenProbeSideOutputTime: 122.981us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.791us - ProjectionTime: 200.556us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 46.18 KB - CloseTime: 2.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 138.810us - ExecTime: 34.247us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 19.93 KB - OpenTime: 23.385us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s336ms PipelineXTask (index=5):(Active: 632.644us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 484.494us - CloseTime: 22.363us - GetBlockTime: 433.794us - OpenTime: 15.794us - PrepareTime: 104.838us - SinkTime: 9.810us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 600.431us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 322.544us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.304us - InputRows: 398 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.80us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 17.719us - ExecTime: 483.745us - InitProbeSideTime: 30.824us - JoinFilterTimer: 117ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 45.169us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.79us - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 231.617us - ProbeWhenBuildSideOutputTime: 24.283us - ProbeWhenProbeSideOutputTime: 82.488us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 19.291us - ProjectionTime: 179.608us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.828us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.356us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 154.50 KB - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 164.47 KB - OpenTime: 25.534us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s336ms PipelineXTask (index=9):(Active: 588.191us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 423.362us - CloseTime: 30.686us - GetBlockTime: 337.362us - OpenTime: 22.187us - PrepareTime: 106.965us - SinkTime: 38.61us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 549.765us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 333.345us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 40.721us - InputRows: 372 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.124us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 22.538us - ExecTime: 396.959us - InitProbeSideTime: 27.78us - JoinFilterTimer: 116ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 48.940us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.375us - ProbeFindNextTime: 0ns - ProbeRows: 372 - ProbeTime: 176.945us - ProbeWhenBuildSideOutputTime: 23.131us - ProbeWhenProbeSideOutputTime: 63.206us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.386us - ProjectionTime: 138.411us - RowsProduced: 372 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.555us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.603us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 153.82 KB - OpenTime: 25.478us - ProjectionTime: 0ns - RowsProduced: 372 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s336ms PipelineXTask (index=13):(Active: 591.25us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 430.357us - CloseTime: 42.304us - GetBlockTime: 389.66us - OpenTime: 6.527us - PrepareTime: 107.280us - SinkTime: 9.163us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 540.601us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.751ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.787us - InputRows: 398 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.174us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 37.900us - ExecTime: 454.90us - InitProbeSideTime: 26.181us - JoinFilterTimer: 191ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 36.579us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 553ns - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 250.39us - ProbeWhenBuildSideOutputTime: 40.399us - ProbeWhenProbeSideOutputTime: 92.805us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.77us - ProjectionTime: 123.757us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 47.73 KB - CloseTime: 3.216us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 100.37us - ExecTime: 33.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 19.93 KB - OpenTime: 24.425us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s335ms PipelineXTask (index=17):(Active: 822.469us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 660.372us - CloseTime: 47.287us - GetBlockTime: 562.241us - OpenTime: 5.778us - PrepareTime: 103.977us - SinkTime: 54.390us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 763.666us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 462.816us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 54.319us - InputRows: 377 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.50us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 39.453us - ExecTime: 619.5us - InitProbeSideTime: 39.334us - JoinFilterTimer: 136ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 32.127us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.108us - ProbeFindNextTime: 0ns - ProbeRows: 377 - ProbeTime: 306.712us - ProbeWhenBuildSideOutputTime: 24.542us - ProbeWhenProbeSideOutputTime: 105.721us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.556us - ProjectionTime: 229.713us - RowsProduced: 377 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.83us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.952us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 162.13 KB - OpenTime: 28.252us - ProjectionTime: 0ns - RowsProduced: 377 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s336ms PipelineXTask (index=21):(Active: 610.539us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 438.591us - CloseTime: 33.262us - GetBlockTime: 398.512us - OpenTime: 5.630us - PrepareTime: 128.174us - SinkTime: 9.177us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 569.32us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 187.880us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 22.398us - InputRows: 392 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 14.354us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 28.217us - ExecTime: 451.455us - InitProbeSideTime: 28.193us - JoinFilterTimer: 148ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 40.449us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 642ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 224.9us - ProbeWhenBuildSideOutputTime: 34.60us - ProbeWhenProbeSideOutputTime: 63.35us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.832us - ProjectionTime: 150.398us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.466us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.174us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 154.50 KB - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 166.13 KB - OpenTime: 19.785us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=25):(Active: 643.151us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 480.139us - CloseTime: 29.815us - GetBlockTime: 415.625us - OpenTime: 3.350us - PrepareTime: 125.332us - SinkTime: 35.507us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 605.444us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.509us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 36.263us - InputRows: 378 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.266us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 24.471us - ExecTime: 474.58us - InitProbeSideTime: 37.156us - JoinFilterTimer: 122ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 48.460us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.514us - ProbeFindNextTime: 0ns - ProbeRows: 378 - ProbeTime: 251.818us - ProbeWhenBuildSideOutputTime: 26.508us - ProbeWhenProbeSideOutputTime: 81.726us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.54us - ProjectionTime: 137.328us - RowsProduced: 378 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 45.39 KB - CloseTime: 3.600us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 207.746us - ExecTime: 38.852us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 19.93 KB - OpenTime: 25.342us - ProjectionTime: 0ns - RowsProduced: 378 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=29):(Active: 656.734us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 491.221us - CloseTime: 36.337us - GetBlockTime: 412.581us - OpenTime: 20.520us - PrepareTime: 102.926us - SinkTime: 24.735us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 609.153us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.716us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 25.652us - InputRows: 367 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.173us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 31.303us - ExecTime: 472.173us - InitProbeSideTime: 36.374us - JoinFilterTimer: 238ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 39.690us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 818ns - ProbeFindNextTime: 0ns - ProbeRows: 367 - ProbeTime: 227.214us - ProbeWhenBuildSideOutputTime: 25.42us - ProbeWhenProbeSideOutputTime: 75.429us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.704us - ProjectionTime: 164.560us - RowsProduced: 367 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.529us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.886us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 168.77 KB - OpenTime: 24.731us - ProjectionTime: 0ns - RowsProduced: 367 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=33):(Active: 587.2us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 403.431us - CloseTime: 72.474us - GetBlockTime: 358.278us - OpenTime: 6.827us - PrepareTime: 97.937us - SinkTime: 10.582us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 505.718us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.269us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.742us - InputRows: 391 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.356us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 66.0us - ExecTime: 445.855us - InitProbeSideTime: 21.676us - JoinFilterTimer: 43ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 32.365us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 456ns - ProbeFindNextTime: 0ns - ProbeRows: 391 - ProbeTime: 195.524us - ProbeWhenBuildSideOutputTime: 9.866us - ProbeWhenProbeSideOutputTime: 103.864us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.398us - ProjectionTime: 144.393us - RowsProduced: 391 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 46.98 KB - CloseTime: 4.105us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 91.759us - ExecTime: 31.109us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 19.93 KB - OpenTime: 21.683us - ProjectionTime: 0ns - RowsProduced: 391 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=37):(Active: 476.135us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 327.75us - CloseTime: 27.257us - GetBlockTime: 283.599us - OpenTime: 6.206us - PrepareTime: 111.228us - SinkTime: 13.189us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 441.333us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 103.84us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.98us - InputRows: 383 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.957us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 21.677us - ExecTime: 338.297us - InitProbeSideTime: 19.670us - JoinFilterTimer: 81ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 43.704us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 885ns - ProbeFindNextTime: 0ns - ProbeRows: 383 - ProbeTime: 156.386us - ProbeWhenBuildSideOutputTime: 20.588us - ProbeWhenProbeSideOutputTime: 48.927us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.695us - ProjectionTime: 108.158us - RowsProduced: 383 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 2 - BytesReceived: 45.89 KB - CloseTime: 4.4us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 108.442us - ExecTime: 31.958us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 19.93 KB - OpenTime: 21.601us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=41):(Active: 716.731us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 531.975us - CloseTime: 55.691us - GetBlockTime: 498.642us - OpenTime: 2.621us - PrepareTime: 121.918us - SinkTime: 8.347us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 652.960us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.420us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.254us - InputRows: 388 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.120us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 45.522us - ExecTime: 563.741us - InitProbeSideTime: 44.905us - JoinFilterTimer: 240ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 30.985us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 781ns - ProbeFindNextTime: 0ns - ProbeRows: 388 - ProbeTime: 276.591us - ProbeWhenBuildSideOutputTime: 12.470us - ProbeWhenProbeSideOutputTime: 122.611us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.845us - ProjectionTime: 202.774us - RowsProduced: 388 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.385us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 154.50 KB - MemoryUsage: - Blocks: 154.50 KB - PeakMemoryUsage: 167.79 KB - OpenTime: 27.176us - ProjectionTime: 0ns - RowsProduced: 388 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s337ms PipelineXTask (index=45):(Active: 547.944us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 380.658us - CloseTime: 28.160us - GetBlockTime: 281.173us - OpenTime: 6.700us - PrepareTime: 127.151us - SinkTime: 69.731us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 511.140us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.567us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 70.452us - InputRows: 385 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.899us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=368): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 23.148us - ExecTime: 334.910us - InitProbeSideTime: 39.455us - JoinFilterTimer: 195ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 37.476us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 744ns - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 174.227us - ProbeWhenBuildSideOutputTime: 20.418us - ProbeWhenProbeSideOutputTime: 56.460us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.688us - ProjectionTime: 94.231us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=367): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.299us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.404us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 150.50 KB - MemoryUsage: - Blocks: 150.50 KB - PeakMemoryUsage: 167.11 KB - OpenTime: 24.753us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s338ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 418.550us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 318.230us - CloseTime: 9.391us - GetBlockTime: 58.538us - OpenTime: 1.300us - PrepareTime: 85.101us - SinkTime: 222.784us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 399.175us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.535us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 4.67us - BuildRows: 965 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 50.982us - BuildTableInsertTime: 58.180us - BuildTableTime: 66.819us - CloseTime: 0ns - ExecTime: 239.584us - InputRows: 964 - MemoryUsage: - BuildBlocks: 30.11 KB - BuildKeyArena: 28.00 KB - HashTable: 11.77 KB - PeakMemoryUsage: 65.88 KB - OpenTime: 19.924us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=60): - BlocksProduced: 14 - BytesReceived: 3.45 KB - CloseTime: 7.170us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 27.390us - ExecTime: 78.757us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 51.75 KB - MemoryUsage: - Blocks: 24.13 KB - PeakMemoryUsage: 20.13 KB - OpenTime: 19.140us - ProjectionTime: 0ns - RowsProduced: 964 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s261ms PipelineXTask (index=6):(Active: 218.339us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 94.287us - CloseTime: 20.532us - GetBlockTime: 0ns - OpenTime: 1.637us - PrepareTime: 97.724us - SinkTime: 83.237us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.660us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 110.721us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 125.451us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 42.334us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s262ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 18.766us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.913us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.484us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 145.386us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 77.104us - CloseTime: 6.670us - GetBlockTime: 0ns - OpenTime: 1.519us - PrepareTime: 56.183us - SinkTime: 52.663us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.24us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.917us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 69.416us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.269us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.616us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.822us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.622us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 132.676us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 17.206us - CloseTime: 45.956us - GetBlockTime: 0ns - OpenTime: 1.162us - PrepareTime: 64.185us - SinkTime: 4.99us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.581us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.415us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.780us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.690us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 44.623us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.200us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.998us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 152.16us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 75.456us - CloseTime: 7.880us - GetBlockTime: 0ns - OpenTime: 1.676us - PrepareTime: 62.646us - SinkTime: 59.300us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.197us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.394us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 75.505us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.684us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.782us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.909us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.316us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 132.235us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.154us - CloseTime: 23.519us - GetBlockTime: 0ns - OpenTime: 1.592us - PrepareTime: 70.773us - SinkTime: 16.816us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.108us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 87.580us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.198us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.511us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 20.821us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.632us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.96us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 224.111us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 120.84us - CloseTime: 18.257us - GetBlockTime: 0ns - OpenTime: 1.748us - PrepareTime: 78.692us - SinkTime: 98.20us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.142us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.342us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 122.686us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.5us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.738us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.391us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.758us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 132.285us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.901us - CloseTime: 31.997us - GetBlockTime: 0ns - OpenTime: 2.288us - PrepareTime: 68.137us - SinkTime: 5.984us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.950us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.193us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.729us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.713us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 30.762us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 49.549us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.117us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 120.993us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.932us - CloseTime: 10.907us - GetBlockTime: 0ns - OpenTime: 2.392us - PrepareTime: 70.494us - SinkTime: 13.120us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.125us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.613us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.396us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.307us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.250us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.263us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.284us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 132.933us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.477us - CloseTime: 52.12us - GetBlockTime: 0ns - OpenTime: 1.407us - PrepareTime: 59.838us - SinkTime: 4.559us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 76.223us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.630us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.558us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.66us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 50.929us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.878us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.329us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=42):(Active: 154.151us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.985us - CloseTime: 22.86us - GetBlockTime: 0ns - OpenTime: 999ns - PrepareTime: 87.692us - SinkTime: 19.473us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 125.993us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.425us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.349us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.335us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 19.982us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.980us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.228us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=46):(Active: 120.193us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.765us - CloseTime: 5.877us - GetBlockTime: 0ns - OpenTime: 1.508us - PrepareTime: 84.129us - SinkTime: 10.613us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.506us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 54.402us HASH_JOIN_SINK_OPERATOR (id=369): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc876c - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.532us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.909us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s261ms EXCHANGE_OPERATOR (id=60): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.934us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.570us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 376.921us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 308.621us - CloseTime: 6.645us - GetBlockTime: 134.198us - OpenTime: 2.660us - PrepareTime: 54.427us - SinkTime: 123.855us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 358.979us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.287ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.261us - BuildRows: 107 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 57.952us - BuildTableInsertTime: 17.96us - BuildTableTime: 25.786us - CloseTime: 0ns - ExecTime: 128.832us - InputRows: 106 - MemoryUsage: - BuildBlocks: 4.95 KB - BuildKeyArena: 4.00 KB - HashTable: 944.00 B - PeakMemoryUsage: 5.86 KB - OpenTime: 9.186us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.13 KB - CloseTime: 5.127us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 84.300us - ExecTime: 152.299us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.84 KB - MemoryUsage: - Blocks: 10.69 KB - PeakMemoryUsage: 5.94 KB - OpenTime: 20.923us - ProjectionTime: 0ns - RowsProduced: 106 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=7):(Active: 344.347us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 271.462us - CloseTime: 4.951us - GetBlockTime: 105.66us - OpenTime: 1.210us - PrepareTime: 62.374us - SinkTime: 123.708us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 331.254us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.264ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.822us - BuildRows: 105 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 54.539us - BuildTableInsertTime: 21.843us - BuildTableTime: 28.54us - CloseTime: 0ns - ExecTime: 129.360us - InputRows: 104 - MemoryUsage: - BuildBlocks: 4.86 KB - BuildKeyArena: 4.00 KB - HashTable: 936.00 B - PeakMemoryUsage: 5.76 KB - OpenTime: 9.291us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.56 KB - CloseTime: 3.506us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 82.426us - ExecTime: 118.247us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.91 KB - MemoryUsage: - Blocks: 10.34 KB - PeakMemoryUsage: 4.97 KB - OpenTime: 16.41us - ProjectionTime: 0ns - RowsProduced: 104 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=11):(Active: 363.199us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 280.688us - CloseTime: 4.880us - GetBlockTime: 111.61us - OpenTime: 2.77us - PrepareTime: 70.236us - SinkTime: 127.423us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 349.6us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.212ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 23.162us - BuildRows: 82 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 49.854us - BuildTableInsertTime: 14.124us - BuildTableTime: 19.419us - CloseTime: 0ns - ExecTime: 151.100us - InputRows: 81 - MemoryUsage: - BuildBlocks: 3.79 KB - BuildKeyArena: 4.00 KB - HashTable: 844.00 B - PeakMemoryUsage: 4.61 KB - OpenTime: 27.534us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 32 - BytesReceived: 2.49 KB - CloseTime: 3.626us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 73.457us - ExecTime: 123.868us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.69 KB - MemoryUsage: - Blocks: 8.72 KB - PeakMemoryUsage: 4.44 KB - OpenTime: 15.512us - ProjectionTime: 0ns - RowsProduced: 81 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=15):(Active: 448.301us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 355.49us - CloseTime: 7.893us - GetBlockTime: 171.28us - OpenTime: 2.282us - PrepareTime: 77.568us - SinkTime: 127.591us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 328.182us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 975.556us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.739us - BuildRows: 114 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 59.691us - BuildTableInsertTime: 20.968us - BuildTableTime: 27.945us - CloseTime: 0ns - ExecTime: 150.915us - InputRows: 113 - MemoryUsage: - BuildBlocks: 5.29 KB - BuildKeyArena: 4.00 KB - HashTable: 1.45 KB - PeakMemoryUsage: 6.73 KB - OpenTime: 27.205us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 35 - BytesReceived: 3.70 KB - CloseTime: 6.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 131.66us - ExecTime: 189.743us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.06 KB - MemoryUsage: - Blocks: 5.81 KB - PeakMemoryUsage: 2.69 KB - OpenTime: 19.877us - ProjectionTime: 0ns - RowsProduced: 113 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=19):(Active: 321.936us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 228.405us - CloseTime: 3.746us - GetBlockTime: 87.623us - OpenTime: 2.256us - PrepareTime: 82.573us - SinkTime: 97.69us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 306.958us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.17ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.448us - BuildRows: 106 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.883us - BuildTableInsertTime: 16.951us - BuildTableTime: 21.365us - CloseTime: 0ns - ExecTime: 103.287us - InputRows: 105 - MemoryUsage: - BuildBlocks: 4.90 KB - BuildKeyArena: 4.00 KB - HashTable: 940.00 B - PeakMemoryUsage: 5.81 KB - OpenTime: 9.404us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 34 - BytesReceived: 3.97 KB - CloseTime: 3.56us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 152.545us - ExecTime: 110.449us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.06 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 2.06 KB - OpenTime: 25.365us - ProjectionTime: 0ns - RowsProduced: 105 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=23):(Active: 347.201us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 283.19us - CloseTime: 2.450us - GetBlockTime: 93.77us - OpenTime: 3.934us - PrepareTime: 51.177us - SinkTime: 124.745us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 326.955us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.134ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.921us - BuildRows: 97 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.898us - BuildTableInsertTime: 13.61us - BuildTableTime: 15.812us - CloseTime: 0ns - ExecTime: 129.482us - InputRows: 96 - MemoryUsage: - BuildBlocks: 4.50 KB - BuildKeyArena: 4.00 KB - HashTable: 904.00 B - PeakMemoryUsage: 5.38 KB - OpenTime: 8.734us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.75 KB - CloseTime: 1.791us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 96.948us - ExecTime: 108.571us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.72 KB - MemoryUsage: - Blocks: 5.66 KB - PeakMemoryUsage: 2.66 KB - OpenTime: 20.896us - ProjectionTime: 0ns - RowsProduced: 96 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=27):(Active: 359.64us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 273.660us - CloseTime: 3.350us - GetBlockTime: 100.715us - OpenTime: 1.768us - PrepareTime: 74.318us - SinkTime: 111.576us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 339.138us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.44ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.613us - BuildRows: 84 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 53.200us - BuildTableInsertTime: 10.560us - BuildTableTime: 13.724us - CloseTime: 0ns - ExecTime: 128.672us - InputRows: 83 - MemoryUsage: - BuildBlocks: 3.88 KB - BuildKeyArena: 4.00 KB - HashTable: 852.00 B - PeakMemoryUsage: 4.71 KB - OpenTime: 21.60us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 34 - BytesReceived: 2.86 KB - CloseTime: 2.606us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 110.899us - ExecTime: 116.808us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.38 KB - MemoryUsage: - Blocks: 4.50 KB - PeakMemoryUsage: 2.44 KB - OpenTime: 20.676us - ProjectionTime: 0ns - RowsProduced: 83 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=31):(Active: 359.931us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 249.232us - CloseTime: 27.392us - GetBlockTime: 78.217us - OpenTime: 2.55us - PrepareTime: 75.230us - SinkTime: 110.743us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 312.825us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 737.11us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.414us - BuildRows: 103 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 51.372us - BuildTableInsertTime: 14.990us - BuildTableTime: 21.107us - CloseTime: 0ns - ExecTime: 132.615us - InputRows: 102 - MemoryUsage: - BuildBlocks: 4.76 KB - BuildKeyArena: 4.00 KB - HashTable: 928.00 B - PeakMemoryUsage: 5.66 KB - OpenTime: 25.531us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.03 KB - CloseTime: 25.860us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 105.694us - ExecTime: 113.977us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.63 KB - MemoryUsage: - Blocks: 3.75 KB - PeakMemoryUsage: 1.94 KB - OpenTime: 16.191us - ProjectionTime: 0ns - RowsProduced: 102 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s412ms PipelineXTask (index=35):(Active: 409.735us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 266.229us - CloseTime: 84.568us - GetBlockTime: 76.30us - OpenTime: 1.451us - PrepareTime: 51.835us - SinkTime: 132.37us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 307.216us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 680.383us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.608us - BuildRows: 104 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 60.808us - BuildTableInsertTime: 13.353us - BuildTableTime: 19.597us - CloseTime: 0ns - ExecTime: 140.51us - InputRows: 103 - MemoryUsage: - BuildBlocks: 4.80 KB - BuildKeyArena: 4.00 KB - HashTable: 932.00 B - PeakMemoryUsage: 5.70 KB - OpenTime: 11.910us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.59 KB - CloseTime: 83.289us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 116.589us - ExecTime: 168.542us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.88 KB - MemoryUsage: - Blocks: 3.38 KB - PeakMemoryUsage: 1.19 KB - OpenTime: 15.310us - ProjectionTime: 0ns - RowsProduced: 103 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s412ms PipelineXTask (index=39):(Active: 331.388us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 232.456us - CloseTime: 11.783us - GetBlockTime: 95.67us - OpenTime: 1.414us - PrepareTime: 80.46us - SinkTime: 86.360us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 305.707us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 848.641us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.567us - BuildRows: 85 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 42.504us - BuildTableInsertTime: 8.926us - BuildTableTime: 12.423us - CloseTime: 0ns - ExecTime: 97.309us - InputRows: 84 - MemoryUsage: - BuildBlocks: 3.94 KB - BuildKeyArena: 4.00 KB - HashTable: 856.00 B - PeakMemoryUsage: 4.77 KB - OpenTime: 14.467us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.28 KB - CloseTime: 11.0us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 80.425us - ExecTime: 116.16us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.97 KB - MemoryUsage: - Blocks: 4.38 KB - PeakMemoryUsage: 1.31 KB - OpenTime: 17.671us - ProjectionTime: 0ns - RowsProduced: 84 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=43):(Active: 321.337us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 257.427us - CloseTime: 2.695us - GetBlockTime: 96.441us - OpenTime: 1.464us - PrepareTime: 55.65us - SinkTime: 112.658us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 305.287us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 805.273us HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.693us - BuildRows: 101 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 53.423us - BuildTableInsertTime: 11.211us - BuildTableTime: 15.157us - CloseTime: 0ns - ExecTime: 117.78us - InputRows: 100 - MemoryUsage: - BuildBlocks: 4.67 KB - BuildKeyArena: 4.00 KB - HashTable: 920.00 B - PeakMemoryUsage: 5.56 KB - OpenTime: 8.354us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.59 KB - CloseTime: 1.840us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 94.875us - ExecTime: 108.572us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.03 KB - MemoryUsage: - Blocks: 6.34 KB - PeakMemoryUsage: 1.56 KB - OpenTime: 16.978us - ProjectionTime: 0ns - RowsProduced: 100 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s412ms PipelineXTask (index=47):(Active: 360.189us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 278.658us - CloseTime: 2.834us - GetBlockTime: 94.849us - OpenTime: 1.796us - PrepareTime: 71.749us - SinkTime: 128.12us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 341.256us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.161ms HASH_JOIN_SINK_OPERATOR (id=368): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.302us - BuildRows: 105 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.56us - BuildTableInsertTime: 13.288us - BuildTableTime: 18.933us - CloseTime: 0ns - ExecTime: 146.521us - InputRows: 104 - MemoryUsage: - BuildBlocks: 4.87 KB - BuildKeyArena: 4.00 KB - HashTable: 936.00 B - PeakMemoryUsage: 5.78 KB - OpenTime: 22.363us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=97): - BlocksProduced: 36 - BytesReceived: 3.37 KB - CloseTime: 2.185us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 124.546us - ExecTime: 107.934us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.25 KB - MemoryUsage: - Blocks: 8.53 KB - PeakMemoryUsage: 4.19 KB - OpenTime: 17.899us - ProjectionTime: 0ns - RowsProduced: 104 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms Fragment 9: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.520ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.193ms - CloseTime: 76.419us - GetBlockTime: 405.740us - OpenTime: 9.978us - PrepareTime: 233.58us - SinkTime: 1.734ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.431ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 396.596us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 45.89 KB - CloseTime: 10.794us - CompressTime: 0ns - ExecTime: 1.863ms - InputRows: 385 - LocalBytesSent: 0.00 - LocalSendTime: 275.466us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 119.943us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.546ms - RowsProduced: 385 - RpcAvgTime: 120.647us - RpcCount: 12 - RpcMaxTime: 532.335us - RpcMinTime: 23.689us - RpcSumTime: 1.447ms - SerializeBatchTime: 85.597us - SplitBlockDistributeByChannelTime: 141.137us - SplitBlockHashComputeTime: 18.671us - UncompressedRowBatchSize: 120.51 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 60.313us - ExecTime: 489.668us - InitProbeSideTime: 46.967us - JoinFilterTimer: 93ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 33.864us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 726ns - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 224.661us - ProbeWhenBuildSideOutputTime: 22.99us - ProbeWhenProbeSideOutputTime: 73.457us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.883us - ProjectionTime: 163.423us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 43.37 KB - CloseTime: 3.714us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 131.178us - ExecTime: 24.243us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 18.46 KB - OpenTime: 15.164us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s332ms PipelineXTask (index=2):(Active: 2.849ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.599ms - CloseTime: 52.911us - GetBlockTime: 646.787us - OpenTime: 8.166us - PrepareTime: 182.445us - SinkTime: 1.875ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.781ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 706.181us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.474us - CompressTime: 0ns - ExecTime: 1.975ms - InputRows: 376 - LocalBytesSent: 109.64 KB - LocalSendTime: 424.583us - LocalSentRows: 376 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 90.558us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.601ms - RowsProduced: 376 - RpcAvgTime: 324.392us - RpcCount: 12 - RpcMaxTime: 814.587us - RpcMinTime: 3.692us - RpcSumTime: 3.892ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 197.565us - SplitBlockHashComputeTime: 30.826us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 36.528us - ExecTime: 694.882us - InitProbeSideTime: 52.760us - JoinFilterTimer: 163ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 31.224us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.540us - ProbeFindNextTime: 0ns - ProbeRows: 376 - ProbeTime: 337.211us - ProbeWhenBuildSideOutputTime: 14.390us - ProbeWhenProbeSideOutputTime: 144.749us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 6.751us - ProjectionTime: 272.101us - RowsProduced: 376 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.11us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.583us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 143.04 KB - OpenTime: 11.562us - ProjectionTime: 0ns - RowsProduced: 376 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s332ms PipelineXTask (index=4):(Active: 3.142ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.902ms - CloseTime: 48.327us - GetBlockTime: 469.634us - OpenTime: 12.317us - PrepareTime: 162.190us - SinkTime: 2.345ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.77ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.692ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 47.45 KB - CloseTime: 8.923us - CompressTime: 0ns - ExecTime: 2.446ms - InputRows: 398 - LocalBytesSent: 0.00 - LocalSendTime: 432.462us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 93.972us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.992ms - RowsProduced: 398 - RpcAvgTime: 375.587us - RpcCount: 12 - RpcMaxTime: 766.606us - RpcMinTime: 35.329us - RpcSumTime: 4.507ms - SerializeBatchTime: 222.563us - SplitBlockDistributeByChannelTime: 165.342us - SplitBlockHashComputeTime: 17.573us - UncompressedRowBatchSize: 124.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.838us - ExecTime: 515.548us - InitProbeSideTime: 41.649us - JoinFilterTimer: 220ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 27.440us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 689ns - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 267.596us - ProbeWhenBuildSideOutputTime: 23.830us - ProbeWhenProbeSideOutputTime: 101.472us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.942us - ProjectionTime: 172.906us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.62us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.61us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.50 KB - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 156.27 KB - OpenTime: 12.680us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=6):(Active: 1.846ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.586ms - CloseTime: 82.225us - GetBlockTime: 326.97us - OpenTime: 15.480us - PrepareTime: 156.432us - SinkTime: 1.205ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.896ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.6us - CompressTime: 0ns - ExecTime: 1.317ms - InputRows: 361 - LocalBytesSent: 105.24 KB - LocalSendTime: 242.745us - LocalSentRows: 361 - MemoryUsage: - PeakMemoryUsage: 151.53 KB - MergeBlockTime: 0ns - OpenTime: 90.762us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.337ms - RowsProduced: 361 - RpcAvgTime: 11.777us - RpcCount: 12 - RpcMaxTime: 87.898us - RpcMinTime: 12.653us - RpcSumTime: 141.326us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 130.317us - SplitBlockHashComputeTime: 12.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 HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 37.860us - ExecTime: 382.671us - InitProbeSideTime: 30.895us - JoinFilterTimer: 67ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 30.60us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.145us - ProbeFindNextTime: 0ns - ProbeRows: 361 - ProbeTime: 164.242us - ProbeWhenBuildSideOutputTime: 8.939us - ProbeWhenProbeSideOutputTime: 69.553us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.311us - ProjectionTime: 137.182us - RowsProduced: 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 17.436us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.152us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 137.50 KB - MemoryUsage: - Blocks: 137.50 KB - PeakMemoryUsage: 142.11 KB - OpenTime: 10.456us - ProjectionTime: 0ns - RowsProduced: 361 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=8):(Active: 2.698ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.412ms - CloseTime: 52.373us - GetBlockTime: 342.236us - OpenTime: 5.200us - PrepareTime: 222.952us - SinkTime: 2.27ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.634ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.720ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 45.11 KB - CloseTime: 14.50us - CompressTime: 0ns - ExecTime: 2.141ms - InputRows: 378 - LocalBytesSent: 0.00 - LocalSendTime: 389.234us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 100.310us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.564ms - RowsProduced: 378 - RpcAvgTime: 459.45us - RpcCount: 12 - RpcMaxTime: 820.96us - RpcMinTime: 247.605us - RpcSumTime: 5.508ms - SerializeBatchTime: 131.74us - SplitBlockDistributeByChannelTime: 199.398us - SplitBlockHashComputeTime: 12.88us - UncompressedRowBatchSize: 118.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 31.221us - ExecTime: 402.307us - InitProbeSideTime: 28.800us - JoinFilterTimer: 217ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 39.922us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 559ns - ProbeFindNextTime: 0ns - ProbeRows: 378 - ProbeTime: 197.473us - ProbeWhenBuildSideOutputTime: 21.739us - ProbeWhenProbeSideOutputTime: 70.994us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.399us - ProjectionTime: 126.468us - RowsProduced: 378 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.642us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.998us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 152.27 KB - OpenTime: 11.688us - ProjectionTime: 0ns - RowsProduced: 378 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s332ms PipelineXTask (index=10):(Active: 1.576ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.324ms - CloseTime: 53.116us - GetBlockTime: 314.133us - OpenTime: 5.680us - PrepareTime: 187.760us - SinkTime: 970.826us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.512ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.785ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.873us - CompressTime: 0ns - ExecTime: 1.90ms - InputRows: 387 - LocalBytesSent: 112.97 KB - LocalSendTime: 194.256us - LocalSentRows: 387 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 109.896us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.501ms - RowsProduced: 387 - RpcAvgTime: 629.328us - RpcCount: 12 - RpcMaxTime: 830.34us - RpcMinTime: 395.950us - RpcSumTime: 7.551ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 109.623us - SplitBlockHashComputeTime: 12.57us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.783us - ExecTime: 366.488us - InitProbeSideTime: 27.671us - JoinFilterTimer: 198ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 27.825us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 707ns - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 170.934us - ProbeWhenBuildSideOutputTime: 15.532us - ProbeWhenProbeSideOutputTime: 74.538us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.479us - ProjectionTime: 119.501us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 43.68 KB - CloseTime: 4.99us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 222.790us - ExecTime: 25.80us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 18.46 KB - OpenTime: 14.933us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s332ms PipelineXTask (index=12):(Active: 1.993ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.726ms - CloseTime: 54.26us - GetBlockTime: 439.816us - OpenTime: 5.295us - PrepareTime: 201.895us - SinkTime: 1.241ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.929ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.739ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.70 KB - CloseTime: 10.497us - CompressTime: 0ns - ExecTime: 1.376ms - InputRows: 391 - LocalBytesSent: 0.00 - LocalSendTime: 193.16us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 126.114us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.400ms - RowsProduced: 391 - RpcAvgTime: 140.658us - RpcCount: 12 - RpcMaxTime: 350.166us - RpcMinTime: 11.864us - RpcSumTime: 1.687ms - SerializeBatchTime: 114.455us - SplitBlockDistributeByChannelTime: 149.179us - SplitBlockHashComputeTime: 17.713us - UncompressedRowBatchSize: 122.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.279us - ExecTime: 497.429us - InitProbeSideTime: 45.115us - JoinFilterTimer: 219ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 34.684us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 927ns - ProbeFindNextTime: 0ns - ProbeRows: 391 - ProbeTime: 245.883us - ProbeWhenBuildSideOutputTime: 28.202us - ProbeWhenProbeSideOutputTime: 73.150us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.522us - ProjectionTime: 156.957us - RowsProduced: 391 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.115us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.64us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.50 KB - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 160.88 KB - OpenTime: 11.558us - ProjectionTime: 0ns - RowsProduced: 391 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s333ms PipelineXTask (index=14):(Active: 2.298ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.43ms - CloseTime: 64.676us - GetBlockTime: 437.707us - OpenTime: 8.863us - PrepareTime: 175.591us - SinkTime: 1.561ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.170ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 285.515us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 45.61 KB - CloseTime: 11.516us - CompressTime: 0ns - ExecTime: 1.671ms - InputRows: 383 - LocalBytesSent: 0.00 - LocalSendTime: 263.782us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 99.480us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.581ms - RowsProduced: 383 - RpcAvgTime: 229.792us - RpcCount: 12 - RpcMaxTime: 582.939us - RpcMinTime: 53.62us - RpcSumTime: 2.757ms - SerializeBatchTime: 140.537us - SplitBlockDistributeByChannelTime: 120.429us - SplitBlockHashComputeTime: 12.401us - UncompressedRowBatchSize: 119.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 48.336us - ExecTime: 497.71us - InitProbeSideTime: 69.904us - JoinFilterTimer: 212ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 27.642us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 886ns - ProbeFindNextTime: 0ns - ProbeRows: 383 - ProbeTime: 239.561us - ProbeWhenBuildSideOutputTime: 22.148us - ProbeWhenProbeSideOutputTime: 82.308us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.690us - ProjectionTime: 172.604us - RowsProduced: 383 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 43.16 KB - CloseTime: 3.320us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 81.744us - ExecTime: 33.35us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 18.46 KB - OpenTime: 20.35us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s335ms PipelineXTask (index=16):(Active: 1.810ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.573ms - CloseTime: 53.975us - GetBlockTime: 411.849us - OpenTime: 5.554us - PrepareTime: 172.230us - SinkTime: 1.117ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.744ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.897ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.29us - CompressTime: 0ns - ExecTime: 1.232ms - InputRows: 389 - LocalBytesSent: 113.64 KB - LocalSendTime: 251.426us - LocalSentRows: 389 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 107.197us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.384ms - RowsProduced: 389 - RpcAvgTime: 243.794us - RpcCount: 12 - RpcMaxTime: 508.403us - RpcMinTime: 72.911us - RpcSumTime: 2.925ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 123.896us - SplitBlockHashComputeTime: 17.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=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 38.352us - ExecTime: 448.146us - InitProbeSideTime: 34.198us - JoinFilterTimer: 92ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 20.53us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 867ns - ProbeFindNextTime: 0ns - ProbeRows: 389 - ProbeTime: 234.588us - ProbeWhenBuildSideOutputTime: 31.194us - ProbeWhenProbeSideOutputTime: 76.322us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.920us - ProjectionTime: 145.293us - RowsProduced: 389 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.64us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.579us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.50 KB - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 162.42 KB - OpenTime: 13.509us - ProjectionTime: 0ns - RowsProduced: 389 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s334ms PipelineXTask (index=18):(Active: 3.195ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.921ms - CloseTime: 65.900us - GetBlockTime: 556.507us - OpenTime: 6.19us - PrepareTime: 196.756us - SinkTime: 2.324ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.120ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 341.852us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.467us - CompressTime: 0ns - ExecTime: 2.449ms - InputRows: 384 - LocalBytesSent: 112.02 KB - LocalSendTime: 377.389us - LocalSentRows: 384 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 114.690us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.662ms - RowsProduced: 384 - RpcAvgTime: 7.535us - RpcCount: 12 - RpcMaxTime: 90.422us - RpcMinTime: 90.422us - RpcSumTime: 90.422us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 249.711us - SplitBlockHashComputeTime: 39.287us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 46.898us - ExecTime: 612.717us - InitProbeSideTime: 26.465us - JoinFilterTimer: 232ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 31.731us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 860ns - ProbeFindNextTime: 0ns - ProbeRows: 384 - ProbeTime: 255.320us - ProbeWhenBuildSideOutputTime: 23.134us - ProbeWhenProbeSideOutputTime: 77.708us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.892us - ProjectionTime: 265.849us - RowsProduced: 384 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 43.30 KB - CloseTime: 4.393us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 88.135us - ExecTime: 23.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 18.46 KB - OpenTime: 9.772us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s336ms PipelineXTask (index=20):(Active: 2.416ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.125ms - CloseTime: 90.108us - GetBlockTime: 878.172us - OpenTime: 9.431us - PrepareTime: 185.653us - SinkTime: 1.180ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.312ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.878ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.672us - CompressTime: 0ns - ExecTime: 1.314ms - InputRows: 370 - LocalBytesSent: 108.08 KB - LocalSendTime: 218.779us - LocalSentRows: 370 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 119.923us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.785ms - RowsProduced: 370 - RpcAvgTime: 310.402us - RpcCount: 12 - RpcMaxTime: 533.179us - RpcMinTime: 50.781us - RpcSumTime: 3.724ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 198.131us - SplitBlockHashComputeTime: 22.287us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 65.102us - ExecTime: 941.81us - InitProbeSideTime: 97.823us - JoinFilterTimer: 315ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 26.199us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.110us - ProbeFindNextTime: 0ns - ProbeRows: 370 - ProbeTime: 608.506us - ProbeWhenBuildSideOutputTime: 54.14us - ProbeWhenProbeSideOutputTime: 255.678us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.258us - ProjectionTime: 224.791us - RowsProduced: 370 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 41.89 KB - CloseTime: 5.688us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 153.549us - ExecTime: 33.983us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 18.46 KB - OpenTime: 11.695us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s333ms PipelineXTask (index=22):(Active: 1.825ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.558ms - CloseTime: 69.400us - GetBlockTime: 392.394us - OpenTime: 7.80us - PrepareTime: 183.403us - SinkTime: 1.121ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.744ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.990ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.936us - CompressTime: 0ns - ExecTime: 1.245ms - InputRows: 382 - LocalBytesSent: 111.36 KB - LocalSendTime: 228.110us - LocalSentRows: 382 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 110.293us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.182ms - RowsProduced: 382 - RpcAvgTime: 178.503us - RpcCount: 12 - RpcMaxTime: 519.212us - RpcMinTime: 4.284us - RpcSumTime: 2.142ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 203.226us - SplitBlockHashComputeTime: 17.604us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.420us - ExecTime: 448.943us - InitProbeSideTime: 31.102us - JoinFilterTimer: 241ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 33.354us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 976ns - ProbeFindNextTime: 0ns - ProbeRows: 382 - ProbeTime: 182.862us - ProbeWhenBuildSideOutputTime: 20.294us - ProbeWhenProbeSideOutputTime: 66.591us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.619us - ProjectionTime: 179.503us - RowsProduced: 382 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.517us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.868us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 156.88 KB - OpenTime: 10.707us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s334ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 189.973us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 72.971us - CloseTime: 61.914us - GetBlockTime: 2.867us - OpenTime: 3.920us - PrepareTime: 46.692us - SinkTime: 46.913us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.693us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 265.744us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.592us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 15.96us - BuildTableTime: 21.575us - CloseTime: 0ns - ExecTime: 55.75us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 8.459us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 60.767us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.33us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 16.164us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s955ms PipelineXTask (index=3):(Active: 126.273us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 51.782us - CloseTime: 9.752us - GetBlockTime: 1.727us - OpenTime: 4.489us - PrepareTime: 55.663us - SinkTime: 32.517us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.878us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 153.394us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 533ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 14.170us - BuildTableTime: 20.48us - CloseTime: 0ns - ExecTime: 53.694us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 21.149us - 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.507us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.888us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 10.916us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s955ms PipelineXTask (index=5):(Active: 131.285us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 71.183us - CloseTime: 14.112us - GetBlockTime: 2.670us - OpenTime: 3.6us - PrepareTime: 37.399us - SinkTime: 46.601us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.890us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.486ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.33us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.873us - BuildTableTime: 21.144us - CloseTime: 0ns - ExecTime: 55.941us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 9.507us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.79us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.357us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 11.360us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s953ms PipelineXTask (index=7):(Active: 100.633us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.911us - CloseTime: 17.388us - GetBlockTime: 1.680us - OpenTime: 2.594us - PrepareTime: 39.216us - SinkTime: 20.875us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.783us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.660ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 887ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 8.722us - BuildTableTime: 11.887us - CloseTime: 0ns - ExecTime: 28.699us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 7.926us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.802us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.284us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 11.101us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s953ms PipelineXTask (index=9):(Active: 122.450us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 68.830us - CloseTime: 8.133us - GetBlockTime: 2.567us - OpenTime: 2.890us - PrepareTime: 37.67us - SinkTime: 44.564us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.337us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.451ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 850ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 15.963us - BuildTableTime: 23.651us - CloseTime: 0ns - ExecTime: 52.263us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 8.52us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.910us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.373us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 11.407us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s953ms PipelineXTask (index=11):(Active: 113.713us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 52.980us - CloseTime: 12.240us - GetBlockTime: 1.770us - OpenTime: 2.404us - PrepareTime: 39.733us - SinkTime: 28.68us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.434us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.456ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 494ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 8.299us - BuildTableTime: 14.93us - CloseTime: 0ns - ExecTime: 37.983us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 10.28us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.792us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.219us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 9.112us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s953ms PipelineXTask (index=13):(Active: 159.995us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 96.861us - CloseTime: 5.476us - GetBlockTime: 3.230us - OpenTime: 3.420us - PrepareTime: 49.259us - SinkTime: 70.117us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 147.51us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 233.443us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.57us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 30.473us - BuildTableTime: 41.91us - CloseTime: 0ns - ExecTime: 88.262us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 18.389us - 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.326us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.268us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 11.823us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s955ms PipelineXTask (index=15):(Active: 111.305us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 58.448us - CloseTime: 3.487us - GetBlockTime: 2.163us - OpenTime: 2.886us - PrepareTime: 42.197us - SinkTime: 38.512us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.5us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.695us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 864ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 10.462us - BuildTableTime: 18.120us - CloseTime: 0ns - ExecTime: 46.866us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 8.710us - 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.901us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.874us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 11.509us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s955ms PipelineXTask (index=17):(Active: 125.84us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.204us - CloseTime: 3.12us - GetBlockTime: 1.610us - OpenTime: 2.480us - PrepareTime: 67.530us - SinkTime: 29.485us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.155us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 253.873us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 555ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.189us - BuildTableTime: 16.260us - CloseTime: 0ns - ExecTime: 36.317us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 7.94us - 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.380us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.405us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 35.712us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s955ms PipelineXTask (index=19):(Active: 109.820us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.835us - CloseTime: 3.533us - GetBlockTime: 1.425us - OpenTime: 2.853us - PrepareTime: 54.56us - SinkTime: 27.556us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.813us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.335us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 578ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 8.697us - BuildTableTime: 13.568us - CloseTime: 0ns - ExecTime: 46.889us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 19.322us - 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.65us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 10.858us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s955ms PipelineXTask (index=21):(Active: 112.159us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 41.56us - CloseTime: 10.724us - GetBlockTime: 1.879us - OpenTime: 2.884us - PrepareTime: 53.350us - SinkTime: 25.417us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.497us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.596ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 674ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 7.497us - BuildTableTime: 12.140us - CloseTime: 0ns - ExecTime: 34.112us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 8.623us - 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.173us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.872us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 12.292us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s953ms PipelineXTask (index=23):(Active: 147.682us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 49.401us - CloseTime: 5.230us - GetBlockTime: 1.887us - OpenTime: 2.560us - PrepareTime: 71.901us - SinkTime: 18.648us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.959us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.621ms HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 764ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 8.96us - BuildTableTime: 10.865us - CloseTime: 0ns - ExecTime: 46.985us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 28.115us - 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.745us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.937us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.30 KB - OpenTime: 11.519us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s953ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 1.689ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.312ms - CloseTime: 48.87us - GetBlockTime: 384.525us - OpenTime: 8.550us - PrepareTime: 311.612us - SinkTime: 874.895us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.627ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 356.780us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 45.85 KB - CloseTime: 10.478us - CompressTime: 0ns - ExecTime: 1.46ms - InputRows: 385 - LocalBytesSent: 0.00 - LocalSendTime: 127.283us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 162.760us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.974ms - RowsProduced: 385 - RpcAvgTime: 4.888ms - RpcCount: 12 - RpcMaxTime: 5.300ms - RpcMinTime: 4.485ms - RpcSumTime: 58.665ms - SerializeBatchTime: 99.572us - SplitBlockDistributeByChannelTime: 153.55us - SplitBlockHashComputeTime: 29.214us - UncompressedRowBatchSize: 120.59 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 30.480us - ExecTime: 439.942us - InitProbeSideTime: 24.246us - JoinFilterTimer: 132ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 37.134us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.427us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 204.803us - ProbeWhenBuildSideOutputTime: 23.90us - ProbeWhenProbeSideOutputTime: 51.545us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 29.550us - ProjectionTime: 156.535us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 56.776us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 141.50 KB - OpenTime: 44.934us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=2):(Active: 1.914ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.557ms - CloseTime: 85.306us - GetBlockTime: 431.972us - OpenTime: 6.978us - PrepareTime: 258.563us - SinkTime: 1.82ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.818ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 484.129us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 45.28 KB - CloseTime: 24.107us - CompressTime: 0ns - ExecTime: 1.255ms - InputRows: 380 - LocalBytesSent: 0.00 - LocalSendTime: 193.851us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 149.953us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.41ms - RowsProduced: 380 - RpcAvgTime: 4.991ms - RpcCount: 12 - RpcMaxTime: 5.503ms - RpcMinTime: 3.301ms - RpcSumTime: 59.902ms - SerializeBatchTime: 96.611us - SplitBlockDistributeByChannelTime: 145.458us - SplitBlockHashComputeTime: 23.383us - UncompressedRowBatchSize: 118.85 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 52.432us - ExecTime: 517.15us - InitProbeSideTime: 27.334us - JoinFilterTimer: 161ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 43.214us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 732ns - ProbeFindNextTime: 0ns - ProbeRows: 380 - ProbeTime: 225.296us - ProbeWhenBuildSideOutputTime: 28.446us - ProbeWhenProbeSideOutputTime: 85.356us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.145us - ProjectionTime: 166.533us - RowsProduced: 380 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 144.58 KB - OpenTime: 19.978us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=4):(Active: 1.740ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.375ms - CloseTime: 76.64us - GetBlockTime: 372.744us - OpenTime: 7.646us - PrepareTime: 275.652us - SinkTime: 968.13us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.655ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 554.552us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.896us - CompressTime: 0ns - ExecTime: 1.139ms - InputRows: 398 - LocalBytesSent: 116.27 KB - LocalSendTime: 207.175us - LocalSentRows: 398 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 160.117us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.945ms - RowsProduced: 398 - RpcAvgTime: 5.83ms - RpcCount: 12 - RpcMaxTime: 5.438ms - RpcMinTime: 4.628ms - RpcSumTime: 60.999ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 154.441us - SplitBlockHashComputeTime: 16.933us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 56.523us - ExecTime: 457.999us - InitProbeSideTime: 34.721us - JoinFilterTimer: 225ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 39.606us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 611ns - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 210.147us - ProbeWhenBuildSideOutputTime: 14.921us - ProbeWhenProbeSideOutputTime: 64.775us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.782us - ProjectionTime: 143.128us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 44.80 KB - CloseTime: 4.674us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 121.943us - ExecTime: 27.208us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 6.15 KB - OpenTime: 16.546us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=6):(Active: 1.228ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 894.98us - CloseTime: 51.635us - GetBlockTime: 264.681us - OpenTime: 3.680us - PrepareTime: 274.285us - SinkTime: 604.157us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.170ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 254.249us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.73us - CompressTime: 0ns - ExecTime: 781.607us - InputRows: 372 - LocalBytesSent: 108.44 KB - LocalSendTime: 136.46us - LocalSentRows: 372 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 166.284us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.146ms - RowsProduced: 372 - RpcAvgTime: 3.903ms - RpcCount: 12 - RpcMaxTime: 4.697ms - RpcMinTime: 2.280ms - RpcSumTime: 46.843ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 83.416us - SplitBlockHashComputeTime: 10.695us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 33.352us - ExecTime: 328.405us - InitProbeSideTime: 26.295us - JoinFilterTimer: 83ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 37.514us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 485ns - ProbeFindNextTime: 0ns - ProbeRows: 372 - ProbeTime: 157.432us - ProbeWhenBuildSideOutputTime: 9.67us - ProbeWhenProbeSideOutputTime: 77.916us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.401us - ProjectionTime: 92.831us - RowsProduced: 372 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.744us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.228us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 146.11 KB - OpenTime: 22.911us - ProjectionTime: 0ns - RowsProduced: 372 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=8):(Active: 2.326ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.985ms - CloseTime: 69.122us - GetBlockTime: 386.547us - OpenTime: 3.289us - PrepareTime: 263.887us - SinkTime: 1.576ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.251ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 437.61us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.10 KB - CloseTime: 11.245us - CompressTime: 0ns - ExecTime: 1.731ms - InputRows: 387 - LocalBytesSent: 0.00 - LocalSendTime: 266.560us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 144.768us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.454ms - RowsProduced: 387 - RpcAvgTime: 5.4ms - RpcCount: 12 - RpcMaxTime: 5.475ms - RpcMinTime: 4.645ms - RpcSumTime: 60.57ms - SerializeBatchTime: 106.519us - SplitBlockDistributeByChannelTime: 165.2us - SplitBlockHashComputeTime: 19.367us - UncompressedRowBatchSize: 121.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 51.822us - ExecTime: 461.330us - InitProbeSideTime: 38.140us - JoinFilterTimer: 202ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 31.436us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 541ns - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 224.41us - ProbeWhenBuildSideOutputTime: 16.143us - ProbeWhenProbeSideOutputTime: 91.894us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.841us - ProjectionTime: 145.624us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 43.64 KB - CloseTime: 3.849us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 116.551us - ExecTime: 35.620us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 12.30 KB - OpenTime: 27.287us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=10):(Active: 1.995ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.619ms - CloseTime: 92.132us - GetBlockTime: 538.125us - OpenTime: 3.523us - PrepareTime: 275.210us - SinkTime: 1.47ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.894ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 115.265us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.333us - CompressTime: 0ns - ExecTime: 1.211ms - InputRows: 377 - LocalBytesSent: 109.96 KB - LocalSendTime: 231.741us - LocalSentRows: 377 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 139.442us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.65ms - RowsProduced: 377 - RpcAvgTime: 4.921ms - RpcCount: 12 - RpcMaxTime: 5.422ms - RpcMinTime: 3.386ms - RpcSumTime: 59.63ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 130.283us - SplitBlockHashComputeTime: 34.339us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 59.721us - ExecTime: 637.620us - InitProbeSideTime: 40.941us - JoinFilterTimer: 189ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 55.726us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 948ns - ProbeFindNextTime: 0ns - ProbeRows: 377 - ProbeTime: 307.557us - ProbeWhenBuildSideOutputTime: 44.741us - ProbeWhenProbeSideOutputTime: 110.245us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.56us - ProjectionTime: 200.960us - RowsProduced: 377 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 42.55 KB - CloseTime: 4.171us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 117.802us - ExecTime: 27.855us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 7.69 KB - OpenTime: 17.435us - ProjectionTime: 0ns - RowsProduced: 377 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=12):(Active: 1.355ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.22ms - CloseTime: 72.760us - GetBlockTime: 304.568us - OpenTime: 4.487us - PrepareTime: 250.10us - SinkTime: 684.571us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.274ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 567.205us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.59 KB - CloseTime: 19.645us - CompressTime: 0ns - ExecTime: 839.79us - InputRows: 392 - LocalBytesSent: 0.00 - LocalSendTime: 109.885us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 135.791us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.999ms - RowsProduced: 392 - RpcAvgTime: 5.331ms - RpcCount: 12 - RpcMaxTime: 5.556ms - RpcMinTime: 5.37ms - RpcSumTime: 63.978ms - SerializeBatchTime: 67.990us - SplitBlockDistributeByChannelTime: 103.201us - SplitBlockHashComputeTime: 16.443us - UncompressedRowBatchSize: 122.66 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 47.905us - ExecTime: 381.113us - InitProbeSideTime: 29.103us - JoinFilterTimer: 219ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 36.469us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 661ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 167.873us - ProbeWhenBuildSideOutputTime: 19.302us - ProbeWhenProbeSideOutputTime: 64.540us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.939us - ProjectionTime: 120.699us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 44.08 KB - CloseTime: 3.334us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 89.477us - ExecTime: 24.496us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 12.30 KB - OpenTime: 17.159us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=14):(Active: 1.583ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.249ms - CloseTime: 53.42us - GetBlockTime: 313.245us - OpenTime: 5.943us - PrepareTime: 267.718us - SinkTime: 893.586us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.517ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.99ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.44us - CompressTime: 0ns - ExecTime: 1.55ms - InputRows: 392 - LocalBytesSent: 114.35 KB - LocalSendTime: 202.695us - LocalSentRows: 392 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 153.731us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.773ms - RowsProduced: 392 - RpcAvgTime: 5.140ms - RpcCount: 12 - RpcMaxTime: 5.399ms - RpcMinTime: 4.835ms - RpcSumTime: 61.685ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 75.311us - SplitBlockHashComputeTime: 11.878us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 36.536us - ExecTime: 374.245us - InitProbeSideTime: 39.332us - JoinFilterTimer: 230ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 34.717us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 781ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 190.907us - ProbeWhenBuildSideOutputTime: 20.629us - ProbeWhenProbeSideOutputTime: 64.800us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.756us - ProjectionTime: 103.833us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.288us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.961us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.50 KB - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 156.27 KB - OpenTime: 19.212us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s329ms PipelineXTask (index=16):(Active: 2.692ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.308ms - CloseTime: 46.718us - GetBlockTime: 475.228us - OpenTime: 3.892us - PrepareTime: 327.788us - SinkTime: 1.806ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.639ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 893.431us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.161us - CompressTime: 0ns - ExecTime: 1.978ms - InputRows: 367 - LocalBytesSent: 106.99 KB - LocalSendTime: 369.893us - LocalSentRows: 367 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 164.220us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.670ms - RowsProduced: 367 - RpcAvgTime: 5.162ms - RpcCount: 12 - RpcMaxTime: 5.901ms - RpcMinTime: 4.287ms - RpcSumTime: 61.953ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 191.332us - SplitBlockHashComputeTime: 24.511us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.848us - ExecTime: 549.157us - InitProbeSideTime: 36.893us - JoinFilterTimer: 125ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 53.820us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 876ns - ProbeFindNextTime: 0ns - ProbeRows: 367 - ProbeTime: 266.0us - ProbeWhenBuildSideOutputTime: 17.760us - ProbeWhenProbeSideOutputTime: 118.254us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 6.47us - ProjectionTime: 183.957us - RowsProduced: 367 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 2 - BytesReceived: 41.55 KB - CloseTime: 2.901us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 137.952us - ExecTime: 39.162us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 18.46 KB - OpenTime: 28.537us - ProjectionTime: 0ns - RowsProduced: 367 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s331ms PipelineXTask (index=18):(Active: 1.497ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.167ms - CloseTime: 39.189us - GetBlockTime: 252.370us - OpenTime: 4.39us - PrepareTime: 281.322us - SinkTime: 887.289us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.450ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 864.954us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.78 KB - CloseTime: 10.684us - CompressTime: 0ns - ExecTime: 1.37ms - InputRows: 393 - LocalBytesSent: 0.00 - LocalSendTime: 150.160us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 140.41us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.995ms - RowsProduced: 393 - RpcAvgTime: 5.318ms - RpcCount: 12 - RpcMaxTime: 6.29ms - RpcMinTime: 4.778ms - RpcSumTime: 63.819ms - SerializeBatchTime: 62.187us - SplitBlockDistributeByChannelTime: 83.543us - SplitBlockHashComputeTime: 10.662us - UncompressedRowBatchSize: 122.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 24.534us - ExecTime: 304.394us - InitProbeSideTime: 19.325us - JoinFilterTimer: 54ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 36.52us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 623ns - ProbeFindNextTime: 0ns - ProbeRows: 393 - ProbeTime: 133.373us - ProbeWhenBuildSideOutputTime: 12.231us - ProbeWhenProbeSideOutputTime: 58.176us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.498us - ProjectionTime: 103.889us - RowsProduced: 393 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.149us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.352us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.50 KB - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 162.42 KB - OpenTime: 17.819us - ProjectionTime: 0ns - RowsProduced: 393 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s330ms PipelineXTask (index=20):(Active: 1.904ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.581ms - CloseTime: 49.107us - GetBlockTime: 418.535us - OpenTime: 7.460us - PrepareTime: 261.162us - SinkTime: 1.134ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.849ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.538ms DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.640us - CompressTime: 0ns - ExecTime: 1.298ms - InputRows: 388 - LocalBytesSent: 113.18 KB - LocalSendTime: 222.777us - LocalSentRows: 388 - MemoryUsage: - PeakMemoryUsage: 159.53 KB - MergeBlockTime: 0ns - OpenTime: 155.220us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.8ms - RowsProduced: 388 - RpcAvgTime: 5.343ms - RpcCount: 12 - RpcMaxTime: 5.934ms - RpcMinTime: 4.731ms - RpcSumTime: 64.125ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 118.22us - SplitBlockHashComputeTime: 21.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 HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 34.220us - ExecTime: 485.370us - InitProbeSideTime: 41.868us - JoinFilterTimer: 101ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 41.894us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 666ns - ProbeFindNextTime: 0ns - ProbeRows: 388 - ProbeTime: 251.3us - ProbeWhenBuildSideOutputTime: 14.615us - ProbeWhenProbeSideOutputTime: 90.817us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.769us - ProjectionTime: 149.107us - RowsProduced: 388 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.981us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.226us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.50 KB - MemoryUsage: - Blocks: 145.50 KB - PeakMemoryUsage: 162.42 KB - OpenTime: 16.342us - ProjectionTime: 0ns - RowsProduced: 388 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s330ms PipelineXTask (index=22):(Active: 1.866ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.558ms - CloseTime: 56.752us - GetBlockTime: 381.422us - OpenTime: 6.690us - PrepareTime: 236.242us - SinkTime: 1.124ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.797ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 369.847us DATA_STREAM_SINK_OPERATOR (id=367,dst_id=367): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.526us - CompressTime: 0ns - ExecTime: 1.268ms - InputRows: 385 - LocalBytesSent: 112.39 KB - LocalSendTime: 228.882us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 155.53 KB - MergeBlockTime: 0ns - OpenTime: 133.224us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.948ms - RowsProduced: 385 - RpcAvgTime: 5.421ms - RpcCount: 12 - RpcMaxTime: 6.8ms - RpcMinTime: 4.837ms - RpcSumTime: 65.60ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 123.861us - SplitBlockHashComputeTime: 17.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 HASH_JOIN_OPERATOR (id=366): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 37.193us - ExecTime: 454.795us - InitProbeSideTime: 34.986us - JoinFilterTimer: 140ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 47.20us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 788ns - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 208.571us - ProbeWhenBuildSideOutputTime: 16.956us - ProbeWhenProbeSideOutputTime: 72.713us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.571us - ProjectionTime: 153.986us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=365): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.417us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.728us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.50 KB - MemoryUsage: - Blocks: 141.50 KB - PeakMemoryUsage: 150.73 KB - OpenTime: 13.343us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s330ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 193.518us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 101.725us - CloseTime: 18.747us - GetBlockTime: 2.511us - OpenTime: 1.755us - PrepareTime: 67.308us - SinkTime: 75.613us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 168.39us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.845us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.524us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 18.12us - BuildTableTime: 40.918us - CloseTime: 0ns - ExecTime: 88.950us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 13.754us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 17.271us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.284us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 23.98us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=3):(Active: 182.366us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 98.605us - CloseTime: 8.947us - GetBlockTime: 4.610us - OpenTime: 1.860us - PrepareTime: 68.398us - SinkTime: 74.187us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 166.284us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 187.145us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.164us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 17.764us - BuildTableTime: 28.10us - CloseTime: 0ns - ExecTime: 97.564us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 24.218us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.947us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 16.842us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=5):(Active: 816.809us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 62.143us - CloseTime: 680.271us - GetBlockTime: 1.544us - OpenTime: 2.49us - PrepareTime: 68.126us - SinkTime: 48.322us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 131.745us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.153us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 685ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.268us - BuildTableTime: 32.353us - CloseTime: 0ns - ExecTime: 68.693us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 20.458us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 678.992us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 698.465us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 18.160us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=7):(Active: 168.478us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 58.434us - CloseTime: 32.735us - GetBlockTime: 2.285us - OpenTime: 1.218us - PrepareTime: 72.145us - SinkTime: 43.252us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 130.931us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.394us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 673ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.318us - BuildTableTime: 13.926us - CloseTime: 0ns - ExecTime: 53.268us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 10.597us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 31.580us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.626us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 22.211us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=9):(Active: 153.829us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 65.651us - CloseTime: 7.614us - GetBlockTime: 2.918us - OpenTime: 1.267us - PrepareTime: 74.960us - SinkTime: 46.190us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 139.794us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.206us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.10us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 13.138us - BuildTableTime: 21.726us - CloseTime: 0ns - ExecTime: 55.770us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 10.235us - 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.962us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.358us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 16.97us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=11):(Active: 122.788us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.62us - CloseTime: 2.890us - GetBlockTime: 1.652us - OpenTime: 1.472us - PrepareTime: 78.562us - SinkTime: 23.725us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.747us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.976us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 446ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 7.267us - BuildTableTime: 11.522us - CloseTime: 0ns - ExecTime: 32.144us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 8.508us - 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.282us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.681us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 39.977us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=13):(Active: 136.604us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.493us - CloseTime: 4.556us - GetBlockTime: 2.466us - OpenTime: 1.260us - PrepareTime: 82.190us - SinkTime: 30.604us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.798us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.586us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 530ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.72us - BuildTableTime: 14.944us - CloseTime: 0ns - ExecTime: 53.366us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 22.909us - 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.282us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.147us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 30.822us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=15):(Active: 137.778us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 58.133us - CloseTime: 5.120us - GetBlockTime: 2.754us - OpenTime: 1.763us - PrepareTime: 68.786us - SinkTime: 41.337us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 127.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.243us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 526ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 17.500us - BuildTableTime: 23.430us - CloseTime: 0ns - ExecTime: 49.655us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 8.487us - 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.343us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.808us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 22.629us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=17):(Active: 156.7us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 62.5us - CloseTime: 5.178us - GetBlockTime: 2.268us - OpenTime: 2.323us - PrepareTime: 80.94us - SinkTime: 39.800us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 142.727us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.369us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 798ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 17.875us - BuildTableTime: 22.712us - CloseTime: 0ns - ExecTime: 54.4us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 14.335us - 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.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.913us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 31.800us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=19):(Active: 131.932us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 55.124us - CloseTime: 2.140us - GetBlockTime: 1.680us - OpenTime: 2.874us - PrepareTime: 64.732us - SinkTime: 19.859us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.605us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.887us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 466ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 7.130us - BuildTableTime: 10.310us - CloseTime: 0ns - ExecTime: 28.934us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 9.204us - 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.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.875us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 25.33us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=21):(Active: 128.885us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.513us - CloseTime: 3.268us - GetBlockTime: 1.332us - OpenTime: 2.22us - PrepareTime: 62.197us - SinkTime: 17.352us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.656us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.781us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 244ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 6.676us - BuildTableTime: 9.231us - CloseTime: 0ns - ExecTime: 29.17us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 11.593us - 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.737us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.356us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 21.538us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms PipelineXTask (index=23):(Active: 171.160us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 89.567us - CloseTime: 8.996us - GetBlockTime: 2.360us - OpenTime: 1.213us - PrepareTime: 67.292us - SinkTime: 54.985us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 139.484us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.501us HASH_JOIN_SINK_OPERATOR (id=366): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.825us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 14.820us - BuildTableTime: 27.697us - CloseTime: 0ns - ExecTime: 76.61us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 24.00 B - PeakMemoryUsage: 16.00 B - OpenTime: 21.325us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=138): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.274us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.761us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 950.00 B - OpenTime: 14.727us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s952ms Fragment 10: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.428ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.145ms - CloseTime: 61.591us - GetBlockTime: 324.813us - OpenTime: 10.951us - PrepareTime: 202.189us - SinkTime: 747.175us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.354ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.84ms DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.568us - CompressTime: 0ns - ExecTime: 874.827us - InputRows: 376 - LocalBytesSent: 103.03 KB - LocalSendTime: 154.809us - LocalSentRows: 376 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 116.128us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.221ms - RowsProduced: 376 - RpcAvgTime: 1.181ms - RpcCount: 12 - RpcMaxTime: 1.514ms - RpcMinTime: 953.185us - RpcSumTime: 14.177ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 93.390us - SplitBlockHashComputeTime: 11.288us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 41.702us - ExecTime: 380.349us - InitProbeSideTime: 19.957us - JoinFilterTimer: 93ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 29.204us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.728us - ProbeFindNextTime: 0ns - ProbeRows: 376 - ProbeTime: 185.498us - ProbeWhenBuildSideOutputTime: 11.185us - ProbeWhenProbeSideOutputTime: 77.587us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.938us - ProjectionTime: 115.253us - RowsProduced: 376 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.201us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.669us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 132.50 KB - OpenTime: 17.30us - ProjectionTime: 0ns - RowsProduced: 376 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms PipelineXTask (index=2):(Active: 1.542ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.220ms - CloseTime: 70.390us - GetBlockTime: 258.811us - OpenTime: 7.717us - PrepareTime: 239.12us - SinkTime: 900.212us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.432ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 615.643us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 44.53 KB - CloseTime: 10.876us - CompressTime: 0ns - ExecTime: 1.25ms - InputRows: 398 - LocalBytesSent: 0.00 - LocalSendTime: 184.179us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 115.534us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.338ms - RowsProduced: 398 - RpcAvgTime: 1.344ms - RpcCount: 12 - RpcMaxTime: 1.518ms - RpcMinTime: 641.733us - RpcSumTime: 16.130ms - SerializeBatchTime: 106.343us - SplitBlockDistributeByChannelTime: 94.508us - SplitBlockHashComputeTime: 12.824us - UncompressedRowBatchSize: 117.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 51.592us - ExecTime: 328.921us - InitProbeSideTime: 25.882us - JoinFilterTimer: 74ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 28.74us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 582ns - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 143.148us - ProbeWhenBuildSideOutputTime: 18.214us - ProbeWhenProbeSideOutputTime: 42.57us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.679us - ProjectionTime: 98.707us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.246us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.810us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.50 KB - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 140.75 KB - OpenTime: 18.841us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s326ms PipelineXTask (index=4):(Active: 2.185ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.669ms - CloseTime: 278.882us - GetBlockTime: 451.252us - OpenTime: 9.483us - PrepareTime: 219.27us - SinkTime: 1.162ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.888ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.629ms DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 43.38 KB - CloseTime: 36.860us - CompressTime: 0ns - ExecTime: 1.331ms - InputRows: 387 - LocalBytesSent: 0.00 - LocalSendTime: 161.274us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 134.28us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.897ms - RowsProduced: 387 - RpcAvgTime: 1.652ms - RpcCount: 12 - RpcMaxTime: 1.853ms - RpcMinTime: 1.362ms - RpcSumTime: 19.827ms - SerializeBatchTime: 175.613us - SplitBlockDistributeByChannelTime: 100.332us - SplitBlockHashComputeTime: 18.195us - UncompressedRowBatchSize: 113.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 68.937us - ExecTime: 532.983us - InitProbeSideTime: 62.767us - JoinFilterTimer: 83ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 30.576us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.540us - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 257.250us - ProbeWhenBuildSideOutputTime: 22.980us - ProbeWhenProbeSideOutputTime: 90.363us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.150us - ProjectionTime: 166.921us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 169.745us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 188.176us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.50 KB - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 139.33 KB - OpenTime: 13.775us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s324ms PipelineXTask (index=6):(Active: 1.505ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.201ms - CloseTime: 108.307us - GetBlockTime: 337.209us - OpenTime: 7.753us - PrepareTime: 181.481us - SinkTime: 829.237us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.387ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.263ms DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 29.725us - CompressTime: 0ns - ExecTime: 961.68us - InputRows: 398 - LocalBytesSent: 109.30 KB - LocalSendTime: 165.271us - LocalSentRows: 398 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 103.78us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.970ms - RowsProduced: 398 - RpcAvgTime: 1.622ms - RpcCount: 12 - RpcMaxTime: 1.867ms - RpcMinTime: 1.340ms - RpcSumTime: 19.474ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 69.592us - SplitBlockHashComputeTime: 11.410us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 63.997us - ExecTime: 416.872us - InitProbeSideTime: 45.846us - JoinFilterTimer: 74ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 24.411us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 991ns - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 232.823us - ProbeWhenBuildSideOutputTime: 16.399us - ProbeWhenProbeSideOutputTime: 104.823us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.449us - ProjectionTime: 89.9us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 12.129us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.669us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.50 KB - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 146.41 KB - OpenTime: 12.253us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms PipelineXTask (index=8):(Active: 2.209ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.943ms - CloseTime: 69.186us - GetBlockTime: 431.592us - OpenTime: 5.978us - PrepareTime: 184.554us - SinkTime: 1.460ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.127ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 596.162us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.572us - CompressTime: 0ns - ExecTime: 1.569ms - InputRows: 361 - LocalBytesSent: 98.90 KB - LocalSendTime: 332.180us - LocalSentRows: 361 - MemoryUsage: - PeakMemoryUsage: 142.53 KB - MergeBlockTime: 0ns - OpenTime: 101.527us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.813ms - RowsProduced: 361 - RpcAvgTime: 1.547ms - RpcCount: 12 - RpcMaxTime: 1.861ms - RpcMinTime: 1.342ms - RpcSumTime: 18.574ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 135.101us - SplitBlockHashComputeTime: 20.395us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 53.915us - ExecTime: 498.168us - InitProbeSideTime: 33.108us - JoinFilterTimer: 170ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 27.885us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.97us - ProbeFindNextTime: 0ns - ProbeRows: 361 - ProbeTime: 230.521us - ProbeWhenBuildSideOutputTime: 22.118us - ProbeWhenProbeSideOutputTime: 72.478us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.944us - ProjectionTime: 175.567us - RowsProduced: 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 2 - BytesReceived: 38.53 KB - CloseTime: 3.675us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 196.954us - ExecTime: 28.387us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.50 KB - PeakMemoryUsage: 4.25 KB - OpenTime: 16.963us - ProjectionTime: 0ns - RowsProduced: 361 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s326ms PipelineXTask (index=10):(Active: 1.834ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.469ms - CloseTime: 107.184us - GetBlockTime: 367.651us - OpenTime: 8.936us - PrepareTime: 240.882us - SinkTime: 1.52ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.715ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 771.629us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 42.28 KB - CloseTime: 12.650us - CompressTime: 0ns - ExecTime: 1.160ms - InputRows: 377 - LocalBytesSent: 0.00 - LocalSendTime: 177.647us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 100.516us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.104ms - RowsProduced: 377 - RpcAvgTime: 1.524ms - RpcCount: 12 - RpcMaxTime: 1.852ms - RpcMinTime: 1.346ms - RpcSumTime: 18.289ms - SerializeBatchTime: 115.688us - SplitBlockDistributeByChannelTime: 92.861us - SplitBlockHashComputeTime: 12.369us - UncompressedRowBatchSize: 110.78 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 85.580us - ExecTime: 469.389us - InitProbeSideTime: 43.316us - JoinFilterTimer: 113ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 26.808us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 842ns - ProbeFindNextTime: 0ns - ProbeRows: 377 - ProbeTime: 240.163us - ProbeWhenBuildSideOutputTime: 19.187us - ProbeWhenProbeSideOutputTime: 70.504us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.618us - ProjectionTime: 107.446us - RowsProduced: 377 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 2 - BytesReceived: 39.94 KB - CloseTime: 5.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 99.356us - ExecTime: 38.161us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 4.25 KB - OpenTime: 26.594us - ProjectionTime: 0ns - RowsProduced: 377 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s326ms PipelineXTask (index=12):(Active: 2.106ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.777ms - CloseTime: 118.957us - GetBlockTime: 413.19us - OpenTime: 9.979us - PrepareTime: 193.495us - SinkTime: 1.290ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.965ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 479.751us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 43.82 KB - CloseTime: 29.118us - CompressTime: 0ns - ExecTime: 1.436ms - InputRows: 392 - LocalBytesSent: 0.00 - LocalSendTime: 239.924us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 117.138us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.806ms - RowsProduced: 392 - RpcAvgTime: 1.594ms - RpcCount: 12 - RpcMaxTime: 1.906ms - RpcMinTime: 1.373ms - RpcSumTime: 19.128ms - SerializeBatchTime: 94.912us - SplitBlockDistributeByChannelTime: 145.301us - SplitBlockHashComputeTime: 17.864us - UncompressedRowBatchSize: 115.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 78.230us - ExecTime: 511.636us - InitProbeSideTime: 29.35us - JoinFilterTimer: 85ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 31.121us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 771ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 218.797us - ProbeWhenBuildSideOutputTime: 8.654us - ProbeWhenProbeSideOutputTime: 103.999us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.567us - ProjectionTime: 172.411us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.425us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.50 KB - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 142.16 KB - OpenTime: 10.366us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s326ms PipelineXTask (index=14):(Active: 2.435ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.127ms - CloseTime: 65.353us - GetBlockTime: 499.270us - OpenTime: 7.540us - PrepareTime: 229.643us - SinkTime: 1.590ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.361ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 336.281us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.946us - CompressTime: 0ns - ExecTime: 1.739ms - InputRows: 378 - LocalBytesSent: 103.78 KB - LocalSendTime: 333.488us - LocalSentRows: 378 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 141.524us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.533ms - RowsProduced: 378 - RpcAvgTime: 1.573ms - RpcCount: 12 - RpcMaxTime: 1.863ms - RpcMinTime: 1.351ms - RpcSumTime: 18.876ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 171.344us - SplitBlockHashComputeTime: 27.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=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 48.683us - ExecTime: 540.274us - InitProbeSideTime: 33.504us - JoinFilterTimer: 297ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 25.371us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.285us - ProbeFindNextTime: 0ns - ProbeRows: 378 - ProbeTime: 269.193us - ProbeWhenBuildSideOutputTime: 21.823us - ProbeWhenProbeSideOutputTime: 109.171us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.892us - ProjectionTime: 185.5us - RowsProduced: 378 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.891us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.126us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 142.41 KB - OpenTime: 16.326us - ProjectionTime: 0ns - RowsProduced: 378 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s326ms PipelineXTask (index=16):(Active: 2.43ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.751ms - CloseTime: 86.913us - GetBlockTime: 453.310us - OpenTime: 6.127us - PrepareTime: 193.89us - SinkTime: 1.264ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.949ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 609.117us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 41.28 KB - CloseTime: 12.315us - CompressTime: 0ns - ExecTime: 1.397ms - InputRows: 367 - LocalBytesSent: 0.00 - LocalSendTime: 224.34us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 121.997us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.544ms - RowsProduced: 367 - RpcAvgTime: 2.186ms - RpcCount: 12 - RpcMaxTime: 3.143ms - RpcMinTime: 1.590ms - RpcSumTime: 26.241ms - SerializeBatchTime: 106.801us - SplitBlockDistributeByChannelTime: 120.917us - SplitBlockHashComputeTime: 18.176us - UncompressedRowBatchSize: 107.78 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 66.277us - ExecTime: 537.249us - InitProbeSideTime: 32.750us - JoinFilterTimer: 229ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 26.90us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.103us - ProbeFindNextTime: 0ns - ProbeRows: 367 - ProbeTime: 219.862us - ProbeWhenBuildSideOutputTime: 14.275us - ProbeWhenProbeSideOutputTime: 85.424us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.964us - ProjectionTime: 214.442us - RowsProduced: 367 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.534us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.370us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 146.65 KB - OpenTime: 9.652us - ProjectionTime: 0ns - RowsProduced: 367 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s327ms PipelineXTask (index=18):(Active: 1.897ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.621ms - CloseTime: 87.17us - GetBlockTime: 388.54us - OpenTime: 7.304us - PrepareTime: 176.993us - SinkTime: 1.203ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.803ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 457.310us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.462us - CompressTime: 0ns - ExecTime: 1.316ms - InputRows: 391 - LocalBytesSent: 107.09 KB - LocalSendTime: 282.693us - LocalSentRows: 391 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 101.940us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.689ms - RowsProduced: 391 - RpcAvgTime: 2.82ms - RpcCount: 12 - RpcMaxTime: 3.190ms - RpcMinTime: 1.491ms - RpcSumTime: 24.986ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 89.646us - SplitBlockHashComputeTime: 11.746us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 66.347us - ExecTime: 472.182us - InitProbeSideTime: 58.160us - JoinFilterTimer: 144ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 26.252us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.19us - ProbeFindNextTime: 0ns - ProbeRows: 391 - ProbeTime: 225.640us - ProbeWhenBuildSideOutputTime: 18.956us - ProbeWhenProbeSideOutputTime: 56.448us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.597us - ProjectionTime: 145.129us - RowsProduced: 391 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 2 - BytesReceived: 41.50 KB - CloseTime: 5.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 100.59us - ExecTime: 24.790us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 15.57 KB - OpenTime: 13.769us - ProjectionTime: 0ns - RowsProduced: 391 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s327ms PipelineXTask (index=20):(Active: 2.978ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.669ms - CloseTime: 84.271us - GetBlockTime: 391.969us - OpenTime: 8.819us - PrepareTime: 209.136us - SinkTime: 2.228ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.167ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.955ms DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.351us - CompressTime: 0ns - ExecTime: 2.364ms - InputRows: 389 - LocalBytesSent: 106.80 KB - LocalSendTime: 1.71ms - LocalSentRows: 389 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 122.493us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.773ms - RowsProduced: 389 - RpcAvgTime: 1.871ms - RpcCount: 12 - RpcMaxTime: 2.565ms - RpcMinTime: 1.346ms - RpcSumTime: 22.459ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 133.313us - SplitBlockHashComputeTime: 18.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 HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 30.801us - ExecTime: 447.219us - InitProbeSideTime: 26.527us - JoinFilterTimer: 98ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 36.797us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.127us - ProbeFindNextTime: 0ns - ProbeRows: 389 - ProbeTime: 213.653us - ProbeWhenBuildSideOutputTime: 28.693us - ProbeWhenProbeSideOutputTime: 67.788us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.773us - ProjectionTime: 155.395us - RowsProduced: 389 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 15.271us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.586us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.50 KB - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 144.99 KB - OpenTime: 9.362us - ProjectionTime: 0ns - RowsProduced: 389 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms PipelineXTask (index=22):(Active: 1.885ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.562ms - CloseTime: 91.710us - GetBlockTime: 225.202us - OpenTime: 31.496us - PrepareTime: 191.828us - SinkTime: 1.267ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.781ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.213ms DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.570us - CompressTime: 0ns - ExecTime: 1.377ms - InputRows: 382 - LocalBytesSent: 104.64 KB - LocalSendTime: 276.154us - LocalSentRows: 382 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 97.143us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.546ms - RowsProduced: 382 - RpcAvgTime: 1.942ms - RpcCount: 12 - RpcMaxTime: 3.201ms - RpcMinTime: 1.470ms - RpcSumTime: 23.306ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 70.625us - SplitBlockHashComputeTime: 11.250us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 70.156us - ExecTime: 349.237us - InitProbeSideTime: 15.584us - JoinFilterTimer: 66ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 62.661us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 579ns - ProbeFindNextTime: 0ns - ProbeRows: 382 - ProbeTime: 122.257us - ProbeWhenBuildSideOutputTime: 14.148us - ProbeWhenProbeSideOutputTime: 36.740us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.830us - ProjectionTime: 86.579us - RowsProduced: 382 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.793us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.472us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 135.33 KB - OpenTime: 10.964us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 443.332us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 380.401us - CloseTime: 7.603us - GetBlockTime: 144.340us - OpenTime: 2.911us - PrepareTime: 47.103us - SinkTime: 163.270us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 418.9us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.175ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.180us - BuildRows: 94 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.190us - BuildTableInsertTime: 24.573us - BuildTableTime: 33.776us - CloseTime: 0ns - ExecTime: 169.2us - InputRows: 93 - MemoryUsage: - BuildBlocks: 3.63 KB - BuildKeyArena: 4.00 KB - HashTable: 892.00 B - PeakMemoryUsage: 4.49 KB - OpenTime: 11.280us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.83 KB - CloseTime: 6.182us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 125.577us - ExecTime: 155.492us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.38 KB - MemoryUsage: - Blocks: 2.94 KB - PeakMemoryUsage: 2.94 KB - OpenTime: 13.487us - ProjectionTime: 0ns - RowsProduced: 93 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s410ms PipelineXTask (index=3):(Active: 479.729us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 415.716us - CloseTime: 10.288us - GetBlockTime: 125.51us - OpenTime: 2.222us - PrepareTime: 44.922us - SinkTime: 188.575us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 441.708us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 890.796us HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.661us - BuildRows: 105 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 88.854us - BuildTableInsertTime: 23.83us - BuildTableTime: 32.372us - CloseTime: 0ns - ExecTime: 190.852us - InputRows: 104 - MemoryUsage: - BuildBlocks: 4.05 KB - BuildKeyArena: 4.00 KB - HashTable: 936.00 B - PeakMemoryUsage: 4.95 KB - OpenTime: 8.657us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.79 KB - CloseTime: 8.888us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 104.780us - ExecTime: 137.784us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.16 KB - MemoryUsage: - Blocks: 1.81 KB - PeakMemoryUsage: 832.00 B - OpenTime: 15.81us - ProjectionTime: 0ns - RowsProduced: 104 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s410ms PipelineXTask (index=5):(Active: 376.418us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 318.255us - CloseTime: 6.522us - GetBlockTime: 99.998us - OpenTime: 2.983us - PrepareTime: 40.889us - SinkTime: 136.350us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 344.628us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.167ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.513us - BuildRows: 89 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 51.811us - BuildTableInsertTime: 30.182us - BuildTableTime: 37.688us - CloseTime: 0ns - ExecTime: 138.227us - InputRows: 88 - MemoryUsage: - BuildBlocks: 3.43 KB - BuildKeyArena: 4.00 KB - HashTable: 872.00 B - PeakMemoryUsage: 4.27 KB - OpenTime: 6.923us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.55 KB - CloseTime: 5.485us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 112.108us - ExecTime: 103.880us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.84 KB - MemoryUsage: - Blocks: 1.25 KB - PeakMemoryUsage: 1.25 KB - OpenTime: 16.725us - ProjectionTime: 0ns - RowsProduced: 88 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=7):(Active: 381.712us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 328.949us - CloseTime: 4.301us - GetBlockTime: 98.756us - OpenTime: 2.640us - PrepareTime: 37.775us - SinkTime: 140.324us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 352.215us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.121ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.373us - BuildRows: 114 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 80.977us - BuildTableInsertTime: 15.834us - BuildTableTime: 21.930us - CloseTime: 0ns - ExecTime: 146.190us - InputRows: 113 - MemoryUsage: - BuildBlocks: 4.40 KB - BuildKeyArena: 4.00 KB - HashTable: 1.45 KB - PeakMemoryUsage: 5.84 KB - OpenTime: 9.736us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 35 - BytesReceived: 3.29 KB - CloseTime: 3.531us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 122.952us - ExecTime: 95.528us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.88 KB - MemoryUsage: - Blocks: 1.81 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 7.937us - ProjectionTime: 0ns - RowsProduced: 113 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=9):(Active: 339.838us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 268.478us - CloseTime: 4.940us - GetBlockTime: 76.182us - OpenTime: 3.326us - PrepareTime: 56.526us - SinkTime: 109.330us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 307.737us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.564ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.456us - BuildRows: 86 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 45.156us - BuildTableInsertTime: 15.986us - BuildTableTime: 22.729us - CloseTime: 0ns - ExecTime: 119.356us - InputRows: 85 - MemoryUsage: - BuildBlocks: 3.32 KB - BuildKeyArena: 4.00 KB - HashTable: 860.00 B - PeakMemoryUsage: 4.15 KB - OpenTime: 15.116us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.52 KB - CloseTime: 3.765us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 99.385us - ExecTime: 86.700us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.03 KB - MemoryUsage: - Blocks: 1.69 KB - PeakMemoryUsage: 1.69 KB - OpenTime: 14.591us - ProjectionTime: 0ns - RowsProduced: 85 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=11):(Active: 434.338us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 351.975us - CloseTime: 4.791us - GetBlockTime: 95.513us - OpenTime: 3.747us - PrepareTime: 66.706us - SinkTime: 147.0us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 378.547us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.330ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.217us - BuildRows: 106 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 76.958us - BuildTableInsertTime: 15.854us - BuildTableTime: 21.492us - CloseTime: 0ns - ExecTime: 157.220us - InputRows: 105 - MemoryUsage: - BuildBlocks: 4.08 KB - BuildKeyArena: 4.00 KB - HashTable: 940.00 B - PeakMemoryUsage: 4.99 KB - OpenTime: 15.188us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 35 - BytesReceived: 3.21 KB - CloseTime: 3.967us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 113.429us - ExecTime: 110.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.50 KB - MemoryUsage: - Blocks: 2.31 KB - PeakMemoryUsage: 1.88 KB - OpenTime: 21.102us - ProjectionTime: 0ns - RowsProduced: 105 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=13):(Active: 366.379us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 290.83us - CloseTime: 8.263us - GetBlockTime: 75.27us - OpenTime: 3.164us - PrepareTime: 58.500us - SinkTime: 130.536us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 337.772us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.538ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.513us - BuildRows: 103 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 53.839us - BuildTableInsertTime: 28.233us - BuildTableTime: 38.85us - CloseTime: 0ns - ExecTime: 147.571us - InputRows: 102 - MemoryUsage: - BuildBlocks: 3.97 KB - BuildKeyArena: 4.00 KB - HashTable: 928.00 B - PeakMemoryUsage: 4.87 KB - OpenTime: 22.458us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.67 KB - CloseTime: 6.551us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 107.329us - ExecTime: 90.794us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.06 KB - MemoryUsage: - Blocks: 2.50 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 17.225us - ProjectionTime: 0ns - RowsProduced: 102 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=15):(Active: 364.246us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 309.410us - CloseTime: 6.35us - GetBlockTime: 113.620us - OpenTime: 3.68us - PrepareTime: 39.740us - SinkTime: 111.384us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 336.132us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.231ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.708us - BuildRows: 84 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 48.361us - BuildTableInsertTime: 19.847us - BuildTableTime: 27.280us - CloseTime: 0ns - ExecTime: 113.831us - InputRows: 83 - MemoryUsage: - BuildBlocks: 3.24 KB - BuildKeyArena: 4.00 KB - HashTable: 852.00 B - PeakMemoryUsage: 4.06 KB - OpenTime: 6.448us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 34 - BytesReceived: 2.36 KB - CloseTime: 4.810us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 90.940us - ExecTime: 120.540us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.66 KB - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 11.391us - ProjectionTime: 0ns - RowsProduced: 83 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s410ms PipelineXTask (index=17):(Active: 293.774us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 236.874us - CloseTime: 5.311us - GetBlockTime: 69.687us - OpenTime: 2.880us - PrepareTime: 42.885us - SinkTime: 112.38us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 272.468us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.658ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.507us - BuildRows: 103 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 57.792us - BuildTableInsertTime: 11.71us - BuildTableTime: 16.941us - CloseTime: 0ns - ExecTime: 119.841us - InputRows: 102 - MemoryUsage: - BuildBlocks: 3.96 KB - BuildKeyArena: 4.00 KB - HashTable: 928.00 B - PeakMemoryUsage: 4.86 KB - OpenTime: 11.514us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 3.05 KB - CloseTime: 4.474us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 113.784us - ExecTime: 80.99us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.59 KB - MemoryUsage: - Blocks: 2.31 KB - PeakMemoryUsage: 1.84 KB - OpenTime: 12.144us - ProjectionTime: 0ns - RowsProduced: 102 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=19):(Active: 340.229us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 250.306us - CloseTime: 15.923us - GetBlockTime: 66.604us - OpenTime: 2.815us - PrepareTime: 65.446us - SinkTime: 120.608us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 306.373us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.194ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.735us - BuildRows: 104 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 54.596us - BuildTableInsertTime: 18.567us - BuildTableTime: 25.384us - CloseTime: 0ns - ExecTime: 131.153us - InputRows: 103 - MemoryUsage: - BuildBlocks: 4.00 KB - BuildKeyArena: 4.00 KB - HashTable: 932.00 B - PeakMemoryUsage: 4.90 KB - OpenTime: 14.26us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 3.04 KB - CloseTime: 14.989us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 109.394us - ExecTime: 82.330us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.56 KB - MemoryUsage: - Blocks: 2.25 KB - PeakMemoryUsage: 1.56 KB - OpenTime: 8.419us - ProjectionTime: 0ns - RowsProduced: 103 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s410ms PipelineXTask (index=21):(Active: 367.51us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 305.538us - CloseTime: 7.580us - GetBlockTime: 103.387us - OpenTime: 3.148us - PrepareTime: 44.337us - SinkTime: 116.469us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 326.587us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.673ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.550us - BuildRows: 100 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.248us - BuildTableInsertTime: 20.910us - BuildTableTime: 30.548us - CloseTime: 0ns - ExecTime: 122.661us - InputRows: 99 - MemoryUsage: - BuildBlocks: 3.86 KB - BuildKeyArena: 4.00 KB - HashTable: 916.00 B - PeakMemoryUsage: 4.74 KB - OpenTime: 10.601us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 3.19 KB - CloseTime: 6.437us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 86.659us - ExecTime: 113.104us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.56 KB - MemoryUsage: - Blocks: 2.31 KB - PeakMemoryUsage: 1.44 KB - OpenTime: 10.719us - ProjectionTime: 0ns - RowsProduced: 99 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s408ms PipelineXTask (index=23):(Active: 350.39us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 279.596us - CloseTime: 22.127us - GetBlockTime: 79.531us - OpenTime: 2.502us - PrepareTime: 39.858us - SinkTime: 121.132us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 308.427us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.33ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.473us - BuildRows: 99 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 49.81us - BuildTableInsertTime: 18.940us - BuildTableTime: 26.208us - CloseTime: 0ns - ExecTime: 114.346us - InputRows: 98 - MemoryUsage: - BuildBlocks: 3.79 KB - BuildKeyArena: 4.00 KB - HashTable: 912.00 B - PeakMemoryUsage: 4.67 KB - OpenTime: 7.654us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 34 - BytesReceived: 2.70 KB - CloseTime: 20.944us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 116.529us - ExecTime: 103.222us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.88 KB - MemoryUsage: - Blocks: 2.97 KB - PeakMemoryUsage: 1.06 KB - OpenTime: 11.436us - ProjectionTime: 0ns - RowsProduced: 98 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s410ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.120ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.719ms - CloseTime: 115.819us - GetBlockTime: 265.47us - OpenTime: 6.200us - PrepareTime: 270.843us - SinkTime: 1.401ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.991ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 823.52us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 43.11 KB - CloseTime: 16.797us - CompressTime: 0ns - ExecTime: 1.569ms - InputRows: 385 - LocalBytesSent: 0.00 - LocalSendTime: 250.420us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 151.962us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.109ms - RowsProduced: 385 - RpcAvgTime: 1.661ms - RpcCount: 12 - RpcMaxTime: 2.118ms - RpcMinTime: 1.136ms - RpcSumTime: 19.938ms - SerializeBatchTime: 120.788us - SplitBlockDistributeByChannelTime: 72.681us - SplitBlockHashComputeTime: 11.116us - UncompressedRowBatchSize: 113.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 40.887us - ExecTime: 335.88us - InitProbeSideTime: 25.511us - JoinFilterTimer: 46ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 43.86us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 669ns - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 141.476us - ProbeWhenBuildSideOutputTime: 14.282us - ProbeWhenProbeSideOutputTime: 43.497us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.832us - ProjectionTime: 101.995us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 53.877us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.118us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 135.33 KB - OpenTime: 24.625us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms PipelineXTask (index=2):(Active: 1.821ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.380ms - CloseTime: 119.487us - GetBlockTime: 364.860us - OpenTime: 24.432us - PrepareTime: 289.373us - SinkTime: 957.195us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.689ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 526.321us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.727us - CompressTime: 0ns - ExecTime: 1.155ms - InputRows: 385 - LocalBytesSent: 105.69 KB - LocalSendTime: 227.370us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 181.218us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.622ms - RowsProduced: 385 - RpcAvgTime: 1.931ms - RpcCount: 12 - RpcMaxTime: 2.123ms - RpcMinTime: 1.811ms - RpcSumTime: 23.181ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 111.118us - SplitBlockHashComputeTime: 16.781us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 80.907us - ExecTime: 492.956us - InitProbeSideTime: 35.194us - JoinFilterTimer: 215ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 55.664us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 627ns - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 224.663us - ProbeWhenBuildSideOutputTime: 13.530us - ProbeWhenProbeSideOutputTime: 89.400us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.677us - ProjectionTime: 124.36us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 17.227us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.127us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 140.99 KB - OpenTime: 15.197us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms PipelineXTask (index=4):(Active: 1.788ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.475ms - CloseTime: 45.503us - GetBlockTime: 417.979us - OpenTime: 5.330us - PrepareTime: 256.928us - SinkTime: 1.12ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.731ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 343.434us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.608us - CompressTime: 0ns - ExecTime: 1.167ms - InputRows: 380 - LocalBytesSent: 104.22 KB - LocalSendTime: 214.186us - LocalSentRows: 380 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 147.911us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.461ms - RowsProduced: 380 - RpcAvgTime: 1.860ms - RpcCount: 12 - RpcMaxTime: 2.71ms - RpcMinTime: 1.679ms - RpcSumTime: 22.324ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 102.295us - SplitBlockHashComputeTime: 22.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 HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 32.2us - ExecTime: 473.121us - InitProbeSideTime: 27.179us - JoinFilterTimer: 212ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 37.221us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.100us - ProbeFindNextTime: 0ns - ProbeRows: 380 - ProbeTime: 197.557us - ProbeWhenBuildSideOutputTime: 10.479us - ProbeWhenProbeSideOutputTime: 55.749us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 19.454us - ProjectionTime: 194.802us - RowsProduced: 380 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.895us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.636us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 133.92 KB - OpenTime: 19.658us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms PipelineXTask (index=6):(Active: 1.999ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.674ms - CloseTime: 80.273us - GetBlockTime: 376.672us - OpenTime: 6.912us - PrepareTime: 232.532us - SinkTime: 1.250ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.907ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 233.129us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.849us - CompressTime: 0ns - ExecTime: 1.404ms - InputRows: 372 - LocalBytesSent: 101.90 KB - LocalSendTime: 310.290us - LocalSentRows: 372 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 137.552us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.984ms - RowsProduced: 372 - RpcAvgTime: 1.559ms - RpcCount: 12 - RpcMaxTime: 1.966ms - RpcMinTime: 1.41ms - RpcSumTime: 18.714ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 92.61us - SplitBlockHashComputeTime: 21.471us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 52.999us - ExecTime: 446.517us - InitProbeSideTime: 29.927us - JoinFilterTimer: 125ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 30.481us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 911ns - ProbeFindNextTime: 0ns - ProbeRows: 372 - ProbeTime: 222.246us - ProbeWhenBuildSideOutputTime: 26.173us - ProbeWhenProbeSideOutputTime: 85.969us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.932us - ProjectionTime: 131.464us - RowsProduced: 372 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.920us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.681us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 140.99 KB - OpenTime: 18.411us - ProjectionTime: 0ns - RowsProduced: 372 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms PipelineXTask (index=8):(Active: 1.948ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.641ms - CloseTime: 56.279us - GetBlockTime: 387.172us - OpenTime: 3.464us - PrepareTime: 242.375us - SinkTime: 1.216ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.882ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 231.411us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.90us - CompressTime: 0ns - ExecTime: 1.360ms - InputRows: 392 - LocalBytesSent: 107.46 KB - LocalSendTime: 233.514us - LocalSentRows: 392 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 135.964us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.225ms - RowsProduced: 392 - RpcAvgTime: 793.521us - RpcCount: 12 - RpcMaxTime: 1.303ms - RpcMinTime: 498.303us - RpcSumTime: 9.522ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 76.612us - SplitBlockHashComputeTime: 24.98us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 39.337us - ExecTime: 443.344us - InitProbeSideTime: 42.141us - JoinFilterTimer: 173ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 28.843us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 696ns - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 276.66us - ProbeWhenBuildSideOutputTime: 18.886us - ProbeWhenProbeSideOutputTime: 144.759us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.110us - ProjectionTime: 89.35us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.616us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.530us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.50 KB - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 142.16 KB - OpenTime: 21.321us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s327ms PipelineXTask (index=10):(Active: 2.708ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.369ms - CloseTime: 94.88us - GetBlockTime: 519.605us - OpenTime: 4.32us - PrepareTime: 235.828us - SinkTime: 1.790ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.593ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 288.181us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 43.42 KB - CloseTime: 19.905us - CompressTime: 0ns - ExecTime: 1.953ms - InputRows: 387 - LocalBytesSent: 0.00 - LocalSendTime: 330.971us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 144.746us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.531ms - RowsProduced: 387 - RpcAvgTime: 1.599ms - RpcCount: 12 - RpcMaxTime: 2.809ms - RpcMinTime: 570.549us - RpcSumTime: 19.189ms - SerializeBatchTime: 176.510us - SplitBlockDistributeByChannelTime: 191.842us - SplitBlockHashComputeTime: 40.521us - UncompressedRowBatchSize: 113.74 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 62.993us - ExecTime: 586.445us - InitProbeSideTime: 89.43us - JoinFilterTimer: 190ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 36.554us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 991ns - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 285.939us - ProbeWhenBuildSideOutputTime: 13.804us - ProbeWhenProbeSideOutputTime: 50.60us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 27.20us - ProjectionTime: 186.377us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.600us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.975us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 142.41 KB - OpenTime: 17.493us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s327ms PipelineXTask (index=12):(Active: 2.547ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.224ms - CloseTime: 58.704us - GetBlockTime: 595.339us - OpenTime: 6.83us - PrepareTime: 251.267us - SinkTime: 1.569ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.476ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.436us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 42.89 KB - CloseTime: 10.797us - CompressTime: 0ns - ExecTime: 1.715ms - InputRows: 383 - LocalBytesSent: 0.00 - LocalSendTime: 292.46us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 136.278us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.852ms - RowsProduced: 383 - RpcAvgTime: 3.765ms - RpcCount: 12 - RpcMaxTime: 5.349ms - RpcMinTime: 1.355ms - RpcSumTime: 45.188ms - SerializeBatchTime: 152.482us - SplitBlockDistributeByChannelTime: 133.960us - SplitBlockHashComputeTime: 27.689us - UncompressedRowBatchSize: 112.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 40.509us - ExecTime: 643.166us - InitProbeSideTime: 57.525us - JoinFilterTimer: 317ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 30.260us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 924ns - ProbeFindNextTime: 0ns - ProbeRows: 383 - ProbeTime: 340.794us - ProbeWhenBuildSideOutputTime: 21.468us - ProbeWhenProbeSideOutputTime: 142.335us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.252us - ProjectionTime: 217.156us - RowsProduced: 383 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 2 - BytesReceived: 40.49 KB - CloseTime: 5.268us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 79.770us - ExecTime: 51.139us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 16.98 KB - OpenTime: 35.591us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s328ms PipelineXTask (index=14):(Active: 1.709ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.359ms - CloseTime: 57.922us - GetBlockTime: 362.679us - OpenTime: 5.83us - PrepareTime: 282.110us - SinkTime: 969.361us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.644ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.209ms DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.687us - CompressTime: 0ns - ExecTime: 1.135ms - InputRows: 393 - LocalBytesSent: 107.75 KB - LocalSendTime: 228.944us - LocalSentRows: 393 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 155.252us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.302ms - RowsProduced: 393 - RpcAvgTime: 2.823ms - RpcCount: 12 - RpcMaxTime: 4.708ms - RpcMinTime: 1.332ms - RpcSumTime: 33.877ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 136.754us - SplitBlockHashComputeTime: 17.25us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.455us - ExecTime: 426.719us - InitProbeSideTime: 30.661us - JoinFilterTimer: 158ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 38.994us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 587ns - ProbeFindNextTime: 0ns - ProbeRows: 393 - ProbeTime: 217.220us - ProbeWhenBuildSideOutputTime: 14.631us - ProbeWhenProbeSideOutputTime: 90.253us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.762us - ProjectionTime: 125.569us - RowsProduced: 393 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 2 - BytesReceived: 41.55 KB - CloseTime: 7.324us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 173.678us - ExecTime: 32.60us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 16.98 KB - OpenTime: 17.482us - ProjectionTime: 0ns - RowsProduced: 393 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s327ms PipelineXTask (index=16):(Active: 1.881ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.570ms - CloseTime: 51.505us - GetBlockTime: 578.277us - OpenTime: 12.802us - PrepareTime: 241.43us - SinkTime: 942.76us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.818ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.325ms DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.480us - CompressTime: 0ns - ExecTime: 1.95ms - InputRows: 388 - LocalBytesSent: 106.36 KB - LocalSendTime: 187.791us - LocalSentRows: 388 - MemoryUsage: - PeakMemoryUsage: 150.53 KB - MergeBlockTime: 0ns - OpenTime: 141.617us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.207ms - RowsProduced: 388 - RpcAvgTime: 3.630ms - RpcCount: 12 - RpcMaxTime: 4.712ms - RpcMinTime: 2.281ms - RpcSumTime: 43.561ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 161.222us - SplitBlockHashComputeTime: 37.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=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 29.330us - ExecTime: 635.945us - InitProbeSideTime: 42.558us - JoinFilterTimer: 400ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 42.604us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.51us - ProbeFindNextTime: 0ns - ProbeRows: 388 - ProbeTime: 355.925us - ProbeWhenBuildSideOutputTime: 36.2us - ProbeWhenProbeSideOutputTime: 105.932us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.995us - ProjectionTime: 196.846us - RowsProduced: 388 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.461us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.463us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.50 KB - MemoryUsage: - Blocks: 136.50 KB - PeakMemoryUsage: 150.65 KB - OpenTime: 17.794us - ProjectionTime: 0ns - RowsProduced: 388 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s327ms PipelineXTask (index=18):(Active: 2.205ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.861ms - CloseTime: 59.820us - GetBlockTime: 473.553us - OpenTime: 6.741us - PrepareTime: 273.13us - SinkTime: 1.354ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.138ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.115us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 43.03 KB - CloseTime: 8.766us - CompressTime: 0ns - ExecTime: 1.519ms - InputRows: 384 - LocalBytesSent: 0.00 - LocalSendTime: 260.232us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 157.384us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.27ms - RowsProduced: 384 - RpcAvgTime: 3.348ms - RpcCount: 12 - RpcMaxTime: 5.291ms - RpcMinTime: 1.97ms - RpcSumTime: 40.186ms - SerializeBatchTime: 107.743us - SplitBlockDistributeByChannelTime: 126.544us - SplitBlockHashComputeTime: 20.906us - UncompressedRowBatchSize: 112.75 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 44.828us - ExecTime: 547.305us - InitProbeSideTime: 66.836us - JoinFilterTimer: 241ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 40.374us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 851ns - ProbeFindNextTime: 0ns - ProbeRows: 384 - ProbeTime: 315.263us - ProbeWhenBuildSideOutputTime: 32.469us - ProbeWhenProbeSideOutputTime: 93.814us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 18.443us - ProjectionTime: 134.704us - RowsProduced: 384 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 2 - BytesReceived: 40.65 KB - CloseTime: 4.774us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 104.390us - ExecTime: 29.15us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 16.98 KB - OpenTime: 17.423us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s328ms PipelineXTask (index=20):(Active: 1.965ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.658ms - CloseTime: 69.211us - GetBlockTime: 374.196us - OpenTime: 3.727us - PrepareTime: 229.132us - SinkTime: 1.245ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.886ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 212.733us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 41.63 KB - CloseTime: 16.313us - CompressTime: 0ns - ExecTime: 1.386ms - InputRows: 370 - LocalBytesSent: 0.00 - LocalSendTime: 212.412us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 126.766us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.620ms - RowsProduced: 370 - RpcAvgTime: 1.470ms - RpcCount: 12 - RpcMaxTime: 2.818ms - RpcMinTime: 533.161us - RpcSumTime: 17.646ms - SerializeBatchTime: 108.913us - SplitBlockDistributeByChannelTime: 127.849us - SplitBlockHashComputeTime: 16.696us - UncompressedRowBatchSize: 108.90 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.131us - ExecTime: 443.327us - InitProbeSideTime: 33.967us - JoinFilterTimer: 200ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 39.155us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 624ns - ProbeFindNextTime: 0ns - ProbeRows: 370 - ProbeTime: 201.384us - ProbeWhenBuildSideOutputTime: 16.652us - ProbeWhenProbeSideOutputTime: 73.24us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.699us - ProjectionTime: 140.856us - RowsProduced: 370 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.1us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.588us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 146.65 KB - OpenTime: 13.734us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s328ms PipelineXTask (index=22):(Active: 1.576ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.241ms - CloseTime: 71.9us - GetBlockTime: 270.583us - OpenTime: 16.677us - PrepareTime: 241.171us - SinkTime: 926.362us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.496ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 337.500us DATA_STREAM_SINK_OPERATOR (id=365,dst_id=365): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.386us - CompressTime: 0ns - ExecTime: 1.70ms - InputRows: 385 - LocalBytesSent: 105.62 KB - LocalSendTime: 194.173us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 146.53 KB - MergeBlockTime: 0ns - OpenTime: 132.230us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.979ms - RowsProduced: 385 - RpcAvgTime: 1.255ms - RpcCount: 12 - RpcMaxTime: 2.298ms - RpcMinTime: 560.959us - RpcSumTime: 15.67ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 88.798us - SplitBlockHashComputeTime: 12.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 HASH_JOIN_OPERATOR (id=364): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 51.570us - ExecTime: 364.645us - InitProbeSideTime: 38.918us - JoinFilterTimer: 200ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 49.205us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 728ns - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 170.236us - ProbeWhenBuildSideOutputTime: 12.554us - ProbeWhenProbeSideOutputTime: 59.586us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.777us - ProjectionTime: 86.78us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=363): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.259us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.769us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.50 KB - MemoryUsage: - Blocks: 132.50 KB - PeakMemoryUsage: 148.07 KB - OpenTime: 16.977us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s328ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 434.551us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 357.642us - CloseTime: 6.308us - GetBlockTime: 128.475us - OpenTime: 2.10us - PrepareTime: 63.134us - SinkTime: 149.477us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 405.354us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.40ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.968us - BuildRows: 107 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 61.640us - BuildTableInsertTime: 32.18us - BuildTableTime: 39.512us - CloseTime: 0ns - ExecTime: 161.842us - InputRows: 106 - MemoryUsage: - BuildBlocks: 4.12 KB - BuildKeyArena: 4.00 KB - HashTable: 944.00 B - PeakMemoryUsage: 5.03 KB - OpenTime: 17.123us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 3.05 KB - CloseTime: 5.57us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 86.915us - ExecTime: 138.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.94 KB - MemoryUsage: - Blocks: 4.06 KB - PeakMemoryUsage: 4.06 KB - OpenTime: 16.377us - ProjectionTime: 0ns - RowsProduced: 106 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s411ms PipelineXTask (index=3):(Active: 612.734us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 530.373us - CloseTime: 6.956us - GetBlockTime: 148.91us - OpenTime: 2.441us - PrepareTime: 67.399us - SinkTime: 308.960us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 584.868us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.81ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.122us - BuildRows: 103 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 63.17us - BuildTableInsertTime: 34.516us - BuildTableTime: 44.117us - CloseTime: 0ns - ExecTime: 313.666us - InputRows: 102 - MemoryUsage: - BuildBlocks: 3.98 KB - BuildKeyArena: 4.00 KB - HashTable: 928.00 B - PeakMemoryUsage: 4.88 KB - OpenTime: 9.522us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.56 KB - CloseTime: 5.470us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 79.765us - ExecTime: 163.240us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.44 KB - MemoryUsage: - Blocks: 4.19 KB - PeakMemoryUsage: 4.19 KB - OpenTime: 18.112us - ProjectionTime: 0ns - RowsProduced: 102 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=5):(Active: 315.980us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 238.252us - CloseTime: 7.223us - GetBlockTime: 71.463us - OpenTime: 2.218us - PrepareTime: 62.380us - SinkTime: 109.391us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 291.21us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.477ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.998us - BuildRows: 92 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 47.6us - BuildTableInsertTime: 21.501us - BuildTableTime: 28.283us - CloseTime: 0ns - ExecTime: 115.124us - InputRows: 91 - MemoryUsage: - BuildBlocks: 3.55 KB - BuildKeyArena: 4.00 KB - HashTable: 884.00 B - PeakMemoryUsage: 4.41 KB - OpenTime: 9.166us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 35 - BytesReceived: 2.56 KB - CloseTime: 6.45us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 61.977us - ExecTime: 91.206us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.50 KB - MemoryUsage: - Blocks: 3.69 KB - PeakMemoryUsage: 3.87 KB - OpenTime: 20.563us - ProjectionTime: 0ns - RowsProduced: 91 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=7):(Active: 332.330us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 250.407us - CloseTime: 20.469us - GetBlockTime: 62.411us - OpenTime: 1.334us - PrepareTime: 54.898us - SinkTime: 114.718us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 294.795us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.769ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.285us - BuildRows: 82 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.782us - BuildTableInsertTime: 15.925us - BuildTableTime: 21.117us - CloseTime: 0ns - ExecTime: 119.153us - InputRows: 81 - MemoryUsage: - BuildBlocks: 3.16 KB - BuildKeyArena: 4.00 KB - HashTable: 844.00 B - PeakMemoryUsage: 3.97 KB - OpenTime: 8.641us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 34 - BytesReceived: 2.59 KB - CloseTime: 19.177us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 66.49us - ExecTime: 90.435us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.66 KB - MemoryUsage: - Blocks: 2.84 KB - PeakMemoryUsage: 3.21 KB - OpenTime: 17.739us - ProjectionTime: 0ns - RowsProduced: 81 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=9):(Active: 376.567us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 285.966us - CloseTime: 4.754us - GetBlockTime: 87.961us - OpenTime: 1.719us - PrepareTime: 78.250us - SinkTime: 126.228us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 347.319us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.758ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.417us - BuildRows: 97 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 66.36us - BuildTableInsertTime: 15.179us - BuildTableTime: 19.984us - CloseTime: 0ns - ExecTime: 140.76us - InputRows: 96 - MemoryUsage: - BuildBlocks: 3.75 KB - BuildKeyArena: 4.00 KB - HashTable: 904.00 B - PeakMemoryUsage: 4.63 KB - OpenTime: 18.922us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.91 KB - CloseTime: 3.669us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 95.446us - ExecTime: 116.59us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.69 KB - MemoryUsage: - Blocks: 3.38 KB - PeakMemoryUsage: 3.38 KB - OpenTime: 31.471us - ProjectionTime: 0ns - RowsProduced: 96 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=11):(Active: 360.987us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 283.352us - CloseTime: 13.75us - GetBlockTime: 95.83us - OpenTime: 1.500us - PrepareTime: 58.360us - SinkTime: 125.616us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 332.119us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.201ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.783us - BuildRows: 105 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 62.980us - BuildTableInsertTime: 24.93us - BuildTableTime: 28.2us - CloseTime: 0ns - ExecTime: 130.803us - InputRows: 104 - MemoryUsage: - BuildBlocks: 4.05 KB - BuildKeyArena: 4.00 KB - HashTable: 936.00 B - PeakMemoryUsage: 4.96 KB - OpenTime: 8.327us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.83 KB - CloseTime: 12.353us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 69.56us - ExecTime: 119.448us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 3.94 KB - PeakMemoryUsage: 3.94 KB - OpenTime: 18.826us - ProjectionTime: 0ns - RowsProduced: 104 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=13):(Active: 379.147us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 284.863us - CloseTime: 20.640us - GetBlockTime: 94.698us - OpenTime: 1.656us - PrepareTime: 65.750us - SinkTime: 119.563us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 337.554us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.67ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.646us - BuildRows: 85 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.392us - BuildTableInsertTime: 19.113us - BuildTableTime: 26.302us - CloseTime: 0ns - ExecTime: 122.911us - InputRows: 84 - MemoryUsage: - BuildBlocks: 3.28 KB - BuildKeyArena: 4.00 KB - HashTable: 856.00 B - PeakMemoryUsage: 4.11 KB - OpenTime: 8.683us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.48 KB - CloseTime: 18.853us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 121.499us - ExecTime: 116.171us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.47 KB - MemoryUsage: - Blocks: 3.34 KB - PeakMemoryUsage: 3.34 KB - OpenTime: 16.190us - ProjectionTime: 0ns - RowsProduced: 84 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s410ms PipelineXTask (index=15):(Active: 453.421us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 374.459us - CloseTime: 4.837us - GetBlockTime: 161.829us - OpenTime: 1.318us - PrepareTime: 67.282us - SinkTime: 149.470us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 430.69us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.264ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.928us - BuildRows: 98 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 95.812us - BuildTableInsertTime: 11.731us - BuildTableTime: 16.805us - CloseTime: 0ns - ExecTime: 156.533us - InputRows: 97 - MemoryUsage: - BuildBlocks: 3.78 KB - BuildKeyArena: 4.00 KB - HashTable: 908.00 B - PeakMemoryUsage: 4.66 KB - OpenTime: 10.938us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.67 KB - CloseTime: 3.879us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 107.624us - ExecTime: 186.128us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.28 KB - MemoryUsage: - Blocks: 3.69 KB - PeakMemoryUsage: 3.69 KB - OpenTime: 29.117us - ProjectionTime: 0ns - RowsProduced: 97 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=17):(Active: 390.560us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 323.437us - CloseTime: 3.267us - GetBlockTime: 106.4us - OpenTime: 2.43us - PrepareTime: 56.588us - SinkTime: 126.745us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 368.138us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.216ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.198us - BuildRows: 101 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 56.541us - BuildTableInsertTime: 19.186us - BuildTableTime: 22.735us - CloseTime: 0ns - ExecTime: 133.865us - InputRows: 100 - MemoryUsage: - BuildBlocks: 3.89 KB - BuildKeyArena: 4.00 KB - HashTable: 920.00 B - PeakMemoryUsage: 4.78 KB - OpenTime: 11.227us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 3.01 KB - CloseTime: 2.439us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 80.856us - ExecTime: 116.262us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.81 KB - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 1.97 KB - OpenTime: 15.792us - ProjectionTime: 0ns - RowsProduced: 100 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s410ms PipelineXTask (index=19):(Active: 462.203us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 371.208us - CloseTime: 9.790us - GetBlockTime: 113.955us - OpenTime: 1.137us - PrepareTime: 74.354us - SinkTime: 163.878us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 428.82us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.337ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.432us - BuildRows: 92 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 62.198us - BuildTableInsertTime: 29.282us - BuildTableTime: 52.862us - CloseTime: 0ns - ExecTime: 180.786us - InputRows: 91 - MemoryUsage: - BuildBlocks: 3.54 KB - BuildKeyArena: 4.00 KB - HashTable: 884.00 B - PeakMemoryUsage: 4.40 KB - OpenTime: 22.323us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.63 KB - CloseTime: 8.106us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 68.458us - ExecTime: 130.976us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.56 KB - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 19.699us - ProjectionTime: 0ns - RowsProduced: 91 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=21):(Active: 405.87us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 313.353us - CloseTime: 16.831us - GetBlockTime: 104.894us - OpenTime: 1.470us - PrepareTime: 67.514us - SinkTime: 130.815us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 363.811us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 703.185us HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.236us - BuildRows: 85 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.645us - BuildTableInsertTime: 18.25us - BuildTableTime: 25.689us - CloseTime: 0ns - ExecTime: 136.926us - InputRows: 84 - MemoryUsage: - BuildBlocks: 3.28 KB - BuildKeyArena: 4.00 KB - HashTable: 856.00 B - PeakMemoryUsage: 4.10 KB - OpenTime: 11.150us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.59 KB - CloseTime: 15.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 76.888us - ExecTime: 136.471us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.66 KB - MemoryUsage: - Blocks: 2.16 KB - PeakMemoryUsage: 2.16 KB - OpenTime: 25.44us - ProjectionTime: 0ns - RowsProduced: 84 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms PipelineXTask (index=23):(Active: 332.261us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 245.874us - CloseTime: 4.381us - GetBlockTime: 77.805us - OpenTime: 1.667us - PrepareTime: 74.952us - SinkTime: 119.943us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 314.8us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.567ms HASH_JOIN_SINK_OPERATOR (id=364): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.126us - BuildRows: 105 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.179us - BuildTableInsertTime: 29.637us - BuildTableTime: 33.570us - CloseTime: 0ns - ExecTime: 128.543us - InputRows: 104 - MemoryUsage: - BuildBlocks: 4.06 KB - BuildKeyArena: 4.00 KB - HashTable: 936.00 B - PeakMemoryUsage: 4.96 KB - OpenTime: 11.745us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=175): - BlocksProduced: 36 - BytesReceived: 2.91 KB - CloseTime: 3.568us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 85.591us - ExecTime: 93.234us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.09 KB - MemoryUsage: - Blocks: 3.03 KB - PeakMemoryUsage: 3.03 KB - OpenTime: 18.743us - ProjectionTime: 0ns - RowsProduced: 104 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s409ms Fragment 11: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.577ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.320ms - CloseTime: 34.736us - GetBlockTime: 1.251ms - OpenTime: 11.232us - PrepareTime: 203.221us - SinkTime: 975.867us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.532ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 612.826us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.726us - CompressTime: 0ns - ExecTime: 1.85ms - InputRows: 376 - LocalBytesSent: 96.42 KB - LocalSendTime: 162.313us - LocalSentRows: 376 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 103.809us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.650ms - RowsProduced: 376 - RpcAvgTime: 355.224us - RpcCount: 12 - RpcMaxTime: 680.432us - RpcMinTime: 11.319us - RpcSumTime: 4.262ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 171.195us - SplitBlockHashComputeTime: 37.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=362): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 11.91us - ExecTime: 1.183ms - InitProbeSideTime: 47.877us - JoinFilterTimer: 1.188us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 38.134us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.22us - ProbeFindNextTime: 0ns - ProbeRows: 187 - ProbeTime: 699.904us - ProbeWhenBuildSideOutputTime: 155.403us - ProbeWhenProbeSideOutputTime: 19.589us - ProbeWhenProcessHashTableTime: 53.978us - ProbeWhenSearchHashTableTime: 12.487us - ProjectionTime: 359.561us - RowsProduced: 376 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s905ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.71 KB - CloseTime: 3.968us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 80.150us - ExecTime: 107.954us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.69 KB - MemoryUsage: - Blocks: 15.25 KB - PeakMemoryUsage: 7.69 KB - OpenTime: 19.311us - ProjectionTime: 0ns - RowsProduced: 187 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s415ms PipelineXTask (index=2):(Active: 5.394ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.131ms - CloseTime: 41.706us - GetBlockTime: 2.839ms - OpenTime: 10.46us - PrepareTime: 205.482us - SinkTime: 2.102ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.341ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 803.128us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.708us - CompressTime: 0ns - ExecTime: 2.207ms - InputRows: 398 - LocalBytesSent: 102.28 KB - LocalSendTime: 289.135us - LocalSentRows: 398 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 104.25us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.143ms - RowsProduced: 398 - RpcAvgTime: 3.719us - RpcCount: 12 - RpcMaxTime: 30.723us - RpcMinTime: 13.915us - RpcSumTime: 44.638us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 461.606us - SplitBlockHashComputeTime: 128.694us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 19.68us - ExecTime: 2.645ms - InitProbeSideTime: 66.91us - JoinFilterTimer: 3.648us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 48.672us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.800us - ProbeFindNextTime: 0ns - ProbeRows: 173 - ProbeTime: 1.646ms - ProbeWhenBuildSideOutputTime: 404.970us - ProbeWhenProbeSideOutputTime: 46.695us - ProbeWhenProcessHashTableTime: 113.488us - ProbeWhenSearchHashTableTime: 31.704us - ProjectionTime: 759.798us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s905ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.29 KB - CloseTime: 6.988us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 130.846us - ExecTime: 201.931us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.63 KB - MemoryUsage: - Blocks: 14.19 KB - PeakMemoryUsage: 7.63 KB - OpenTime: 17.175us - ProjectionTime: 0ns - RowsProduced: 173 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s415ms PipelineXTask (index=4):(Active: 3.889ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.641ms - CloseTime: 24.178us - GetBlockTime: 1.878ms - OpenTime: 10.67us - PrepareTime: 203.231us - SinkTime: 1.627ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.850ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.22ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.92us - CompressTime: 0ns - ExecTime: 1.742ms - InputRows: 387 - LocalBytesSent: 99.32 KB - LocalSendTime: 251.643us - LocalSentRows: 387 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 113.426us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 799.394us - RowsProduced: 387 - RpcAvgTime: 4.716us - RpcCount: 12 - RpcMaxTime: 56.603us - RpcMinTime: 56.603us - RpcSumTime: 56.603us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 271.694us - SplitBlockHashComputeTime: 66.780us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 10.881us - ExecTime: 1.711ms - InitProbeSideTime: 51.731us - JoinFilterTimer: 1.794us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 22.55us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.608us - ProbeFindNextTime: 0ns - ProbeRows: 185 - ProbeTime: 1.57ms - ProbeWhenBuildSideOutputTime: 229.828us - ProbeWhenProbeSideOutputTime: 29.831us - ProbeWhenProcessHashTableTime: 68.256us - ProbeWhenSearchHashTableTime: 19.522us - ProjectionTime: 523.79us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s905ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.96 KB - CloseTime: 2.694us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 95.327us - ExecTime: 142.439us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.56 KB - MemoryUsage: - Blocks: 15.44 KB - PeakMemoryUsage: 7.56 KB - OpenTime: 14.70us - ProjectionTime: 0ns - RowsProduced: 185 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s414ms PipelineXTask (index=6):(Active: 5.904ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.641ms - CloseTime: 61.167us - GetBlockTime: 3.332ms - OpenTime: 6.292us - PrepareTime: 189.818us - SinkTime: 2.121ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.831ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 729.413us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.127us - CompressTime: 0ns - ExecTime: 2.217ms - InputRows: 398 - LocalBytesSent: 102.31 KB - LocalSendTime: 375.783us - LocalSentRows: 398 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 106.405us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.461ms - RowsProduced: 398 - RpcAvgTime: 241.681us - RpcCount: 12 - RpcMaxTime: 991.464us - RpcMinTime: 7.829us - RpcSumTime: 2.900ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 439.579us - SplitBlockHashComputeTime: 112.371us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 34.264us - ExecTime: 3.109ms - InitProbeSideTime: 119.740us - JoinFilterTimer: 3.8us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 27.228us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.291us - ProbeFindNextTime: 0ns - ProbeRows: 175 - ProbeTime: 2.42ms - ProbeWhenBuildSideOutputTime: 452.663us - ProbeWhenProbeSideOutputTime: 58.890us - ProbeWhenProcessHashTableTime: 189.530us - ProbeWhenSearchHashTableTime: 32.716us - ProjectionTime: 855.155us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s905ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.61 KB - CloseTime: 7.4us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 80.676us - ExecTime: 191.807us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.38 KB - MemoryUsage: - Blocks: 14.19 KB - PeakMemoryUsage: 7.38 KB - OpenTime: 13.893us - ProjectionTime: 0ns - RowsProduced: 175 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s415ms PipelineXTask (index=8):(Active: 2.577ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.368ms - CloseTime: 39.151us - GetBlockTime: 1.422ms - OpenTime: 6.335us - PrepareTime: 158.13us - SinkTime: 860.400us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.530ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.466ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.505us - CompressTime: 0ns - ExecTime: 961.221us - InputRows: 392 - LocalBytesSent: 100.72 KB - LocalSendTime: 165.722us - LocalSentRows: 392 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 89.831us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.266ms - RowsProduced: 392 - RpcAvgTime: 0ns - RpcCount: 12 - RpcMaxTime: 0ns - RpcMinTime: 0ns - RpcSumTime: 0ns - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 167.200us - SplitBlockHashComputeTime: 34.796us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 15.155us - ExecTime: 1.268ms - InitProbeSideTime: 53.60us - JoinFilterTimer: 906ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 21.976us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.57us - ProbeFindNextTime: 0ns - ProbeRows: 175 - ProbeTime: 760.807us - ProbeWhenBuildSideOutputTime: 217.738us - ProbeWhenProbeSideOutputTime: 19.123us - ProbeWhenProcessHashTableTime: 61.950us - ProbeWhenSearchHashTableTime: 18.399us - ProjectionTime: 348.865us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.72 KB - CloseTime: 5.664us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 95.133us - ExecTime: 176.970us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.88 KB - MemoryUsage: - Blocks: 14.06 KB - PeakMemoryUsage: 6.88 KB - OpenTime: 11.109us - ProjectionTime: 0ns - RowsProduced: 175 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s415ms PipelineXTask (index=10):(Active: 3.563ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.307ms - CloseTime: 36.273us - GetBlockTime: 1.871ms - OpenTime: 5.970us - PrepareTime: 208.105us - SinkTime: 1.292ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.518ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 982.999us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.915us - CompressTime: 0ns - ExecTime: 1.403ms - InputRows: 378 - LocalBytesSent: 97.13 KB - LocalSendTime: 211.367us - LocalSentRows: 378 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 103.274us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.898ms - RowsProduced: 378 - RpcAvgTime: 1.482us - RpcCount: 12 - RpcMaxTime: 17.786us - RpcMinTime: 17.786us - RpcSumTime: 17.786us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 277.8us - SplitBlockHashComputeTime: 68.522us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 14.807us - ExecTime: 1.731ms - InitProbeSideTime: 52.797us - JoinFilterTimer: 1.980us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 26.344us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.591us - ProbeFindNextTime: 0ns - ProbeRows: 174 - ProbeTime: 1.103ms - ProbeWhenBuildSideOutputTime: 281.64us - ProbeWhenProbeSideOutputTime: 34.518us - ProbeWhenProcessHashTableTime: 77.245us - ProbeWhenSearchHashTableTime: 19.881us - ProjectionTime: 489.662us - RowsProduced: 378 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.75 KB - CloseTime: 5.130us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 83.819us - ExecTime: 161.976us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.19 KB - MemoryUsage: - Blocks: 14.44 KB - PeakMemoryUsage: 7.19 KB - OpenTime: 39.515us - ProjectionTime: 0ns - RowsProduced: 174 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s415ms PipelineXTask (index=12):(Active: 4.455ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.197ms - CloseTime: 85.709us - GetBlockTime: 2.23ms - OpenTime: 7.730us - PrepareTime: 157.830us - SinkTime: 2.59ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.14ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.786ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.189us - CompressTime: 0ns - ExecTime: 2.156ms - InputRows: 367 - LocalBytesSent: 94.09 KB - LocalSendTime: 626.240us - LocalSentRows: 367 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 92.488us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.379ms - RowsProduced: 367 - RpcAvgTime: 543.526us - RpcCount: 12 - RpcMaxTime: 1.524ms - RpcMinTime: 837ns - RpcSumTime: 6.522ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 445.187us - SplitBlockHashComputeTime: 44.49us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 68.607us - ExecTime: 1.927ms - InitProbeSideTime: 47.554us - JoinFilterTimer: 1.244us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 22.47us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.354us - ProbeFindNextTime: 0ns - ProbeRows: 177 - ProbeTime: 1.217ms - ProbeWhenBuildSideOutputTime: 274.226us - ProbeWhenProbeSideOutputTime: 27.133us - ProbeWhenProcessHashTableTime: 114.672us - ProbeWhenSearchHashTableTime: 14.153us - ProjectionTime: 499.734us - RowsProduced: 367 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 4.00 KB - CloseTime: 4.346us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 73.357us - ExecTime: 111.249us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.81 KB - MemoryUsage: - Blocks: 14.63 KB - PeakMemoryUsage: 6.81 KB - OpenTime: 12.898us - ProjectionTime: 0ns - RowsProduced: 177 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s414ms PipelineXTask (index=14):(Active: 4.497ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.164ms - CloseTime: 110.301us - GetBlockTime: 2.233ms - OpenTime: 12.670us - PrepareTime: 191.360us - SinkTime: 1.795ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.363ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.300ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 40.24 KB - CloseTime: 26.890us - CompressTime: 0ns - ExecTime: 1.930ms - InputRows: 383 - LocalBytesSent: 0.00 - LocalSendTime: 280.492us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 117.626us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.314ms - RowsProduced: 383 - RpcAvgTime: 974.916us - RpcCount: 12 - RpcMaxTime: 1.507ms - RpcMinTime: 1.409ms - RpcSumTime: 11.698ms - SerializeBatchTime: 117.396us - SplitBlockDistributeByChannelTime: 411.26us - SplitBlockHashComputeTime: 97.896us - UncompressedRowBatchSize: 105.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 59.404us - ExecTime: 2.152ms - InitProbeSideTime: 87.257us - JoinFilterTimer: 2.133us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 29.310us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.238us - ProbeFindNextTime: 0ns - ProbeRows: 171 - ProbeTime: 1.292ms - ProbeWhenBuildSideOutputTime: 276.18us - ProbeWhenProbeSideOutputTime: 37.463us - ProbeWhenProcessHashTableTime: 97.110us - ProbeWhenSearchHashTableTime: 19.106us - ProjectionTime: 610.467us - RowsProduced: 383 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.25 KB - CloseTime: 9.428us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 105.597us - ExecTime: 128.163us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.81 KB - MemoryUsage: - Blocks: 14.31 KB - PeakMemoryUsage: 7.81 KB - OpenTime: 9.219us - ProjectionTime: 0ns - RowsProduced: 171 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s414ms PipelineXTask (index=16):(Active: 4.74ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.815ms - CloseTime: 32.669us - GetBlockTime: 2.73ms - OpenTime: 10.391us - PrepareTime: 208.983us - SinkTime: 1.602ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.30ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.979ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 41.30 KB - CloseTime: 11.778us - CompressTime: 0ns - ExecTime: 1.699ms - InputRows: 393 - LocalBytesSent: 0.00 - LocalSendTime: 242.982us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 111.614us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.436ms - RowsProduced: 393 - RpcAvgTime: 495.118us - RpcCount: 12 - RpcMaxTime: 1.537ms - RpcMinTime: 23.918us - RpcSumTime: 5.941ms - SerializeBatchTime: 118.543us - SplitBlockDistributeByChannelTime: 270.94us - SplitBlockHashComputeTime: 88.658us - UncompressedRowBatchSize: 108.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 13.578us - ExecTime: 1.953ms - InitProbeSideTime: 54.257us - JoinFilterTimer: 1.944us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 30.555us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.404us - ProbeFindNextTime: 0ns - ProbeRows: 185 - ProbeTime: 1.188ms - ProbeWhenBuildSideOutputTime: 295.756us - ProbeWhenProbeSideOutputTime: 32.394us - ProbeWhenProcessHashTableTime: 75.791us - ProbeWhenSearchHashTableTime: 19.936us - ProjectionTime: 607.56us - RowsProduced: 393 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.93 KB - CloseTime: 4.959us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 106.726us - ExecTime: 114.701us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.31 KB - MemoryUsage: - Blocks: 15.06 KB - PeakMemoryUsage: 7.31 KB - OpenTime: 11.279us - ProjectionTime: 0ns - RowsProduced: 185 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s414ms PipelineXTask (index=18):(Active: 3.754ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.538ms - CloseTime: 29.373us - GetBlockTime: 1.940ms - OpenTime: 7.834us - PrepareTime: 172.725us - SinkTime: 1.438ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.715ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.913ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.960us - CompressTime: 0ns - ExecTime: 1.539ms - InputRows: 389 - LocalBytesSent: 99.96 KB - LocalSendTime: 228.215us - LocalSentRows: 389 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 98.842us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.920ms - RowsProduced: 389 - RpcAvgTime: 1.319us - RpcCount: 12 - RpcMaxTime: 15.90us - RpcMinTime: 740ns - RpcSumTime: 15.830us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 276.813us - SplitBlockHashComputeTime: 85.477us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 11.380us - ExecTime: 1.787ms - InitProbeSideTime: 77.589us - JoinFilterTimer: 1.846us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 24.366us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.900us - ProbeFindNextTime: 0ns - ProbeRows: 170 - ProbeTime: 1.129ms - ProbeWhenBuildSideOutputTime: 266.236us - ProbeWhenProbeSideOutputTime: 48.113us - ProbeWhenProcessHashTableTime: 65.195us - ProbeWhenSearchHashTableTime: 29.344us - ProjectionTime: 516.118us - RowsProduced: 389 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.63 KB - CloseTime: 5.559us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 85.315us - ExecTime: 148.198us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.94 KB - MemoryUsage: - Blocks: 14.13 KB - PeakMemoryUsage: 6.94 KB - OpenTime: 11.869us - ProjectionTime: 0ns - RowsProduced: 170 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s414ms PipelineXTask (index=20):(Active: 4.544ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 4.317ms - CloseTime: 43.294us - GetBlockTime: 2.272ms - OpenTime: 7.612us - PrepareTime: 169.392us - SinkTime: 1.896ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.489ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.962ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 40.40 KB - CloseTime: 15.371us - CompressTime: 0ns - ExecTime: 1.991ms - InputRows: 384 - LocalBytesSent: 0.00 - LocalSendTime: 273.801us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 90.584us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.415ms - RowsProduced: 384 - RpcAvgTime: 626.394us - RpcCount: 12 - RpcMaxTime: 1.547ms - RpcMinTime: 18.481us - RpcSumTime: 7.516ms - SerializeBatchTime: 147.730us - SplitBlockDistributeByChannelTime: 331.399us - SplitBlockHashComputeTime: 80.526us - UncompressedRowBatchSize: 105.47 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 18.972us - ExecTime: 2.94ms - InitProbeSideTime: 58.546us - JoinFilterTimer: 2.423us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 22.946us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.878us - ProbeFindNextTime: 0ns - ProbeRows: 187 - ProbeTime: 1.300ms - ProbeWhenBuildSideOutputTime: 272.411us - ProbeWhenProbeSideOutputTime: 54.360us - ProbeWhenProcessHashTableTime: 74.974us - ProbeWhenSearchHashTableTime: 22.208us - ProjectionTime: 619.319us - RowsProduced: 384 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 4.10 KB - CloseTime: 5.799us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 86.790us - ExecTime: 179.65us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.19 KB - MemoryUsage: - Blocks: 15.31 KB - PeakMemoryUsage: 7.19 KB - OpenTime: 16.137us - ProjectionTime: 0ns - RowsProduced: 187 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s414ms PipelineXTask (index=22):(Active: 2.199ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.946ms - CloseTime: 46.362us - GetBlockTime: 1.33ms - OpenTime: 7.382us - PrepareTime: 193.292us - SinkTime: 833.705us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.144ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.235ms DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.202us - CompressTime: 0ns - ExecTime: 946.417us - InputRows: 382 - LocalBytesSent: 97.93 KB - LocalSendTime: 130.98us - LocalSentRows: 382 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 106.867us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 751.684us - RowsProduced: 382 - RpcAvgTime: 12.819us - RpcCount: 12 - RpcMaxTime: 95.520us - RpcMinTime: 8.153us - RpcSumTime: 153.832us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 178.553us - SplitBlockHashComputeTime: 32.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=362): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 29.92us - ExecTime: 982.504us - InitProbeSideTime: 33.978us - JoinFilterTimer: 1.166us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 20.832us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.12us - ProbeFindNextTime: 0ns - ProbeRows: 180 - ProbeTime: 604.466us - ProbeWhenBuildSideOutputTime: 122.678us - ProbeWhenProbeSideOutputTime: 16.546us - ProbeWhenProcessHashTableTime: 37.154us - ProbeWhenSearchHashTableTime: 10.437us - ProjectionTime: 279.126us - RowsProduced: 382 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s907ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.80 KB - CloseTime: 5.114us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 123.12us - ExecTime: 103.570us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.50 KB - MemoryUsage: - Blocks: 14.94 KB - PeakMemoryUsage: 7.50 KB - OpenTime: 28.917us - ProjectionTime: 0ns - RowsProduced: 180 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s414ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 318.95us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 238.372us - CloseTime: 7.690us - GetBlockTime: 23.560us - OpenTime: 2.486us - PrepareTime: 64.891us - SinkTime: 187.593us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 302.291us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 300.776us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 783ns - BuildRows: 377 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.764us - BuildTableInsertTime: 27.260us - BuildTableTime: 38.305us - CloseTime: 0ns - ExecTime: 214.8us - InputRows: 376 - MemoryUsage: - BuildBlocks: 93.11 KB - BuildKeyArena: 16.00 KB - HashTable: 3.84 KB - PeakMemoryUsage: 108.95 KB - OpenTime: 26.912us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.910us - RuntimeFilterComputeTime: 34.472us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 38.54 KB - CloseTime: 5.909us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 134.5us - ExecTime: 38.911us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 9.47 KB - OpenTime: 10.435us - ProjectionTime: 0ns - RowsProduced: 376 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=3):(Active: 385.913us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 320.291us - CloseTime: 5.348us - GetBlockTime: 18.581us - OpenTime: 2.433us - PrepareTime: 52.807us - SinkTime: 272.964us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 371.753us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 284.454us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.506us - BuildRows: 399 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 122.153us - BuildTableInsertTime: 34.447us - BuildTableTime: 37.299us - CloseTime: 0ns - ExecTime: 291.136us - InputRows: 398 - MemoryUsage: - BuildBlocks: 98.78 KB - BuildKeyArena: 16.00 KB - HashTable: 3.95 KB - PeakMemoryUsage: 114.73 KB - OpenTime: 19.468us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 22.172us - RuntimeFilterComputeTime: 23.649us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.5us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.728us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 14.920us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=5):(Active: 319.201us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 256.831us - CloseTime: 5.818us - GetBlockTime: 17.76us - OpenTime: 2.565us - PrepareTime: 48.702us - SinkTime: 214.472us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 305.53us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 303.359us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.31us - BuildRows: 388 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 80.797us - BuildTableInsertTime: 30.642us - BuildTableTime: 32.679us - CloseTime: 0ns - ExecTime: 232.891us - InputRows: 387 - MemoryUsage: - BuildBlocks: 95.92 KB - BuildKeyArena: 16.00 KB - HashTable: 3.90 KB - PeakMemoryUsage: 111.81 KB - OpenTime: 19.90us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.607us - RuntimeFilterComputeTime: 25.874us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 39.66 KB - CloseTime: 4.479us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 75.363us - ExecTime: 34.46us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 13.377us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=7):(Active: 304.943us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 223.413us - CloseTime: 3.659us - GetBlockTime: 21.255us - OpenTime: 2.993us - PrepareTime: 69.154us - SinkTime: 177.755us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 292.821us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.709ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 796ns - BuildRows: 399 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 68.260us - BuildTableInsertTime: 37.5us - BuildTableTime: 38.743us - CloseTime: 0ns - ExecTime: 193.965us - InputRows: 398 - MemoryUsage: - BuildBlocks: 98.81 KB - BuildKeyArena: 16.00 KB - HashTable: 3.95 KB - PeakMemoryUsage: 114.75 KB - OpenTime: 16.517us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.463us - RuntimeFilterComputeTime: 9.353us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 40.78 KB - CloseTime: 3.212us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 110.496us - ExecTime: 43.575us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 19.650us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s320ms PipelineXTask (index=9):(Active: 388.546us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 320.965us - CloseTime: 5.827us - GetBlockTime: 29.248us - OpenTime: 2.980us - PrepareTime: 52.879us - SinkTime: 257.572us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 372.81us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.746ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.203us - BuildRows: 393 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 97.858us - BuildTableInsertTime: 32.891us - BuildTableTime: 35.392us - CloseTime: 0ns - ExecTime: 280.127us - InputRows: 392 - MemoryUsage: - BuildBlocks: 97.28 KB - BuildKeyArena: 16.00 KB - HashTable: 3.92 KB - PeakMemoryUsage: 113.19 KB - OpenTime: 23.572us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.819us - RuntimeFilterComputeTime: 33.28us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 40.15 KB - CloseTime: 4.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 152.375us - ExecTime: 43.817us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 12.0us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=11):(Active: 272.40us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 191.170us - CloseTime: 3.502us - GetBlockTime: 42.444us - OpenTime: 3.327us - PrepareTime: 69.234us - SinkTime: 125.307us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 260.236us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 478.409us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 940ns - BuildRows: 379 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 30.337us - BuildTableInsertTime: 26.169us - BuildTableTime: 27.618us - CloseTime: 0ns - ExecTime: 161.456us - InputRows: 378 - MemoryUsage: - BuildBlocks: 93.81 KB - BuildKeyArena: 16.00 KB - HashTable: 3.85 KB - PeakMemoryUsage: 109.66 KB - OpenTime: 36.88us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.971us - RuntimeFilterComputeTime: 20.116us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.564us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.863us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 136.12 KB - OpenTime: 11.653us - ProjectionTime: 0ns - RowsProduced: 378 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms PipelineXTask (index=13):(Active: 397.410us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 320.515us - CloseTime: 5.870us - GetBlockTime: 16.666us - OpenTime: 3.574us - PrepareTime: 62.273us - SinkTime: 260.160us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 382.225us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 326.974us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 961ns - BuildRows: 368 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 91.931us - BuildTableInsertTime: 34.694us - BuildTableTime: 36.967us - CloseTime: 0ns - ExecTime: 277.144us - InputRows: 367 - MemoryUsage: - BuildBlocks: 90.86 KB - BuildKeyArena: 16.00 KB - HashTable: 3.80 KB - PeakMemoryUsage: 106.66 KB - OpenTime: 17.861us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.760us - RuntimeFilterComputeTime: 32.468us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.759us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.175us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 134.77 KB - OpenTime: 16.272us - ProjectionTime: 0ns - RowsProduced: 367 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms PipelineXTask (index=15):(Active: 414.179us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 345.441us - CloseTime: 4.443us - GetBlockTime: 35.279us - OpenTime: 2.640us - PrepareTime: 56.755us - SinkTime: 283.518us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 399.164us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.469ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 868ns - BuildRows: 384 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 68.254us - BuildTableInsertTime: 32.48us - BuildTableTime: 35.280us - CloseTime: 0ns - ExecTime: 304.88us - InputRows: 383 - MemoryUsage: - BuildBlocks: 95.11 KB - BuildKeyArena: 16.00 KB - HashTable: 3.88 KB - PeakMemoryUsage: 110.98 KB - OpenTime: 21.181us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 102.307us - RuntimeFilterComputeTime: 14.250us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.194us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 51.139us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 138.83 KB - OpenTime: 13.626us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=17):(Active: 322.458us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 257.92us - CloseTime: 3.356us - GetBlockTime: 35.640us - OpenTime: 2.166us - PrepareTime: 54.330us - SinkTime: 189.961us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 309.932us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.283ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 981ns - BuildRows: 394 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 86.580us - BuildTableInsertTime: 28.72us - BuildTableTime: 29.827us - CloseTime: 0ns - ExecTime: 204.86us - InputRows: 393 - MemoryUsage: - BuildBlocks: 97.39 KB - BuildKeyArena: 16.00 KB - HashTable: 3.93 KB - PeakMemoryUsage: 113.31 KB - OpenTime: 14.893us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.303us - RuntimeFilterComputeTime: 16.701us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.593us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 146.89 KB - OpenTime: 19.102us - ProjectionTime: 0ns - RowsProduced: 393 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=19):(Active: 749.408us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 422.946us - CloseTime: 246.959us - GetBlockTime: 27.114us - OpenTime: 2.210us - PrepareTime: 71.896us - SinkTime: 335.904us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 473.86us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.383ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.636us - BuildRows: 390 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 141.944us - BuildTableInsertTime: 29.275us - BuildTableTime: 32.555us - CloseTime: 0ns - ExecTime: 360.57us - InputRows: 389 - MemoryUsage: - BuildBlocks: 96.54 KB - BuildKeyArena: 16.00 KB - HashTable: 3.91 KB - PeakMemoryUsage: 112.44 KB - OpenTime: 26.42us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.769us - RuntimeFilterComputeTime: 19.453us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 245.177us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 283.415us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 142.83 KB - OpenTime: 13.636us - ProjectionTime: 0ns - RowsProduced: 389 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s320ms PipelineXTask (index=21):(Active: 309.194us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 244.121us - CloseTime: 3.9us - GetBlockTime: 14.673us - OpenTime: 2.473us - PrepareTime: 54.519us - SinkTime: 203.438us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 295.314us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.179ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.466us - BuildRows: 385 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 82.485us - BuildTableInsertTime: 33.797us - BuildTableTime: 35.572us - CloseTime: 0ns - ExecTime: 214.960us - InputRows: 384 - MemoryUsage: - BuildBlocks: 95.15 KB - BuildKeyArena: 16.00 KB - HashTable: 3.88 KB - PeakMemoryUsage: 111.02 KB - OpenTime: 12.76us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.699us - RuntimeFilterComputeTime: 13.797us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 39.46 KB - CloseTime: 2.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 79.892us - ExecTime: 32.526us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 16.905us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=23):(Active: 291.98us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 191.43us - CloseTime: 23.282us - GetBlockTime: 37.762us - OpenTime: 2.353us - PrepareTime: 69.117us - SinkTime: 128.804us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 260.39us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.302ms HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.160us - BuildRows: 383 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.687us - BuildTableInsertTime: 37.662us - BuildTableTime: 39.522us - CloseTime: 0ns - ExecTime: 143.181us - InputRows: 382 - MemoryUsage: - BuildBlocks: 94.57 KB - BuildKeyArena: 16.00 KB - HashTable: 3.87 KB - PeakMemoryUsage: 110.44 KB - OpenTime: 14.540us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.485us - RuntimeFilterComputeTime: 14.656us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 39.29 KB - CloseTime: 22.402us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 144.671us - ExecTime: 77.873us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 18.644us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.253ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.943ms - CloseTime: 28.563us - GetBlockTime: 1.27ms - OpenTime: 5.90us - PrepareTime: 268.434us - SinkTime: 823.572us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.214ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 339.456us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.640us - CompressTime: 0ns - ExecTime: 979.77us - InputRows: 385 - LocalBytesSent: 98.85 KB - LocalSendTime: 127.504us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 149.550us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.576ms - RowsProduced: 385 - RpcAvgTime: 1.251ms - RpcCount: 12 - RpcMaxTime: 1.397ms - RpcMinTime: 1.39ms - RpcSumTime: 15.17ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 152.213us - SplitBlockHashComputeTime: 35.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=362): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 12.801us - ExecTime: 990.254us - InitProbeSideTime: 34.262us - JoinFilterTimer: 953ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 44.361us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.807us - ProbeFindNextTime: 0ns - ProbeRows: 172 - ProbeTime: 582.601us - ProbeWhenBuildSideOutputTime: 129.209us - ProbeWhenProbeSideOutputTime: 19.530us - ProbeWhenProcessHashTableTime: 37.432us - ProbeWhenSearchHashTableTime: 12.138us - ProjectionTime: 282.409us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s935ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.67 KB - CloseTime: 3.240us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 81.338us - ExecTime: 84.550us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.81 KB - MemoryUsage: - Blocks: 14.00 KB - PeakMemoryUsage: 6.81 KB - OpenTime: 17.728us - ProjectionTime: 0ns - RowsProduced: 172 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=2):(Active: 4.647ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.314ms - CloseTime: 53.143us - GetBlockTime: 2.242ms - OpenTime: 4.882us - PrepareTime: 269.381us - SinkTime: 1.953ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 293.111us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.978us - CompressTime: 0ns - ExecTime: 2.133ms - InputRows: 385 - LocalBytesSent: 98.92 KB - LocalSendTime: 312.647us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 170.512us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 995.611us - RowsProduced: 385 - RpcAvgTime: 1.327ms - RpcCount: 12 - RpcMaxTime: 1.845ms - RpcMinTime: 562.0us - RpcSumTime: 15.928ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 292.510us - SplitBlockHashComputeTime: 81.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 HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 20.820us - ExecTime: 2.112ms - InitProbeSideTime: 52.781us - JoinFilterTimer: 2.263us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 32.121us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.173us - ProbeFindNextTime: 0ns - ProbeRows: 177 - ProbeTime: 1.297ms - ProbeWhenBuildSideOutputTime: 276.450us - ProbeWhenProbeSideOutputTime: 36.157us - ProbeWhenProcessHashTableTime: 109.883us - ProbeWhenSearchHashTableTime: 21.721us - ProjectionTime: 625.753us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s935ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.69 KB - CloseTime: 7.224us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 83.889us - ExecTime: 147.246us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.50 KB - MemoryUsage: - Blocks: 14.63 KB - PeakMemoryUsage: 7.50 KB - OpenTime: 22.130us - ProjectionTime: 0ns - RowsProduced: 177 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=4):(Active: 2.381ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.84ms - CloseTime: 34.662us - GetBlockTime: 1.180ms - OpenTime: 4.828us - PrepareTime: 251.884us - SinkTime: 832.894us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.338ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 456.201us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.540us - CompressTime: 0ns - ExecTime: 975.540us - InputRows: 380 - LocalBytesSent: 97.54 KB - LocalSendTime: 131.755us - LocalSentRows: 380 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 138.316us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.495ms - RowsProduced: 380 - RpcAvgTime: 1.465ms - RpcCount: 12 - RpcMaxTime: 2.639ms - RpcMinTime: 1.59ms - RpcSumTime: 17.583ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 184.990us - SplitBlockHashComputeTime: 36.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=362): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 19.341us - ExecTime: 1.127ms - InitProbeSideTime: 39.997us - JoinFilterTimer: 1.172us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 40.328us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.680us - ProbeFindNextTime: 0ns - ProbeRows: 184 - ProbeTime: 694.304us - ProbeWhenBuildSideOutputTime: 148.324us - ProbeWhenProbeSideOutputTime: 25.313us - ProbeWhenProcessHashTableTime: 71.441us - ProbeWhenSearchHashTableTime: 11.969us - ProjectionTime: 305.294us - RowsProduced: 380 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s935ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.55 KB - CloseTime: 2.896us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 81.793us - ExecTime: 105.60us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.06 KB - MemoryUsage: - Blocks: 15.00 KB - PeakMemoryUsage: 8.06 KB - OpenTime: 20.310us - ProjectionTime: 0ns - RowsProduced: 184 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=6):(Active: 4.252ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.906ms - CloseTime: 53.788us - GetBlockTime: 2.269ms - OpenTime: 7.660us - PrepareTime: 279.25us - SinkTime: 1.504ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.189ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 481.98us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.590us - CompressTime: 0ns - ExecTime: 1.659ms - InputRows: 372 - LocalBytesSent: 95.36 KB - LocalSendTime: 276.901us - LocalSentRows: 372 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 139.109us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 960.144us - RowsProduced: 372 - RpcAvgTime: 1.543ms - RpcCount: 12 - RpcMaxTime: 1.834ms - RpcMinTime: 996.632us - RpcSumTime: 18.524ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 306.581us - SplitBlockHashComputeTime: 78.121us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 17.96us - ExecTime: 2.149ms - InitProbeSideTime: 68.99us - JoinFilterTimer: 2.244us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 46.12us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.737us - ProbeFindNextTime: 0ns - ProbeRows: 175 - ProbeTime: 1.313ms - ProbeWhenBuildSideOutputTime: 279.743us - ProbeWhenProbeSideOutputTime: 38.505us - ProbeWhenProcessHashTableTime: 75.464us - ProbeWhenSearchHashTableTime: 25.32us - ProjectionTime: 651.385us - RowsProduced: 372 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s935ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.67 KB - CloseTime: 5.852us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 76.720us - ExecTime: 152.741us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.19 KB - MemoryUsage: - Blocks: 14.69 KB - PeakMemoryUsage: 7.19 KB - OpenTime: 29.904us - ProjectionTime: 0ns - RowsProduced: 175 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=8):(Active: 3.546ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.242ms - CloseTime: 42.752us - GetBlockTime: 1.626ms - OpenTime: 14.812us - PrepareTime: 240.635us - SinkTime: 1.513ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.494ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 310.791us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 38.28 KB - CloseTime: 16.896us - CompressTime: 0ns - ExecTime: 1.662ms - InputRows: 361 - LocalBytesSent: 0.00 - LocalSendTime: 204.805us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 133.53 KB - MergeBlockTime: 0ns - OpenTime: 139.666us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.678ms - RowsProduced: 361 - RpcAvgTime: 2.171ms - RpcCount: 12 - RpcMaxTime: 2.527ms - RpcMinTime: 1.681ms - RpcSumTime: 26.55ms - SerializeBatchTime: 96.798us - SplitBlockDistributeByChannelTime: 266.274us - SplitBlockHashComputeTime: 55.140us - UncompressedRowBatchSize: 99.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 17.351us - ExecTime: 1.535ms - InitProbeSideTime: 50.746us - JoinFilterTimer: 1.574us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 49.501us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.394us - ProbeFindNextTime: 0ns - ProbeRows: 168 - ProbeTime: 961.805us - ProbeWhenBuildSideOutputTime: 226.979us - ProbeWhenProbeSideOutputTime: 29.403us - ProbeWhenProcessHashTableTime: 72.480us - ProbeWhenSearchHashTableTime: 17.824us - ProjectionTime: 425.50us - RowsProduced: 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s935ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.45 KB - CloseTime: 5.428us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 98.779us - ExecTime: 133.260us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.25 KB - MemoryUsage: - Blocks: 14.13 KB - PeakMemoryUsage: 7.25 KB - OpenTime: 17.147us - ProjectionTime: 0ns - RowsProduced: 168 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=10):(Active: 2.727ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.436ms - CloseTime: 45.403us - GetBlockTime: 1.332ms - OpenTime: 4.436us - PrepareTime: 236.171us - SinkTime: 1.24ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.675ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 266.498us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.69 KB - CloseTime: 20.228us - CompressTime: 0ns - ExecTime: 1.169ms - InputRows: 377 - LocalBytesSent: 0.00 - LocalSendTime: 140.865us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 130.996us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.214ms - RowsProduced: 377 - RpcAvgTime: 2.1ms - RpcCount: 12 - RpcMaxTime: 2.645ms - RpcMinTime: 1.154ms - RpcSumTime: 24.14ms - SerializeBatchTime: 75.800us - SplitBlockDistributeByChannelTime: 185.414us - SplitBlockHashComputeTime: 50.354us - UncompressedRowBatchSize: 103.62 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 16.208us - ExecTime: 1.271ms - InitProbeSideTime: 43.341us - JoinFilterTimer: 1.431us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 31.553us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.459us - ProbeFindNextTime: 0ns - ProbeRows: 175 - ProbeTime: 788.592us - ProbeWhenBuildSideOutputTime: 181.259us - ProbeWhenProbeSideOutputTime: 40.49us - ProbeWhenProcessHashTableTime: 42.906us - ProbeWhenSearchHashTableTime: 14.525us - ProjectionTime: 364.244us - RowsProduced: 377 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s935ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.92 KB - CloseTime: 5.677us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 118.726us - ExecTime: 91.374us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.81 KB - MemoryUsage: - Blocks: 14.25 KB - PeakMemoryUsage: 6.81 KB - OpenTime: 15.576us - ProjectionTime: 0ns - RowsProduced: 175 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=12):(Active: 3.938ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.583ms - CloseTime: 72.834us - GetBlockTime: 1.593ms - OpenTime: 5.360us - PrepareTime: 269.981us - SinkTime: 1.892ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.500ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 407.329us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 41.932us - CompressTime: 0ns - ExecTime: 2.89ms - InputRows: 392 - LocalBytesSent: 100.57 KB - LocalSendTime: 251.30us - LocalSentRows: 392 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 163.98us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.348ms - RowsProduced: 392 - RpcAvgTime: 2.182ms - RpcCount: 12 - RpcMaxTime: 2.535ms - RpcMinTime: 1.719ms - RpcSumTime: 26.188ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 248.879us - SplitBlockHashComputeTime: 63.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 HASH_JOIN_OPERATOR (id=362): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 24.125us - ExecTime: 1.535ms - InitProbeSideTime: 53.750us - JoinFilterTimer: 2.47us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 37.224us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.833us - ProbeFindNextTime: 0ns - ProbeRows: 195 - ProbeTime: 926.264us - ProbeWhenBuildSideOutputTime: 213.256us - ProbeWhenProbeSideOutputTime: 26.549us - ProbeWhenProcessHashTableTime: 81.711us - ProbeWhenSearchHashTableTime: 15.791us - ProjectionTime: 435.588us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s935ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 4.20 KB - CloseTime: 4.182us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 92.167us - ExecTime: 111.515us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.56 KB - MemoryUsage: - Blocks: 15.88 KB - PeakMemoryUsage: 7.56 KB - OpenTime: 28.627us - ProjectionTime: 0ns - RowsProduced: 195 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=14):(Active: 2.750ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.453ms - CloseTime: 38.267us - GetBlockTime: 1.314ms - OpenTime: 9.616us - PrepareTime: 242.834us - SinkTime: 1.59ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.691ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 330.459us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.881us - CompressTime: 0ns - ExecTime: 1.200ms - InputRows: 387 - LocalBytesSent: 99.36 KB - LocalSendTime: 165.145us - LocalSentRows: 387 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 128.659us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 661.626us - RowsProduced: 387 - RpcAvgTime: 714.526us - RpcCount: 12 - RpcMaxTime: 957.988us - RpcMinTime: 492.775us - RpcSumTime: 8.574ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 192.190us - SplitBlockHashComputeTime: 44.461us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 11.809us - ExecTime: 1.246ms - InitProbeSideTime: 44.619us - JoinFilterTimer: 1.173us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 37.149us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.138us - ProbeFindNextTime: 0ns - ProbeRows: 168 - ProbeTime: 747.454us - ProbeWhenBuildSideOutputTime: 156.513us - ProbeWhenProbeSideOutputTime: 21.545us - ProbeWhenProcessHashTableTime: 49.183us - ProbeWhenSearchHashTableTime: 14.396us - ProjectionTime: 376.548us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s938ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.48 KB - CloseTime: 4.309us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 93.664us - ExecTime: 101.93us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.19 KB - MemoryUsage: - Blocks: 13.94 KB - PeakMemoryUsage: 7.19 KB - OpenTime: 17.51us - ProjectionTime: 0ns - RowsProduced: 168 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=16):(Active: 3.554ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.270ms - CloseTime: 47.158us - GetBlockTime: 1.739ms - OpenTime: 4.980us - PrepareTime: 227.586us - SinkTime: 1.420ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.416ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 536.666us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 41.25 KB - CloseTime: 15.483us - CompressTime: 0ns - ExecTime: 1.551ms - InputRows: 391 - LocalBytesSent: 0.00 - LocalSendTime: 300.987us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 124.697us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.554ms - RowsProduced: 391 - RpcAvgTime: 771.946us - RpcCount: 12 - RpcMaxTime: 1.48ms - RpcMinTime: 587.298us - RpcSumTime: 9.263ms - SerializeBatchTime: 111.501us - SplitBlockDistributeByChannelTime: 245.195us - SplitBlockHashComputeTime: 67.483us - UncompressedRowBatchSize: 107.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 18.482us - ExecTime: 1.642ms - InitProbeSideTime: 47.626us - JoinFilterTimer: 1.677us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 26.543us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.264us - ProbeFindNextTime: 0ns - ProbeRows: 189 - ProbeTime: 1.35ms - ProbeWhenBuildSideOutputTime: 244.702us - ProbeWhenProbeSideOutputTime: 28.665us - ProbeWhenProcessHashTableTime: 72.774us - ProbeWhenSearchHashTableTime: 19.658us - ProjectionTime: 454.714us - RowsProduced: 391 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s937ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.93 KB - CloseTime: 3.846us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 92.962us - ExecTime: 116.10us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.63 KB - MemoryUsage: - Blocks: 15.31 KB - PeakMemoryUsage: 7.63 KB - OpenTime: 23.207us - ProjectionTime: 0ns - RowsProduced: 189 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=18):(Active: 3.489ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.197ms - CloseTime: 43.863us - GetBlockTime: 1.704ms - OpenTime: 4.523us - PrepareTime: 238.909us - SinkTime: 1.375ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.426ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 330.490us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.201us - CompressTime: 0ns - ExecTime: 1.512ms - InputRows: 388 - LocalBytesSent: 99.54 KB - LocalSendTime: 207.642us - LocalSentRows: 388 - MemoryUsage: - PeakMemoryUsage: 141.53 KB - MergeBlockTime: 0ns - OpenTime: 130.741us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.666ms - RowsProduced: 388 - RpcAvgTime: 756.682us - RpcCount: 12 - RpcMaxTime: 1.153ms - RpcMinTime: 608.408us - RpcSumTime: 9.80ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 270.37us - SplitBlockHashComputeTime: 64.601us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 14.245us - ExecTime: 1.612ms - InitProbeSideTime: 63.188us - JoinFilterTimer: 1.974us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 29.878us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.892us - ProbeFindNextTime: 0ns - ProbeRows: 188 - ProbeTime: 1.6ms - ProbeWhenBuildSideOutputTime: 255.476us - ProbeWhenProbeSideOutputTime: 28.557us - ProbeWhenProcessHashTableTime: 77.243us - ProbeWhenSearchHashTableTime: 20.963us - ProjectionTime: 474.887us - RowsProduced: 388 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s937ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.96 KB - CloseTime: 13.508us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 88.160us - ExecTime: 118.5us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.75 KB - MemoryUsage: - Blocks: 15.56 KB - PeakMemoryUsage: 7.75 KB - OpenTime: 19.522us - ProjectionTime: 0ns - RowsProduced: 188 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=20):(Active: 3.423ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.130ms - CloseTime: 40.490us - GetBlockTime: 1.783ms - OpenTime: 5.648us - PrepareTime: 241.633us - SinkTime: 1.243ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.375ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.453us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.676us - CompressTime: 0ns - ExecTime: 1.387ms - InputRows: 370 - LocalBytesSent: 95.07 KB - LocalSendTime: 215.948us - LocalSentRows: 370 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 137.768us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.642ms - RowsProduced: 370 - RpcAvgTime: 787.213us - RpcCount: 12 - RpcMaxTime: 1.94ms - RpcMinTime: 679.211us - RpcSumTime: 9.446ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 282.550us - SplitBlockHashComputeTime: 72.919us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 18.191us - ExecTime: 1.668ms - InitProbeSideTime: 76.13us - JoinFilterTimer: 1.993us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 33.703us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.2us - ProbeFindNextTime: 0ns - ProbeRows: 167 - ProbeTime: 1.31ms - ProbeWhenBuildSideOutputTime: 274.901us - ProbeWhenProbeSideOutputTime: 29.872us - ProbeWhenProcessHashTableTime: 72.52us - ProbeWhenSearchHashTableTime: 19.74us - ProjectionTime: 489.609us - RowsProduced: 370 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s938ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.53 KB - CloseTime: 5.87us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 80.886us - ExecTime: 127.822us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.94 KB - MemoryUsage: - Blocks: 13.88 KB - PeakMemoryUsage: 6.94 KB - OpenTime: 19.799us - ProjectionTime: 0ns - RowsProduced: 167 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms PipelineXTask (index=22):(Active: 3.309ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.996ms - CloseTime: 26.901us - GetBlockTime: 1.654ms - OpenTime: 5.604us - PrepareTime: 275.375us - SinkTime: 1.212ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.273ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 366.59us DATA_STREAM_SINK_OPERATOR (id=363,dst_id=363): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.511us - CompressTime: 0ns - ExecTime: 1.380ms - InputRows: 385 - LocalBytesSent: 98.85 KB - LocalSendTime: 168.2us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 137.53 KB - MergeBlockTime: 0ns - OpenTime: 166.402us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.447ms - RowsProduced: 385 - RpcAvgTime: 865.971us - RpcCount: 12 - RpcMaxTime: 1.135ms - RpcMinTime: 674.187us - RpcSumTime: 10.391ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 226.361us - SplitBlockHashComputeTime: 66.582us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 25 - BuildOutputBlock: 0ns - CloseTime: 12.60us - ExecTime: 1.551ms - InitProbeSideTime: 45.111us - JoinFilterTimer: 2.131us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 41.198us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.910us - ProbeFindNextTime: 0ns - ProbeRows: 177 - ProbeTime: 961.427us - ProbeWhenBuildSideOutputTime: 225.831us - ProbeWhenProbeSideOutputTime: 26.45us - ProbeWhenProcessHashTableTime: 86.302us - ProbeWhenSearchHashTableTime: 17.161us - ProjectionTime: 455.441us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s938ms EXCHANGE_OPERATOR (id=361): - BlocksProduced: 36 - BytesReceived: 3.91 KB - CloseTime: 3.388us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 94.329us - ExecTime: 135.634us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.00 KB - MemoryUsage: - Blocks: 14.56 KB - PeakMemoryUsage: 7.00 KB - OpenTime: 23.635us - ProjectionTime: 0ns - RowsProduced: 177 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s384ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 332.565us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 233.891us - CloseTime: 4.921us - GetBlockTime: 14.696us - OpenTime: 1.287us - PrepareTime: 87.934us - SinkTime: 183.525us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 320.5us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 751.121us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.129us - BuildRows: 386 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 59.356us - BuildTableInsertTime: 31.557us - BuildTableTime: 33.680us - CloseTime: 0ns - ExecTime: 215.682us - InputRows: 385 - MemoryUsage: - BuildBlocks: 95.46 KB - BuildKeyArena: 16.00 KB - HashTable: 3.89 KB - PeakMemoryUsage: 111.34 KB - OpenTime: 32.690us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.890us - RuntimeFilterComputeTime: 18.83us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.899us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.695us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 132.06 KB - OpenTime: 20.29us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=3):(Active: 435.579us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 344.98us - CloseTime: 7.23us - GetBlockTime: 28.712us - OpenTime: 2.4us - PrepareTime: 77.742us - SinkTime: 277.258us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 417.931us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 830.739us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.264us - BuildRows: 386 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.903us - BuildTableInsertTime: 32.758us - BuildTableTime: 35.846us - CloseTime: 0ns - ExecTime: 292.438us - InputRows: 385 - MemoryUsage: - BuildBlocks: 95.54 KB - BuildKeyArena: 16.00 KB - HashTable: 3.89 KB - PeakMemoryUsage: 111.42 KB - OpenTime: 16.770us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.814us - RuntimeFilterComputeTime: 44.980us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.180us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.58us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 132.06 KB - OpenTime: 26.180us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s318ms PipelineXTask (index=5):(Active: 456.31us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 363.739us - CloseTime: 7.454us - GetBlockTime: 40.200us - OpenTime: 1.474us - PrepareTime: 78.199us - SinkTime: 274.673us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 432.860us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 288.725us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.582us - BuildRows: 381 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 72.715us - BuildTableInsertTime: 41.543us - BuildTableTime: 44.197us - CloseTime: 0ns - ExecTime: 304.711us - InputRows: 380 - MemoryUsage: - BuildBlocks: 94.20 KB - BuildKeyArena: 16.00 KB - HashTable: 3.86 KB - PeakMemoryUsage: 110.06 KB - OpenTime: 31.898us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.225us - RuntimeFilterComputeTime: 22.894us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.909us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 59.431us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 132.06 KB - OpenTime: 16.264us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=7):(Active: 330.527us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 244.149us - CloseTime: 3.486us - GetBlockTime: 17.874us - OpenTime: 11.597us - PrepareTime: 66.345us - SinkTime: 196.214us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 320.78us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 265.777us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 952ns - BuildRows: 373 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 65.578us - BuildTableInsertTime: 34.197us - BuildTableTime: 35.725us - CloseTime: 0ns - ExecTime: 213.380us - InputRows: 372 - MemoryUsage: - BuildBlocks: 92.09 KB - BuildKeyArena: 16.00 KB - HashTable: 3.83 KB - PeakMemoryUsage: 107.91 KB - OpenTime: 17.515us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.563us - RuntimeFilterComputeTime: 9.617us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 38.28 KB - CloseTime: 2.551us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 127.409us - ExecTime: 40.203us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 20.560us - ProjectionTime: 0ns - RowsProduced: 372 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=9):(Active: 364.793us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 277.223us - CloseTime: 3.814us - GetBlockTime: 37.354us - OpenTime: 1.775us - PrepareTime: 77.320us - SinkTime: 209.525us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 351.173us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 158.815us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.223us - BuildRows: 362 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 58.946us - BuildTableInsertTime: 25.578us - BuildTableTime: 27.237us - CloseTime: 0ns - ExecTime: 239.734us - InputRows: 361 - MemoryUsage: - BuildBlocks: 89.38 KB - BuildKeyArena: 16.00 KB - HashTable: 3.77 KB - PeakMemoryUsage: 105.14 KB - OpenTime: 31.286us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.1us - RuntimeFilterComputeTime: 29.522us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 37.27 KB - CloseTime: 2.871us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 127.358us - ExecTime: 56.724us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 124.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 18.216us - ProjectionTime: 0ns - RowsProduced: 361 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=11):(Active: 332.807us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 250.425us - CloseTime: 6.258us - GetBlockTime: 16.747us - OpenTime: 1.754us - PrepareTime: 69.435us - SinkTime: 205.237us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 318.679us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 177.334us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 848ns - BuildRows: 378 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 54.660us - BuildTableInsertTime: 42.37us - BuildTableTime: 44.661us - CloseTime: 0ns - ExecTime: 228.207us - InputRows: 377 - MemoryUsage: - BuildBlocks: 93.39 KB - BuildKeyArena: 16.00 KB - HashTable: 3.85 KB - PeakMemoryUsage: 109.23 KB - OpenTime: 23.845us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.406us - RuntimeFilterComputeTime: 34.63us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.890us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 136.12 KB - OpenTime: 18.685us - ProjectionTime: 0ns - RowsProduced: 377 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=13):(Active: 323.665us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 247.526us - CloseTime: 6.297us - GetBlockTime: 14.335us - OpenTime: 1.490us - PrepareTime: 64.310us - SinkTime: 212.670us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 310.990us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 152.249us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 769ns - BuildRows: 393 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 54.804us - BuildTableInsertTime: 34.57us - BuildTableTime: 37.1us - CloseTime: 0ns - ExecTime: 236.169us - InputRows: 392 - MemoryUsage: - BuildBlocks: 97.13 KB - BuildKeyArena: 16.00 KB - HashTable: 3.92 KB - PeakMemoryUsage: 113.04 KB - OpenTime: 25.642us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.896us - RuntimeFilterComputeTime: 28.271us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 40.19 KB - CloseTime: 4.827us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 88.214us - ExecTime: 32.586us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 14.625us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=15):(Active: 237.354us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 150.249us - CloseTime: 14.562us - GetBlockTime: 12.750us - OpenTime: 2.713us - PrepareTime: 65.937us - SinkTime: 119.133us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 217.98us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.567us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.149us - BuildRows: 388 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 30.205us - BuildTableInsertTime: 25.949us - BuildTableTime: 27.66us - CloseTime: 0ns - ExecTime: 138.779us - InputRows: 387 - MemoryUsage: - BuildBlocks: 95.96 KB - BuildKeyArena: 16.00 KB - HashTable: 3.90 KB - PeakMemoryUsage: 111.85 KB - OpenTime: 19.751us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.480us - RuntimeFilterComputeTime: 12.757us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 39.66 KB - CloseTime: 2.433us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 120.823us - ExecTime: 35.358us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 21.66us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms PipelineXTask (index=17):(Active: 293.467us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 213.801us - CloseTime: 6.903us - GetBlockTime: 24.218us - OpenTime: 1.508us - PrepareTime: 66.499us - SinkTime: 162.245us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 278.796us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 410.769us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 978ns - BuildRows: 392 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 53.274us - BuildTableInsertTime: 23.928us - BuildTableTime: 26.180us - CloseTime: 0ns - ExecTime: 182.709us - InputRows: 391 - MemoryUsage: - BuildBlocks: 96.78 KB - BuildKeyArena: 16.00 KB - HashTable: 3.92 KB - PeakMemoryUsage: 112.69 KB - OpenTime: 21.442us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.463us - RuntimeFilterComputeTime: 20.876us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 40.15 KB - CloseTime: 5.658us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 74.281us - ExecTime: 47.4us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 18.767us - ProjectionTime: 0ns - RowsProduced: 391 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s321ms PipelineXTask (index=19):(Active: 295.264us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 201.447us - CloseTime: 9.892us - GetBlockTime: 19.727us - OpenTime: 1.830us - PrepareTime: 77.449us - SinkTime: 157.417us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 277.965us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 104.103us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 494ns - BuildRows: 389 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 56.956us - BuildTableInsertTime: 21.236us - BuildTableTime: 23.238us - CloseTime: 0ns - ExecTime: 189.687us - InputRows: 388 - MemoryUsage: - BuildBlocks: 96.13 KB - BuildKeyArena: 16.00 KB - HashTable: 3.90 KB - PeakMemoryUsage: 112.02 KB - OpenTime: 33.41us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.750us - RuntimeFilterComputeTime: 11.640us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.789us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 48.505us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 145.54 KB - OpenTime: 21.189us - ProjectionTime: 0ns - RowsProduced: 388 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms PipelineXTask (index=21):(Active: 350.679us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 276.309us - CloseTime: 4.363us - GetBlockTime: 19.846us - OpenTime: 1.666us - PrepareTime: 64.59us - SinkTime: 233.833us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 338.576us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 188.772us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 995ns - BuildRows: 371 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 86.314us - BuildTableInsertTime: 41.982us - BuildTableTime: 43.754us - CloseTime: 0ns - ExecTime: 254.460us - InputRows: 370 - MemoryUsage: - BuildBlocks: 91.82 KB - BuildKeyArena: 16.00 KB - HashTable: 3.82 KB - PeakMemoryUsage: 107.63 KB - OpenTime: 21.478us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.289us - RuntimeFilterComputeTime: 14.51us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.425us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.489us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.00 KB - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 138.83 KB - OpenTime: 20.133us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms PipelineXTask (index=23):(Active: 442.381us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 359.391us - CloseTime: 4.960us - GetBlockTime: 20.399us - OpenTime: 1.347us - PrepareTime: 72.100us - SinkTime: 317.753us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 430.161us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 143.587us HASH_JOIN_SINK_OPERATOR (id=362): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.77us - BuildRows: 386 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 84.81us - BuildTableInsertTime: 29.719us - BuildTableTime: 32.446us - CloseTime: 0ns - ExecTime: 337.351us - InputRows: 385 - MemoryUsage: - BuildBlocks: 95.47 KB - BuildKeyArena: 16.00 KB - HashTable: 3.89 KB - PeakMemoryUsage: 111.35 KB - OpenTime: 20.290us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 99.363us - RuntimeFilterComputeTime: 27.521us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=339): - BlocksProduced: 2 - BytesReceived: 39.59 KB - CloseTime: 3.625us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 78.995us - ExecTime: 47.737us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 16.24 KB - OpenTime: 24.902us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms Fragment 12: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 918.516us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 727.858us - CloseTime: 23.134us - GetBlockTime: 116.759us - OpenTime: 4.929us - PrepareTime: 155.48us - SinkTime: 580.727us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 886.218us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 295.273us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.45 KB - CloseTime: 18.602us - CompressTime: 0ns - ExecTime: 713.244us - InputRows: 166 - LocalBytesSent: 2.38 KB - LocalSendTime: 123.250us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 14.13 KB - MergeBlockTime: 0ns - OpenTime: 114.544us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 34.659ms - RowsProduced: 166 - RpcAvgTime: 5.902ms - RpcCount: 12 - RpcMaxTime: 5.956ms - RpcMinTime: 5.732ms - RpcSumTime: 70.831ms - SerializeBatchTime: 30.356us - SplitBlockDistributeByChannelTime: 41.684us - SplitBlockHashComputeTime: 12.132us - UncompressedRowBatchSize: 3.27 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.189us - DeserializeAndMergeTime: 0ns - ExecTime: 128.641us - GetResultsTime: 27.716us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.496us - HashTableSize: 166 - InsertKeysToColumnTime: 16.218us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.816us - ProjectionTime: 77.131us - RowsProduced: 166 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms PipelineXTask (index=2):(Active: 882.346us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 715.796us - CloseTime: 16.458us - GetBlockTime: 118.156us - OpenTime: 3.714us - PrepareTime: 141.73us - SinkTime: 562.371us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 852.380us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 543.760us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.24 KB - CloseTime: 14.482us - CompressTime: 0ns - ExecTime: 680.322us - InputRows: 187 - LocalBytesSent: 3.27 KB - LocalSendTime: 91.143us - LocalSentRows: 102 - MemoryUsage: - PeakMemoryUsage: 14.81 KB - MergeBlockTime: 0ns - OpenTime: 103.899us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.710ms - RowsProduced: 187 - RpcAvgTime: 5.922ms - RpcCount: 12 - RpcMaxTime: 5.967ms - RpcMinTime: 5.889ms - RpcSumTime: 71.72ms - SerializeBatchTime: 27.587us - SplitBlockDistributeByChannelTime: 59.202us - SplitBlockHashComputeTime: 11.6us - UncompressedRowBatchSize: 3.05 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 595ns - DeserializeAndMergeTime: 0ns - ExecTime: 123.343us - GetResultsTime: 32.661us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.706us - HashTableSize: 187 - InsertKeysToColumnTime: 22.361us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.675us - ProjectionTime: 72.655us - RowsProduced: 187 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms PipelineXTask (index=4):(Active: 987.647us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 713.660us - CloseTime: 23.145us - GetBlockTime: 133.873us - OpenTime: 5.197us - PrepareTime: 238.503us - SinkTime: 552.661us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 955.228us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.694ms DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.36 KB - CloseTime: 19.613us - CompressTime: 0ns - ExecTime: 760.875us - InputRows: 176 - LocalBytesSent: 2.79 KB - LocalSendTime: 87.160us - LocalSentRows: 87 - MemoryUsage: - PeakMemoryUsage: 14.69 KB - MergeBlockTime: 0ns - OpenTime: 189.12us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.657ms - RowsProduced: 176 - RpcAvgTime: 5.897ms - RpcCount: 12 - RpcMaxTime: 5.945ms - RpcMinTime: 5.671ms - RpcSumTime: 70.774ms - SerializeBatchTime: 32.346us - SplitBlockDistributeByChannelTime: 46.461us - SplitBlockHashComputeTime: 9.778us - UncompressedRowBatchSize: 3.18 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 935ns - DeserializeAndMergeTime: 0ns - ExecTime: 139.990us - GetResultsTime: 62.562us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.77us - HashTableSize: 176 - InsertKeysToColumnTime: 51.240us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.706us - ProjectionTime: 65.22us - RowsProduced: 176 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s414ms PipelineXTask (index=6):(Active: 1.36ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 872.612us - CloseTime: 27.400us - GetBlockTime: 107.314us - OpenTime: 2.797us - PrepareTime: 128.647us - SinkTime: 743.975us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.1ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 636.183us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.52 KB - CloseTime: 23.129us - CompressTime: 0ns - ExecTime: 864.125us - InputRows: 181 - LocalBytesSent: 2.80 KB - LocalSendTime: 104.990us - LocalSentRows: 87 - MemoryUsage: - PeakMemoryUsage: 14.56 KB - MergeBlockTime: 0ns - OpenTime: 97.700us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 44.906ms - RowsProduced: 181 - RpcAvgTime: 5.586ms - RpcCount: 12 - RpcMaxTime: 5.689ms - RpcMinTime: 5.441ms - RpcSumTime: 67.40ms - SerializeBatchTime: 34.67us - SplitBlockDistributeByChannelTime: 56.939us - SplitBlockHashComputeTime: 14.716us - UncompressedRowBatchSize: 3.34 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.102us - DeserializeAndMergeTime: 0ns - ExecTime: 112.980us - GetResultsTime: 38.163us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.765us - HashTableSize: 181 - InsertKeysToColumnTime: 23.272us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.553us - ProjectionTime: 58.49us - RowsProduced: 181 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms PipelineXTask (index=8):(Active: 753.802us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 589.710us - CloseTime: 14.873us - GetBlockTime: 94.536us - OpenTime: 2.184us - PrepareTime: 140.392us - SinkTime: 476.160us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 731.576us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 476.851us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.62 KB - CloseTime: 12.19us - CompressTime: 0ns - ExecTime: 586.679us - InputRows: 200 - LocalBytesSent: 3.31 KB - LocalSendTime: 100.577us - LocalSentRows: 103 - MemoryUsage: - PeakMemoryUsage: 15.75 KB - MergeBlockTime: 0ns - OpenTime: 99.197us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.25ms - RowsProduced: 200 - RpcAvgTime: 5.537ms - RpcCount: 12 - RpcMaxTime: 5.635ms - RpcMinTime: 5.449ms - RpcSumTime: 66.449ms - SerializeBatchTime: 24.827us - SplitBlockDistributeByChannelTime: 36.545us - SplitBlockHashComputeTime: 12.660us - UncompressedRowBatchSize: 3.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.136us - DeserializeAndMergeTime: 0ns - ExecTime: 100.547us - GetResultsTime: 47.556us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.337us - HashTableSize: 200 - InsertKeysToColumnTime: 33.760us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.3us - ProjectionTime: 36.690us - RowsProduced: 200 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms PipelineXTask (index=10):(Active: 662.325us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 455.158us - CloseTime: 17.981us - GetBlockTime: 63.623us - OpenTime: 2.972us - PrepareTime: 179.197us - SinkTime: 371.810us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 637.378us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 671.31us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.43 KB - CloseTime: 14.780us - CompressTime: 0ns - ExecTime: 500.975us - InputRows: 172 - LocalBytesSent: 2.59 KB - LocalSendTime: 67.616us - LocalSentRows: 81 - MemoryUsage: - PeakMemoryUsage: 13.94 KB - MergeBlockTime: 0ns - OpenTime: 114.823us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.271ms - RowsProduced: 172 - RpcAvgTime: 5.640ms - RpcCount: 12 - RpcMaxTime: 5.680ms - RpcMinTime: 5.610ms - RpcSumTime: 67.681ms - SerializeBatchTime: 15.808us - SplitBlockDistributeByChannelTime: 42.894us - SplitBlockHashComputeTime: 7.690us - UncompressedRowBatchSize: 3.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 927ns - DeserializeAndMergeTime: 0ns - ExecTime: 77.258us - GetResultsTime: 32.486us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.974us - HashTableSize: 172 - InsertKeysToColumnTime: 22.972us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.715us - ProjectionTime: 24.995us - RowsProduced: 172 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms PipelineXTask (index=12):(Active: 878.422us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 654.650us - CloseTime: 22.945us - GetBlockTime: 78.398us - OpenTime: 3.480us - PrepareTime: 189.36us - SinkTime: 553.266us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 846.244us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.994ms DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.34 KB - CloseTime: 19.567us - CompressTime: 0ns - ExecTime: 720.808us - InputRows: 168 - LocalBytesSent: 2.57 KB - LocalSendTime: 73.685us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 14.19 KB - MergeBlockTime: 0ns - OpenTime: 148.368us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.63ms - RowsProduced: 168 - RpcAvgTime: 5.662ms - RpcCount: 12 - RpcMaxTime: 5.740ms - RpcMinTime: 5.613ms - RpcSumTime: 67.948ms - SerializeBatchTime: 27.797us - SplitBlockDistributeByChannelTime: 70.334us - SplitBlockHashComputeTime: 13.867us - UncompressedRowBatchSize: 3.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 753ns - DeserializeAndMergeTime: 0ns - ExecTime: 84.296us - GetResultsTime: 30.598us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.286us - HashTableSize: 168 - InsertKeysToColumnTime: 19.464us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.871us - ProjectionTime: 40.43us - RowsProduced: 168 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s414ms PipelineXTask (index=14):(Active: 671.662us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 509.580us - CloseTime: 28.870us - GetBlockTime: 86.116us - OpenTime: 2.975us - PrepareTime: 125.2us - SinkTime: 406.382us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 636.706us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 738.911us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.25 KB - CloseTime: 25.157us - CompressTime: 0ns - ExecTime: 526.561us - InputRows: 180 - LocalBytesSent: 3.04 KB - LocalSendTime: 67.137us - LocalSentRows: 95 - MemoryUsage: - PeakMemoryUsage: 15.13 KB - MergeBlockTime: 0ns - OpenTime: 95.597us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.199ms - RowsProduced: 180 - RpcAvgTime: 5.616ms - RpcCount: 12 - RpcMaxTime: 5.671ms - RpcMinTime: 5.569ms - RpcSumTime: 67.394ms - SerializeBatchTime: 24.790us - SplitBlockDistributeByChannelTime: 35.155us - SplitBlockHashComputeTime: 8.393us - UncompressedRowBatchSize: 3.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.20us - DeserializeAndMergeTime: 0ns - ExecTime: 93.824us - GetResultsTime: 38.834us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.422us - HashTableSize: 180 - InsertKeysToColumnTime: 26.530us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.423us - ProjectionTime: 36.10us - RowsProduced: 180 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms PipelineXTask (index=16):(Active: 685.59us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 531.190us - CloseTime: 10.433us - GetBlockTime: 87.743us - OpenTime: 3.506us - PrepareTime: 133.610us - SinkTime: 420.322us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 666.892us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.830ms DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.49 KB - CloseTime: 8.790us - CompressTime: 0ns - ExecTime: 516.949us - InputRows: 186 - LocalBytesSent: 2.98 KB - LocalSendTime: 52.745us - LocalSentRows: 93 - MemoryUsage: - PeakMemoryUsage: 15.44 KB - MergeBlockTime: 0ns - OpenTime: 88.301us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.114ms - RowsProduced: 186 - RpcAvgTime: 5.583ms - RpcCount: 12 - RpcMaxTime: 5.639ms - RpcMinTime: 5.519ms - RpcSumTime: 66.997ms - SerializeBatchTime: 20.792us - SplitBlockDistributeByChannelTime: 47.210us - SplitBlockHashComputeTime: 10.601us - UncompressedRowBatchSize: 3.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 736ns - DeserializeAndMergeTime: 0ns - ExecTime: 97.334us - GetResultsTime: 32.484us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.308us - HashTableSize: 186 - InsertKeysToColumnTime: 18.887us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.605us - ProjectionTime: 47.360us - RowsProduced: 186 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s414ms PipelineXTask (index=18):(Active: 675.247us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 494.352us - CloseTime: 23.506us - GetBlockTime: 63.454us - OpenTime: 3.303us - PrepareTime: 148.982us - SinkTime: 412.66us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 645.74us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 286.847us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.47 KB - CloseTime: 16.746us - CompressTime: 0ns - ExecTime: 536.952us - InputRows: 179 - LocalBytesSent: 2.79 KB - LocalSendTime: 60.511us - LocalSentRows: 87 - MemoryUsage: - PeakMemoryUsage: 14.69 KB - MergeBlockTime: 0ns - OpenTime: 108.759us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 34.462ms - RowsProduced: 179 - RpcAvgTime: 5.746ms - RpcCount: 12 - RpcMaxTime: 5.829ms - RpcMinTime: 5.669ms - RpcSumTime: 68.957ms - SerializeBatchTime: 22.68us - SplitBlockDistributeByChannelTime: 42.627us - SplitBlockHashComputeTime: 9.558us - UncompressedRowBatchSize: 3.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 4.348us - DeserializeAndMergeTime: 0ns - ExecTime: 74.922us - GetResultsTime: 27.867us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.226us - HashTableSize: 179 - InsertKeysToColumnTime: 15.208us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.990us - ProjectionTime: 28.376us - RowsProduced: 179 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms PipelineXTask (index=20):(Active: 635.679us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 473.269us - CloseTime: 16.287us - GetBlockTime: 51.740us - OpenTime: 4.366us - PrepareTime: 135.858us - SinkTime: 401.873us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 612.322us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.561us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.22 KB - CloseTime: 13.62us - CompressTime: 0ns - ExecTime: 518.466us - InputRows: 179 - LocalBytesSent: 3.04 KB - LocalSendTime: 58.839us - LocalSentRows: 95 - MemoryUsage: - PeakMemoryUsage: 14.38 KB - MergeBlockTime: 0ns - OpenTime: 103.916us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 43.970ms - RowsProduced: 179 - RpcAvgTime: 4.504ms - RpcCount: 12 - RpcMaxTime: 4.596ms - RpcMinTime: 4.430ms - RpcSumTime: 54.52ms - SerializeBatchTime: 17.110us - SplitBlockDistributeByChannelTime: 31.785us - SplitBlockHashComputeTime: 6.974us - UncompressedRowBatchSize: 3.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.105us - DeserializeAndMergeTime: 0ns - ExecTime: 57.784us - GetResultsTime: 22.404us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.965us - HashTableSize: 179 - InsertKeysToColumnTime: 13.886us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.491us - ProjectionTime: 24.818us - RowsProduced: 179 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s417ms PipelineXTask (index=22):(Active: 739.998us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 577.756us - CloseTime: 11.194us - GetBlockTime: 69.832us - OpenTime: 3.380us - PrepareTime: 141.227us - SinkTime: 481.259us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 720.535us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.778ms DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.08 KB - CloseTime: 9.398us - CompressTime: 0ns - ExecTime: 596.844us - InputRows: 171 - LocalBytesSent: 2.92 KB - LocalSendTime: 56.127us - LocalSentRows: 91 - MemoryUsage: - PeakMemoryUsage: 14.31 KB - MergeBlockTime: 0ns - OpenTime: 106.991us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 43.916ms - RowsProduced: 171 - RpcAvgTime: 4.461ms - RpcCount: 12 - RpcMaxTime: 4.574ms - RpcMinTime: 4.364ms - RpcSumTime: 53.542ms - SerializeBatchTime: 19.517us - SplitBlockDistributeByChannelTime: 39.700us - SplitBlockHashComputeTime: 7.159us - UncompressedRowBatchSize: 2.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 708ns - DeserializeAndMergeTime: 0ns - ExecTime: 77.81us - GetResultsTime: 30.440us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.323us - HashTableSize: 171 - InsertKeysToColumnTime: 19.465us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.576us - ProjectionTime: 28.789us - RowsProduced: 171 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s415ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 5.203ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.109ms - CloseTime: 8.758us - GetBlockTime: 360.317us - OpenTime: 3.865us - PrepareTime: 74.231us - SinkTime: 4.435ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.122ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.541ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.374us - DeserializeAndMergeTime: 3.566ms - ExecTime: 4.452ms - ExprTime: 0ns - HashTableComputeTime: 703.804us - HashTableEmplaceTime: 304.353us - HashTableInputCount: 3.35K (3350) - InputRows: 3.35K (3350) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.374ms - OpenTime: 34.465us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 79.21 KB - CloseTime: 6.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 343.974us - ExecTime: 352.407us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 258.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 16.500us - ProjectionTime: 0ns - RowsProduced: 3.35K (3350) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s407ms PipelineXTask (index=3):(Active: 5.411ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.328ms - CloseTime: 18.220us - GetBlockTime: 315.268us - OpenTime: 3.21us - PrepareTime: 52.872us - SinkTime: 4.713ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.316ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.992ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 11.657us - DeserializeAndMergeTime: 3.782ms - ExecTime: 4.731ms - ExprTime: 0ns - HashTableComputeTime: 740.953us - HashTableEmplaceTime: 341.916us - HashTableInputCount: 3.721K (3721) - InputRows: 3.721K (3721) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.646ms - OpenTime: 23.184us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 88.49 KB - CloseTime: 5.456us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 475.685us - ExecTime: 308.712us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 15.461us - ProjectionTime: 0ns - RowsProduced: 3.721K (3721) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s408ms PipelineXTask (index=5):(Active: 5.97ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 5.22ms - CloseTime: 8.645us - GetBlockTime: 256.67us - OpenTime: 3.326us - PrepareTime: 53.137us - SinkTime: 4.491ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.31ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.802ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.417us - DeserializeAndMergeTime: 3.709ms - ExecTime: 4.480ms - ExprTime: 0ns - HashTableComputeTime: 617.762us - HashTableEmplaceTime: 251.584us - HashTableInputCount: 3.553K (3553) - InputRows: 3.553K (3553) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.406ms - OpenTime: 19.774us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 84.54 KB - CloseTime: 6.315us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 430.531us - ExecTime: 240.134us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 15.309us - ProjectionTime: 0ns - RowsProduced: 3.553K (3553) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s406ms PipelineXTask (index=7):(Active: 4.900ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 4.814ms - CloseTime: 10.776us - GetBlockTime: 252.9us - OpenTime: 3.190us - PrepareTime: 59.458us - SinkTime: 4.368ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.834ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.407ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.532us - DeserializeAndMergeTime: 3.696ms - ExecTime: 4.376ms - ExprTime: 0ns - HashTableComputeTime: 543.275us - HashTableEmplaceTime: 277.606us - HashTableInputCount: 3.538K (3538) - InputRows: 3.538K (3538) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.311ms - OpenTime: 18.108us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 86.48 KB - CloseTime: 8.115us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 480.560us - ExecTime: 247.575us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 25.64us - ProjectionTime: 0ns - RowsProduced: 3.538K (3538) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s407ms PipelineXTask (index=9):(Active: 5.555ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 5.473ms - CloseTime: 6.481us - GetBlockTime: 257.786us - OpenTime: 3.147us - PrepareTime: 62.819us - SinkTime: 4.985ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.488ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.524ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 3.76us - DeserializeAndMergeTime: 4.238ms - ExecTime: 5.3ms - ExprTime: 0ns - HashTableComputeTime: 647.878us - HashTableEmplaceTime: 322.445us - HashTableInputCount: 4.007K (4007) - InputRows: 4.007K (4007) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.947ms - OpenTime: 24.812us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 100.57 KB - CloseTime: 2.768us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 501.136us - ExecTime: 254.218us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 14.72us - ProjectionTime: 0ns - RowsProduced: 4.007K (4007) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s405ms PipelineXTask (index=11):(Active: 4.590ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 4.508ms - CloseTime: 6.634us - GetBlockTime: 248.314us - OpenTime: 2.900us - PrepareTime: 63.39us - SinkTime: 4.64ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.530ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.584ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.50us - DeserializeAndMergeTime: 3.449ms - ExecTime: 4.71ms - ExprTime: 0ns - HashTableComputeTime: 518.260us - HashTableEmplaceTime: 293.991us - HashTableInputCount: 3.392K (3392) - InputRows: 3.392K (3392) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.28ms - OpenTime: 16.257us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 83.20 KB - CloseTime: 4.485us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 412.92us - ExecTime: 253.521us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 20.728us - ProjectionTime: 0ns - RowsProduced: 3.392K (3392) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s408ms PipelineXTask (index=13):(Active: 4.605ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 4.522ms - CloseTime: 9.66us - GetBlockTime: 325.791us - OpenTime: 3.363us - PrepareTime: 63.364us - SinkTime: 4.0ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.546ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.847ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.625us - DeserializeAndMergeTime: 3.400ms - ExecTime: 4.18ms - ExprTime: 0ns - HashTableComputeTime: 497.713us - HashTableEmplaceTime: 227.626us - HashTableInputCount: 3.473K (3473) - InputRows: 3.473K (3473) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.962ms - OpenTime: 27.284us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 84.03 KB - CloseTime: 5.889us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 428.260us - ExecTime: 324.853us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 21.227us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s406ms PipelineXTask (index=15):(Active: 4.280ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 4.206ms - CloseTime: 4.749us - GetBlockTime: 239.179us - OpenTime: 2.337us - PrepareTime: 60.249us - SinkTime: 3.709ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.227ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.282ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 825ns - DeserializeAndMergeTime: 3.115ms - ExecTime: 3.717ms - ExprTime: 0ns - HashTableComputeTime: 495.665us - HashTableEmplaceTime: 233.402us - HashTableInputCount: 3.566K (3566) - InputRows: 3.566K (3566) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.678ms - OpenTime: 15.667us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 85.70 KB - CloseTime: 3.322us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 403.876us - ExecTime: 257.240us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 30.764us - ProjectionTime: 0ns - RowsProduced: 3.566K (3566) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s406ms PipelineXTask (index=17):(Active: 4.786ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 4.717ms - CloseTime: 3.936us - GetBlockTime: 189.252us - OpenTime: 2.834us - PrepareTime: 54.921us - SinkTime: 4.347ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.737ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.981ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 583ns - DeserializeAndMergeTime: 3.689ms - ExecTime: 4.355ms - ExprTime: 0ns - HashTableComputeTime: 565.733us - HashTableEmplaceTime: 291.599us - HashTableInputCount: 3.753K (3753) - InputRows: 3.753K (3753) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.310ms - OpenTime: 18.166us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 93.63 KB - CloseTime: 2.849us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 538.46us - ExecTime: 194.209us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 19.605us - ProjectionTime: 0ns - RowsProduced: 3.753K (3753) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s408ms PipelineXTask (index=19):(Active: 4.104ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 4.37ms - CloseTime: 8.83us - GetBlockTime: 218.688us - OpenTime: 2.585us - PrepareTime: 49.146us - SinkTime: 3.649ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.49ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.120ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 3.177us - DeserializeAndMergeTime: 3.80ms - ExecTime: 3.662ms - ExprTime: 0ns - HashTableComputeTime: 478.191us - HashTableEmplaceTime: 222.292us - HashTableInputCount: 3.629K (3629) - InputRows: 3.629K (3629) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.615ms - OpenTime: 20.667us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 85.34 KB - CloseTime: 4.100us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 475.826us - ExecTime: 218.964us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 274.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 15.281us - ProjectionTime: 0ns - RowsProduced: 3.629K (3629) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s409ms PipelineXTask (index=21):(Active: 5.133ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.55ms - CloseTime: 15.829us - GetBlockTime: 312.823us - OpenTime: 3.979us - PrepareTime: 49.686us - SinkTime: 4.482ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.47ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.454ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.466us - DeserializeAndMergeTime: 3.652ms - ExecTime: 4.486ms - ExprTime: 0ns - HashTableComputeTime: 691.482us - HashTableEmplaceTime: 300.788us - HashTableInputCount: 3.674K (3674) - InputRows: 3.674K (3674) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.421ms - OpenTime: 20.352us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 90.33 KB - CloseTime: 13.635us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 493.71us - ExecTime: 313.943us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 11.139us - ProjectionTime: 0ns - RowsProduced: 3.674K (3674) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s408ms PipelineXTask (index=23):(Active: 4.305ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 4.208ms - CloseTime: 34.379us - GetBlockTime: 226.128us - OpenTime: 3.5us - PrepareTime: 52.821us - SinkTime: 3.785ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.216ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.522ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.230us - DeserializeAndMergeTime: 3.168ms - ExecTime: 3.797ms - ExprTime: 0ns - HashTableComputeTime: 502.35us - HashTableEmplaceTime: 241.156us - HashTableInputCount: 3.298K (3298) - InputRows: 3.298K (3298) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.739ms - OpenTime: 21.594us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 82.97 KB - CloseTime: 31.984us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 393.602us - ExecTime: 257.961us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 273.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 23.50 KB - OpenTime: 17.978us - ProjectionTime: 0ns - RowsProduced: 3.298K (3298) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s411ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 761.795us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 548.360us - CloseTime: 18.182us - GetBlockTime: 81.2us - OpenTime: 3.191us - PrepareTime: 185.428us - SinkTime: 444.975us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 735.684us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 175.703us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.04 KB - CloseTime: 13.697us - CompressTime: 0ns - ExecTime: 595.660us - InputRows: 160 - LocalBytesSent: 2.60 KB - LocalSendTime: 126.437us - LocalSentRows: 81 - MemoryUsage: - PeakMemoryUsage: 13.94 KB - MergeBlockTime: 0ns - OpenTime: 137.434us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.931ms - RowsProduced: 160 - RpcAvgTime: 31.646ms - RpcCount: 12 - RpcMaxTime: 32.11ms - RpcMinTime: 30.634ms - RpcSumTime: 379.752ms - SerializeBatchTime: 27.623us - SplitBlockDistributeByChannelTime: 28.458us - SplitBlockHashComputeTime: 7.886us - UncompressedRowBatchSize: 2.85 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.230us - DeserializeAndMergeTime: 0ns - ExecTime: 95.217us - GetResultsTime: 24.82us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.906us - HashTableSize: 160 - InsertKeysToColumnTime: 14.86us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.975us - ProjectionTime: 49.65us - RowsProduced: 160 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s383ms PipelineXTask (index=2):(Active: 751.86us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 549.573us - CloseTime: 18.339us - GetBlockTime: 104.748us - OpenTime: 2.368us - PrepareTime: 176.77us - SinkTime: 428.494us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 726.958us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.237us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.54 KB - CloseTime: 14.758us - CompressTime: 0ns - ExecTime: 578.266us - InputRows: 184 - LocalBytesSent: 2.87 KB - LocalSendTime: 55.996us - LocalSentRows: 90 - MemoryUsage: - PeakMemoryUsage: 14.69 KB - MergeBlockTime: 0ns - OpenTime: 135.183us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.650ms - RowsProduced: 184 - RpcAvgTime: 31.969ms - RpcCount: 12 - RpcMaxTime: 31.986ms - RpcMinTime: 31.952ms - RpcSumTime: 383.635ms - SerializeBatchTime: 25.876us - SplitBlockDistributeByChannelTime: 46.613us - SplitBlockHashComputeTime: 10.660us - UncompressedRowBatchSize: 3.36 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 784ns - DeserializeAndMergeTime: 0ns - ExecTime: 116.474us - GetResultsTime: 53.385us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.317us - HashTableSize: 184 - InsertKeysToColumnTime: 31.734us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.909us - ProjectionTime: 40.421us - RowsProduced: 184 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=4):(Active: 658.710us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 453.527us - CloseTime: 18.205us - GetBlockTime: 54.913us - OpenTime: 2.155us - PrepareTime: 179.757us - SinkTime: 385.387us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 635.69us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.301us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.59 KB - CloseTime: 14.941us - CompressTime: 0ns - ExecTime: 530.555us - InputRows: 189 - LocalBytesSent: 2.98 KB - LocalSendTime: 46.896us - LocalSentRows: 93 - MemoryUsage: - PeakMemoryUsage: 15.19 KB - MergeBlockTime: 0ns - OpenTime: 130.545us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.860ms - RowsProduced: 189 - RpcAvgTime: 31.982ms - RpcCount: 12 - RpcMaxTime: 32.5ms - RpcMinTime: 31.967ms - RpcSumTime: 383.786ms - SerializeBatchTime: 18.554us - SplitBlockDistributeByChannelTime: 33.996us - SplitBlockHashComputeTime: 11.177us - UncompressedRowBatchSize: 3.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 978ns - DeserializeAndMergeTime: 0ns - ExecTime: 67.608us - GetResultsTime: 22.760us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.854us - HashTableSize: 189 - InsertKeysToColumnTime: 12.685us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.78us - ProjectionTime: 25.996us - RowsProduced: 189 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=6):(Active: 821.163us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 612.835us - CloseTime: 16.191us - GetBlockTime: 112.444us - OpenTime: 1.978us - PrepareTime: 185.425us - SinkTime: 479.349us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 797.702us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.350us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.39 KB - CloseTime: 13.232us - CompressTime: 0ns - ExecTime: 636.593us - InputRows: 170 - LocalBytesSent: 2.56 KB - LocalSendTime: 73.589us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 14.06 KB - MergeBlockTime: 0ns - OpenTime: 144.457us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.677ms - RowsProduced: 170 - RpcAvgTime: 31.971ms - RpcCount: 12 - RpcMaxTime: 31.984ms - RpcMinTime: 31.958ms - RpcSumTime: 383.661ms - SerializeBatchTime: 24.309us - SplitBlockDistributeByChannelTime: 49.384us - SplitBlockHashComputeTime: 10.692us - UncompressedRowBatchSize: 3.20 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 843ns - DeserializeAndMergeTime: 0ns - ExecTime: 120.585us - GetResultsTime: 55.194us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.40us - HashTableSize: 170 - InsertKeysToColumnTime: 42.405us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.203us - ProjectionTime: 48.737us - RowsProduced: 170 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=8):(Active: 718.857us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 515.728us - CloseTime: 14.495us - GetBlockTime: 62.494us - OpenTime: 2.376us - PrepareTime: 180.811us - SinkTime: 429.967us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 696.333us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 151.900us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.68 KB - CloseTime: 12.306us - CompressTime: 0ns - ExecTime: 571.334us - InputRows: 180 - LocalBytesSent: 2.60 KB - LocalSendTime: 59.647us - LocalSentRows: 81 - MemoryUsage: - PeakMemoryUsage: 15.06 KB - MergeBlockTime: 0ns - OpenTime: 129.382us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.732ms - RowsProduced: 180 - RpcAvgTime: 31.972ms - RpcCount: 12 - RpcMaxTime: 31.999ms - RpcMinTime: 31.963ms - RpcSumTime: 383.670ms - SerializeBatchTime: 30.446us - SplitBlockDistributeByChannelTime: 30.176us - SplitBlockHashComputeTime: 18.616us - UncompressedRowBatchSize: 3.49 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 776ns - DeserializeAndMergeTime: 0ns - ExecTime: 72.299us - GetResultsTime: 32.217us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 8.901us - HashTableSize: 180 - InsertKeysToColumnTime: 13.344us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.478us - ProjectionTime: 24.405us - RowsProduced: 180 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=10):(Active: 545.151us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 359.549us - CloseTime: 15.214us - GetBlockTime: 61.216us - OpenTime: 2.494us - PrepareTime: 162.123us - SinkTime: 283.731us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 524.201us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.511us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.67 KB - CloseTime: 11.619us - CompressTime: 0ns - ExecTime: 419.79us - InputRows: 152 - LocalBytesSent: 2.72 KB - LocalSendTime: 43.67us - LocalSentRows: 85 - MemoryUsage: - PeakMemoryUsage: 13.38 KB - MergeBlockTime: 0ns - OpenTime: 123.926us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 53.147ms - RowsProduced: 152 - RpcAvgTime: 31.928ms - RpcCount: 12 - RpcMaxTime: 31.954ms - RpcMinTime: 31.904ms - RpcSumTime: 383.136ms - SerializeBatchTime: 15.929us - SplitBlockDistributeByChannelTime: 19.823us - SplitBlockHashComputeTime: 5.427us - UncompressedRowBatchSize: 2.48 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.281us - DeserializeAndMergeTime: 0ns - ExecTime: 66.622us - GetResultsTime: 29.142us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.711us - HashTableSize: 152 - InsertKeysToColumnTime: 21.210us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.12us - ProjectionTime: 22.841us - RowsProduced: 152 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=12):(Active: 834.668us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 647.235us - CloseTime: 10.598us - GetBlockTime: 101.21us - OpenTime: 2.727us - PrepareTime: 169.149us - SinkTime: 526.782us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 817.243us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.3us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.72 KB - CloseTime: 8.576us - CompressTime: 0ns - ExecTime: 662.201us - InputRows: 192 - LocalBytesSent: 2.95 KB - LocalSendTime: 78.666us - LocalSentRows: 92 - MemoryUsage: - PeakMemoryUsage: 15.56 KB - MergeBlockTime: 0ns - OpenTime: 127.625us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 52.865ms - RowsProduced: 192 - RpcAvgTime: 31.900ms - RpcCount: 12 - RpcMaxTime: 31.926ms - RpcMinTime: 31.862ms - RpcSumTime: 382.804ms - SerializeBatchTime: 26.735us - SplitBlockDistributeByChannelTime: 34.33us - SplitBlockHashComputeTime: 13.200us - UncompressedRowBatchSize: 3.53 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 901ns - DeserializeAndMergeTime: 0ns - ExecTime: 114.304us - GetResultsTime: 44.622us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.898us - HashTableSize: 192 - InsertKeysToColumnTime: 29.200us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.188us - ProjectionTime: 45.958us - RowsProduced: 192 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=14):(Active: 753.801us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 554.407us - CloseTime: 10.731us - GetBlockTime: 73.49us - OpenTime: 2.175us - PrepareTime: 181.522us - SinkTime: 464.818us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 736.708us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.545us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.12 KB - CloseTime: 9.20us - CompressTime: 0ns - ExecTime: 613.838us - InputRows: 175 - LocalBytesSent: 3.02 KB - LocalSendTime: 60.823us - LocalSentRows: 94 - MemoryUsage: - PeakMemoryUsage: 14.38 KB - MergeBlockTime: 0ns - OpenTime: 140.412us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 52.809ms - RowsProduced: 175 - RpcAvgTime: 31.866ms - RpcCount: 12 - RpcMaxTime: 31.920ms - RpcMinTime: 31.644ms - RpcSumTime: 382.397ms - SerializeBatchTime: 24.348us - SplitBlockDistributeByChannelTime: 58.768us - SplitBlockHashComputeTime: 8.970us - UncompressedRowBatchSize: 2.93 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 806ns - DeserializeAndMergeTime: 0ns - ExecTime: 83.323us - GetResultsTime: 28.948us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.47us - HashTableSize: 175 - InsertKeysToColumnTime: 18.341us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.309us - ProjectionTime: 37.207us - RowsProduced: 175 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=16):(Active: 1.43ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 813.894us - CloseTime: 15.933us - GetBlockTime: 154.496us - OpenTime: 1.382us - PrepareTime: 206.459us - SinkTime: 637.912us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.19ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 217.820us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.98 KB - CloseTime: 13.53us - CompressTime: 0ns - ExecTime: 814.912us - InputRows: 186 - LocalBytesSent: 2.49 KB - LocalSendTime: 106.422us - LocalSentRows: 78 - MemoryUsage: - PeakMemoryUsage: 15.50 KB - MergeBlockTime: 0ns - OpenTime: 164.784us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 52.567ms - RowsProduced: 186 - RpcAvgTime: 31.355ms - RpcCount: 12 - RpcMaxTime: 31.885ms - RpcMinTime: 30.903ms - RpcSumTime: 376.265ms - SerializeBatchTime: 35.260us - SplitBlockDistributeByChannelTime: 52.691us - SplitBlockHashComputeTime: 14.916us - UncompressedRowBatchSize: 3.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.61us - DeserializeAndMergeTime: 0ns - ExecTime: 168.339us - GetResultsTime: 56.0us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.821us - HashTableSize: 186 - InsertKeysToColumnTime: 27.131us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.394us - ProjectionTime: 80.736us - RowsProduced: 186 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=18):(Active: 576.896us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 390.574us - CloseTime: 15.817us - GetBlockTime: 50.788us - OpenTime: 2.67us - PrepareTime: 163.840us - SinkTime: 327.419us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 555.822us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.380us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.85 KB - CloseTime: 11.793us - CompressTime: 0ns - ExecTime: 466.492us - InputRows: 178 - LocalBytesSent: 3.37 KB - LocalSendTime: 65.432us - LocalSentRows: 105 - MemoryUsage: - PeakMemoryUsage: 14.69 KB - MergeBlockTime: 0ns - OpenTime: 127.617us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 52.901ms - RowsProduced: 178 - RpcAvgTime: 31.905ms - RpcCount: 12 - RpcMaxTime: 31.936ms - RpcMinTime: 31.875ms - RpcSumTime: 382.864ms - SerializeBatchTime: 17.142us - SplitBlockDistributeByChannelTime: 29.909us - SplitBlockHashComputeTime: 7.267us - UncompressedRowBatchSize: 2.67 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 946ns - DeserializeAndMergeTime: 0ns - ExecTime: 61.901us - GetResultsTime: 21.65us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.388us - HashTableSize: 178 - InsertKeysToColumnTime: 13.416us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.701us - ProjectionTime: 23.780us - RowsProduced: 178 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=20):(Active: 609.481us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 383.598us - CloseTime: 27.764us - GetBlockTime: 51.758us - OpenTime: 1.858us - PrepareTime: 190.814us - SinkTime: 315.104us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 574.201us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.12us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.67 KB - CloseTime: 23.471us - CompressTime: 0ns - ExecTime: 477.474us - InputRows: 197 - LocalBytesSent: 3.14 KB - LocalSendTime: 60.253us - LocalSentRows: 98 - MemoryUsage: - PeakMemoryUsage: 15.38 KB - MergeBlockTime: 0ns - OpenTime: 139.38us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 52.963ms - RowsProduced: 197 - RpcAvgTime: 31.899ms - RpcCount: 12 - RpcMaxTime: 31.930ms - RpcMinTime: 31.864ms - RpcSumTime: 382.789ms - SerializeBatchTime: 16.50us - SplitBlockDistributeByChannelTime: 27.72us - SplitBlockHashComputeTime: 7.780us - UncompressedRowBatchSize: 3.48 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.37us - DeserializeAndMergeTime: 0ns - ExecTime: 65.144us - GetResultsTime: 20.441us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.486us - HashTableSize: 197 - InsertKeysToColumnTime: 11.45us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.617us - ProjectionTime: 26.101us - RowsProduced: 197 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms PipelineXTask (index=22):(Active: 788.720us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 598.442us - CloseTime: 13.834us - GetBlockTime: 83.863us - OpenTime: 1.447us - PrepareTime: 169.651us - SinkTime: 497.540us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 767.225us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.281us DATA_STREAM_SINK_OPERATOR (id=361,dst_id=361): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.00 KB - CloseTime: 10.675us - CompressTime: 0ns - ExecTime: 636.547us - InputRows: 166 - LocalBytesSent: 2.82 KB - LocalSendTime: 63.375us - LocalSentRows: 88 - MemoryUsage: - PeakMemoryUsage: 13.94 KB - MergeBlockTime: 0ns - OpenTime: 128.954us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 52.715ms - RowsProduced: 166 - RpcAvgTime: 31.674ms - RpcCount: 12 - RpcMaxTime: 31.914ms - RpcMinTime: 31.269ms - RpcSumTime: 380.88ms - SerializeBatchTime: 26.194us - SplitBlockDistributeByChannelTime: 36.4us - SplitBlockHashComputeTime: 12.803us - UncompressedRowBatchSize: 2.81 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 760ns - DeserializeAndMergeTime: 0ns - ExecTime: 93.330us - GetResultsTime: 34.527us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.915us - HashTableSize: 166 - InsertKeysToColumnTime: 17.400us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.256us - ProjectionTime: 39.290us - RowsProduced: 166 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s384ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 4.640ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 4.516ms - CloseTime: 9.344us - GetBlockTime: 205.692us - OpenTime: 1.558us - PrepareTime: 106.560us - SinkTime: 4.71ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.581ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.696ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 931ns - DeserializeAndMergeTime: 3.393ms - ExecTime: 4.82ms - ExprTime: 0ns - HashTableComputeTime: 515.94us - HashTableEmplaceTime: 254.206us - HashTableInputCount: 3.192K (3192) - InputRows: 3.192K (3192) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.10ms - OpenTime: 27.745us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 86.65 KB - CloseTime: 7.174us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 391.333us - ExecTime: 229.942us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 281.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 44.469us - ProjectionTime: 0ns - RowsProduced: 3.192K (3192) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s376ms PipelineXTask (index=3):(Active: 4.541ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 4.425ms - CloseTime: 19.238us - GetBlockTime: 194.44us - OpenTime: 1.892us - PrepareTime: 86.91us - SinkTime: 4.49ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.475ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.155ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.548us - DeserializeAndMergeTime: 3.483ms - ExecTime: 4.77ms - ExprTime: 0ns - HashTableComputeTime: 441.900us - HashTableEmplaceTime: 200.383us - HashTableInputCount: 3.611K (3611) - InputRows: 3.611K (3611) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.994ms - OpenTime: 38.939us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 89.62 KB - CloseTime: 15.777us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 420.880us - ExecTime: 215.692us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 28.608us - ProjectionTime: 0ns - RowsProduced: 3.611K (3611) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s375ms PipelineXTask (index=5):(Active: 5.112ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 5.12ms - CloseTime: 5.500us - GetBlockTime: 207.52us - OpenTime: 2.822us - PrepareTime: 81.274us - SinkTime: 4.551ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.48ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.156ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 703ns - DeserializeAndMergeTime: 3.772ms - ExecTime: 4.558ms - ExprTime: 0ns - HashTableComputeTime: 658.535us - HashTableEmplaceTime: 259.189us - HashTableInputCount: 3.766K (3766) - InputRows: 3.766K (3766) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.509ms - OpenTime: 17.921us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 93.53 KB - CloseTime: 3.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 441.521us - ExecTime: 212.2us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 23.967us - ProjectionTime: 0ns - RowsProduced: 3.766K (3766) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s376ms PipelineXTask (index=7):(Active: 4.270ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 4.180ms - CloseTime: 5.531us - GetBlockTime: 228.95us - OpenTime: 1.827us - PrepareTime: 73.134us - SinkTime: 3.726ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.206ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.737ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 649ns - DeserializeAndMergeTime: 3.38ms - ExecTime: 3.726ms - ExprTime: 0ns - HashTableComputeTime: 556.611us - HashTableEmplaceTime: 262.266us - HashTableInputCount: 3.511K (3511) - InputRows: 3.511K (3511) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.675ms - OpenTime: 20.387us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 85.61 KB - CloseTime: 4.41us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 437.563us - ExecTime: 224.494us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 242.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.692us - ProjectionTime: 0ns - RowsProduced: 3.511K (3511) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s377ms PipelineXTask (index=9):(Active: 4.175ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 4.98ms - CloseTime: 5.437us - GetBlockTime: 167.687us - OpenTime: 2.846us - PrepareTime: 62.171us - SinkTime: 3.761ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.119ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.111ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 606ns - DeserializeAndMergeTime: 3.215ms - ExecTime: 3.771ms - ExprTime: 0ns - HashTableComputeTime: 440.996us - HashTableEmplaceTime: 205.97us - HashTableInputCount: 3.478K (3478) - InputRows: 3.478K (3478) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.715ms - OpenTime: 19.168us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 88.53 KB - CloseTime: 3.720us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 385.846us - ExecTime: 166.720us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 274.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.162us - ProjectionTime: 0ns - RowsProduced: 3.478K (3478) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s377ms PipelineXTask (index=11):(Active: 3.835ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 3.756ms - CloseTime: 5.489us - GetBlockTime: 189.363us - OpenTime: 3.531us - PrepareTime: 63.710us - SinkTime: 3.374ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.780ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.332ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 858ns - DeserializeAndMergeTime: 2.814ms - ExecTime: 3.382ms - ExprTime: 0ns - HashTableComputeTime: 437.976us - HashTableEmplaceTime: 202.638us - HashTableInputCount: 3.035K (3035) - InputRows: 3.035K (3035) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.335ms - OpenTime: 17.71us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 77.43 KB - CloseTime: 3.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 321.198us - ExecTime: 185.990us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 202.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 22.779us - ProjectionTime: 0ns - RowsProduced: 3.035K (3035) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s378ms PipelineXTask (index=13):(Active: 4.614ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 4.506ms - CloseTime: 6.34us - GetBlockTime: 181.601us - OpenTime: 2.332us - PrepareTime: 90.936us - SinkTime: 4.145ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.559ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.676ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.120us - DeserializeAndMergeTime: 3.557ms - ExecTime: 4.169ms - ExprTime: 0ns - HashTableComputeTime: 487.205us - HashTableEmplaceTime: 267.968us - HashTableInputCount: 3.839K (3839) - InputRows: 3.839K (3839) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.102ms - OpenTime: 36.974us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 93.99 KB - CloseTime: 4.62us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 413.986us - ExecTime: 188.191us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 23.556us - ProjectionTime: 0ns - RowsProduced: 3.839K (3839) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s377ms PipelineXTask (index=15):(Active: 4.316ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 4.229ms - CloseTime: 3.615us - GetBlockTime: 205.659us - OpenTime: 2.170us - PrepareTime: 74.649us - SinkTime: 3.818ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.265ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.687ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.25us - DeserializeAndMergeTime: 3.281ms - ExecTime: 3.837ms - ExprTime: 0ns - HashTableComputeTime: 442.324us - HashTableEmplaceTime: 205.516us - HashTableInputCount: 3.487K (3487) - InputRows: 3.487K (3487) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.777ms - OpenTime: 27.125us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 89.83 KB - CloseTime: 2.47us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 418.582us - ExecTime: 212.769us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 22.754us - ProjectionTime: 0ns - RowsProduced: 3.487K (3487) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s377ms PipelineXTask (index=17):(Active: 4.793ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 4.702ms - CloseTime: 5.928us - GetBlockTime: 212.760us - OpenTime: 1.944us - PrepareTime: 76.418us - SinkTime: 4.292ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.735ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.965ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 785ns - DeserializeAndMergeTime: 3.591ms - ExecTime: 4.308ms - ExprTime: 0ns - HashTableComputeTime: 579.78us - HashTableEmplaceTime: 237.517us - HashTableInputCount: 3.709K (3709) - InputRows: 3.709K (3709) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 4.245ms - OpenTime: 28.972us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 88.24 KB - CloseTime: 4.291us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 448.817us - ExecTime: 219.43us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 274.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 24.418us - ProjectionTime: 0ns - RowsProduced: 3.709K (3709) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s377ms PipelineXTask (index=19):(Active: 4.334ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 4.259ms - CloseTime: 6.53us - GetBlockTime: 182.700us - OpenTime: 1.649us - PrepareTime: 60.32us - SinkTime: 3.917ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.281ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.641ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 694ns - DeserializeAndMergeTime: 3.375ms - ExecTime: 3.929ms - ExprTime: 0ns - HashTableComputeTime: 445.431us - HashTableEmplaceTime: 209.701us - HashTableInputCount: 3.593K (3593) - InputRows: 3.593K (3593) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.887ms - OpenTime: 21.304us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 93.68 KB - CloseTime: 4.614us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 457.783us - ExecTime: 186.460us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.341us - ProjectionTime: 0ns - RowsProduced: 3.593K (3593) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s377ms PipelineXTask (index=21):(Active: 4.462ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 4.382ms - CloseTime: 6.40us - GetBlockTime: 183.100us - OpenTime: 2.774us - PrepareTime: 64.905us - SinkTime: 4.14ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.412ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.40ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 777ns - DeserializeAndMergeTime: 3.372ms - ExecTime: 4.26ms - ExprTime: 0ns - HashTableComputeTime: 518.865us - HashTableEmplaceTime: 252.894us - HashTableInputCount: 3.776K (3776) - InputRows: 3.776K (3776) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.973ms - OpenTime: 23.367us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 92.48 KB - CloseTime: 4.418us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 367.316us - ExecTime: 182.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 282.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.286us - ProjectionTime: 0ns - RowsProduced: 3.776K (3776) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s378ms PipelineXTask (index=23):(Active: 4.154ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 4.60ms - CloseTime: 12.171us - GetBlockTime: 191.210us - OpenTime: 1.475us - PrepareTime: 74.446us - SinkTime: 3.660ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.97ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.318ms AGGREGATION_SINK_OPERATOR (id=360): - BuildTime: 0ns - CloseTime: 1.459us - DeserializeAndMergeTime: 3.58ms - ExecTime: 3.682ms - ExprTime: 0ns - HashTableComputeTime: 492.856us - HashTableEmplaceTime: 188.905us - HashTableInputCount: 3.409K (3409) - InputRows: 3.409K (3409) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 3.621ms - OpenTime: 31.897us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=359): - BlocksProduced: 36 - BytesReceived: 82.88 KB - CloseTime: 9.315us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 302.727us - ExecTime: 202.224us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 242.00 KB - MemoryUsage: - Blocks: 23.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 20.391us - ProjectionTime: 0ns - RowsProduced: 3.409K (3409) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s377ms Fragment 13: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 193.574ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 192.468ms - CloseTime: 845.797us - GetBlockTime: 188.376ms - OpenTime: 11.927us - PrepareTime: 224.555us - SinkTime: 1.379ms - GetBlockCounter: 412 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 154 - NumBlockedTimes: 156 - NumScheduleTimes: 158 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 192.146ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.352ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 85.58 KB - CloseTime: 21.755us - CompressTime: 0ns - ExecTime: 1.501ms - InputRows: 3.661K (3661) - LocalBytesSent: 165.74 KB - LocalSendTime: 98.92us - LocalSentRows: 1.847K (1847) - MemoryUsage: - PeakMemoryUsage: 548.00 KB - MergeBlockTime: 0ns - OpenTime: 100.928us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 179.717ms - RowsProduced: 3.661K (3661) - RpcAvgTime: 178.312ms - RpcCount: 12 - RpcMaxTime: 178.382ms - RpcMinTime: 178.235ms - RpcSumTime: 2s139ms - SerializeBatchTime: 453.94us - SplitBlockDistributeByChannelTime: 390.953us - SplitBlockHashComputeTime: 87.972us - UncompressedRowBatchSize: 167.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 68.982ms - CloseTime: 786.739us - DeserializeAndMergeTime: 0ns - ExecTime: 71.711ms - ExprTime: 437.666us - GetResultsTime: 1.123ms - HashTableComputeTime: 50.869ms - HashTableEmplaceTime: 20.878ms - HashTableInputCount: 743.406K (743406) - HashTableIterateTime: 18.736us - HashTableSize: 3.661K (3661) - InsertKeysToColumnTime: 189.282us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 21.469us - ProjectionTime: 0ns - RowsProduced: 3.661K (3661) - SerializeDataTime: 896.888us - SerializeKeyTime: 0ns - SerializeResultTime: 1.125ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 410 - BuildOutputBlock: 0ns - CloseTime: 17.678us - ExecTime: 109.680ms - InitProbeSideTime: 7.175ms - JoinFilterTimer: 45.242us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 34.238us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 163.67us - ProbeFindNextTime: 0ns - ProbeRows: 1.66564M (1665640) - ProbeTime: 65.587ms - ProbeWhenBuildSideOutputTime: 18.893ms - ProbeWhenProbeSideOutputTime: 7.423ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.957ms - ProjectionTime: 42.285ms - RowsProduced: 743.406K (743406) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s708ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 569 - BytesReceived: 10.55 MB - CloseTime: 12.796us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.608ms - ExecTime: 4.690ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.08 MB - MemoryUsage: - Blocks: 20.07 MB - PeakMemoryUsage: 15.99 MB - OpenTime: 28.658us - ProjectionTime: 0ns - RowsProduced: 1.66564M (1665640) - SendersBlockedTotalTimer(*): 52s944ms - WaitForDependencyTime: 0ns - WaitForData0: 1s857ms PipelineXTask (index=2):(Active: 204.859ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 203.923ms - CloseTime: 674.748us - GetBlockTime: 199.504ms - OpenTime: 7.592us - PrepareTime: 230.573us - SinkTime: 1.363ms - GetBlockCounter: 443 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 173 - NumBlockedTimes: 175 - NumScheduleTimes: 177 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 203.706ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.522ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 87.85 KB - CloseTime: 12.892us - CompressTime: 0ns - ExecTime: 1.504ms - InputRows: 3.639K (3639) - LocalBytesSent: 171.94 KB - LocalSendTime: 110.304us - LocalSentRows: 1.835K (1835) - MemoryUsage: - PeakMemoryUsage: 556.00 KB - MergeBlockTime: 0ns - OpenTime: 129.123us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 182.375ms - RowsProduced: 3.639K (3639) - RpcAvgTime: 180.369ms - RpcCount: 12 - RpcMaxTime: 180.485ms - RpcMinTime: 180.261ms - RpcSumTime: 2s164ms - SerializeBatchTime: 460.445us - SplitBlockDistributeByChannelTime: 399.724us - SplitBlockHashComputeTime: 84.567us - UncompressedRowBatchSize: 172.56 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 72.820ms - CloseTime: 635.54us - DeserializeAndMergeTime: 0ns - ExecTime: 75.857ms - ExprTime: 435.423us - GetResultsTime: 1.425ms - HashTableComputeTime: 54.465ms - HashTableEmplaceTime: 22.575ms - HashTableInputCount: 831.921K (831921) - HashTableIterateTime: 33.783us - HashTableSize: 3.639K (3639) - InsertKeysToColumnTime: 167.40us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 32.12us - ProjectionTime: 0ns - RowsProduced: 3.639K (3639) - SerializeDataTime: 1.179ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.427ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 442 - BuildOutputBlock: 0ns - CloseTime: 13.513us - ExecTime: 116.19ms - InitProbeSideTime: 6.863ms - JoinFilterTimer: 76.716us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.815us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 132.425us - ProbeFindNextTime: 0ns - ProbeRows: 1.777918M (1777918) - ProbeTime: 66.647ms - ProbeWhenBuildSideOutputTime: 20.524ms - ProbeWhenProbeSideOutputTime: 7.180ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.497ms - ProjectionTime: 47.561ms - RowsProduced: 831.921K (831921) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s717ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 609 - BytesReceived: 11.27 MB - CloseTime: 8.906us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.823ms - ExecTime: 4.957ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 34.34 MB - MemoryUsage: - Blocks: 20.63 MB - PeakMemoryUsage: 17.43 MB - OpenTime: 16.540us - ProjectionTime: 0ns - RowsProduced: 1.777918M (1777918) - SendersBlockedTotalTimer(*): 1m28s - WaitForDependencyTime: 0ns - WaitForData0: 1s887ms PipelineXTask (index=4):(Active: 176.207ms, % non-child: 0.00%) - CoreChangeTimes: 35 - ExecuteTime: 175.388ms - CloseTime: 583.263us - GetBlockTime: 171.116ms - OpenTime: 9.657us - PrepareTime: 187.102us - SinkTime: 1.572ms - GetBlockCounter: 414 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 164 - NumBlockedTimes: 166 - NumScheduleTimes: 167 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 172.587ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.950ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 83.61 KB - CloseTime: 14.947us - CompressTime: 0ns - ExecTime: 1.673ms - InputRows: 3.415K (3415) - LocalBytesSent: 159.66 KB - LocalSendTime: 149.335us - LocalSentRows: 1.707K (1707) - MemoryUsage: - PeakMemoryUsage: 524.00 KB - MergeBlockTime: 0ns - OpenTime: 86.334us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 182.308ms - RowsProduced: 3.415K (3415) - RpcAvgTime: 180.925ms - RpcCount: 12 - RpcMaxTime: 181.396ms - RpcMinTime: 178.498ms - RpcSumTime: 2s171ms - SerializeBatchTime: 507.332us - SplitBlockDistributeByChannelTime: 426.239us - SplitBlockHashComputeTime: 74.259us - UncompressedRowBatchSize: 163.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 60.912ms - CloseTime: 543.953us - DeserializeAndMergeTime: 0ns - ExecTime: 63.516ms - ExprTime: 442.32us - GetResultsTime: 1.279ms - HashTableComputeTime: 45.209ms - HashTableEmplaceTime: 18.888ms - HashTableInputCount: 718.518K (718518) - HashTableIterateTime: 20.149us - HashTableSize: 3.415K (3415) - InsertKeysToColumnTime: 203.874us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 36.562us - ProjectionTime: 0ns - RowsProduced: 3.415K (3415) - SerializeDataTime: 1.23ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.282ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 413 - BuildOutputBlock: 0ns - CloseTime: 13.875us - ExecTime: 100.910ms - InitProbeSideTime: 6.145ms - JoinFilterTimer: 49.425us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.359us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 136.100us - ProbeFindNextTime: 0ns - ProbeRows: 1.661675M (1661675) - ProbeTime: 59.817ms - ProbeWhenBuildSideOutputTime: 18.726ms - ProbeWhenProbeSideOutputTime: 6.185ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.85ms - ProjectionTime: 39.439ms - RowsProduced: 718.518K (718518) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s718ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 569 - BytesReceived: 10.32 MB - CloseTime: 5.943us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.212ms - ExecTime: 4.468ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.18 MB - MemoryUsage: - Blocks: 20.19 MB - PeakMemoryUsage: 16.29 MB - OpenTime: 14.815us - ProjectionTime: 0ns - RowsProduced: 1.661675M (1661675) - SendersBlockedTotalTimer(*): 53s536ms - WaitForDependencyTime: 0ns - WaitForData0: 1s875ms PipelineXTask (index=6):(Active: 224.640ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 223.168ms - CloseTime: 1.158ms - GetBlockTime: 219.51ms - OpenTime: 6.285us - PrepareTime: 261.80us - SinkTime: 1.503ms - GetBlockCounter: 439 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 134 - NumBlockedTimes: 136 - NumScheduleTimes: 138 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 223.10ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.635ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.20 KB - CloseTime: 25.407us - CompressTime: 0ns - ExecTime: 1.652ms - InputRows: 3.672K (3672) - LocalBytesSent: 176.01 KB - LocalSendTime: 131.862us - LocalSentRows: 1.839K (1839) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 123.248us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 170.362ms - RowsProduced: 3.672K (3672) - RpcAvgTime: 167.62ms - RpcCount: 12 - RpcMaxTime: 167.139ms - RpcMinTime: 167.16ms - RpcSumTime: 2s4ms - SerializeBatchTime: 495.367us - SplitBlockDistributeByChannelTime: 438.298us - SplitBlockHashComputeTime: 76.456us - UncompressedRowBatchSize: 178.37 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 84.789ms - CloseTime: 1.90ms - DeserializeAndMergeTime: 0ns - ExecTime: 88.276ms - ExprTime: 422.331us - GetResultsTime: 1.430ms - HashTableComputeTime: 64.303ms - HashTableEmplaceTime: 26.392ms - HashTableInputCount: 1.065183M (1065183) - HashTableIterateTime: 38.898us - HashTableSize: 3.672K (3672) - InsertKeysToColumnTime: 160.885us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 26.830us - ProjectionTime: 0ns - RowsProduced: 3.672K (3672) - SerializeDataTime: 1.194ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.431ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 437 - BuildOutputBlock: 0ns - CloseTime: 23.635us - ExecTime: 124.449ms - InitProbeSideTime: 6.267ms - JoinFilterTimer: 42.677us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.117us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 132.659us - ProbeFindNextTime: 0ns - ProbeRows: 1.679018M (1679018) - ProbeTime: 67.328ms - ProbeWhenBuildSideOutputTime: 23.169ms - ProbeWhenProbeSideOutputTime: 7.894ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.337ms - ProjectionTime: 55.438ms - RowsProduced: 1.065183M (1065183) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s717ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 569 - BytesReceived: 10.25 MB - CloseTime: 11.727us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.673ms - ExecTime: 4.512ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.63 MB - MemoryUsage: - Blocks: 20.14 MB - PeakMemoryUsage: 15.91 MB - OpenTime: 10.825us - ProjectionTime: 0ns - RowsProduced: 1.679018M (1679018) - SendersBlockedTotalTimer(*): 52s366ms - WaitForDependencyTime: 0ns - WaitForData0: 1s820ms PipelineXTask (index=8):(Active: 257.817ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 256.551ms - CloseTime: 1.20ms - GetBlockTime: 251.790ms - OpenTime: 10.28us - PrepareTime: 213.782us - SinkTime: 2.49ms - GetBlockCounter: 472 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 147 - NumBlockedTimes: 149 - NumScheduleTimes: 151 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 255.810ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.240ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 96.29 KB - CloseTime: 23.652us - CompressTime: 0ns - ExecTime: 2.176ms - InputRows: 3.812K (3812) - LocalBytesSent: 194.18 KB - LocalSendTime: 152.206us - LocalSentRows: 1.91K (1910) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 103.915us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 186.353ms - RowsProduced: 3.812K (3812) - RpcAvgTime: 182.167ms - RpcCount: 12 - RpcMaxTime: 184.30ms - RpcMinTime: 181.655ms - RpcSumTime: 2s186ms - SerializeBatchTime: 768.315us - SplitBlockDistributeByChannelTime: 539.474us - SplitBlockHashComputeTime: 133.279us - UncompressedRowBatchSize: 197.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 96.998ms - CloseTime: 960.471us - DeserializeAndMergeTime: 0ns - ExecTime: 100.678ms - ExprTime: 447.628us - GetResultsTime: 1.762ms - HashTableComputeTime: 73.811ms - HashTableEmplaceTime: 30.835ms - HashTableInputCount: 1.201907M (1201907) - HashTableIterateTime: 39.244us - HashTableSize: 3.812K (3812) - InsertKeysToColumnTime: 244.351us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 24.910us - ProjectionTime: 0ns - RowsProduced: 3.812K (3812) - SerializeDataTime: 1.453ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.764ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 470 - BuildOutputBlock: 0ns - CloseTime: 15.18us - ExecTime: 143.629ms - InitProbeSideTime: 6.954ms - JoinFilterTimer: 69.282us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.874us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 169.197us - ProbeFindNextTime: 0ns - ProbeRows: 1.820133M (1820133) - ProbeTime: 76.511ms - ProbeWhenBuildSideOutputTime: 26.672ms - ProbeWhenProbeSideOutputTime: 8.780ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.986ms - ProjectionTime: 65.224ms - RowsProduced: 1.201907M (1201907) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s715ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 625 - BytesReceived: 11.40 MB - CloseTime: 16.287us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.986ms - ExecTime: 5.342ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 34.89 MB - MemoryUsage: - Blocks: 20.62 MB - PeakMemoryUsage: 17.71 MB - OpenTime: 22.164us - ProjectionTime: 0ns - RowsProduced: 1.820133M (1820133) - SendersBlockedTotalTimer(*): 1m28s - WaitForDependencyTime: 0ns - WaitForData0: 1s850ms PipelineXTask (index=10):(Active: 213.468ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 212.240ms - CloseTime: 993.167us - GetBlockTime: 208.596ms - OpenTime: 8.390us - PrepareTime: 199.710us - SinkTime: 1.338ms - GetBlockCounter: 419 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 125 - NumBlockedTimes: 127 - NumScheduleTimes: 129 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 201.375ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.543ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 86.92 KB - CloseTime: 22.222us - CompressTime: 0ns - ExecTime: 1.460ms - InputRows: 3.504K (3504) - LocalBytesSent: 170.10 KB - LocalSendTime: 104.368us - LocalSentRows: 1.767K (1767) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 99.793us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 175.736ms - RowsProduced: 3.504K (3504) - RpcAvgTime: 173.663ms - RpcCount: 12 - RpcMaxTime: 173.739ms - RpcMinTime: 173.594ms - RpcSumTime: 2s83ms - SerializeBatchTime: 475.850us - SplitBlockDistributeByChannelTime: 358.906us - SplitBlockHashComputeTime: 80.60us - UncompressedRowBatchSize: 171.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 74.345ms - CloseTime: 930.13us - DeserializeAndMergeTime: 0ns - ExecTime: 77.449ms - ExprTime: 396.783us - GetResultsTime: 1.405ms - HashTableComputeTime: 55.483ms - HashTableEmplaceTime: 23.169ms - HashTableInputCount: 794.505K (794505) - HashTableIterateTime: 31.171us - HashTableSize: 3.504K (3504) - InsertKeysToColumnTime: 178.30us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 20.717us - ProjectionTime: 0ns - RowsProduced: 3.504K (3504) - SerializeDataTime: 1.179ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.406ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 418 - BuildOutputBlock: 0ns - CloseTime: 24.483us - ExecTime: 123.792ms - InitProbeSideTime: 7.107ms - JoinFilterTimer: 40.714us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.807us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 134.879us - ProbeFindNextTime: 0ns - ProbeRows: 1.680328M (1680328) - ProbeTime: 74.981ms - ProbeWhenBuildSideOutputTime: 28.525ms - ProbeWhenProbeSideOutputTime: 7.146ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.162ms - ProjectionTime: 47.146ms - RowsProduced: 794.505K (794505) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s719ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 575 - BytesReceived: 10.38 MB - CloseTime: 9.498us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.255ms - ExecTime: 5.575ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.80 MB - MemoryUsage: - Blocks: 20.11 MB - PeakMemoryUsage: 15.87 MB - OpenTime: 21.436us - ProjectionTime: 0ns - RowsProduced: 1.680328M (1680328) - SendersBlockedTotalTimer(*): 52s237ms - WaitForDependencyTime: 0ns - WaitForData0: 1s825ms PipelineXTask (index=12):(Active: 184.101ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 182.933ms - CloseTime: 939.276us - GetBlockTime: 179.261ms - OpenTime: 6.22us - PrepareTime: 197.443us - SinkTime: 1.435ms - GetBlockCounter: 404 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 147 - NumBlockedTimes: 149 - NumScheduleTimes: 151 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 182.523ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.386ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 83.67 KB - CloseTime: 25.607us - CompressTime: 0ns - ExecTime: 1.576ms - InputRows: 3.532K (3532) - LocalBytesSent: 161.42 KB - LocalSendTime: 169.290us - LocalSentRows: 1.79K (1790) - MemoryUsage: - PeakMemoryUsage: 523.00 KB - MergeBlockTime: 0ns - OpenTime: 116.162us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 169.109ms - RowsProduced: 3.532K (3532) - RpcAvgTime: 168.8ms - RpcCount: 12 - RpcMaxTime: 168.124ms - RpcMinTime: 167.944ms - RpcSumTime: 2s16ms - SerializeBatchTime: 452.268us - SplitBlockDistributeByChannelTime: 347.41us - SplitBlockHashComputeTime: 105.668us - UncompressedRowBatchSize: 163.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 67.446ms - CloseTime: 870.838us - DeserializeAndMergeTime: 0ns - ExecTime: 70.377ms - ExprTime: 327.196us - GetResultsTime: 1.414ms - HashTableComputeTime: 50.780ms - HashTableEmplaceTime: 20.198ms - HashTableInputCount: 772.219K (772219) - HashTableIterateTime: 25.887us - HashTableSize: 3.532K (3532) - InsertKeysToColumnTime: 160.415us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 21.418us - ProjectionTime: 0ns - RowsProduced: 3.532K (3532) - SerializeDataTime: 1.190ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.417ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 403 - BuildOutputBlock: 0ns - CloseTime: 22.738us - ExecTime: 102.891ms - InitProbeSideTime: 6.579ms - JoinFilterTimer: 35.744us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.397us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 126.516us - ProbeFindNextTime: 0ns - ProbeRows: 1.618554M (1618554) - ProbeTime: 59.312ms - ProbeWhenBuildSideOutputTime: 16.959ms - ProbeWhenProbeSideOutputTime: 6.691ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.678ms - ProjectionTime: 42.56ms - RowsProduced: 772.219K (772219) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s723ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 555 - BytesReceived: 10.10 MB - CloseTime: 11.718us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.263ms - ExecTime: 4.411ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.25 MB - MemoryUsage: - Blocks: 20.23 MB - PeakMemoryUsage: 15.34 MB - OpenTime: 11.832us - ProjectionTime: 0ns - RowsProduced: 1.618554M (1618554) - SendersBlockedTotalTimer(*): 51s537ms - WaitForDependencyTime: 0ns - WaitForData0: 1s844ms PipelineXTask (index=14):(Active: 180.172ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 179.130ms - CloseTime: 822.202us - GetBlockTime: 174.855ms - OpenTime: 5.164us - PrepareTime: 191.535us - SinkTime: 1.697ms - GetBlockCounter: 423 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 169 - NumBlockedTimes: 171 - NumScheduleTimes: 172 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 174.628ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.178ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 90.97 KB - CloseTime: 23.240us - CompressTime: 0ns - ExecTime: 1.823ms - InputRows: 3.601K (3601) - LocalBytesSent: 179.35 KB - LocalSendTime: 137.478us - LocalSentRows: 1.819K (1819) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 104.152us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 184.236ms - RowsProduced: 3.601K (3601) - RpcAvgTime: 181.416ms - RpcCount: 12 - RpcMaxTime: 181.622ms - RpcMinTime: 181.117ms - RpcSumTime: 2s176ms - SerializeBatchTime: 524.368us - SplitBlockDistributeByChannelTime: 482.851us - SplitBlockHashComputeTime: 142.98us - UncompressedRowBatchSize: 180.86 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 62.790ms - CloseTime: 757.394us - DeserializeAndMergeTime: 0ns - ExecTime: 65.818ms - ExprTime: 308.329us - GetResultsTime: 1.617ms - HashTableComputeTime: 46.872ms - HashTableEmplaceTime: 18.844ms - HashTableInputCount: 855.426K (855426) - HashTableIterateTime: 39.930us - HashTableSize: 3.601K (3601) - InsertKeysToColumnTime: 194.99us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 19.830us - ProjectionTime: 0ns - RowsProduced: 3.601K (3601) - SerializeDataTime: 1.354ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.619ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 422 - BuildOutputBlock: 0ns - CloseTime: 18.653us - ExecTime: 102.802ms - InitProbeSideTime: 5.645ms - JoinFilterTimer: 36.295us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.319us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 125.253us - ProbeFindNextTime: 0ns - ProbeRows: 1.689694M (1689694) - ProbeTime: 56.465ms - ProbeWhenBuildSideOutputTime: 17.139ms - ProbeWhenProbeSideOutputTime: 6.409ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.30ms - ProjectionTime: 44.819ms - RowsProduced: 855.426K (855426) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s720ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 582 - BytesReceived: 10.57 MB - CloseTime: 16.649us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.85ms - ExecTime: 4.284ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.07 MB - MemoryUsage: - Blocks: 20.15 MB - PeakMemoryUsage: 16.66 MB - OpenTime: 13.307us - ProjectionTime: 0ns - RowsProduced: 1.689694M (1689694) - SendersBlockedTotalTimer(*): 53s784ms - WaitForDependencyTime: 0ns - WaitForData0: 1s894ms PipelineXTask (index=16):(Active: 209.156ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 208.183ms - CloseTime: 721.963us - GetBlockTime: 203.904ms - OpenTime: 7.628us - PrepareTime: 218.632us - SinkTime: 1.506ms - GetBlockCounter: 449 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 163 - NumBlockedTimes: 165 - NumScheduleTimes: 167 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 207.24ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.59ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.33 KB - CloseTime: 28.234us - CompressTime: 0ns - ExecTime: 1.638ms - InputRows: 3.522K (3522) - LocalBytesSent: 173.58 KB - LocalSendTime: 136.289us - LocalSentRows: 1.772K (1772) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 105.56us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 185.618ms - RowsProduced: 3.522K (3522) - RpcAvgTime: 181.833ms - RpcCount: 12 - RpcMaxTime: 182.290ms - RpcMinTime: 180.47ms - RpcSumTime: 2s181ms - SerializeBatchTime: 484.604us - SplitBlockDistributeByChannelTime: 413.90us - SplitBlockHashComputeTime: 78.968us - UncompressedRowBatchSize: 175.18 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 75.525ms - CloseTime: 646.203us - DeserializeAndMergeTime: 0ns - ExecTime: 78.131ms - ExprTime: 420.841us - GetResultsTime: 1.171ms - HashTableComputeTime: 56.682ms - HashTableEmplaceTime: 23.926ms - HashTableInputCount: 909.518K (909518) - HashTableIterateTime: 18.429us - HashTableSize: 3.522K (3522) - InsertKeysToColumnTime: 174.59us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 24.749us - ProjectionTime: 0ns - RowsProduced: 3.522K (3522) - SerializeDataTime: 946.328us - SerializeKeyTime: 0ns - SerializeResultTime: 1.173ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 448 - BuildOutputBlock: 0ns - CloseTime: 26.29us - ExecTime: 118.659ms - InitProbeSideTime: 6.898ms - JoinFilterTimer: 42.60us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.41us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 134.279us - ProbeFindNextTime: 0ns - ProbeRows: 1.801789M (1801789) - ProbeTime: 66.477ms - ProbeWhenBuildSideOutputTime: 21.3ms - ProbeWhenProbeSideOutputTime: 7.728ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.518ms - ProjectionTime: 50.506ms - RowsProduced: 909.518K (909518) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s747ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 617 - BytesReceived: 11.14 MB - CloseTime: 12.760us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.497ms - ExecTime: 4.766ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 35.31 MB - MemoryUsage: - Blocks: 20.99 MB - PeakMemoryUsage: 18.20 MB - OpenTime: 11.437us - ProjectionTime: 0ns - RowsProduced: 1.801789M (1801789) - SendersBlockedTotalTimer(*): 1m40s - WaitForDependencyTime: 0ns - WaitForData0: 1s853ms PipelineXTask (index=18):(Active: 205.1ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 203.887ms - CloseTime: 863.107us - GetBlockTime: 199.753ms - OpenTime: 10.847us - PrepareTime: 218.168us - SinkTime: 1.394ms - GetBlockCounter: 431 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 156 - NumBlockedTimes: 158 - NumScheduleTimes: 160 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 199.32ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.955ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 85.52 KB - CloseTime: 34.52us - CompressTime: 0ns - ExecTime: 1.532ms - InputRows: 3.367K (3367) - LocalBytesSent: 162.79 KB - LocalSendTime: 136.941us - LocalSentRows: 1.684K (1684) - MemoryUsage: - PeakMemoryUsage: 552.50 KB - MergeBlockTime: 0ns - OpenTime: 105.645us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 180.290ms - RowsProduced: 3.367K (3367) - RpcAvgTime: 178.630ms - RpcCount: 12 - RpcMaxTime: 178.717ms - RpcMinTime: 178.567ms - RpcSumTime: 2s143ms - SerializeBatchTime: 481.600us - SplitBlockDistributeByChannelTime: 339.684us - SplitBlockHashComputeTime: 76.155us - UncompressedRowBatchSize: 166.58 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 71.424ms - CloseTime: 789.839us - DeserializeAndMergeTime: 0ns - ExecTime: 74.457ms - ExprTime: 431.998us - GetResultsTime: 1.399ms - HashTableComputeTime: 52.705ms - HashTableEmplaceTime: 21.566ms - HashTableInputCount: 734.038K (734038) - HashTableIterateTime: 29.891us - HashTableSize: 3.367K (3367) - InsertKeysToColumnTime: 181.305us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 24.893us - ProjectionTime: 0ns - RowsProduced: 3.367K (3367) - SerializeDataTime: 1.157ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.401ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 430 - BuildOutputBlock: 0ns - CloseTime: 22.871us - ExecTime: 118.407ms - InitProbeSideTime: 7.449ms - JoinFilterTimer: 45.631us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 141.587us - ProbeFindNextTime: 0ns - ProbeRows: 1.736305M (1736305) - ProbeTime: 66.172ms - ProbeWhenBuildSideOutputTime: 18.917ms - ProbeWhenProbeSideOutputTime: 7.52ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.37ms - ProjectionTime: 50.398ms - RowsProduced: 734.038K (734038) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s744ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 589 - BytesReceived: 10.67 MB - CloseTime: 10.408us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.587ms - ExecTime: 4.767ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.79 MB - MemoryUsage: - Blocks: 20.30 MB - PeakMemoryUsage: 16.73 MB - OpenTime: 21.793us - ProjectionTime: 0ns - RowsProduced: 1.736305M (1736305) - SendersBlockedTotalTimer(*): 1m4s - WaitForDependencyTime: 0ns - WaitForData0: 1s852ms PipelineXTask (index=20):(Active: 221.279ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 220.228ms - CloseTime: 811.297us - GetBlockTime: 216.130ms - OpenTime: 5.640us - PrepareTime: 200.461us - SinkTime: 1.530ms - GetBlockCounter: 435 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 144 - NumBlockedTimes: 146 - NumScheduleTimes: 148 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 209.338ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.539ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.49 KB - CloseTime: 11.804us - CompressTime: 0ns - ExecTime: 1.644ms - InputRows: 3.715K (3715) - LocalBytesSent: 175.44 KB - LocalSendTime: 108.849us - LocalSentRows: 1.871K (1871) - MemoryUsage: - PeakMemoryUsage: 556.00 KB - MergeBlockTime: 0ns - OpenTime: 102.842us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 182.396ms - RowsProduced: 3.715K (3715) - RpcAvgTime: 181.607ms - RpcCount: 12 - RpcMaxTime: 181.710ms - RpcMinTime: 181.549ms - RpcSumTime: 2s179ms - SerializeBatchTime: 475.757us - SplitBlockDistributeByChannelTime: 494.290us - SplitBlockHashComputeTime: 76.515us - UncompressedRowBatchSize: 175.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 76.233ms - CloseTime: 775.149us - DeserializeAndMergeTime: 0ns - ExecTime: 79.216ms - ExprTime: 381.744us - GetResultsTime: 1.384ms - HashTableComputeTime: 56.357ms - HashTableEmplaceTime: 24.806ms - HashTableInputCount: 872.331K (872331) - HashTableIterateTime: 45.684us - HashTableSize: 3.715K (3715) - InsertKeysToColumnTime: 175.938us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 29.170us - ProjectionTime: 0ns - RowsProduced: 3.715K (3715) - SerializeDataTime: 1.124ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.386ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 434 - BuildOutputBlock: 0ns - CloseTime: 13.976us - ExecTime: 130.200ms - InitProbeSideTime: 7.267ms - JoinFilterTimer: 44.739us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.608us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 139.655us - ProbeFindNextTime: 0ns - ProbeRows: 1.750433M (1750433) - ProbeTime: 77.463ms - ProbeWhenBuildSideOutputTime: 32.50ms - ProbeWhenProbeSideOutputTime: 7.695ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.149ms - ProjectionTime: 51.65ms - RowsProduced: 872.331K (872331) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s743ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 598 - BytesReceived: 10.85 MB - CloseTime: 6.197us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.1ms - ExecTime: 4.818ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 34.94 MB - MemoryUsage: - Blocks: 20.51 MB - PeakMemoryUsage: 17.53 MB - OpenTime: 13.907us - ProjectionTime: 0ns - RowsProduced: 1.750433M (1750433) - SendersBlockedTotalTimer(*): 1m17s - WaitForDependencyTime: 0ns - WaitForData0: 1s842ms PipelineXTask (index=22):(Active: 233.49ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 231.648ms - CloseTime: 996.684us - GetBlockTime: 227.332ms - OpenTime: 6.466us - PrepareTime: 374.242us - SinkTime: 1.939ms - GetBlockCounter: 442 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 138 - NumBlockedTimes: 140 - NumScheduleTimes: 142 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 222.137ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.509ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.52 KB - CloseTime: 24.650us - CompressTime: 0ns - ExecTime: 2.72ms - InputRows: 3.551K (3551) - LocalBytesSent: 174.16 KB - LocalSendTime: 150.592us - LocalSentRows: 1.794K (1794) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 109.127us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 186.601ms - RowsProduced: 3.551K (3551) - RpcAvgTime: 182.643ms - RpcCount: 12 - RpcMaxTime: 183.926ms - RpcMinTime: 181.494ms - RpcSumTime: 2s191ms - SerializeBatchTime: 726.720us - SplitBlockDistributeByChannelTime: 543.777us - SplitBlockHashComputeTime: 122.744us - UncompressedRowBatchSize: 177.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 89.452ms - CloseTime: 932.298us - DeserializeAndMergeTime: 0ns - ExecTime: 92.714ms - ExprTime: 403.843us - GetResultsTime: 1.606ms - HashTableComputeTime: 68.476ms - HashTableEmplaceTime: 26.432ms - HashTableInputCount: 942.081K (942081) - HashTableIterateTime: 58.487us - HashTableSize: 3.551K (3551) - InsertKeysToColumnTime: 208.664us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 28.409us - ProjectionTime: 0ns - RowsProduced: 3.551K (3551) - SerializeDataTime: 1.301ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.609ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 441 - BuildOutputBlock: 0ns - CloseTime: 23.136us - ExecTime: 125.597ms - InitProbeSideTime: 6.806ms - JoinFilterTimer: 40.58us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.553us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 139.818us - ProbeFindNextTime: 0ns - ProbeRows: 1.790083M (1790083) - ProbeTime: 69.495ms - ProbeWhenBuildSideOutputTime: 21.142ms - ProbeWhenProbeSideOutputTime: 7.443ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.978ms - ProjectionTime: 54.417ms - RowsProduced: 942.081K (942081) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s735ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 607 - BytesReceived: 11.10 MB - CloseTime: 9.294us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.973ms - ExecTime: 7.406ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 34.31 MB - MemoryUsage: - Blocks: 20.41 MB - PeakMemoryUsage: 16.89 MB - OpenTime: 181.773us - ProjectionTime: 0ns - RowsProduced: 1.790083M (1790083) - SendersBlockedTotalTimer(*): 1m5s - WaitForDependencyTime: 0ns - WaitForData0: 1s852ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.256ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.155ms - CloseTime: 11.824us - GetBlockTime: 118.497us - OpenTime: 1.783us - PrepareTime: 81.980us - SinkTime: 2.949ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.219ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 898.226us HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.138us - BuildRows: 6.635K (6635) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 234.876us - BuildTableInsertTime: 66.444us - BuildTableTime: 79.463us - CloseTime: 0ns - ExecTime: 2.981ms - InputRows: 6.634K (6634) - MemoryUsage: - BuildBlocks: 218.40 KB - BuildKeyArena: 0.00 - HashTable: 57.92 KB - PeakMemoryUsage: 276.32 KB - OpenTime: 37.883us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.307us - RuntimeFilterComputeTime: 403.844us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 114.82 KB - CloseTime: 8.432us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 273.510us - ExecTime: 133.891us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 15.121us - ProjectionTime: 0ns - RowsProduced: 6.634K (6634) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s423ms PipelineXTask (index=3):(Active: 6.157ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 6.81ms - CloseTime: 17.954us - GetBlockTime: 151.488us - OpenTime: 3.259us - PrepareTime: 48.75us - SinkTime: 5.796ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.664ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.968us - BuildRows: 6.653K (6653) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 281.397us - BuildTableInsertTime: 90.941us - BuildTableTime: 110.720us - CloseTime: 0ns - ExecTime: 5.798ms - InputRows: 6.652K (6652) - MemoryUsage: - BuildBlocks: 219.17 KB - BuildKeyArena: 0.00 - HashTable: 57.99 KB - PeakMemoryUsage: 277.16 KB - OpenTime: 11.359us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.362ms - RuntimeFilterComputeTime: 1.40ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 115.64 KB - CloseTime: 12.736us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 319.481us - ExecTime: 165.81us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 62.00 KB - OpenTime: 11.511us - ProjectionTime: 0ns - RowsProduced: 6.652K (6652) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s422ms PipelineXTask (index=5):(Active: 20.841ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 20.758ms - CloseTime: 24.162us - GetBlockTime: 148.219us - OpenTime: 3.70us - PrepareTime: 48.500us - SinkTime: 20.498ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.560ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.782ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.634us - BuildRows: 6.438K (6438) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 249.811us - BuildTableInsertTime: 95.247us - BuildTableTime: 117.142us - CloseTime: 0ns - ExecTime: 20.503ms - InputRows: 6.437K (6437) - MemoryUsage: - BuildBlocks: 211.92 KB - BuildKeyArena: 0.00 - HashTable: 57.15 KB - PeakMemoryUsage: 269.07 KB - OpenTime: 9.820us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.104ms - RuntimeFilterComputeTime: 1.24ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 113.49 KB - CloseTime: 20.174us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 250.550us - ExecTime: 174.134us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.00 KB - MemoryUsage: - Blocks: 54.00 KB - PeakMemoryUsage: 54.00 KB - OpenTime: 14.125us - ProjectionTime: 0ns - RowsProduced: 6.437K (6437) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s424ms PipelineXTask (index=7):(Active: 10.125ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 10.53ms - CloseTime: 10.577us - GetBlockTime: 141.874us - OpenTime: 2.994us - PrepareTime: 52.620us - SinkTime: 9.806ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.100ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.231ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.659us - BuildRows: 6.758K (6758) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 211.152us - BuildTableInsertTime: 80.57us - BuildTableTime: 118.439us - CloseTime: 0ns - ExecTime: 9.813ms - InputRows: 6.757K (6757) - MemoryUsage: - BuildBlocks: 222.47 KB - BuildKeyArena: 0.00 - HashTable: 58.40 KB - PeakMemoryUsage: 280.87 KB - OpenTime: 11.932us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.684ms - RuntimeFilterComputeTime: 466.234us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 119.48 KB - CloseTime: 7.872us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 273.568us - ExecTime: 158.280us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 62.00 KB - OpenTime: 17.36us - ProjectionTime: 0ns - RowsProduced: 6.757K (6757) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s423ms PipelineXTask (index=9):(Active: 7.813ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 7.710ms - CloseTime: 15.880us - GetBlockTime: 120.375us - OpenTime: 3.634us - PrepareTime: 77.134us - SinkTime: 7.495ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.933ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.472ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.618us - BuildRows: 6.808K (6808) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 239.815us - BuildTableInsertTime: 94.117us - BuildTableTime: 118.398us - CloseTime: 0ns - ExecTime: 7.506ms - InputRows: 6.807K (6807) - MemoryUsage: - BuildBlocks: 223.94 KB - BuildKeyArena: 0.00 - HashTable: 58.60 KB - PeakMemoryUsage: 282.53 KB - OpenTime: 15.553us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.595ms - RuntimeFilterComputeTime: 459.607us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 117.60 KB - CloseTime: 11.754us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 261.155us - ExecTime: 138.843us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 62.00 KB - OpenTime: 14.416us - ProjectionTime: 0ns - RowsProduced: 6.807K (6807) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s424ms PipelineXTask (index=11):(Active: 20.510ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 20.437ms - CloseTime: 13.378us - GetBlockTime: 124.185us - OpenTime: 3.517us - PrepareTime: 49.268us - SinkTime: 20.210ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.449ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.313ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.765us - BuildRows: 6.605K (6605) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 261.412us - BuildTableInsertTime: 143.40us - BuildTableTime: 168.434us - CloseTime: 0ns - ExecTime: 20.228ms - InputRows: 6.604K (6604) - MemoryUsage: - BuildBlocks: 217.60 KB - BuildKeyArena: 0.00 - HashTable: 57.80 KB - PeakMemoryUsage: 275.40 KB - OpenTime: 21.713us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.724ms - RuntimeFilterComputeTime: 588.222us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 114.99 KB - CloseTime: 9.350us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 217.18us - ExecTime: 138.150us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 62.00 KB - OpenTime: 12.174us - ProjectionTime: 0ns - RowsProduced: 6.604K (6604) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s424ms PipelineXTask (index=13):(Active: 13.455ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 13.377ms - CloseTime: 11.177us - GetBlockTime: 80.495us - OpenTime: 2.840us - PrepareTime: 57.748us - SinkTime: 13.227ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.249ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.466ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.202us - BuildRows: 6.389K (6389) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 213.86us - BuildTableInsertTime: 90.139us - BuildTableTime: 109.108us - CloseTime: 0ns - ExecTime: 13.242ms - InputRows: 6.388K (6388) - MemoryUsage: - BuildBlocks: 210.40 KB - BuildKeyArena: 0.00 - HashTable: 56.96 KB - PeakMemoryUsage: 267.35 KB - OpenTime: 18.267us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.119ms - RuntimeFilterComputeTime: 344.533us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 112.49 KB - CloseTime: 7.250us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 216.225us - ExecTime: 97.207us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 16.517us - ProjectionTime: 0ns - RowsProduced: 6.388K (6388) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s422ms PipelineXTask (index=15):(Active: 6.195ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.118ms - CloseTime: 12.35us - GetBlockTime: 133.960us - OpenTime: 3.50us - PrepareTime: 56.57us - SinkTime: 5.890ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.146ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.249ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.689us - BuildRows: 6.789K (6789) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 234.41us - BuildTableInsertTime: 71.354us - BuildTableTime: 88.2us - CloseTime: 0ns - ExecTime: 5.912ms - InputRows: 6.788K (6788) - MemoryUsage: - BuildBlocks: 223.33 KB - BuildKeyArena: 0.00 - HashTable: 58.52 KB - PeakMemoryUsage: 281.84 KB - OpenTime: 24.711us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.88ms - RuntimeFilterComputeTime: 603.687us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 119.38 KB - CloseTime: 9.118us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 275.475us - ExecTime: 148.946us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 14.678us - ProjectionTime: 0ns - RowsProduced: 6.788K (6788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s423ms PipelineXTask (index=17):(Active: 18.617ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 18.552ms - CloseTime: 11.32us - GetBlockTime: 182.401us - OpenTime: 3.566us - PrepareTime: 43.848us - SinkTime: 18.272ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.574ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.670ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.312us - BuildRows: 6.66K (6660) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 263.920us - BuildTableInsertTime: 55.206us - BuildTableTime: 69.378us - CloseTime: 0ns - ExecTime: 18.284ms - InputRows: 6.659K (6659) - MemoryUsage: - BuildBlocks: 219.43 KB - BuildKeyArena: 0.00 - HashTable: 58.02 KB - PeakMemoryUsage: 277.44 KB - OpenTime: 17.34us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.914ms - RuntimeFilterComputeTime: 712.382us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 116.96 KB - CloseTime: 7.899us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 271.415us - ExecTime: 190.365us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 9.264us - ProjectionTime: 0ns - RowsProduced: 6.659K (6659) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s424ms PipelineXTask (index=19):(Active: 10.58ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.991ms - CloseTime: 13.746us - GetBlockTime: 108.171us - OpenTime: 4.554us - PrepareTime: 42.641us - SinkTime: 9.793ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.11ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.82ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.962us - BuildRows: 6.672K (6672) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 239.678us - BuildTableInsertTime: 104.456us - BuildTableTime: 123.52us - CloseTime: 0ns - ExecTime: 9.802ms - InputRows: 6.671K (6671) - MemoryUsage: - BuildBlocks: 219.71 KB - BuildKeyArena: 0.00 - HashTable: 58.07 KB - PeakMemoryUsage: 277.77 KB - OpenTime: 12.857us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.628ms - RuntimeFilterComputeTime: 1.110ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 117.18 KB - CloseTime: 10.498us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 264.969us - ExecTime: 121.501us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 10.785us - ProjectionTime: 0ns - RowsProduced: 6.671K (6671) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s423ms PipelineXTask (index=21):(Active: 20.920ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 20.849ms - CloseTime: 13.706us - GetBlockTime: 120.533us - OpenTime: 2.44us - PrepareTime: 49.209us - SinkTime: 20.634ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.520ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.820ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.59us - BuildRows: 6.602K (6602) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 278.466us - BuildTableInsertTime: 100.445us - BuildTableTime: 117.116us - CloseTime: 0ns - ExecTime: 20.641ms - InputRows: 6.601K (6601) - MemoryUsage: - BuildBlocks: 217.10 KB - BuildKeyArena: 0.00 - HashTable: 57.79 KB - PeakMemoryUsage: 274.88 KB - OpenTime: 10.231us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.973ms - RuntimeFilterComputeTime: 1.111ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 114.76 KB - CloseTime: 10.70us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 211.647us - ExecTime: 141.966us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 20.262us - ProjectionTime: 0ns - RowsProduced: 6.601K (6601) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s424ms PipelineXTask (index=23):(Active: 13.339ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 13.243ms - CloseTime: 14.258us - GetBlockTime: 151.362us - OpenTime: 5.327us - PrepareTime: 69.547us - SinkTime: 13.0ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.920ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.301ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.217us - BuildRows: 6.883K (6883) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 216.83us - BuildTableInsertTime: 92.293us - BuildTableTime: 123.903us - CloseTime: 0ns - ExecTime: 13.12ms - InputRows: 6.882K (6882) - MemoryUsage: - BuildBlocks: 226.52 KB - BuildKeyArena: 0.00 - HashTable: 58.89 KB - PeakMemoryUsage: 285.40 KB - OpenTime: 16.418us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.533ms - RuntimeFilterComputeTime: 910.844us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 22 - BytesReceived: 121.43 KB - CloseTime: 10.592us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 353.846us - ExecTime: 185.961us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 62.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 30.869us - ProjectionTime: 0ns - RowsProduced: 6.882K (6882) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s425ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 180.822ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 180.3ms - CloseTime: 476.154us - GetBlockTime: 174.753ms - OpenTime: 5.380us - PrepareTime: 302.468us - SinkTime: 2.179ms - GetBlockCounter: 426 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 234 - NumBlockedTimes: 236 - NumScheduleTimes: 237 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 179.698ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.137ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 87.71 KB - CloseTime: 15.920us - CompressTime: 0ns - ExecTime: 2.355ms - InputRows: 3.416K (3416) - LocalBytesSent: 163.13 KB - LocalSendTime: 104.890us - LocalSentRows: 1.697K (1697) - MemoryUsage: - PeakMemoryUsage: 539.00 KB - MergeBlockTime: 0ns - OpenTime: 161.643us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.527ms - RowsProduced: 3.416K (3416) - RpcAvgTime: 12.221ms - RpcCount: 12 - RpcMaxTime: 12.864ms - RpcMinTime: 11.971ms - RpcSumTime: 146.658ms - SerializeBatchTime: 503.988us - SplitBlockDistributeByChannelTime: 687.476us - SplitBlockHashComputeTime: 119.161us - UncompressedRowBatchSize: 171.18 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 63.962ms - CloseTime: 426.108us - DeserializeAndMergeTime: 0ns - ExecTime: 66.787ms - ExprTime: 409.497us - GetResultsTime: 1.735ms - HashTableComputeTime: 49.809ms - HashTableEmplaceTime: 18.981ms - HashTableInputCount: 858.867K (858867) - HashTableIterateTime: 22.138us - HashTableSize: 3.416K (3416) - InsertKeysToColumnTime: 222.459us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 39.303us - ProjectionTime: 0ns - RowsProduced: 3.416K (3416) - SerializeDataTime: 1.450ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.739ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 425 - BuildOutputBlock: 0ns - CloseTime: 19.363us - ExecTime: 101.863ms - InitProbeSideTime: 5.637ms - JoinFilterTimer: 31.253us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 24.389us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 125.415us - ProbeFindNextTime: 0ns - ProbeRows: 1.707133M (1707133) - ProbeTime: 57.330ms - ProbeWhenBuildSideOutputTime: 16.267ms - ProbeWhenProbeSideOutputTime: 5.705ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.446ms - ProjectionTime: 42.971ms - RowsProduced: 858.867K (858867) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s910ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 689 - BytesReceived: 17.73 MB - CloseTime: 9.81us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.891ms - ExecTime: 3.970ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.71 MB - MemoryUsage: - Blocks: 20.99 MB - PeakMemoryUsage: 18.22 MB - OpenTime: 23.192us - ProjectionTime: 0ns - RowsProduced: 1.707133M (1707133) - SendersBlockedTotalTimer(*): 1m7s - WaitForDependencyTime: 0ns - WaitForData0: 5s995ms PipelineXTask (index=2):(Active: 175.768ms, % non-child: 0.00%) - CoreChangeTimes: 28 - ExecuteTime: 174.859ms - CloseTime: 599.603us - GetBlockTime: 170.216ms - OpenTime: 7.8us - PrepareTime: 272.142us - SinkTime: 1.466ms - GetBlockCounter: 411 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 214 - NumBlockedTimes: 216 - NumScheduleTimes: 217 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 173.553ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.502ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 81.70 KB - CloseTime: 22.610us - CompressTime: 0ns - ExecTime: 1.625ms - InputRows: 3.351K (3351) - LocalBytesSent: 152.07 KB - LocalSendTime: 128.508us - LocalSentRows: 1.662K (1662) - MemoryUsage: - PeakMemoryUsage: 499.00 KB - MergeBlockTime: 0ns - OpenTime: 137.334us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.269ms - RowsProduced: 3.351K (3351) - RpcAvgTime: 18.80ms - RpcCount: 12 - RpcMaxTime: 18.179ms - RpcMinTime: 17.987ms - RpcSumTime: 216.968ms - SerializeBatchTime: 462.264us - SplitBlockDistributeByChannelTime: 350.690us - SplitBlockHashComputeTime: 89.189us - UncompressedRowBatchSize: 157.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 62.477ms - CloseTime: 547.246us - DeserializeAndMergeTime: 0ns - ExecTime: 64.912ms - ExprTime: 340.914us - GetResultsTime: 1.152ms - HashTableComputeTime: 48.226ms - HashTableEmplaceTime: 19.319ms - HashTableInputCount: 722.728K (722728) - HashTableIterateTime: 26.701us - HashTableSize: 3.351K (3351) - InsertKeysToColumnTime: 165.716us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 31.258us - ProjectionTime: 0ns - RowsProduced: 3.351K (3351) - SerializeDataTime: 929.329us - SerializeKeyTime: 0ns - SerializeResultTime: 1.157ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 410 - BuildOutputBlock: 0ns - CloseTime: 13.909us - ExecTime: 98.230ms - InitProbeSideTime: 6.173ms - JoinFilterTimer: 32.739us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.354us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 186.294us - ProbeFindNextTime: 0ns - ProbeRows: 1.645983M (1645983) - ProbeTime: 56.742ms - ProbeWhenBuildSideOutputTime: 15.727ms - ProbeWhenProbeSideOutputTime: 5.829ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.572ms - ProjectionTime: 39.833ms - RowsProduced: 722.728K (722728) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s907ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 663 - BytesReceived: 17.06 MB - CloseTime: 10.237us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.193ms - ExecTime: 4.764ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.88 MB - MemoryUsage: - Blocks: 21.09 MB - PeakMemoryUsage: 17.36 MB - OpenTime: 19.271us - ProjectionTime: 0ns - RowsProduced: 1.645983M (1645983) - SendersBlockedTotalTimer(*): 58s780ms - WaitForDependencyTime: 0ns - WaitForData0: 5s903ms PipelineXTask (index=4):(Active: 204.130ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 203.187ms - CloseTime: 565.465us - GetBlockTime: 197.794ms - OpenTime: 5.735us - PrepareTime: 328.531us - SinkTime: 2.189ms - GetBlockCounter: 440 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 242 - NumBlockedTimes: 244 - NumScheduleTimes: 245 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 202.444ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.707ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 87.23 KB - CloseTime: 19.668us - CompressTime: 0ns - ExecTime: 2.332ms - InputRows: 3.582K (3582) - LocalBytesSent: 165.29 KB - LocalSendTime: 112.971us - LocalSentRows: 1.775K (1775) - MemoryUsage: - PeakMemoryUsage: 540.00 KB - MergeBlockTime: 0ns - OpenTime: 124.239us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 34.323ms - RowsProduced: 3.582K (3582) - RpcAvgTime: 22.132ms - RpcCount: 12 - RpcMaxTime: 26.594ms - RpcMinTime: 18.312ms - RpcSumTime: 265.590ms - SerializeBatchTime: 618.0us - SplitBlockDistributeByChannelTime: 688.452us - SplitBlockHashComputeTime: 142.9us - UncompressedRowBatchSize: 171.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 73.715ms - CloseTime: 509.340us - DeserializeAndMergeTime: 0ns - ExecTime: 76.422ms - ExprTime: 362.502us - GetResultsTime: 1.539ms - HashTableComputeTime: 57.876ms - HashTableEmplaceTime: 21.792ms - HashTableInputCount: 900.826K (900826) - HashTableIterateTime: 76.920us - HashTableSize: 3.582K (3582) - InsertKeysToColumnTime: 257.397us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 34.812us - ProjectionTime: 0ns - RowsProduced: 3.582K (3582) - SerializeDataTime: 1.170ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.542ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 438 - BuildOutputBlock: 0ns - CloseTime: 15.805us - ExecTime: 114.545ms - InitProbeSideTime: 6.390ms - JoinFilterTimer: 32.557us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 27.569us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 130.65us - ProbeFindNextTime: 0ns - ProbeRows: 1.771109M (1771109) - ProbeTime: 63.169ms - ProbeWhenBuildSideOutputTime: 17.782ms - ProbeWhenProbeSideOutputTime: 6.39ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.118ms - ProjectionTime: 49.732ms - RowsProduced: 900.826K (900826) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s911ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 709 - BytesReceived: 18.14 MB - CloseTime: 13.905us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.809ms - ExecTime: 4.444ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.34 MB - MemoryUsage: - Blocks: 20.98 MB - PeakMemoryUsage: 18.92 MB - OpenTime: 33.997us - ProjectionTime: 0ns - RowsProduced: 1.771109M (1771109) - SendersBlockedTotalTimer(*): 1m20s - WaitForDependencyTime: 0ns - WaitForData0: 6s32ms PipelineXTask (index=6):(Active: 206.109ms, % non-child: 0.00%) - CoreChangeTimes: 38 - ExecuteTime: 205.114ms - CloseTime: 636.973us - GetBlockTime: 200.300ms - OpenTime: 3.290us - PrepareTime: 313.723us - SinkTime: 1.348ms - GetBlockCounter: 450 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 262 - NumBlockedTimes: 264 - NumScheduleTimes: 265 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 204.812ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.31ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 86.11 KB - CloseTime: 12.508us - CompressTime: 0ns - ExecTime: 1.535ms - InputRows: 3.466K (3466) - LocalBytesSent: 162.22 KB - LocalSendTime: 96.544us - LocalSentRows: 1.714K (1714) - MemoryUsage: - PeakMemoryUsage: 545.50 KB - MergeBlockTime: 0ns - OpenTime: 175.487us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 48.444ms - RowsProduced: 3.466K (3466) - RpcAvgTime: 39.102ms - RpcCount: 12 - RpcMaxTime: 39.803ms - RpcMinTime: 38.604ms - RpcSumTime: 469.228ms - SerializeBatchTime: 467.871us - SplitBlockDistributeByChannelTime: 371.458us - SplitBlockHashComputeTime: 73.730us - UncompressedRowBatchSize: 168.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 74.273ms - CloseTime: 594.24us - DeserializeAndMergeTime: 0ns - ExecTime: 76.798ms - ExprTime: 386.951us - GetResultsTime: 1.200ms - HashTableComputeTime: 57.634ms - HashTableEmplaceTime: 22.514ms - HashTableInputCount: 906.543K (906543) - HashTableIterateTime: 27.47us - HashTableSize: 3.466K (3466) - InsertKeysToColumnTime: 148.337us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 36.108us - ProjectionTime: 0ns - RowsProduced: 3.466K (3466) - SerializeDataTime: 1.2ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.202ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 449 - BuildOutputBlock: 0ns - CloseTime: 14.191us - ExecTime: 116.786ms - InitProbeSideTime: 6.876ms - JoinFilterTimer: 40.484us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.700us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 163.350us - ProbeFindNextTime: 0ns - ProbeRows: 1.803902M (1803902) - ProbeTime: 64.742ms - ProbeWhenBuildSideOutputTime: 19.336ms - ProbeWhenProbeSideOutputTime: 6.546ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.742ms - ProjectionTime: 50.272ms - RowsProduced: 906.543K (906543) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s915ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 728 - BytesReceived: 18.69 MB - CloseTime: 11.985us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.418ms - ExecTime: 4.256ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.70 MB - MemoryUsage: - Blocks: 21.10 MB - PeakMemoryUsage: 18.97 MB - OpenTime: 23.605us - ProjectionTime: 0ns - RowsProduced: 1.803902M (1803902) - SendersBlockedTotalTimer(*): 1m20s - WaitForDependencyTime: 0ns - WaitForData0: 6s128ms PipelineXTask (index=8):(Active: 189.143ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 188.190ms - CloseTime: 618.318us - GetBlockTime: 182.936ms - OpenTime: 3.508us - PrepareTime: 292.385us - SinkTime: 2.9ms - GetBlockCounter: 419 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 219 - NumBlockedTimes: 221 - NumScheduleTimes: 222 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 187.805ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.593ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 88.32 KB - CloseTime: 15.300us - CompressTime: 0ns - ExecTime: 2.157ms - InputRows: 3.669K (3669) - LocalBytesSent: 166.10 KB - LocalSendTime: 164.401us - LocalSentRows: 1.831K (1831) - MemoryUsage: - PeakMemoryUsage: 540.00 KB - MergeBlockTime: 0ns - OpenTime: 134.19us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 40.740ms - RowsProduced: 3.669K (3669) - RpcAvgTime: 37.362ms - RpcCount: 12 - RpcMaxTime: 37.570ms - RpcMinTime: 37.213ms - RpcSumTime: 448.347ms - SerializeBatchTime: 776.396us - SplitBlockDistributeByChannelTime: 466.467us - SplitBlockHashComputeTime: 139.729us - UncompressedRowBatchSize: 172.59 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 67.496ms - CloseTime: 574.656us - DeserializeAndMergeTime: 0ns - ExecTime: 70.370ms - ExprTime: 382.268us - GetResultsTime: 1.574ms - HashTableComputeTime: 51.844ms - HashTableEmplaceTime: 20.718ms - HashTableInputCount: 732.527K (732527) - HashTableIterateTime: 31.673us - HashTableSize: 3.669K (3669) - InsertKeysToColumnTime: 277.5us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 41.815us - ProjectionTime: 0ns - RowsProduced: 3.669K (3669) - SerializeDataTime: 1.235ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.577ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 418 - BuildOutputBlock: 0ns - CloseTime: 14.831us - ExecTime: 106.62ms - InitProbeSideTime: 6.543ms - JoinFilterTimer: 38.328us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.417us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 158.200us - ProbeFindNextTime: 0ns - ProbeRows: 1.675229M (1675229) - ProbeTime: 59.658ms - ProbeWhenBuildSideOutputTime: 16.72ms - ProbeWhenProbeSideOutputTime: 5.570ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.815ms - ProjectionTime: 44.736ms - RowsProduced: 732.527K (732527) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s920ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 676 - BytesReceived: 17.26 MB - CloseTime: 7.459us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.420ms - ExecTime: 4.251ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.67 MB - MemoryUsage: - Blocks: 20.96 MB - PeakMemoryUsage: 18.10 MB - OpenTime: 21.688us - ProjectionTime: 0ns - RowsProduced: 1.675229M (1675229) - SendersBlockedTotalTimer(*): 1m3s - WaitForDependencyTime: 0ns - WaitForData0: 6s60ms PipelineXTask (index=10):(Active: 205.769ms, % non-child: 0.00%) - CoreChangeTimes: 31 - ExecuteTime: 204.857ms - CloseTime: 594.378us - GetBlockTime: 199.781ms - OpenTime: 2.769us - PrepareTime: 280.838us - SinkTime: 1.564ms - GetBlockCounter: 437 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 248 - NumBlockedTimes: 250 - NumScheduleTimes: 251 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 204.505ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.552ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 86.28 KB - CloseTime: 10.422us - CompressTime: 0ns - ExecTime: 1.725ms - InputRows: 3.396K (3396) - LocalBytesSent: 163.04 KB - LocalSendTime: 100.660us - LocalSentRows: 1.675K (1675) - MemoryUsage: - PeakMemoryUsage: 554.00 KB - MergeBlockTime: 0ns - OpenTime: 150.637us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 89.928ms - RowsProduced: 3.396K (3396) - RpcAvgTime: 74.455ms - RpcCount: 12 - RpcMaxTime: 74.688ms - RpcMinTime: 74.180ms - RpcSumTime: 893.462ms - SerializeBatchTime: 508.164us - SplitBlockDistributeByChannelTime: 424.265us - SplitBlockHashComputeTime: 82.855us - UncompressedRowBatchSize: 169.78 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 73.698ms - CloseTime: 562.335us - DeserializeAndMergeTime: 0ns - ExecTime: 76.109ms - ExprTime: 335.927us - GetResultsTime: 1.98ms - HashTableComputeTime: 56.712ms - HashTableEmplaceTime: 23.290ms - HashTableInputCount: 839.167K (839167) - HashTableIterateTime: 20.63us - HashTableSize: 3.396K (3396) - InsertKeysToColumnTime: 155.178us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 27.11us - ProjectionTime: 0ns - RowsProduced: 3.396K (3396) - SerializeDataTime: 891.139us - SerializeKeyTime: 0ns - SerializeResultTime: 1.101ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 436 - BuildOutputBlock: 0ns - CloseTime: 13.231us - ExecTime: 116.662ms - InitProbeSideTime: 6.862ms - JoinFilterTimer: 53.701us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.428us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 165.111us - ProbeFindNextTime: 0ns - ProbeRows: 1.759559M (1759559) - ProbeTime: 64.462ms - ProbeWhenBuildSideOutputTime: 18.277ms - ProbeWhenProbeSideOutputTime: 6.143ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.125ms - ProjectionTime: 50.410ms - RowsProduced: 839.167K (839167) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s922ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 708 - BytesReceived: 18.33 MB - CloseTime: 4.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.729ms - ExecTime: 4.549ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.45 MB - MemoryUsage: - Blocks: 21.15 MB - PeakMemoryUsage: 18.75 MB - OpenTime: 19.528us - ProjectionTime: 0ns - RowsProduced: 1.759559M (1759559) - SendersBlockedTotalTimer(*): 1m15s - WaitForDependencyTime: 0ns - WaitForData0: 6s62ms PipelineXTask (index=12):(Active: 206.404ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 205.306ms - CloseTime: 769.44us - GetBlockTime: 199.937ms - OpenTime: 6.52us - PrepareTime: 279.759us - SinkTime: 2.133ms - GetBlockCounter: 448 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 248 - NumBlockedTimes: 250 - NumScheduleTimes: 251 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 204.311ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.973ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 90.71 KB - CloseTime: 17.380us - CompressTime: 0ns - ExecTime: 2.298ms - InputRows: 3.458K (3458) - LocalBytesSent: 177.36 KB - LocalSendTime: 127.817us - LocalSentRows: 1.717K (1717) - MemoryUsage: - PeakMemoryUsage: 561.50 KB - MergeBlockTime: 0ns - OpenTime: 148.329us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 40.385ms - RowsProduced: 3.458K (3458) - RpcAvgTime: 33.744ms - RpcCount: 12 - RpcMaxTime: 34.37ms - RpcMinTime: 33.455ms - RpcSumTime: 404.936ms - SerializeBatchTime: 626.477us - SplitBlockDistributeByChannelTime: 628.905us - SplitBlockHashComputeTime: 132.567us - UncompressedRowBatchSize: 182.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 76.235ms - CloseTime: 720.369us - DeserializeAndMergeTime: 0ns - ExecTime: 79.96ms - ExprTime: 404.474us - GetResultsTime: 1.476ms - HashTableComputeTime: 59.638ms - HashTableEmplaceTime: 22.288ms - HashTableInputCount: 997.963K (997963) - HashTableIterateTime: 24.798us - HashTableSize: 3.458K (3458) - InsertKeysToColumnTime: 261.389us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 37.530us - ProjectionTime: 0ns - RowsProduced: 3.458K (3458) - SerializeDataTime: 1.157ms - SerializeKeyTime: 0ns - SerializeResultTime: 1.479ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 447 - BuildOutputBlock: 0ns - CloseTime: 18.675us - ExecTime: 114.511ms - InitProbeSideTime: 6.355ms - JoinFilterTimer: 44.315us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.988us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 154.318us - ProbeFindNextTime: 0ns - ProbeRows: 1.769016M (1769016) - ProbeTime: 62.112ms - ProbeWhenBuildSideOutputTime: 18.523ms - ProbeWhenProbeSideOutputTime: 6.326ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.105ms - ProjectionTime: 50.752ms - RowsProduced: 997.963K (997963) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s927ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 712 - BytesReceived: 18.39 MB - CloseTime: 7.497us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.453ms - ExecTime: 4.258ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.11 MB - MemoryUsage: - Blocks: 21.13 MB - PeakMemoryUsage: 18.72 MB - OpenTime: 24.451us - ProjectionTime: 0ns - RowsProduced: 1.769016M (1769016) - SendersBlockedTotalTimer(*): 1m15s - WaitForDependencyTime: 0ns - WaitForData0: 6s142ms PipelineXTask (index=14):(Active: 196.119ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 194.967ms - CloseTime: 831.834us - GetBlockTime: 189.712ms - OpenTime: 3.441us - PrepareTime: 283.73us - SinkTime: 1.826ms - GetBlockCounter: 422 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 236 - NumBlockedTimes: 238 - NumScheduleTimes: 239 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 194.638ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 56.451ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 86.16 KB - CloseTime: 27.74us - CompressTime: 0ns - ExecTime: 1.965ms - InputRows: 3.563K (3563) - LocalBytesSent: 166.22 KB - LocalSendTime: 151.79us - LocalSentRows: 1.77K (1770) - MemoryUsage: - PeakMemoryUsage: 548.00 KB - MergeBlockTime: 0ns - OpenTime: 113.740us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.388ms - RowsProduced: 3.563K (3563) - RpcAvgTime: 14.664ms - RpcCount: 12 - RpcMaxTime: 16.780ms - RpcMinTime: 10.126ms - RpcSumTime: 175.973ms - SerializeBatchTime: 556.358us - SplitBlockDistributeByChannelTime: 452.286us - SplitBlockHashComputeTime: 105.766us - UncompressedRowBatchSize: 170.18 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 70.5ms - CloseTime: 770.932us - DeserializeAndMergeTime: 0ns - ExecTime: 72.498ms - ExprTime: 402.947us - GetResultsTime: 1.26ms - HashTableComputeTime: 53.470ms - HashTableEmplaceTime: 20.874ms - HashTableInputCount: 807.722K (807722) - HashTableIterateTime: 17.709us - HashTableSize: 3.563K (3563) - InsertKeysToColumnTime: 202.266us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 34.929us - ProjectionTime: 0ns - RowsProduced: 3.563K (3563) - SerializeDataTime: 779.949us - SerializeKeyTime: 0ns - SerializeResultTime: 1.28ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 421 - BuildOutputBlock: 0ns - CloseTime: 17.842us - ExecTime: 110.607ms - InitProbeSideTime: 6.525ms - JoinFilterTimer: 35.324us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 42.63us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 175.809us - ProbeFindNextTime: 0ns - ProbeRows: 1.693244M (1693244) - ProbeTime: 60.925ms - ProbeWhenBuildSideOutputTime: 17.95ms - ProbeWhenProbeSideOutputTime: 6.72ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.180ms - ProjectionTime: 47.921ms - RowsProduced: 807.722K (807722) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s912ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 681 - BytesReceived: 17.58 MB - CloseTime: 9.398us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.495ms - ExecTime: 4.335ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.71 MB - MemoryUsage: - Blocks: 21.15 MB - PeakMemoryUsage: 18.26 MB - OpenTime: 25.391us - ProjectionTime: 0ns - RowsProduced: 1.693244M (1693244) - SendersBlockedTotalTimer(*): 1m7s - WaitForDependencyTime: 0ns - WaitForData0: 5s976ms PipelineXTask (index=16):(Active: 164.265ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 163.519ms - CloseTime: 436.368us - GetBlockTime: 158.796ms - OpenTime: 8.502us - PrepareTime: 263.469us - SinkTime: 1.817ms - GetBlockCounter: 413 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 217 - NumBlockedTimes: 219 - NumScheduleTimes: 220 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 161.567ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.419ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 81.33 KB - CloseTime: 13.843us - CompressTime: 0ns - ExecTime: 1.959ms - InputRows: 3.463K (3463) - LocalBytesSent: 153.17 KB - LocalSendTime: 197.528us - LocalSentRows: 1.736K (1736) - MemoryUsage: - PeakMemoryUsage: 484.00 KB - MergeBlockTime: 0ns - OpenTime: 129.98us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.560ms - RowsProduced: 3.463K (3463) - RpcAvgTime: 19.455ms - RpcCount: 12 - RpcMaxTime: 19.728ms - RpcMinTime: 19.213ms - RpcSumTime: 233.471ms - SerializeBatchTime: 515.265us - SplitBlockDistributeByChannelTime: 366.214us - SplitBlockHashComputeTime: 122.180us - UncompressedRowBatchSize: 156.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 57.819ms - CloseTime: 398.344us - DeserializeAndMergeTime: 0ns - ExecTime: 60.212ms - ExprTime: 338.230us - GetResultsTime: 1.375ms - HashTableComputeTime: 44.825ms - HashTableEmplaceTime: 17.727ms - HashTableInputCount: 725.916K (725916) - HashTableIterateTime: 36.272us - HashTableSize: 3.463K (3463) - InsertKeysToColumnTime: 339.45us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 743.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 42.227us - ProjectionTime: 0ns - RowsProduced: 3.463K (3463) - SerializeDataTime: 949.607us - SerializeKeyTime: 0ns - SerializeResultTime: 1.381ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 412 - BuildOutputBlock: 0ns - CloseTime: 11.175us - ExecTime: 92.455ms - InitProbeSideTime: 5.652ms - JoinFilterTimer: 32.950us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.443us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 137.337us - ProbeFindNextTime: 0ns - ProbeRows: 1.631216M (1631216) - ProbeTime: 50.991ms - ProbeWhenBuildSideOutputTime: 13.791ms - ProbeWhenProbeSideOutputTime: 4.982ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 20.501ms - ProjectionTime: 40.13ms - RowsProduced: 725.916K (725916) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s916ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 654 - BytesReceived: 17.02 MB - CloseTime: 7.580us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.356ms - ExecTime: 3.861ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.73 MB - MemoryUsage: - Blocks: 21.15 MB - PeakMemoryUsage: 17.24 MB - OpenTime: 16.402us - ProjectionTime: 0ns - RowsProduced: 1.631216M (1631216) - SendersBlockedTotalTimer(*): 56s436ms - WaitForDependencyTime: 0ns - WaitForData0: 5s953ms PipelineXTask (index=18):(Active: 221.929ms, % non-child: 0.00%) - CoreChangeTimes: 40 - ExecuteTime: 220.656ms - CloseTime: 945.268us - GetBlockTime: 215.758ms - OpenTime: 4.276us - PrepareTime: 288.495us - SinkTime: 1.528ms - GetBlockCounter: 455 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 248 - NumBlockedTimes: 250 - NumScheduleTimes: 251 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 219.630ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.392ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 90.15 KB - CloseTime: 18.107us - CompressTime: 0ns - ExecTime: 1.686ms - InputRows: 3.669K (3669) - LocalBytesSent: 173.68 KB - LocalSendTime: 87.32us - LocalSentRows: 1.826K (1826) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 140.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 32.512ms - RowsProduced: 3.669K (3669) - RpcAvgTime: 26.596ms - RpcCount: 12 - RpcMaxTime: 26.771ms - RpcMinTime: 26.495ms - RpcSumTime: 319.162ms - SerializeBatchTime: 493.811us - SplitBlockDistributeByChannelTime: 399.88us - SplitBlockHashComputeTime: 85.706us - UncompressedRowBatchSize: 180.07 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 82.387ms - CloseTime: 884.261us - DeserializeAndMergeTime: 0ns - ExecTime: 85.148ms - ExprTime: 370.413us - GetResultsTime: 1.188ms - HashTableComputeTime: 65.420ms - HashTableEmplaceTime: 24.995ms - HashTableInputCount: 1.022616M (1022616) - HashTableIterateTime: 20.419us - HashTableSize: 3.669K (3669) - InsertKeysToColumnTime: 162.758us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 37.152us - ProjectionTime: 0ns - RowsProduced: 3.669K (3669) - SerializeDataTime: 977.305us - SerializeKeyTime: 0ns - SerializeResultTime: 1.191ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 454 - BuildOutputBlock: 0ns - CloseTime: 15.897us - ExecTime: 123.990ms - InitProbeSideTime: 6.901ms - JoinFilterTimer: 38.973us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.88us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 153.35us - ProbeFindNextTime: 0ns - ProbeRows: 1.80353M (1803530) - ProbeTime: 66.837ms - ProbeWhenBuildSideOutputTime: 19.679ms - ProbeWhenProbeSideOutputTime: 6.847ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.189ms - ProjectionTime: 55.350ms - RowsProduced: 1.022616M (1022616) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s923ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 728 - BytesReceived: 18.66 MB - CloseTime: 19.661us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.930ms - ExecTime: 4.498ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.74 MB - MemoryUsage: - Blocks: 20.93 MB - PeakMemoryUsage: 19.07 MB - OpenTime: 30.732us - ProjectionTime: 0ns - RowsProduced: 1.80353M (1803530) - SendersBlockedTotalTimer(*): 1m23s - WaitForDependencyTime: 0ns - WaitForData0: 6s125ms PipelineXTask (index=20):(Active: 238.364ms, % non-child: 0.00%) - CoreChangeTimes: 28 - ExecuteTime: 237.89ms - CloseTime: 976.730us - GetBlockTime: 232.270ms - OpenTime: 3.117us - PrepareTime: 255.251us - SinkTime: 1.511ms - GetBlockCounter: 447 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 237 - NumBlockedTimes: 239 - NumScheduleTimes: 240 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 236.656ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.216ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.92 KB - CloseTime: 20.797us - CompressTime: 0ns - ExecTime: 1.663ms - InputRows: 3.703K (3703) - LocalBytesSent: 169.86 KB - LocalSendTime: 114.228us - LocalSentRows: 1.841K (1841) - MemoryUsage: - PeakMemoryUsage: 564.00 KB - MergeBlockTime: 0ns - OpenTime: 132.425us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.914ms - RowsProduced: 3.703K (3703) - RpcAvgTime: 30.932ms - RpcCount: 12 - RpcMaxTime: 31.996ms - RpcMinTime: 30.617ms - RpcSumTime: 371.191ms - SerializeBatchTime: 471.602us - SplitBlockDistributeByChannelTime: 390.742us - SplitBlockHashComputeTime: 93.232us - UncompressedRowBatchSize: 176.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 90.461ms - CloseTime: 910.456us - DeserializeAndMergeTime: 0ns - ExecTime: 93.233ms - ExprTime: 466.554us - GetResultsTime: 1.109ms - HashTableComputeTime: 71.624ms - HashTableEmplaceTime: 28.459ms - HashTableInputCount: 953.198K (953198) - HashTableIterateTime: 19.987us - HashTableSize: 3.703K (3703) - InsertKeysToColumnTime: 175.934us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 40.688us - ProjectionTime: 0ns - RowsProduced: 3.703K (3703) - SerializeDataTime: 890.417us - SerializeKeyTime: 0ns - SerializeResultTime: 1.112ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 446 - BuildOutputBlock: 0ns - CloseTime: 23.92us - ExecTime: 132.59ms - InitProbeSideTime: 7.322ms - JoinFilterTimer: 46.645us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.379us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 155.308us - ProbeFindNextTime: 0ns - ProbeRows: 1.798338M (1798338) - ProbeTime: 71.936ms - ProbeWhenBuildSideOutputTime: 19.778ms - ProbeWhenProbeSideOutputTime: 7.269ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 30.257ms - ProjectionTime: 58.273ms - RowsProduced: 953.198K (953198) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s934ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 723 - BytesReceived: 18.75 MB - CloseTime: 14.158us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.20ms - ExecTime: 4.861ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.07 MB - MemoryUsage: - Blocks: 21.02 MB - PeakMemoryUsage: 19.59 MB - OpenTime: 18.528us - ProjectionTime: 0ns - RowsProduced: 1.798338M (1798338) - SendersBlockedTotalTimer(*): 1m32s - WaitForDependencyTime: 0ns - WaitForData0: 6s156ms PipelineXTask (index=22):(Active: 175.18ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 173.953ms - CloseTime: 738.70us - GetBlockTime: 169.24ms - OpenTime: 9.36us - PrepareTime: 274.403us - SinkTime: 1.761ms - GetBlockCounter: 420 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 229 - NumBlockedTimes: 231 - NumScheduleTimes: 232 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 173.364ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.846ms DATA_STREAM_SINK_OPERATOR (id=359,dst_id=359): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 84.38 KB - CloseTime: 20.504us - CompressTime: 0ns - ExecTime: 1.904ms - InputRows: 3.633K (3633) - LocalBytesSent: 159.50 KB - LocalSendTime: 143.578us - LocalSentRows: 1.806K (1806) - MemoryUsage: - PeakMemoryUsage: 516.00 KB - MergeBlockTime: 0ns - OpenTime: 123.425us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.800ms - RowsProduced: 3.633K (3633) - RpcAvgTime: 13.22ms - RpcCount: 12 - RpcMaxTime: 13.248ms - RpcMinTime: 12.777ms - RpcSumTime: 156.272ms - SerializeBatchTime: 478.592us - SplitBlockDistributeByChannelTime: 394.115us - SplitBlockHashComputeTime: 74.661us - UncompressedRowBatchSize: 164.68 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 59.968ms - CloseTime: 551.91us - DeserializeAndMergeTime: 0ns - ExecTime: 62.198ms - ExprTime: 332.528us - GetResultsTime: 1.44ms - HashTableComputeTime: 46.974ms - HashTableEmplaceTime: 18.120ms - HashTableInputCount: 781.56K (781560) - HashTableIterateTime: 19.334us - HashTableSize: 3.633K (3633) - InsertKeysToColumnTime: 163.256us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 839.98 KB - SerializeKeyArena: 648.00 KB - MergeTime: 0ns - OpenTime: 37.63us - ProjectionTime: 0ns - RowsProduced: 3.633K (3633) - SerializeDataTime: 833.221us - SerializeKeyTime: 0ns - SerializeResultTime: 1.46ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=357): - BlocksProduced: 419 - BuildOutputBlock: 0ns - CloseTime: 16.724us - ExecTime: 100.726ms - InitProbeSideTime: 5.717ms - JoinFilterTimer: 41.87us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.533us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 139.596us - ProbeFindNextTime: 0ns - ProbeRows: 1.690887M (1690887) - ProbeTime: 53.934ms - ProbeWhenBuildSideOutputTime: 14.838ms - ProbeWhenProbeSideOutputTime: 5.308ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.941ms - ProjectionTime: 39.995ms - RowsProduced: 781.56K (781560) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s917ms EXCHANGE_OPERATOR (id=356): - BlocksProduced: 679 - BytesReceived: 17.56 MB - CloseTime: 141.488us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.717ms - ExecTime: 4.115ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.72 MB - MemoryUsage: - Blocks: 20.93 MB - PeakMemoryUsage: 17.36 MB - OpenTime: 18.363us - ProjectionTime: 0ns - RowsProduced: 1.690887M (1690887) - SendersBlockedTotalTimer(*): 58s103ms - WaitForDependencyTime: 0ns - WaitForData0: 5s957ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 4.668ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.519ms - CloseTime: 15.365us - GetBlockTime: 80.44us - OpenTime: 1.106us - PrepareTime: 128.251us - SinkTime: 4.380ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.637ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.807ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.726us - BuildRows: 6.986K (6986) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 263.295us - BuildTableInsertTime: 79.54us - BuildTableTime: 95.572us - CloseTime: 0ns - ExecTime: 4.420ms - InputRows: 6.985K (6985) - MemoryUsage: - BuildBlocks: 230.14 KB - BuildKeyArena: 0.00 - HashTable: 59.29 KB - PeakMemoryUsage: 289.42 KB - OpenTime: 44.248us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.843ms - RuntimeFilterComputeTime: 262.85us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 23.95 KB - CloseTime: 11.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 65.373us - ExecTime: 134.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 217.00 KB - PeakMemoryUsage: 217.00 KB - OpenTime: 49.499us - ProjectionTime: 0ns - RowsProduced: 6.985K (6985) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s637ms PipelineXTask (index=3):(Active: 2.122ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.24ms - CloseTime: 10.967us - GetBlockTime: 104.713us - OpenTime: 1.498us - PrepareTime: 80.680us - SinkTime: 1.875ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.101ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.221ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.761us - BuildRows: 6.574K (6574) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 179.44us - BuildTableInsertTime: 53.11us - BuildTableTime: 63.711us - CloseTime: 0ns - ExecTime: 1.896ms - InputRows: 6.573K (6573) - MemoryUsage: - BuildBlocks: 216.58 KB - BuildKeyArena: 0.00 - HashTable: 57.68 KB - PeakMemoryUsage: 274.25 KB - OpenTime: 23.185us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.812us - RuntimeFilterComputeTime: 197.537us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 23.28 KB - CloseTime: 8.605us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 62.74us - ExecTime: 135.18us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 300.00 KB - MemoryUsage: - Blocks: 238.00 KB - PeakMemoryUsage: 238.00 KB - OpenTime: 26.999us - ProjectionTime: 0ns - RowsProduced: 6.573K (6573) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s637ms PipelineXTask (index=5):(Active: 5.308ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.222ms - CloseTime: 8.714us - GetBlockTime: 82.652us - OpenTime: 1.594us - PrepareTime: 70.272us - SinkTime: 5.81ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.8ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.938ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.711us - BuildRows: 6.759K (6759) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 181.182us - BuildTableInsertTime: 45.328us - BuildTableTime: 56.629us - CloseTime: 0ns - ExecTime: 5.102ms - InputRows: 6.758K (6758) - MemoryUsage: - BuildBlocks: 222.64 KB - BuildKeyArena: 0.00 - HashTable: 58.41 KB - PeakMemoryUsage: 281.04 KB - OpenTime: 24.610us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.829ms - RuntimeFilterComputeTime: 270.103us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 24.07 KB - CloseTime: 5.676us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 48.838us - ExecTime: 87.476us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 14.818us - ProjectionTime: 0ns - RowsProduced: 6.758K (6758) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s628ms PipelineXTask (index=7):(Active: 7.970ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 7.877ms - CloseTime: 9.554us - GetBlockTime: 83.389us - OpenTime: 2.315us - PrepareTime: 76.892us - SinkTime: 7.752ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.402ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.682ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.638us - BuildRows: 6.706K (6706) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 229.737us - BuildTableInsertTime: 66.233us - BuildTableTime: 81.371us - CloseTime: 0ns - ExecTime: 7.781ms - InputRows: 6.705K (6705) - MemoryUsage: - BuildBlocks: 220.69 KB - BuildKeyArena: 0.00 - HashTable: 58.20 KB - PeakMemoryUsage: 278.88 KB - OpenTime: 32.919us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.263ms - RuntimeFilterComputeTime: 285.782us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 24.19 KB - CloseTime: 7.42us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 49.38us - ExecTime: 105.487us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 20.64us - ProjectionTime: 0ns - RowsProduced: 6.705K (6705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s628ms PipelineXTask (index=9):(Active: 10.387ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 10.299ms - CloseTime: 9.904us - GetBlockTime: 91.658us - OpenTime: 1.500us - PrepareTime: 72.5us - SinkTime: 10.170ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.153ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.818ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.509us - BuildRows: 6.734K (6734) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 262.641us - BuildTableInsertTime: 74.21us - BuildTableTime: 100.51us - CloseTime: 0ns - ExecTime: 10.187ms - InputRows: 6.733K (6733) - MemoryUsage: - BuildBlocks: 221.64 KB - BuildKeyArena: 0.00 - HashTable: 58.31 KB - PeakMemoryUsage: 279.94 KB - OpenTime: 21.60us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.967ms - RuntimeFilterComputeTime: 256.818us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 22.96 KB - CloseTime: 7.526us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 63.333us - ExecTime: 113.314us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 248.00 KB - PeakMemoryUsage: 248.00 KB - OpenTime: 19.281us - ProjectionTime: 0ns - RowsProduced: 6.733K (6733) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s638ms PipelineXTask (index=11):(Active: 5.893ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.777ms - CloseTime: 12.980us - GetBlockTime: 100.371us - OpenTime: 1.731us - PrepareTime: 96.842us - SinkTime: 5.634ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.867ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.1ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.609us - BuildRows: 6.62K (6620) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 239.20us - BuildTableInsertTime: 206.875us - BuildTableTime: 238.746us - CloseTime: 0ns - ExecTime: 5.679ms - InputRows: 6.619K (6619) - MemoryUsage: - BuildBlocks: 218.03 KB - BuildKeyArena: 0.00 - HashTable: 57.86 KB - PeakMemoryUsage: 275.88 KB - OpenTime: 48.490us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.644ms - RuntimeFilterComputeTime: 435.66us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 23.29 KB - CloseTime: 9.853us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 54.905us - ExecTime: 122.23us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 217.00 KB - PeakMemoryUsage: 217.00 KB - OpenTime: 18.276us - ProjectionTime: 0ns - RowsProduced: 6.619K (6619) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s638ms PipelineXTask (index=13):(Active: 10.208ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 10.106ms - CloseTime: 8.640us - GetBlockTime: 125.631us - OpenTime: 1.704us - PrepareTime: 85.931us - SinkTime: 9.927ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.170ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.678ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.953us - BuildRows: 6.604K (6604) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 277.161us - BuildTableInsertTime: 75.255us - BuildTableTime: 100.492us - CloseTime: 0ns - ExecTime: 9.942ms - InputRows: 6.603K (6603) - MemoryUsage: - BuildBlocks: 217.31 KB - BuildKeyArena: 0.00 - HashTable: 57.80 KB - PeakMemoryUsage: 275.10 KB - OpenTime: 18.998us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.87ms - RuntimeFilterComputeTime: 691.474us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 23.59 KB - CloseTime: 6.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 66.682us - ExecTime: 144.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 300.00 KB - MemoryUsage: - Blocks: 155.00 KB - PeakMemoryUsage: 155.00 KB - OpenTime: 19.670us - ProjectionTime: 0ns - RowsProduced: 6.603K (6603) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s637ms PipelineXTask (index=15):(Active: 5.626ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.540ms - CloseTime: 8.897us - GetBlockTime: 80.348us - OpenTime: 2.630us - PrepareTime: 68.266us - SinkTime: 5.409ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.853ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.185ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.457us - BuildRows: 6.516K (6516) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 220.89us - BuildTableInsertTime: 65.920us - BuildTableTime: 82.384us - CloseTime: 0ns - ExecTime: 5.423ms - InputRows: 6.515K (6515) - MemoryUsage: - BuildBlocks: 214.45 KB - BuildKeyArena: 0.00 - HashTable: 57.46 KB - PeakMemoryUsage: 271.89 KB - OpenTime: 17.849us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.260ms - RuntimeFilterComputeTime: 344.46us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 23.22 KB - CloseTime: 6.448us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 61.28us - ExecTime: 96.924us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 302.00 KB - MemoryUsage: - Blocks: 85.00 KB - PeakMemoryUsage: 85.00 KB - OpenTime: 16.336us - ProjectionTime: 0ns - RowsProduced: 6.515K (6515) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s630ms PipelineXTask (index=17):(Active: 5.516ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.431ms - CloseTime: 10.813us - GetBlockTime: 63.910us - OpenTime: 2.168us - PrepareTime: 66.863us - SinkTime: 5.321ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.739ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.72ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.725us - BuildRows: 6.666K (6666) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 202.451us - BuildTableInsertTime: 71.480us - BuildTableTime: 87.758us - CloseTime: 0ns - ExecTime: 5.340ms - InputRows: 6.665K (6665) - MemoryUsage: - BuildBlocks: 219.48 KB - BuildKeyArena: 0.00 - HashTable: 58.04 KB - PeakMemoryUsage: 277.52 KB - OpenTime: 22.271us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.527ms - RuntimeFilterComputeTime: 513.942us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 23.48 KB - CloseTime: 8.485us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 86.321us - ExecTime: 89.34us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 124.00 KB - PeakMemoryUsage: 124.00 KB - OpenTime: 21.820us - ProjectionTime: 0ns - RowsProduced: 6.665K (6665) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s630ms PipelineXTask (index=19):(Active: 11.490ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 11.210ms - CloseTime: 9.763us - GetBlockTime: 95.389us - OpenTime: 1.894us - PrepareTime: 260.969us - SinkTime: 11.68ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.693ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.661ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.34us - BuildRows: 6.472K (6472) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 226.256us - BuildTableInsertTime: 70.413us - BuildTableTime: 86.203us - CloseTime: 0ns - ExecTime: 11.269ms - InputRows: 6.471K (6471) - MemoryUsage: - BuildBlocks: 213.07 KB - BuildKeyArena: 0.00 - HashTable: 57.29 KB - PeakMemoryUsage: 270.35 KB - OpenTime: 203.583us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.555ms - RuntimeFilterComputeTime: 890.354us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 22.52 KB - CloseTime: 7.118us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 36.232us - ExecTime: 124.653us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 302.00 KB - MemoryUsage: - Blocks: 147.00 KB - PeakMemoryUsage: 147.00 KB - OpenTime: 26.888us - ProjectionTime: 0ns - RowsProduced: 6.471K (6471) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s630ms PipelineXTask (index=21):(Active: 14.410ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 14.312ms - CloseTime: 12.582us - GetBlockTime: 94.227us - OpenTime: 1.376us - PrepareTime: 80.80us - SinkTime: 14.171ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.384ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.437ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.800us - BuildRows: 6.705K (6705) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 259.587us - BuildTableInsertTime: 72.402us - BuildTableTime: 86.165us - CloseTime: 0ns - ExecTime: 14.204ms - InputRows: 6.704K (6704) - MemoryUsage: - BuildBlocks: 220.63 KB - BuildKeyArena: 0.00 - HashTable: 58.20 KB - PeakMemoryUsage: 278.81 KB - OpenTime: 36.635us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.51ms - RuntimeFilterComputeTime: 220.596us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 23.02 KB - CloseTime: 10.368us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 77.71us - ExecTime: 113.780us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 248.00 KB - PeakMemoryUsage: 248.00 KB - OpenTime: 14.921us - ProjectionTime: 0ns - RowsProduced: 6.704K (6704) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s639ms PipelineXTask (index=23):(Active: 5.563ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.455ms - CloseTime: 9.651us - GetBlockTime: 79.680us - OpenTime: 1.826us - PrepareTime: 90.456us - SinkTime: 5.333ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.87ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.3ms HASH_JOIN_SINK_OPERATOR (id=357): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.611us - BuildRows: 6.519K (6519) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 199.862us - BuildTableInsertTime: 60.791us - BuildTableTime: 76.770us - CloseTime: 0ns - ExecTime: 5.351ms - InputRows: 6.518K (6518) - MemoryUsage: - BuildBlocks: 214.74 KB - BuildKeyArena: 0.00 - HashTable: 57.47 KB - PeakMemoryUsage: 272.20 KB - OpenTime: 21.696us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.42ms - RuntimeFilterComputeTime: 477.546us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=354): - BlocksProduced: 14 - BytesReceived: 21.67 KB - CloseTime: 7.91us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 52.496us - ExecTime: 116.780us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 310.00 KB - MemoryUsage: - Blocks: 186.00 KB - PeakMemoryUsage: 186.00 KB - OpenTime: 36.66us - ProjectionTime: 0ns - RowsProduced: 6.518K (6518) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s627ms Fragment 14: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 510.567ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 507.44ms - CloseTime: 217.752us - GetBlockTime: 4.185ms - OpenTime: 2.907ms - PrepareTime: 384.152us - SinkTime: 497.479ms - GetBlockCounter: 913 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 12 - NumScheduleTimes: 15 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 228.831ms - WaitBfTime: 711.459ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.753ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 843 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.38 MB - CloseTime: 21.964us - CompressTime: 0ns - ExecTime: 497.385ms - InputRows: 3.40327M (3403270) - LocalBytesSent: 29.05 MB - LocalSendTime: 3.706ms - LocalSentRows: 1.692456M (1692456) - MemoryUsage: - PeakMemoryUsage: 54.42 MB - MergeBlockTime: 0ns - OpenTime: 169.216us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s19ms - RowsProduced: 3.40327M (3403270) - RpcAvgTime: 54.382ms - RpcCount: 418 - RpcMaxTime: 2s304ms - RpcMinTime: 1s461ms - RpcSumTime: 22s731ms - SerializeBatchTime: 127.304ms - SplitBlockDistributeByChannelTime: 278.141ms - SplitBlockHashComputeTime: 50.43ms - UncompressedRowBatchSize: 31.25 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 11s124ms - 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: [13212, 13394] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.317us - BlocksProduced: 913 - CloseTime: 190.719us - ExecTime: 691.305ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 3.34ms - ProcessConjunctTime: 129.630us - ProjectionTime: 422.644ms - RowsProduced: 3.40327M (3403270) - RowsRead: 3.40327M (3403270) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 92.227ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 261.284ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [126.350ms, 117.977ms, 4.053ms, ] - PerScannerRowsRead: [1.94M, 1.40M, 68.95K, ] - PerScannerWaitTime: [3.491ms, 88.661ms, 75.011us, ] - BlockConvertTime: 0ns - BlockFetchTime: 220.864ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.224ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 46.349us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 378.968ms - ScannerCtxSchedTime: 92.212ms - ScannerFilterTime: 23.104ms - ScannerGetBlockTime: 224.782ms - ScannerInitTime: 2.686ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - BitmapIndexFilterTimer: 6.36us - BlockConditionsFilteredBloomFilterTime: 12.913us - BlockConditionsFilteredDictTime: 26.921us - BlockConditionsFilteredTime: 327.693us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 211.483us - BlockInitSeekCount: 36 - BlockInitSeekTime: 58.628us - BlockInitTime: 644.367us - BlockLoadTime: 224.660ms - BlocksLoad: 920 - CachedPagesNum: 1.297K (1297) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 915 - FirstReadSeekTime: 299.783us - FirstReadTime: 8.280ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.261us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 135.173ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 66.725ms - OutputIndexResultColumnTimer: 148.783us - RawRowsRead: 3.705863M (3705863) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 302.593K (302593) - RowsVectorPredInput: 3.705863M (3705863) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 59.953us - TotalPagesNum: 1.297K (1297) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 8.816ms PipelineXTask (index=1):(Active: 13.96ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.385ms - CloseTime: 131.844us - GetBlockTime: 311.323us - OpenTime: 263.128us - PrepareTime: 309.414us - SinkTime: 11.658ms - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.631ms - WaitBfTime: 711.372ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.637ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 84 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.90 MB - CloseTime: 29.147us - CompressTime: 0ns - ExecTime: 11.817ms - InputRows: 226.653K (226653) - LocalBytesSent: 1.93 MB - LocalSendTime: 171.582us - LocalSentRows: 112.492K (112492) - MemoryUsage: - PeakMemoryUsage: 4.93 MB - MergeBlockTime: 0ns - OpenTime: 143.489us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s713ms - RowsProduced: 226.653K (226653) - RpcAvgTime: 239.826ms - RpcCount: 36 - RpcMaxTime: 783.908ms - RpcMinTime: 534.519ms - RpcSumTime: 8s633ms - SerializeBatchTime: 1.393ms - SplitBlockDistributeByChannelTime: 4.821ms - SplitBlockHashComputeTime: 2.476ms - UncompressedRowBatchSize: 2.09 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 10s944ms - 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: [13224, 13404] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.579us - BlocksProduced: 60 - CloseTime: 98.276us - ExecTime: 112.546ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 355.378us - ProcessConjunctTime: 74.960us - ProjectionTime: 55.291ms - RowsProduced: 226.653K (226653) - RowsRead: 226.653K (226653) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 168.783us - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 56.489ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [6.460ms, 2.208ms, ] - PerScannerRowsRead: [137.04K, 89.61K, ] - PerScannerWaitTime: [88.618us, 80.165us, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.718ms - MemoryUsage: - FreeBlocks: 2.67 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.142ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.728us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.905ms - ScannerCtxSchedTime: 164.995us - ScannerFilterTime: 52.530us - ScannerGetBlockTime: 8.582ms - ScannerInitTime: 138.435us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 900ns - BlockConditionsFilteredBloomFilterTime: 4.17us - BlockConditionsFilteredDictTime: 16.506us - BlockConditionsFilteredTime: 73.494us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 35.74us - BlockInitSeekCount: 32 - BlockInitSeekTime: 32.813us - BlockInitTime: 175.543us - BlockLoadTime: 9.125ms - BlocksLoad: 64 - CachedPagesNum: 75 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 29.987us - FirstReadTime: 467.943us - IOTimer: 0ns - InvertedIndexFilterTime: 4.706us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.888ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.849ms - OutputIndexResultColumnTimer: 9.914us - RawRowsRead: 235.124K (235124) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 8.471K (8471) - RowsVectorPredInput: 235.124K (235124) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.183us - TotalPagesNum: 75 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 420.96us PipelineXTask (index=2):(Active: 51.973ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.998ms - CloseTime: 74.837us - GetBlockTime: 483.837us - OpenTime: 1.588ms - PrepareTime: 303.834us - SinkTime: 47.736ms - GetBlockCounter: 74 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.943ms - WaitBfTime: 711.669ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.67ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 95 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.47 MB - CloseTime: 15.712us - CompressTime: 0ns - ExecTime: 47.855ms - InputRows: 297.725K (297725) - LocalBytesSent: 2.56 MB - LocalSendTime: 191.310us - LocalSentRows: 149.021K (149021) - MemoryUsage: - PeakMemoryUsage: 6.19 MB - MergeBlockTime: 0ns - OpenTime: 132.633us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s735ms - RowsProduced: 297.725K (297725) - RpcAvgTime: 216.11ms - RpcCount: 41 - RpcMaxTime: 820.435ms - RpcMinTime: 579.277ms - RpcSumTime: 8s856ms - SerializeBatchTime: 2.841ms - SplitBlockDistributeByChannelTime: 37.852ms - SplitBlockHashComputeTime: 3.549ms - UncompressedRowBatchSize: 2.72 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 11s1ms - 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: [13270] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.578us - BlocksProduced: 74 - CloseTime: 55.128us - ExecTime: 81.141ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.674ms - ProcessConjunctTime: 23.919us - ProjectionTime: 27.108ms - RowsProduced: 297.725K (297725) - RowsRead: 297.725K (297725) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 60.893us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 51.808ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [21.636ms, ] - PerScannerRowsRead: [297.73K, ] - PerScannerWaitTime: [60.893us, ] - BlockConvertTime: 0ns - BlockFetchTime: 20.465ms - MemoryUsage: - FreeBlocks: 5.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.167ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.634us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 51.719ms - ScannerCtxSchedTime: 58.231us - ScannerFilterTime: 104.901us - ScannerGetBlockTime: 21.459ms - ScannerInitTime: 1.530ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.106us - BlockConditionsFilteredBloomFilterTime: 4.536us - BlockConditionsFilteredDictTime: 13.603us - BlockConditionsFilteredTime: 66.101us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.692us - BlockInitSeekCount: 14 - BlockInitSeekTime: 34.320us - BlockInitTime: 176.800us - BlockLoadTime: 21.956ms - BlocksLoad: 76 - CachedPagesNum: 81 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 74 - FirstReadSeekTime: 59.174us - FirstReadTime: 839.721us - IOTimer: 0ns - InvertedIndexFilterTime: 5.376us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 12.719ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 6.903ms - OutputIndexResultColumnTimer: 20.595us - RawRowsRead: 298.326K (298326) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 601 - RowsVectorPredInput: 298.326K (298326) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 6.364us - TotalPagesNum: 81 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 687.362us PipelineXTask (index=3):(Active: 395.353ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 393.123ms - CloseTime: 134.447us - GetBlockTime: 2.961ms - OpenTime: 1.766ms - PrepareTime: 318.119us - SinkTime: 386.623ms - GetBlockCounter: 685 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 10 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 166.46ms - WaitBfTime: 711.483ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 253.178ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 643 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 21.21 MB - CloseTime: 19.257us - CompressTime: 0ns - ExecTime: 386.605ms - InputRows: 2.57335M (2573350) - LocalBytesSent: 22.23 MB - LocalSendTime: 2.181ms - LocalSentRows: 1.295008M (1295008) - MemoryUsage: - PeakMemoryUsage: 41.68 MB - MergeBlockTime: 0ns - OpenTime: 156.187us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12s107ms - RowsProduced: 2.57335M (2573350) - RpcAvgTime: 72.678ms - RpcCount: 313 - RpcMaxTime: 2s328ms - RpcMinTime: 1s537ms - RpcSumTime: 22s748ms - SerializeBatchTime: 98.738ms - SplitBlockDistributeByChannelTime: 116.131ms - SplitBlockHashComputeTime: 104.606ms - UncompressedRowBatchSize: 23.35 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 11s124ms - 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: [13272] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.983us - BlocksProduced: 685 - CloseTime: 110.674us - ExecTime: 410.804ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 1.854ms - ProcessConjunctTime: 128.143us - ProjectionTime: 222.182ms - RowsProduced: 2.57335M (2573350) - RowsRead: 2.57335M (2573350) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 123.830ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 183.772ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [80.727ms, 55.882ms, ] - PerScannerRowsRead: [1.93M, 641.98K, ] - PerScannerWaitTime: [47.426ms, 76.404ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 134.296ms - MemoryUsage: - FreeBlocks: 13.78 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.336ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 32.239us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 242.502ms - ScannerCtxSchedTime: 123.821ms - ScannerFilterTime: 587.464us - ScannerGetBlockTime: 135.612ms - ScannerInitTime: 1.571ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 5.312us - BlockConditionsFilteredBloomFilterTime: 3.475us - BlockConditionsFilteredDictTime: 17.365us - BlockConditionsFilteredTime: 294.87us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 203.720us - BlockInitSeekCount: 18 - BlockInitSeekTime: 27.711us - BlockInitTime: 467.873us - BlockLoadTime: 135.836ms - BlocksLoad: 689 - CachedPagesNum: 989 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 687 - FirstReadSeekTime: 217.625us - FirstReadTime: 6.290ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.60us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 60.100ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 59.451ms - OutputIndexResultColumnTimer: 105.410us - RawRowsRead: 2.785808M (2785808) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 212.458K (212458) - RowsVectorPredInput: 2.785808M (2785808) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 31.934us - TotalPagesNum: 989 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 6.162ms PipelineXTask (index=4):(Active: 39.250ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 37.400ms - CloseTime: 53.432us - GetBlockTime: 338.259us - OpenTime: 1.476ms - PrepareTime: 311.757us - SinkTime: 35.424ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.970ms - WaitBfTime: 711.655ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.79ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 60 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.03 MB - CloseTime: 13.60us - CompressTime: 0ns - ExecTime: 35.570ms - InputRows: 124.177K (124177) - LocalBytesSent: 1.07 MB - LocalSendTime: 172.365us - LocalSentRows: 62.393K (62393) - MemoryUsage: - PeakMemoryUsage: 3.65 MB - MergeBlockTime: 0ns - OpenTime: 147.775us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 544.970ms - RowsProduced: 124.177K (124177) - RpcAvgTime: 270.219ms - RpcCount: 24 - RpcMaxTime: 545.207ms - RpcMinTime: 533.102ms - RpcSumTime: 6s485ms - SerializeBatchTime: 1.87ms - SplitBlockDistributeByChannelTime: 5.152ms - SplitBlockHashComputeTime: 2.486ms - UncompressedRowBatchSize: 1.13 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [13282] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.576us - BlocksProduced: 32 - CloseTime: 37.187us - ExecTime: 69.698ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.557ms - ProcessConjunctTime: 27.374us - ProjectionTime: 11.531ms - RowsProduced: 124.177K (124177) - RowsRead: 124.177K (124177) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 98.45us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 56.238ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [42.903ms, ] - PerScannerRowsRead: [124.18K, ] - PerScannerWaitTime: [98.045us, ] - BlockConvertTime: 0ns - BlockFetchTime: 41.990ms - MemoryUsage: - FreeBlocks: 2.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 807.547us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.291us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 22.147ms - ScannerCtxSchedTime: 96.250us - ScannerFilterTime: 44.911us - ScannerGetBlockTime: 42.827ms - ScannerInitTime: 1.387ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 886ns - BlockConditionsFilteredBloomFilterTime: 3.429us - BlockConditionsFilteredDictTime: 10.67us - BlockConditionsFilteredTime: 47.941us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 18.617us - BlockInitSeekCount: 17 - BlockInitSeekTime: 20.234us - BlockInitTime: 119.979us - BlockLoadTime: 43.158ms - BlocksLoad: 34 - CachedPagesNum: 40 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 32 - FirstReadSeekTime: 20.192us - FirstReadTime: 361.433us - IOTimer: 0ns - InvertedIndexFilterTime: 5.285us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 25.998ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 15.978ms - OutputIndexResultColumnTimer: 8.129us - RawRowsRead: 127.084K (127084) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 2.907K (2907) - RowsVectorPredInput: 127.084K (127084) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.735us - TotalPagesNum: 40 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 393.147us PipelineXTask (index=5):(Active: 16.531ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.615ms - CloseTime: 77.42us - GetBlockTime: 395.518us - OpenTime: 1.522ms - PrepareTime: 305.868us - SinkTime: 12.544ms - GetBlockCounter: 30 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 13.949ms - WaitBfTime: 711.459ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.678ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 60 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 960.91 KB - CloseTime: 15.678us - CompressTime: 0ns - ExecTime: 12.675ms - InputRows: 117.827K (117827) - LocalBytesSent: 1.05 MB - LocalSendTime: 198.427us - LocalSentRows: 61.448K (61448) - MemoryUsage: - PeakMemoryUsage: 3.34 MB - MergeBlockTime: 0ns - OpenTime: 144.526us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 535.730ms - RowsProduced: 117.827K (117827) - RpcAvgTime: 256.506ms - RpcCount: 24 - RpcMaxTime: 521.385ms - RpcMinTime: 505.896ms - RpcSumTime: 6s156ms - SerializeBatchTime: 710.274us - SplitBlockDistributeByChannelTime: 5.761ms - SplitBlockHashComputeTime: 2.613ms - UncompressedRowBatchSize: 1.03 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [13284] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.504us - BlocksProduced: 30 - CloseTime: 57.731us - ExecTime: 81.650ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.577ms - ProcessConjunctTime: 76.843us - ProjectionTime: 34.270ms - RowsProduced: 117.827K (117827) - RowsRead: 117.827K (117827) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.446ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 45.352ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [8.121ms, ] - PerScannerRowsRead: [117.83K, ] - PerScannerWaitTime: [1.446ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.937ms - MemoryUsage: - FreeBlocks: 2.18 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.84ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.667us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 22.186ms - ScannerCtxSchedTime: 1.444ms - ScannerFilterTime: 38.315us - ScannerGetBlockTime: 8.55ms - ScannerInitTime: 119.335us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 543ns - BlockConditionsFilteredBloomFilterTime: 2.70us - BlockConditionsFilteredDictTime: 6.154us - BlockConditionsFilteredTime: 30.590us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 14.138us - BlockInitSeekCount: 6 - BlockInitSeekTime: 14.495us - BlockInitTime: 89.648us - BlockLoadTime: 9.823ms - BlocksLoad: 31 - CachedPagesNum: 34 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 30 - FirstReadSeekTime: 21.282us - FirstReadTime: 364.241us - IOTimer: 0ns - InvertedIndexFilterTime: 2.325us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.841ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.857ms - OutputIndexResultColumnTimer: 7.424us - RawRowsRead: 120.953K (120953) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 3.126K (3126) - RowsVectorPredInput: 120.953K (120953) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.47us - TotalPagesNum: 34 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 410.395us PipelineXTask (index=6):(Active: 574.157ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 573.472ms - CloseTime: 135.120us - GetBlockTime: 5.190ms - OpenTime: 216.537us - PrepareTime: 322.773us - SinkTime: 564.957ms - GetBlockCounter: 1.056K (1056) - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 12 - NumScheduleTimes: 16 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 274.920ms - WaitBfTime: 711.477ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.6ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 980 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 32.75 MB - CloseTime: 15.201us - CompressTime: 0ns - ExecTime: 564.729ms - InputRows: 3.968275M (3968275) - LocalBytesSent: 34.25 MB - LocalSendTime: 3.921ms - LocalSentRows: 1.994939M (1994939) - MemoryUsage: - PeakMemoryUsage: 62.97 MB - MergeBlockTime: 0ns - OpenTime: 127.386us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s144ms - RowsProduced: 3.968275M (3968275) - RpcAvgTime: 49.166ms - RpcCount: 480 - RpcMaxTime: 2s363ms - RpcMinTime: 1s662ms - RpcSumTime: 23s599ms - SerializeBatchTime: 94.45ms - SplitBlockDistributeByChannelTime: 254.252ms - SplitBlockHashComputeTime: 138.674ms - UncompressedRowBatchSize: 36.05 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 11s124ms - 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: [13332] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.178us - BlocksProduced: 1.056K (1056) - CloseTime: 115.633us - ExecTime: 651.159ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 315.115us - ProcessConjunctTime: 59.667us - ProjectionTime: 394.854ms - RowsProduced: 3.968275M (3968275) - RowsRead: 3.968275M (3968275) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 129.287ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 250.856ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [195.747ms, 168.399ms, 2.386ms, ] - PerScannerRowsRead: [1.97M, 1.91M, 81.77K, ] - PerScannerWaitTime: [79.417ms, 49.831ms, 38.397us, ] - BlockConvertTime: 0ns - BlockFetchTime: 362.27ms - MemoryUsage: - FreeBlocks: 20.11 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.588ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 51.610us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 413.350ms - ScannerCtxSchedTime: 129.275ms - ScannerFilterTime: 980.62us - ScannerGetBlockTime: 364.960ms - ScannerInitTime: 89.317us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 5.795us - BlockConditionsFilteredBloomFilterTime: 5.599us - BlockConditionsFilteredDictTime: 17.20us - BlockConditionsFilteredTime: 262.595us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 153.855us - BlockInitSeekCount: 34 - BlockInitSeekTime: 38.364us - BlockInitTime: 495.124us - BlockLoadTime: 364.73ms - BlocksLoad: 1.061K (1061) - CachedPagesNum: 1.525K (1525) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.057K (1057) - FirstReadSeekTime: 470.670us - FirstReadTime: 23.967ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.443us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 231.620ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 91.791ms - OutputIndexResultColumnTimer: 182.500us - RawRowsRead: 4.284772M (4284772) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 316.497K (316497) - RowsVectorPredInput: 4.284772M (4284772) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 58.456us - TotalPagesNum: 1.525K (1525) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.841ms PipelineXTask (index=7):(Active: 14.331ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 13.495ms - CloseTime: 92.841us - GetBlockTime: 467.574us - OpenTime: 351.215us - PrepareTime: 380.392us - SinkTime: 12.476ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.197ms - WaitBfTime: 711.495ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.963ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 51 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.25 MB - CloseTime: 21.579us - CompressTime: 0ns - ExecTime: 12.661ms - InputRows: 151.703K (151703) - LocalBytesSent: 1.32 MB - LocalSendTime: 175.139us - LocalSentRows: 77.095K (77095) - MemoryUsage: - PeakMemoryUsage: 2.63 MB - MergeBlockTime: 0ns - OpenTime: 185.243us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s766ms - RowsProduced: 151.703K (151703) - RpcAvgTime: 227.777ms - RpcCount: 19 - RpcMaxTime: 782.304ms - RpcMinTime: 221.887ms - RpcSumTime: 4s327ms - SerializeBatchTime: 780.872us - SplitBlockDistributeByChannelTime: 5.367ms - SplitBlockHashComputeTime: 2.897ms - UncompressedRowBatchSize: 1.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 10s950ms - 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: [13334] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.784us - BlocksProduced: 47 - CloseTime: 67.253us - ExecTime: 17.911ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 436.813us - ProcessConjunctTime: 99.646us - ProjectionTime: 5.416ms - RowsProduced: 151.703K (151703) - RowsRead: 151.703K (151703) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 45.132us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 11.539ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [4.646ms, ] - PerScannerRowsRead: [151.70K, ] - PerScannerWaitTime: [45.132us, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.274ms - MemoryUsage: - FreeBlocks: 3.38 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 849.721us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.418us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.522ms - ScannerCtxSchedTime: 43.543us - ScannerFilterTime: 22.955us - ScannerGetBlockTime: 4.604ms - ScannerInitTime: 187.820us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 869ns - BlockConditionsFilteredBloomFilterTime: 2.224us - BlockConditionsFilteredDictTime: 7.501us - BlockConditionsFilteredTime: 47.320us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 25.465us - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.285us - BlockInitTime: 97.850us - BlockLoadTime: 5.172ms - BlocksLoad: 50 - CachedPagesNum: 54 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 48 - FirstReadSeekTime: 25.591us - FirstReadTime: 358.321us - IOTimer: 0ns - InvertedIndexFilterTime: 4.100us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.864ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.443ms - OutputIndexResultColumnTimer: 5.364us - RawRowsRead: 189.692K (189692) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 37.989K (37989) - RowsVectorPredInput: 189.692K (189692) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 1.598us - TotalPagesNum: 54 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 243.610us PipelineXTask (index=8):(Active: 247.732ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 247.68ms - CloseTime: 110.155us - GetBlockTime: 2.447ms - OpenTime: 201.406us - PrepareTime: 343.628us - SinkTime: 242.773ms - GetBlockCounter: 485 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 152.984ms - WaitBfTime: 711.418ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.876ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 497 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 16.21 MB - CloseTime: 21.860us - CompressTime: 0ns - ExecTime: 242.752ms - InputRows: 1.965062M (1965062) - LocalBytesSent: 16.99 MB - LocalSendTime: 2.127ms - LocalSentRows: 989.487K (989487) - MemoryUsage: - PeakMemoryUsage: 32.12 MB - MergeBlockTime: 0ns - OpenTime: 147.705us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s999ms - RowsProduced: 1.965062M (1965062) - RpcAvgTime: 86.3ms - RpcCount: 239 - RpcMaxTime: 2s127ms - RpcMinTime: 1s377ms - RpcSumTime: 20s554ms - SerializeBatchTime: 22.940ms - SplitBlockDistributeByChannelTime: 129.797ms - SplitBlockHashComputeTime: 63.265ms - UncompressedRowBatchSize: 17.82 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 11s124ms - 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: [13336] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.808us - BlocksProduced: 485 - CloseTime: 82.860us - ExecTime: 454.882ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 285.799us - ProcessConjunctTime: 42.965us - ProjectionTime: 102.719ms - RowsProduced: 1.965062M (1965062) - RowsRead: 1.965062M (1965062) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 55.704ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 349.454ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [186.892ms, ] - PerScannerRowsRead: [1.97M, ] - PerScannerWaitTime: [55.704ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 184.314ms - MemoryUsage: - FreeBlocks: 10.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.545ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.316us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 194.425ms - ScannerCtxSchedTime: 55.700ms - ScannerFilterTime: 476.40us - ScannerGetBlockTime: 186.160ms - ScannerInitTime: 126.43us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.828us - BlockConditionsFilteredBloomFilterTime: 3.760us - BlockConditionsFilteredDictTime: 8.825us - BlockConditionsFilteredTime: 82.125us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 45.699us - BlockInitSeekCount: 17 - BlockInitSeekTime: 19.935us - BlockInitTime: 176.74us - BlockLoadTime: 186.90ms - BlocksLoad: 487 - CachedPagesNum: 544 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 485 - FirstReadSeekTime: 166.462us - FirstReadTime: 18.2ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.743us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 90.52ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 72.171ms - OutputIndexResultColumnTimer: 80.86us - RawRowsRead: 1.966125M (1966125) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.063K (1063) - RowsVectorPredInput: 1.966125M (1966125) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 24.490us - TotalPagesNum: 544 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.811ms PipelineXTask (index=9):(Active: 12.228ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.643ms - CloseTime: 53.26us - GetBlockTime: 366.253us - OpenTime: 158.439us - PrepareTime: 363.827us - SinkTime: 11.6ms - GetBlockCounter: 54 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.157ms - WaitBfTime: 711.861ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.369ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 83 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.75 MB - CloseTime: 11.296us - CompressTime: 0ns - ExecTime: 11.145ms - InputRows: 211.663K (211663) - LocalBytesSent: 1.83 MB - LocalSendTime: 164.380us - LocalSentRows: 106.387K (106387) - MemoryUsage: - PeakMemoryUsage: 4.80 MB - MergeBlockTime: 0ns - OpenTime: 142.241us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s748ms - RowsProduced: 211.663K (211663) - RpcAvgTime: 245.241ms - RpcCount: 35 - RpcMaxTime: 756.797ms - RpcMinTime: 506.630ms - RpcSumTime: 8s583ms - SerializeBatchTime: 1.596ms - SplitBlockDistributeByChannelTime: 4.530ms - SplitBlockHashComputeTime: 2.363ms - UncompressedRowBatchSize: 1.92 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 10s944ms - 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: [13342] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.587us - BlocksProduced: 54 - CloseTime: 39.132us - ExecTime: 36.993ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 257.490us - ProcessConjunctTime: 46.185us - ProjectionTime: 11.750ms - RowsProduced: 211.663K (211663) - RowsRead: 211.663K (211663) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.21ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 24.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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [9.929ms, ] - PerScannerRowsRead: [211.66K, ] - PerScannerWaitTime: [1.021ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 9.281ms - MemoryUsage: - FreeBlocks: 3.87 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 989.133us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.278us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.556ms - ScannerCtxSchedTime: 1.18ms - ScannerFilterTime: 49.367us - ScannerGetBlockTime: 9.849ms - ScannerInitTime: 74.254us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.16us - BlockConditionsFilteredBloomFilterTime: 3.128us - BlockConditionsFilteredDictTime: 15.161us - BlockConditionsFilteredTime: 56.675us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 22.155us - BlockInitSeekCount: 18 - BlockInitSeekTime: 25.253us - BlockInitTime: 143.230us - BlockLoadTime: 10.346ms - BlocksLoad: 58 - CachedPagesNum: 68 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 55 - FirstReadSeekTime: 24.975us - FirstReadTime: 475.972us - IOTimer: 0ns - InvertedIndexFilterTime: 5.88us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.748ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.174ms - OutputIndexResultColumnTimer: 13.55us - RawRowsRead: 217.945K (217945) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 6.282K (6282) - RowsVectorPredInput: 217.945K (217945) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 2.609us - TotalPagesNum: 68 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 482.226us PipelineXTask (index=10):(Active: 16.600ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 15.964ms - CloseTime: 64.225us - GetBlockTime: 431.929us - OpenTime: 161.977us - PrepareTime: 400.400us - SinkTime: 15.159ms - GetBlockCounter: 58 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 16.502ms - WaitBfTime: 711.691ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.234ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 84 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.90 MB - CloseTime: 15.437us - CompressTime: 0ns - ExecTime: 15.342ms - InputRows: 229.561K (229561) - LocalBytesSent: 1.98 MB - LocalSendTime: 216.237us - LocalSentRows: 115.107K (115107) - MemoryUsage: - PeakMemoryUsage: 5.21 MB - MergeBlockTime: 0ns - OpenTime: 189.531us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s760ms - RowsProduced: 229.561K (229561) - RpcAvgTime: 237.104ms - RpcCount: 36 - RpcMaxTime: 787.474ms - RpcMinTime: 551.235ms - RpcSumTime: 8s535ms - SerializeBatchTime: 1.47ms - SplitBlockDistributeByChannelTime: 6.744ms - SplitBlockHashComputeTime: 3.782ms - UncompressedRowBatchSize: 2.09 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 10s997ms - 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: [13344] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.394us - BlocksProduced: 58 - CloseTime: 44.198us - ExecTime: 79.913ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 267.977us - ProcessConjunctTime: 34.796us - ProjectionTime: 19.303ms - RowsProduced: 229.561K (229561) - RowsRead: 229.561K (229561) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 171.51us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 59.859ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [37.677ms, ] - PerScannerRowsRead: [229.56K, ] - PerScannerWaitTime: [171.051us, ] - BlockConvertTime: 0ns - BlockFetchTime: 36.922ms - MemoryUsage: - FreeBlocks: 4.15 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.210ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.628us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 37.664ms - ScannerCtxSchedTime: 170.4us - ScannerFilterTime: 78.853us - ScannerGetBlockTime: 37.553ms - ScannerInitTime: 81.221us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.146us - BlockConditionsFilteredBloomFilterTime: 4.389us - BlockConditionsFilteredDictTime: 14.979us - BlockConditionsFilteredTime: 63.684us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 25.897us - BlockInitSeekCount: 20 - BlockInitSeekTime: 32.893us - BlockInitTime: 173.50us - BlockLoadTime: 38.203ms - BlocksLoad: 63 - CachedPagesNum: 72 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 42.111us - FirstReadTime: 676.706us - IOTimer: 0ns - InvertedIndexFilterTime: 6.689us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 31.374ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.837ms - OutputIndexResultColumnTimer: 14.901us - RawRowsRead: 234.611K (234611) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 5.05K (5050) - RowsVectorPredInput: 234.611K (234611) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 5.29us - TotalPagesNum: 72 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 695.608us PipelineXTask (index=11):(Active: 300.198ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 299.550ms - CloseTime: 133.480us - GetBlockTime: 2.639ms - OpenTime: 116.316us - PrepareTime: 387.970us - SinkTime: 295.263ms - GetBlockCounter: 596 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 10 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 133.626ms - WaitBfTime: 711.855ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.913ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 570 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.76 MB - CloseTime: 20.810us - CompressTime: 0ns - ExecTime: 295.255ms - InputRows: 2.255882M (2255882) - LocalBytesSent: 19.33 MB - LocalSendTime: 14.797ms - LocalSentRows: 1.125928M (1125928) - MemoryUsage: - PeakMemoryUsage: 36.13 MB - MergeBlockTime: 0ns - OpenTime: 149.711us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12s161ms - RowsProduced: 2.255882M (2255882) - RpcAvgTime: 74.742ms - RpcCount: 279 - RpcMaxTime: 2s104ms - RpcMinTime: 1s517ms - RpcSumTime: 20s853ms - SerializeBatchTime: 49.426ms - SplitBlockDistributeByChannelTime: 60.943ms - SplitBlockHashComputeTime: 108.646ms - UncompressedRowBatchSize: 20.64 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 11s124ms - 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: [13392] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.305us - BlocksProduced: 596 - CloseTime: 108.369us - ExecTime: 610.248ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 252.344us - ProcessConjunctTime: 31.862us - ProjectionTime: 235.832ms - RowsProduced: 2.255882M (2255882) - RowsRead: 2.255882M (2255882) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 85.301ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 371.463ms - 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: 1 - expr_filtered_rows: 0 - expr_input_rows: 414.048K (414048) RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 9 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [125.866ms, 54.013ms, ] - PerScannerRowsRead: [1.96M, 300.81K, ] - PerScannerWaitTime: [85.218ms, 82.593us, ] - BlockConvertTime: 0ns - BlockFetchTime: 177.672ms - MemoryUsage: - FreeBlocks: 12.52 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.683ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.944us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 219.416ms - ScannerCtxSchedTime: 85.293ms - ScannerFilterTime: 522.675us - ScannerGetBlockTime: 178.987ms - ScannerInitTime: 54.431us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.725us - BlockConditionsFilteredBloomFilterTime: 2.729us - BlockConditionsFilteredDictTime: 10.658us - BlockConditionsFilteredTime: 154.376us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 104.172us - BlockInitSeekCount: 18 - BlockInitSeekTime: 28.620us - BlockInitTime: 289.117us - BlockLoadTime: 179.623ms - BlocksLoad: 600 - CachedPagesNum: 853 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 598 - FirstReadSeekTime: 234.646us - FirstReadTime: 5.234ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.805us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 85.301ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 29.468ms - OutputIndexResultColumnTimer: 90.386us - RawRowsRead: 2.422585M (2422585) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 166.703K (166703) - RowsVectorPredInput: 2.422585M (2422585) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 26.803us - TotalPagesNum: 853 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 18.213ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 472.40ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 471.110ms - CloseTime: 226.606us - GetBlockTime: 5.48ms - OpenTime: 388.658us - PrepareTime: 303.569us - SinkTime: 462.439ms - GetBlockCounter: 1.078K (1078) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 9 - NumScheduleTimes: 12 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 271.355ms - WaitBfTime: 679.138ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.587ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 1.026K (1026) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 34.44 MB - CloseTime: 18.711us - CompressTime: 0ns - ExecTime: 462.234ms - InputRows: 4.161402M (4161402) - LocalBytesSent: 35.77 MB - LocalSendTime: 4.487ms - LocalSentRows: 2.084019M (2084019) - MemoryUsage: - PeakMemoryUsage: 66.50 MB - MergeBlockTime: 0ns - OpenTime: 120.728us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s769ms - RowsProduced: 4.161402M (4161402) - RpcAvgTime: 281.799ms - RpcCount: 506 - RpcMaxTime: 12s804ms - RpcMinTime: 8s990ms - RpcSumTime: 2m22s - SerializeBatchTime: 59.391ms - SplitBlockDistributeByChannelTime: 225.772ms - SplitBlockHashComputeTime: 75.576ms - UncompressedRowBatchSize: 37.95 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13208, 13280, 13402] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.99us - BlocksProduced: 1.078K (1078) - CloseTime: 204.477us - ExecTime: 437.420ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 477.224us - ProcessConjunctTime: 43.253us - ProjectionTime: 291.645ms - RowsProduced: 4.161402M (4161402) - RowsRead: 4.161402M (4161402) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.723ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 140.135ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [153.412ms, 108.366ms, 59.609ms, 7.090ms, ] - PerScannerRowsRead: [1.98M, 1.28M, 777.34K, 124.90K, ] - PerScannerWaitTime: [8.646ms, 982.117us, 198.297us, 895.952us, ] - BlockConvertTime: 0ns - BlockFetchTime: 323.743ms - MemoryUsage: - FreeBlocks: 27.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.258ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 59.268us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 418.438ms - ScannerCtxSchedTime: 10.704ms - ScannerFilterTime: 990.452us - ScannerGetBlockTime: 326.966ms - ScannerInitTime: 151.465us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 4.551us - BlockConditionsFilteredBloomFilterTime: 7.676us - BlockConditionsFilteredDictTime: 31.245us - BlockConditionsFilteredTime: 268.879us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 170.791us - BlockInitSeekCount: 41 - BlockInitSeekTime: 61.928us - BlockInitTime: 558.945us - BlockLoadTime: 328.511ms - BlocksLoad: 1.084K (1084) - CachedPagesNum: 1.434K (1434) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.078K (1078) - FirstReadSeekTime: 422.816us - FirstReadTime: 9.337ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.598us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 249.190ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 55.175ms - OutputIndexResultColumnTimer: 189.555us - RawRowsRead: 4.368756M (4368756) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 207.354K (207354) - RowsVectorPredInput: 4.368756M (4368756) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 66.300us - TotalPagesNum: 1.434K (1434) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 8.522ms PipelineXTask (index=1):(Active: 127.642ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 126.999ms - CloseTime: 191.894us - GetBlockTime: 1.635ms - OpenTime: 189.305us - PrepareTime: 252.483us - SinkTime: 124.389ms - GetBlockCounter: 244 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 68.265ms - WaitBfTime: 678.702ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.223ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 249 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.72 MB - CloseTime: 19.315us - CompressTime: 0ns - ExecTime: 124.406ms - InputRows: 933.101K (933101) - LocalBytesSent: 8.03 MB - LocalSendTime: 883.438us - LocalSentRows: 467.645K (467645) - MemoryUsage: - PeakMemoryUsage: 16.26 MB - MergeBlockTime: 0ns - OpenTime: 91.625us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s491ms - RowsProduced: 933.101K (933101) - RpcAvgTime: 879.548ms - RpcCount: 118 - RpcMaxTime: 9s468ms - RpcMinTime: 5s955ms - RpcSumTime: 1m43s - SerializeBatchTime: 18.588ms - SplitBlockDistributeByChannelTime: 69.871ms - SplitBlockHashComputeTime: 11.838ms - UncompressedRowBatchSize: 8.50 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13210, 13286, 13406] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.991us - BlocksProduced: 244 - CloseTime: 168.476us - ExecTime: 490.541ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 265.70us - ProcessConjunctTime: 43.638us - ProjectionTime: 212.217ms - RowsProduced: 933.101K (933101) - RowsRead: 933.101K (933101) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 286.109us - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 276.237ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [109.576ms, 14.818ms, 35.935ms, ] - PerScannerRowsRead: [500.89K, 247.19K, 185.02K, ] - PerScannerWaitTime: [100.429us, 83.853us, 101.827us, ] - BlockConvertTime: 0ns - BlockFetchTime: 157.940ms - MemoryUsage: - FreeBlocks: 10.62 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.193ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.476us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 121.548ms - ScannerCtxSchedTime: 276.565us - ScannerFilterTime: 295.565us - ScannerGetBlockTime: 159.846ms - ScannerInitTime: 92.537us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 3.779us - BlockConditionsFilteredBloomFilterTime: 8.928us - BlockConditionsFilteredDictTime: 28.877us - BlockConditionsFilteredTime: 136.56us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 63.571us - BlockInitSeekCount: 45 - BlockInitSeekTime: 62.780us - BlockInitTime: 388.866us - BlockLoadTime: 163.308ms - BlocksLoad: 249 - CachedPagesNum: 279 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 244 - FirstReadSeekTime: 146.982us - FirstReadTime: 2.455ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.43us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 58.86ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 98.782ms - OutputIndexResultColumnTimer: 55.799us - RawRowsRead: 982.005K (982005) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 48.904K (48904) - RowsVectorPredInput: 982.005K (982005) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 13.519us - TotalPagesNum: 279 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.869ms PipelineXTask (index=2):(Active: 503.580ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 502.422ms - CloseTime: 197.315us - GetBlockTime: 4.955ms - OpenTime: 683.580us - PrepareTime: 265.768us - SinkTime: 493.491ms - GetBlockCounter: 1.049K (1049) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 9 - NumScheduleTimes: 13 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 278.623ms - WaitBfTime: 679.21ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.169ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 994 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 33.47 MB - CloseTime: 24.766us - CompressTime: 0ns - ExecTime: 493.271ms - InputRows: 4.021074M (4021074) - LocalBytesSent: 34.38 MB - LocalSendTime: 4.472ms - LocalSentRows: 2.002519M (2002519) - MemoryUsage: - PeakMemoryUsage: 64.06 MB - MergeBlockTime: 0ns - OpenTime: 104.831us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s757ms - RowsProduced: 4.021074M (4021074) - RpcAvgTime: 267.924ms - RpcCount: 494 - RpcMaxTime: 12s509ms - RpcMinTime: 9s203ms - RpcSumTime: 2m12s - SerializeBatchTime: 55.951ms - SplitBlockDistributeByChannelTime: 275.149ms - SplitBlockHashComputeTime: 108.72ms - UncompressedRowBatchSize: 36.87 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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, 13328] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.979us - BlocksProduced: 1.049K (1049) - CloseTime: 168.360us - ExecTime: 410.897ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 750.288us - ProcessConjunctTime: 107.516us - ProjectionTime: 300.11ms - RowsProduced: 4.021074M (4021074) - RowsRead: 4.021074M (4021074) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 119.140ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 105.93ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [5.867ms, 140.144ms, 79.576ms, ] - PerScannerRowsRead: [97.35K, 2.01M, 1.91M, ] - PerScannerWaitTime: [869.790us, 107.822ms, 10.448ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 220.766ms - MemoryUsage: - FreeBlocks: 17.30 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.837ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58.859us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 380.658ms - ScannerCtxSchedTime: 119.125ms - ScannerFilterTime: 959.622us - ScannerGetBlockTime: 224.150ms - ScannerInitTime: 477.287us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 5.548us - BlockConditionsFilteredBloomFilterTime: 8.324us - BlockConditionsFilteredDictTime: 32.389us - BlockConditionsFilteredTime: 286.838us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 170.344us - BlockInitSeekCount: 42 - BlockInitSeekTime: 61.585us - BlockInitTime: 591.523us - BlockLoadTime: 224.542ms - BlocksLoad: 1.056K (1056) - CachedPagesNum: 1.428K (1428) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.051K (1051) - FirstReadSeekTime: 475.770us - FirstReadTime: 29.693ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.97us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 119.21ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 53.486ms - OutputIndexResultColumnTimer: 209.175us - RawRowsRead: 4.259814M (4259814) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 238.74K (238740) - RowsVectorPredInput: 4.259814M (4259814) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 47.578us - TotalPagesNum: 1.428K (1428) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 7.886ms PipelineXTask (index=3):(Active: 343.767ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 343.180ms - CloseTime: 169.173us - GetBlockTime: 3.359ms - OpenTime: 189.859us - PrepareTime: 218.485us - SinkTime: 337.805ms - GetBlockCounter: 548 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 8 - NumScheduleTimes: 11 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 153.233ms - WaitBfTime: 678.886ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.248ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 558 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.39 MB - CloseTime: 26.609us - CompressTime: 0ns - ExecTime: 337.736ms - InputRows: 2.218522M (2218522) - LocalBytesSent: 19.04 MB - LocalSendTime: 2.294ms - LocalSentRows: 1.109375M (1109375) - MemoryUsage: - PeakMemoryUsage: 36.17 MB - MergeBlockTime: 0ns - OpenTime: 89.398us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s227ms - RowsProduced: 2.218522M (2218522) - RpcAvgTime: 405.536ms - RpcCount: 272 - RpcMaxTime: 10s458ms - RpcMinTime: 7s999ms - RpcSumTime: 1m50s - SerializeBatchTime: 119.150ms - SplitBlockDistributeByChannelTime: 156.892ms - SplitBlockHashComputeTime: 32.746ms - UncompressedRowBatchSize: 20.26 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13216, 13330] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.607us - BlocksProduced: 548 - CloseTime: 135.932us - ExecTime: 529.856ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 257.337us - ProcessConjunctTime: 65.217us - ProjectionTime: 264.986ms - RowsProduced: 2.218522M (2218522) - RowsRead: 2.218522M (2218522) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 33.435ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 261.247ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [130.693ms, 48.274ms, ] - PerScannerRowsRead: [1.55M, 667.27K, ] - PerScannerWaitTime: [733.147us, 32.702ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 175.439ms - MemoryUsage: - FreeBlocks: 16.17 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 4.77ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 30.695us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 193.237ms - ScannerCtxSchedTime: 33.427ms - ScannerFilterTime: 451.925us - ScannerGetBlockTime: 178.170ms - ScannerInitTime: 88.97us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 1.908us - BlockConditionsFilteredBloomFilterTime: 4.308us - BlockConditionsFilteredDictTime: 18.138us - BlockConditionsFilteredTime: 131.575us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 71.207us - BlockInitSeekCount: 30 - BlockInitSeekTime: 36.466us - BlockInitTime: 266.512us - BlockLoadTime: 180.388ms - BlocksLoad: 552 - CachedPagesNum: 567 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 548 - FirstReadSeekTime: 198.776us - FirstReadTime: 4.455ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.868us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 128.8ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 42.495ms - OutputIndexResultColumnTimer: 80.685us - RawRowsRead: 2.219881M (2219881) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 1.359K (1359) - RowsVectorPredInput: 2.219881M (2219881) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 32.292us - TotalPagesNum: 567 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.469ms PipelineXTask (index=4):(Active: 234.920ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 234.343ms - CloseTime: 141.544us - GetBlockTime: 2.493ms - OpenTime: 209.945us - PrepareTime: 216.820us - SinkTime: 229.828ms - GetBlockCounter: 372 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 104.450ms - WaitBfTime: 677.699ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.135ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 375 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.08 MB - CloseTime: 21.670us - CompressTime: 0ns - ExecTime: 229.827ms - InputRows: 1.451444M (1451444) - LocalBytesSent: 12.40 MB - LocalSendTime: 1.308ms - LocalSentRows: 722.355K (722355) - MemoryUsage: - PeakMemoryUsage: 24.04 MB - MergeBlockTime: 0ns - OpenTime: 89.187us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14s732ms - RowsProduced: 1.451444M (1451444) - RpcAvgTime: 568.143ms - RpcCount: 183 - RpcMaxTime: 9s645ms - RpcMinTime: 6s926ms - RpcSumTime: 1m43s - SerializeBatchTime: 53.46ms - SplitBlockDistributeByChannelTime: 140.726ms - SplitBlockHashComputeTime: 16.721ms - UncompressedRowBatchSize: 13.32 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13218, 13338] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.213us - BlocksProduced: 372 - CloseTime: 115.594us - ExecTime: 414.943ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 273.967us - ProcessConjunctTime: 53.500us - ProjectionTime: 237.426ms - RowsProduced: 1.451444M (1451444) - RowsRead: 1.451444M (1451444) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 48.731ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 174.651ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [202.820ms, 54.217ms, ] - PerScannerRowsRead: [605.84K, 845.61K, ] - PerScannerWaitTime: [885.649us, 47.845ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 172.333ms - MemoryUsage: - FreeBlocks: 15.26 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.203ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 16.366us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 192.458ms - ScannerCtxSchedTime: 48.725ms - ScannerFilterTime: 450.845us - ScannerGetBlockTime: 256.301ms - ScannerInitTime: 108.90us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.746us - BlockConditionsFilteredBloomFilterTime: 8.124us - BlockConditionsFilteredDictTime: 21.940us - BlockConditionsFilteredTime: 142.901us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 71.361us - BlockInitSeekCount: 34 - BlockInitSeekTime: 45.193us - BlockInitTime: 324.822us - BlockLoadTime: 257.631ms - BlocksLoad: 377 - CachedPagesNum: 422 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 373 - FirstReadSeekTime: 196.838us - FirstReadTime: 3.752ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.135us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 220.967ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 26.586ms - OutputIndexResultColumnTimer: 84.40us - RawRowsRead: 1.502361M (1502361) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 50.917K (50917) - RowsVectorPredInput: 1.502361M (1502361) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 22.263us - TotalPagesNum: 422 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.213ms PipelineXTask (index=5):(Active: 164.175ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 163.650ms - CloseTime: 151.924us - GetBlockTime: 3.32ms - OpenTime: 134.734us - PrepareTime: 229.110us - SinkTime: 158.482ms - GetBlockCounter: 643 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 163.32ms - WaitBfTime: 677.891ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.9ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 633 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 20.95 MB - CloseTime: 24.992us - CompressTime: 0ns - ExecTime: 158.397ms - InputRows: 2.520988M (2520988) - LocalBytesSent: 21.60 MB - LocalSendTime: 2.452ms - LocalSentRows: 1.25801M (1258010) - MemoryUsage: - PeakMemoryUsage: 40.04 MB - MergeBlockTime: 0ns - OpenTime: 92.601us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s591ms - RowsProduced: 2.520988M (2520988) - RpcAvgTime: 363.332ms - RpcCount: 311 - RpcMaxTime: 10s502ms - RpcMinTime: 8s778ms - RpcSumTime: 1m52s - SerializeBatchTime: 20.431ms - SplitBlockDistributeByChannelTime: 70.684ms - SplitBlockHashComputeTime: 34.926ms - UncompressedRowBatchSize: 23.07 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13220, 13340] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.205us - BlocksProduced: 643 - CloseTime: 121.546us - ExecTime: 728.642ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 191.124us - ProcessConjunctTime: 29.990us - ProjectionTime: 359.371ms - RowsProduced: 2.520988M (2520988) - RowsRead: 2.520988M (2520988) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.675ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 366.3ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [250.855ms, 98.998ms, ] - PerScannerRowsRead: [1.12M, 1.40M, ] - PerScannerWaitTime: [216.742us, 1.459ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 346.815ms - MemoryUsage: - FreeBlocks: 19.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 4.132ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35.642us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 254.425ms - ScannerCtxSchedTime: 1.664ms - ScannerFilterTime: 600.256us - ScannerGetBlockTime: 348.876ms - ScannerInitTime: 50.78us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 2.15us - BlockConditionsFilteredBloomFilterTime: 4.755us - BlockConditionsFilteredDictTime: 23.399us - BlockConditionsFilteredTime: 123.677us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.936us - BlockInitSeekCount: 23 - BlockInitSeekTime: 34.88us - BlockInitTime: 261.6us - BlockLoadTime: 350.816ms - BlocksLoad: 646 - CachedPagesNum: 787 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 643 - FirstReadSeekTime: 266.710us - FirstReadTime: 5.715ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.634us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 173.648ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 163.261ms - OutputIndexResultColumnTimer: 131.348us - RawRowsRead: 2.611339M (2611339) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 90.351K (90351) - RowsVectorPredInput: 2.611339M (2611339) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 28.367us - TotalPagesNum: 787 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.492ms PipelineXTask (index=6):(Active: 149.460ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 140.619ms - CloseTime: 194.357us - GetBlockTime: 10.429ms - OpenTime: 8.353ms - PrepareTime: 282.83us - SinkTime: 121.438ms - GetBlockCounter: 136 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 39.627ms - WaitBfTime: 677.942ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.23ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 146 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.19 MB - CloseTime: 23.148us - CompressTime: 0ns - ExecTime: 121.517ms - InputRows: 504.153K (504153) - LocalBytesSent: 4.32 MB - LocalSendTime: 473.279us - LocalSentRows: 251.72K (251720) - MemoryUsage: - PeakMemoryUsage: 9.40 MB - MergeBlockTime: 0ns - OpenTime: 95.382us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13s444ms - RowsProduced: 504.153K (504153) - RpcAvgTime: 1s358ms - RpcCount: 68 - RpcMaxTime: 8s632ms - RpcMinTime: 5s414ms - RpcSumTime: 1m32s - SerializeBatchTime: 14.285ms - SplitBlockDistributeByChannelTime: 66.942ms - SplitBlockHashComputeTime: 5.110ms - UncompressedRowBatchSize: 4.61 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13222, 13346] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.503us - BlocksProduced: 136 - CloseTime: 164.923us - ExecTime: 165.358ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 8.471ms - ProcessConjunctTime: 47.840us - ProjectionTime: 91.18ms - RowsProduced: 504.153K (504153) - RowsRead: 504.153K (504153) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.26ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 55.180ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [15.174ms, 20.416ms, ] - PerScannerRowsRead: [176.53K, 327.62K, ] - PerScannerWaitTime: [307.551us, 1.718ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 33.253ms - MemoryUsage: - FreeBlocks: 6.47 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.103ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.609us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 77.644ms - ScannerCtxSchedTime: 2.13ms - ScannerFilterTime: 204.826us - ScannerGetBlockTime: 35.238ms - ScannerInitTime: 8.233ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 2.263us - BlockConditionsFilteredBloomFilterTime: 8.120us - BlockConditionsFilteredDictTime: 35.374us - BlockConditionsFilteredTime: 144.652us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 57.110us - BlockInitSeekCount: 35 - BlockInitSeekTime: 60.878us - BlockInitTime: 376.581us - BlockLoadTime: 36.898ms - BlocksLoad: 142 - CachedPagesNum: 174 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 137 - FirstReadSeekTime: 107.405us - FirstReadTime: 1.630ms - IOTimer: 0ns - InvertedIndexFilterTime: 14.805us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 22.969ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 9.150ms - OutputIndexResultColumnTimer: 44.399us - RawRowsRead: 545.39K (545390) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 41.237K (41237) - RowsVectorPredInput: 545.39K (545390) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 8.819us - TotalPagesNum: 174 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.340ms PipelineXTask (index=7):(Active: 369.711ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 338.184ms - CloseTime: 183.65us - GetBlockTime: 3.630ms - OpenTime: 31.141ms - PrepareTime: 191.204us - SinkTime: 301.178ms - GetBlockCounter: 655 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 9 - NumScheduleTimes: 12 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 188.643ms - WaitBfTime: 677.970ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.385ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 630 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 20.83 MB - CloseTime: 25.781us - CompressTime: 0ns - ExecTime: 301.56ms - InputRows: 2.518917M (2518917) - LocalBytesSent: 21.70 MB - LocalSendTime: 3.553ms - LocalSentRows: 1.263946M (1263946) - MemoryUsage: - PeakMemoryUsage: 41.15 MB - MergeBlockTime: 0ns - OpenTime: 84.4us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s541ms - RowsProduced: 2.518917M (2518917) - RpcAvgTime: 369.684ms - RpcCount: 309 - RpcMaxTime: 10s713ms - RpcMinTime: 8s192ms - RpcSumTime: 1m54s - SerializeBatchTime: 61.871ms - SplitBlockDistributeByChannelTime: 151.261ms - SplitBlockHashComputeTime: 37.510ms - UncompressedRowBatchSize: 22.92 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13226, 13388] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.796us - BlocksProduced: 655 - CloseTime: 153.634us - ExecTime: 685.81ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 31.196ms - ProcessConjunctTime: 20.978us - ProjectionTime: 398.39ms - RowsProduced: 2.518917M (2518917) - RowsRead: 2.518917M (2518917) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 88.423ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 252.150ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [22.045ms, 114.788ms, 25.809ms, ] - PerScannerRowsRead: [284.54K, 2.01M, 222.67K, ] - PerScannerWaitTime: [1.963ms, 81.575ms, 4.884ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 157.860ms - MemoryUsage: - FreeBlocks: 15.96 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 6.291ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37.151us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 285.501ms - ScannerCtxSchedTime: 88.406ms - ScannerFilterTime: 632.661us - ScannerGetBlockTime: 161.634ms - ScannerInitTime: 31.59ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 4.55us - BlockConditionsFilteredBloomFilterTime: 8.482us - BlockConditionsFilteredDictTime: 31.820us - BlockConditionsFilteredTime: 211.226us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 118.878us - BlockInitSeekCount: 50 - BlockInitSeekTime: 64.869us - BlockInitTime: 470.548us - BlockLoadTime: 165.82ms - BlocksLoad: 662 - CachedPagesNum: 744 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 656 - FirstReadSeekTime: 267.755us - FirstReadTime: 6.142ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.310us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 94.300ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 41.451ms - OutputIndexResultColumnTimer: 131.262us - RawRowsRead: 2.653244M (2653244) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 134.327K (134327) - RowsVectorPredInput: 2.653244M (2653244) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 35.944us - TotalPagesNum: 744 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 5.812ms PipelineXTask (index=8):(Active: 349.52ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 341.3ms - CloseTime: 186.878us - GetBlockTime: 3.247ms - OpenTime: 7.642ms - PrepareTime: 211.170us - SinkTime: 328.59ms - GetBlockCounter: 709 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 176.175ms - WaitBfTime: 678.454ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.606ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 689 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.99 MB - CloseTime: 16.292us - CompressTime: 0ns - ExecTime: 327.963ms - InputRows: 2.756541M (2756541) - LocalBytesSent: 23.51 MB - LocalSendTime: 2.602ms - LocalSentRows: 1.369715M (1369715) - MemoryUsage: - PeakMemoryUsage: 43.60 MB - MergeBlockTime: 0ns - OpenTime: 94.177us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s627ms - RowsProduced: 2.756541M (2756541) - RpcAvgTime: 386.892ms - RpcCount: 339 - RpcMaxTime: 11s854ms - RpcMinTime: 8s52ms - RpcSumTime: 2m11s - SerializeBatchTime: 74.978ms - SplitBlockDistributeByChannelTime: 187.359ms - SplitBlockHashComputeTime: 33.905ms - UncompressedRowBatchSize: 25.33 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13268, 13390] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.767us - BlocksProduced: 709 - CloseTime: 165.471us - ExecTime: 402.396ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 7.694ms - ProcessConjunctTime: 74.258us - ProjectionTime: 154.792ms - RowsProduced: 2.756541M (2756541) - RowsRead: 2.756541M (2756541) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.890ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 236.596ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [182.599ms, 13.386ms, 21.595ms, ] - PerScannerRowsRead: [2.00M, 336.56K, 423.59K, ] - PerScannerWaitTime: [3.783ms, 973.814us, 1.132ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 213.472ms - MemoryUsage: - FreeBlocks: 15.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.580ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35.7us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 245.309ms - ScannerCtxSchedTime: 5.879ms - ScannerFilterTime: 774.395us - ScannerGetBlockTime: 216.496ms - ScannerInitTime: 7.491ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 3.73us - BlockConditionsFilteredBloomFilterTime: 6.29us - BlockConditionsFilteredDictTime: 25.898us - BlockConditionsFilteredTime: 195.775us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 110.615us - BlockInitSeekCount: 53 - BlockInitSeekTime: 91.256us - BlockInitTime: 427.632us - BlockLoadTime: 216.547ms - BlocksLoad: 716 - CachedPagesNum: 856 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 710 - FirstReadSeekTime: 324.335us - FirstReadTime: 6.198ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.685us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 68.786ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 77.788ms - OutputIndexResultColumnTimer: 124.995us - RawRowsRead: 2.874608M (2874608) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 118.067K (118067) - RowsVectorPredInput: 2.874608M (2874608) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 30.786us - TotalPagesNum: 856 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 59.772ms PipelineXTask (index=9):(Active: 162.749ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 129.251ms - CloseTime: 185.963us - GetBlockTime: 2.48ms - OpenTime: 33.46ms - PrepareTime: 255.849us - SinkTime: 93.38ms - GetBlockCounter: 418 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 96.632ms - WaitBfTime: 678.201ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.781ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 427 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.89 MB - CloseTime: 27.1us - CompressTime: 0ns - ExecTime: 93.45ms - InputRows: 1.671724M (1671724) - LocalBytesSent: 14.35 MB - LocalSendTime: 1.605ms - LocalSentRows: 835.669K (835669) - MemoryUsage: - PeakMemoryUsage: 28.01 MB - MergeBlockTime: 0ns - OpenTime: 115.421us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s474ms - RowsProduced: 1.671724M (1671724) - RpcAvgTime: 499.598ms - RpcCount: 207 - RpcMaxTime: 10s645ms - RpcMinTime: 7s998ms - RpcSumTime: 1m43s - SerializeBatchTime: 11.568ms - SplitBlockDistributeByChannelTime: 43.857ms - SplitBlockHashComputeTime: 19.122ms - UncompressedRowBatchSize: 15.27 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13274, 13396] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.521us - BlocksProduced: 418 - CloseTime: 152.323us - ExecTime: 645.534ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 33.111ms - ProcessConjunctTime: 25.838us - ProjectionTime: 197.804ms - RowsProduced: 1.671724M (1671724) - RowsRead: 1.671724M (1671724) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 41.600ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 412.454ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [19.739ms, 87.367ms, ] - PerScannerRowsRead: [80.38K, 1.59M, ] - PerScannerWaitTime: [36.631ms, 4.968ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 94.281ms - MemoryUsage: - FreeBlocks: 10.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.269ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 20.7us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 169.72ms - ScannerCtxSchedTime: 41.587ms - ScannerFilterTime: 372.801us - ScannerGetBlockTime: 106.552ms - ScannerInitTime: 61.39us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.637us - BlockConditionsFilteredBloomFilterTime: 14.558us - BlockConditionsFilteredDictTime: 25.409us - BlockConditionsFilteredTime: 157.405us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 79.728us - BlockInitSeekCount: 36 - BlockInitSeekTime: 40.44us - BlockInitTime: 367.365us - BlockLoadTime: 98.82ms - BlocksLoad: 424 - CachedPagesNum: 432 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 420 - FirstReadSeekTime: 176.221us - FirstReadTime: 3.719ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.867us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 47.996ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 21.927ms - OutputIndexResultColumnTimer: 68.233us - RawRowsRead: 1.6969M (1696900) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 25.176K (25176) - RowsVectorPredInput: 1.6969M (1696900) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 19.498us - TotalPagesNum: 432 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 19.179ms PipelineXTask (index=10):(Active: 489.654ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 427.444ms - CloseTime: 161.140us - GetBlockTime: 3.430ms - OpenTime: 61.786ms - PrepareTime: 249.882us - SinkTime: 360.336ms - GetBlockCounter: 439 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 8 - NumScheduleTimes: 11 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 143.559ms - WaitBfTime: 677.611ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.461ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 449 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.67 MB - CloseTime: 20.683us - CompressTime: 0ns - ExecTime: 360.288ms - InputRows: 1.762858M (1762858) - LocalBytesSent: 15.08 MB - LocalSendTime: 2.454ms - LocalSentRows: 878.594K (878594) - MemoryUsage: - PeakMemoryUsage: 28.64 MB - MergeBlockTime: 0ns - OpenTime: 119.564us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s667ms - RowsProduced: 1.762858M (1762858) - RpcAvgTime: 458.352ms - RpcCount: 218 - RpcMaxTime: 9s672ms - RpcMinTime: 7s523ms - RpcSumTime: 1m39s - SerializeBatchTime: 67.464ms - SplitBlockDistributeByChannelTime: 116.23ms - SplitBlockHashComputeTime: 31.918ms - UncompressedRowBatchSize: 16.15 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13276, 13398] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.96us - BlocksProduced: 439 - CloseTime: 135.56us - ExecTime: 488.888ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 61.838ms - ProcessConjunctTime: 91.758us - ProjectionTime: 243.826ms - RowsProduced: 1.762858M (1762858) - RowsRead: 1.762858M (1762858) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.221ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 179.710ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [135.968ms, 22.691ms, ] - PerScannerRowsRead: [1.22M, 545.06K, ] - PerScannerWaitTime: [2.985ms, 3.236ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 114.704ms - MemoryUsage: - FreeBlocks: 17.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.211ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.887us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 192.911ms - ScannerCtxSchedTime: 6.216ms - ScannerFilterTime: 410.555us - ScannerGetBlockTime: 157.986ms - ScannerInitTime: 61.634ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.512us - BlockConditionsFilteredBloomFilterTime: 6.244us - BlockConditionsFilteredDictTime: 23.490us - BlockConditionsFilteredTime: 147.756us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 72.778us - BlockInitSeekCount: 34 - BlockInitSeekTime: 35.803us - BlockInitTime: 307.126us - BlockLoadTime: 117.305ms - BlocksLoad: 443 - CachedPagesNum: 450 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 439 - FirstReadSeekTime: 171.867us - FirstReadTime: 4.104ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.880us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 49.995ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 24.515ms - OutputIndexResultColumnTimer: 85.175us - RawRowsRead: 1.777211M (1777211) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 14.353K (14353) - RowsVectorPredInput: 1.777211M (1777211) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 41.25us - TotalPagesNum: 450 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.633ms PipelineXTask (index=11):(Active: 281.65ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 280.154ms - CloseTime: 157.474us - GetBlockTime: 2.762ms - OpenTime: 519.932us - PrepareTime: 224.105us - SinkTime: 240.935ms - GetBlockCounter: 349 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 93.460ms - WaitBfTime: 679.51ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.247ms DATA_STREAM_SINK_OPERATOR (id=356,dst_id=356): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 357 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.45 MB - CloseTime: 26.498us - CompressTime: 0ns - ExecTime: 240.957ms - InputRows: 1.374844M (1374844) - LocalBytesSent: 11.75 MB - LocalSendTime: 1.406ms - LocalSentRows: 684.616K (684616) - MemoryUsage: - PeakMemoryUsage: 22.99 MB - MergeBlockTime: 0ns - OpenTime: 106.315us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s263ms - RowsProduced: 1.374844M (1374844) - RpcAvgTime: 566.596ms - RpcCount: 174 - RpcMaxTime: 9s314ms - RpcMinTime: 7s109ms - RpcSumTime: 1m38s - SerializeBatchTime: 14.828ms - SplitBlockDistributeByChannelTime: 179.907ms - SplitBlockHashComputeTime: 17.641ms - UncompressedRowBatchSize: 12.61 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 9.738ms - WaitForLocalExchangeBuffer11: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 11s308ms - 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: [13278, 13400] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.308us - BlocksProduced: 349 - CloseTime: 125.170us - ExecTime: 335.66ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 576.265us - ProcessConjunctTime: 75.293us - ProjectionTime: 153.986ms - RowsProduced: 1.374844M (1374844) - RowsRead: 1.374844M (1374844) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.332ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 177.644ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 108, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 109, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 7 ms - MergeTime: 17 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 8388608 VScanner: - ReadColumns: [TIMESTAMP, USER_ID_TYPE, USER_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=2, opposite=false - PerScannerRunningTime: [128.568ms, 39.758ms, ] - PerScannerRowsRead: [567.70K, 807.14K, ] - PerScannerWaitTime: [3.134ms, 197.654us, ] - BlockConvertTime: 0ns - BlockFetchTime: 165.997ms - MemoryUsage: - FreeBlocks: 18.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.9ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 16.814us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 139.40ms - ScannerCtxSchedTime: 3.320ms - ScannerFilterTime: 315.510us - ScannerGetBlockTime: 167.832ms - ScannerInitTime: 374.472us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.154us - BlockConditionsFilteredBloomFilterTime: 5.154us - BlockConditionsFilteredDictTime: 27.641us - BlockConditionsFilteredTime: 116.22us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 53.523us - BlockInitSeekCount: 34 - BlockInitSeekTime: 37.915us - BlockInitTime: 253.456us - BlockLoadTime: 169.239ms - BlocksLoad: 353 - CachedPagesNum: 362 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 349 - FirstReadSeekTime: 135.616us - FirstReadTime: 3.216ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.777us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 84.259ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 77.438ms - OutputIndexResultColumnTimer: 57.628us - RawRowsRead: 1.41008M (1410080) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 0 - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 35.236K (35236) - RowsVectorPredInput: 1.41008M (1410080) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 14.664us - TotalPagesNum: 362 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.234ms Fragment 15: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 6.947ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.612ms - CloseTime: 31.578us - GetBlockTime: 3.864ms - OpenTime: 2.528us - PrepareTime: 292.876us - SinkTime: 2.654ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.900ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.918ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 136.84 KB - CloseTime: 10.559us - CompressTime: 0ns - ExecTime: 2.835ms - InputRows: 13.252K (13252) - LocalBytesSent: 220.40 KB - LocalSendTime: 119.7us - LocalSentRows: 6.692K (6692) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 176.663us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 40.326ms - RowsProduced: 13.252K (13252) - RpcAvgTime: 20.151ms - RpcCount: 12 - RpcMaxTime: 20.735ms - RpcMinTime: 19.352ms - RpcSumTime: 241.813ms - SerializeBatchTime: 230.324us - SplitBlockDistributeByChannelTime: 1.421ms - SplitBlockHashComputeTime: 138.189us - UncompressedRowBatchSize: 227.77 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.476ms - CloseTime: 13.317us - ExecTime: 3.767ms - HashTableComputeTime: 3.30ms - HashTableEmplaceTime: 2.548ms - HashTableInputCount: 13.252K (13252) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 9.823us - ProjectionTime: 249.558us - RowsProduced: 13.252K (13252) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 20.10 KB - CloseTime: 6.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 72.63us - ExecTime: 108.64us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 292.00 KB - OpenTime: 25.375us - ProjectionTime: 0ns - RowsProduced: 13.252K (13252) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s365ms PipelineXTask (index=1):(Active: 18.562ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.250ms - CloseTime: 25.61us - GetBlockTime: 14.175ms - OpenTime: 2.598us - PrepareTime: 277.175us - SinkTime: 3.947ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.455ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.287ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 141.04 KB - CloseTime: 10.27us - CompressTime: 0ns - ExecTime: 4.68ms - InputRows: 13.416K (13416) - LocalBytesSent: 219.41 KB - LocalSendTime: 79.739us - LocalSentRows: 6.663K (6663) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 122.190us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.220ms - RowsProduced: 13.416K (13416) - RpcAvgTime: 22.287ms - RpcCount: 12 - RpcMaxTime: 22.890ms - RpcMinTime: 21.534ms - RpcSumTime: 267.449ms - SerializeBatchTime: 325.130us - SplitBlockDistributeByChannelTime: 2.301ms - SplitBlockHashComputeTime: 250.655us - UncompressedRowBatchSize: 234.46 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 13.583ms - CloseTime: 6.22us - ExecTime: 14.17ms - HashTableComputeTime: 12.679ms - HashTableEmplaceTime: 12.97ms - HashTableInputCount: 13.416K (13416) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 14.136us - ProjectionTime: 385.631us - RowsProduced: 13.416K (13416) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 19.94 KB - CloseTime: 7.467us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 51.624us - ExecTime: 169.593us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 46.800us - ProjectionTime: 0ns - RowsProduced: 13.416K (13416) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s363ms PipelineXTask (index=2):(Active: 16.187ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 15.923ms - CloseTime: 21.632us - GetBlockTime: 12.270ms - OpenTime: 2.277us - PrepareTime: 233.11us - SinkTime: 3.572ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 15.339ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.786ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 140.80 KB - CloseTime: 9.815us - CompressTime: 0ns - ExecTime: 3.717ms - InputRows: 13.381K (13381) - LocalBytesSent: 218.63 KB - LocalSendTime: 70.835us - LocalSentRows: 6.639K (6639) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 143.977us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.11ms - RowsProduced: 13.381K (13381) - RpcAvgTime: 27.812ms - RpcCount: 12 - RpcMaxTime: 28.824ms - RpcMinTime: 25.651ms - RpcSumTime: 333.744ms - SerializeBatchTime: 247.1us - SplitBlockDistributeByChannelTime: 1.493ms - SplitBlockHashComputeTime: 164.786us - UncompressedRowBatchSize: 234.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 11.866ms - CloseTime: 3.814us - ExecTime: 12.170ms - HashTableComputeTime: 11.368ms - HashTableEmplaceTime: 10.892ms - HashTableInputCount: 13.381K (13381) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 10.1us - ProjectionTime: 271.276us - RowsProduced: 13.381K (13381) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 19.77 KB - CloseTime: 3.855us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 52.701us - ExecTime: 88.395us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 220.00 KB - PeakMemoryUsage: 160.00 KB - OpenTime: 12.586us - ProjectionTime: 0ns - RowsProduced: 13.381K (13381) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s364ms PipelineXTask (index=3):(Active: 16.579ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 16.402ms - CloseTime: 16.252us - GetBlockTime: 12.945ms - OpenTime: 4.705us - PrepareTime: 150.647us - SinkTime: 3.305ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 16.529ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.995ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 136.28 KB - CloseTime: 7.433us - CompressTime: 0ns - ExecTime: 3.396ms - InputRows: 13.144K (13144) - LocalBytesSent: 217.94 KB - LocalSendTime: 91.713us - LocalSentRows: 6.622K (6622) - MemoryUsage: - PeakMemoryUsage: 726.00 KB - MergeBlockTime: 0ns - OpenTime: 92.682us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.128ms - RowsProduced: 13.144K (13144) - RpcAvgTime: 23.936ms - RpcCount: 12 - RpcMaxTime: 24.662ms - RpcMinTime: 23.480ms - RpcSumTime: 287.240ms - SerializeBatchTime: 220.779us - SplitBlockDistributeByChannelTime: 1.869ms - SplitBlockHashComputeTime: 218.145us - UncompressedRowBatchSize: 226.52 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 12.446ms - CloseTime: 4.578us - ExecTime: 12.815ms - HashTableComputeTime: 11.823ms - HashTableEmplaceTime: 11.306ms - HashTableInputCount: 13.144K (13144) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.104us - ProjectionTime: 338.453us - RowsProduced: 13.144K (13144) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 19.91 KB - CloseTime: 2.683us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 45.226us - ExecTime: 78.542us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 14.518us - ProjectionTime: 0ns - RowsProduced: 13.144K (13144) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s366ms PipelineXTask (index=4):(Active: 14.747ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.555ms - CloseTime: 39.312us - GetBlockTime: 11.48ms - OpenTime: 3.265us - PrepareTime: 145.186us - SinkTime: 3.396ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.673ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.142ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 140.58 KB - CloseTime: 18.918us - CompressTime: 0ns - ExecTime: 3.486ms - InputRows: 13.342K (13342) - LocalBytesSent: 217.72 KB - LocalSendTime: 112.855us - LocalSentRows: 6.609K (6609) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 81.741us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.681ms - RowsProduced: 13.342K (13342) - RpcAvgTime: 24.964ms - RpcCount: 12 - RpcMaxTime: 25.433ms - RpcMinTime: 24.699ms - RpcSumTime: 299.576ms - SerializeBatchTime: 279.251us - SplitBlockDistributeByChannelTime: 1.880ms - SplitBlockHashComputeTime: 204.838us - UncompressedRowBatchSize: 233.85 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 10.505ms - CloseTime: 5.0us - ExecTime: 10.886ms - HashTableComputeTime: 9.772ms - HashTableEmplaceTime: 9.293ms - HashTableInputCount: 13.342K (13342) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.787us - ProjectionTime: 349.524us - RowsProduced: 13.342K (13342) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 19.73 KB - CloseTime: 10.471us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 60.851us - ExecTime: 120.872us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 12.283us - ProjectionTime: 0ns - RowsProduced: 13.342K (13342) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s365ms PipelineXTask (index=5):(Active: 15.911ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.713ms - CloseTime: 30.553us - GetBlockTime: 12.626ms - OpenTime: 2.593us - PrepareTime: 160.220us - SinkTime: 2.963ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 15.836ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.277ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 137.22 KB - CloseTime: 15.866us - CompressTime: 0ns - ExecTime: 3.77ms - InputRows: 13.352K (13352) - LocalBytesSent: 223.64 KB - LocalSendTime: 80.271us - LocalSentRows: 6.787K (6787) - MemoryUsage: - PeakMemoryUsage: 734.00 KB - MergeBlockTime: 0ns - OpenTime: 106.579us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.795ms - RowsProduced: 13.352K (13352) - RpcAvgTime: 21.331ms - RpcCount: 12 - RpcMaxTime: 22.168ms - RpcMinTime: 20.435ms - RpcSumTime: 255.978ms - SerializeBatchTime: 242.7us - SplitBlockDistributeByChannelTime: 1.619ms - SplitBlockHashComputeTime: 202.561us - UncompressedRowBatchSize: 228.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 12.86ms - CloseTime: 10.497us - ExecTime: 12.466ms - HashTableComputeTime: 11.543ms - HashTableEmplaceTime: 10.993ms - HashTableInputCount: 13.352K (13352) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.674us - ProjectionTime: 337.871us - RowsProduced: 13.352K (13352) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 20.89 KB - CloseTime: 2.796us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 62.895us - ExecTime: 132.126us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 11.251us - ProjectionTime: 0ns - RowsProduced: 13.352K (13352) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s366ms PipelineXTask (index=6):(Active: 7.141ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.916ms - CloseTime: 48.587us - GetBlockTime: 4.217ms - OpenTime: 2.544us - PrepareTime: 170.134us - SinkTime: 2.587ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.75ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.821ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 143.42 KB - CloseTime: 19.313us - CompressTime: 0ns - ExecTime: 2.699ms - InputRows: 13.464K (13464) - LocalBytesSent: 217.03 KB - LocalSendTime: 56.893us - LocalSentRows: 6.591K (6591) - MemoryUsage: - PeakMemoryUsage: 734.00 KB - MergeBlockTime: 0ns - OpenTime: 99.502us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.762ms - RowsProduced: 13.464K (13464) - RpcAvgTime: 25.307ms - RpcCount: 12 - RpcMaxTime: 25.775ms - RpcMinTime: 24.982ms - RpcSumTime: 303.687ms - SerializeBatchTime: 237.617us - SplitBlockDistributeByChannelTime: 1.478ms - SplitBlockHashComputeTime: 145.539us - UncompressedRowBatchSize: 238.50 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.746ms - CloseTime: 5.888us - ExecTime: 4.89ms - HashTableComputeTime: 3.192ms - HashTableEmplaceTime: 2.711ms - HashTableInputCount: 13.464K (13464) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.967us - ProjectionTime: 314.466us - RowsProduced: 13.464K (13464) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 19.95 KB - CloseTime: 19.20us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 54.850us - ExecTime: 114.979us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 14.859us - ProjectionTime: 0ns - RowsProduced: 13.464K (13464) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s364ms PipelineXTask (index=7):(Active: 14.635ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.490ms - CloseTime: 15.480us - GetBlockTime: 11.772ms - OpenTime: 2.479us - PrepareTime: 122.920us - SinkTime: 2.643ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.609ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.54ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 139.80 KB - CloseTime: 8.70us - CompressTime: 0ns - ExecTime: 2.725ms - InputRows: 13.364K (13364) - LocalBytesSent: 219.48 KB - LocalSendTime: 71.835us - LocalSentRows: 6.672K (6672) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 81.185us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.756ms - RowsProduced: 13.364K (13364) - RpcAvgTime: 23.108ms - RpcCount: 12 - RpcMaxTime: 23.613ms - RpcMinTime: 22.539ms - RpcSumTime: 277.304ms - SerializeBatchTime: 237.947us - SplitBlockDistributeByChannelTime: 1.377ms - SplitBlockHashComputeTime: 240.252us - UncompressedRowBatchSize: 232.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 11.308ms - CloseTime: 2.973us - ExecTime: 11.631ms - HashTableComputeTime: 10.765ms - HashTableEmplaceTime: 10.280ms - HashTableInputCount: 13.364K (13364) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.871us - ProjectionTime: 297.139us - RowsProduced: 13.364K (13364) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 20.49 KB - CloseTime: 3.123us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 110.703us - ExecTime: 113.326us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 292.00 KB - OpenTime: 8.701us - ProjectionTime: 0ns - RowsProduced: 13.364K (13364) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s363ms PipelineXTask (index=8):(Active: 15.106ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 14.923ms - CloseTime: 20.793us - GetBlockTime: 11.929ms - OpenTime: 1.944us - PrepareTime: 156.593us - SinkTime: 2.854ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 15.69ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.267ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 137.05 KB - CloseTime: 11.60us - CompressTime: 0ns - ExecTime: 2.965ms - InputRows: 13.266K (13266) - LocalBytesSent: 221.14 KB - LocalSendTime: 68.265us - LocalSentRows: 6.713K (6713) - MemoryUsage: - PeakMemoryUsage: 736.00 KB - MergeBlockTime: 0ns - OpenTime: 108.810us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.863ms - RowsProduced: 13.266K (13266) - RpcAvgTime: 24.615ms - RpcCount: 12 - RpcMaxTime: 25.109ms - RpcMinTime: 23.791ms - RpcSumTime: 295.383ms - SerializeBatchTime: 212.626us - SplitBlockDistributeByChannelTime: 1.629ms - SplitBlockHashComputeTime: 188.200us - UncompressedRowBatchSize: 227.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 11.420ms - CloseTime: 5.410us - ExecTime: 11.798ms - HashTableComputeTime: 10.870ms - HashTableEmplaceTime: 10.406ms - HashTableInputCount: 13.266K (13266) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.289us - ProjectionTime: 337.279us - RowsProduced: 13.266K (13266) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 19.80 KB - CloseTime: 3.3us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 61.432us - ExecTime: 102.828us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 12.581us - ProjectionTime: 0ns - RowsProduced: 13.266K (13266) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s366ms PipelineXTask (index=9):(Active: 17.445ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 17.248ms - CloseTime: 48.349us - GetBlockTime: 13.731ms - OpenTime: 2.119us - PrepareTime: 142.140us - SinkTime: 3.400ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.381ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.641ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 140.49 KB - CloseTime: 18.633us - CompressTime: 0ns - ExecTime: 3.490ms - InputRows: 13.252K (13252) - LocalBytesSent: 215.21 KB - LocalSendTime: 93.709us - LocalSentRows: 6.532K (6532) - MemoryUsage: - PeakMemoryUsage: 734.00 KB - MergeBlockTime: 0ns - OpenTime: 79.563us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 46.170ms - RowsProduced: 13.252K (13252) - RpcAvgTime: 30.766ms - RpcCount: 12 - RpcMaxTime: 31.105ms - RpcMinTime: 30.483ms - RpcSumTime: 369.203ms - SerializeBatchTime: 227.766us - SplitBlockDistributeByChannelTime: 1.880ms - SplitBlockHashComputeTime: 243.512us - UncompressedRowBatchSize: 233.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 13.138ms - CloseTime: 8.509us - ExecTime: 13.572ms - HashTableComputeTime: 12.382ms - HashTableEmplaceTime: 11.754ms - HashTableInputCount: 13.252K (13252) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.771us - ProjectionTime: 396.954us - RowsProduced: 13.252K (13252) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 14 - BytesReceived: 20.54 KB - CloseTime: 16.48us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 75.531us - ExecTime: 128.104us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 220.00 KB - PeakMemoryUsage: 160.00 KB - OpenTime: 11.953us - ProjectionTime: 0ns - RowsProduced: 13.252K (13252) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s363ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 9.23ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.813ms - CloseTime: 24.82us - GetBlockTime: 5.167ms - OpenTime: 4.980us - PrepareTime: 173.697us - SinkTime: 3.485ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.833ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 528.886us DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 141.58 KB - CloseTime: 9.186us - CompressTime: 0ns - ExecTime: 3.598ms - InputRows: 13.334K (13334) - LocalBytesSent: 215.71 KB - LocalSendTime: 311.131us - LocalSentRows: 6.554K (6554) - MemoryUsage: - PeakMemoryUsage: 744.00 KB - MergeBlockTime: 0ns - OpenTime: 113.651us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 259.266ms - RowsProduced: 13.334K (13334) - RpcAvgTime: 237.902ms - RpcCount: 12 - RpcMaxTime: 238.617ms - RpcMinTime: 236.960ms - RpcSumTime: 2s854ms - SerializeBatchTime: 322.581us - SplitBlockDistributeByChannelTime: 1.762ms - SplitBlockHashComputeTime: 188.627us - UncompressedRowBatchSize: 235.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 4.638ms - CloseTime: 4.851us - ExecTime: 5.12ms - HashTableComputeTime: 4.70ms - HashTableEmplaceTime: 3.438ms - HashTableInputCount: 13.334K (13334) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.301us - ProjectionTime: 346.278us - RowsProduced: 13.334K (13334) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 22 - BytesReceived: 142.56 KB - CloseTime: 8.486us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 393.258us - ExecTime: 118.56us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 60.00 KB - MemoryUsage: - Blocks: 88.00 KB - PeakMemoryUsage: 30.00 KB - OpenTime: 16.287us - ProjectionTime: 0ns - RowsProduced: 13.334K (13334) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s398ms PipelineXTask (index=1):(Active: 7.560ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 7.344ms - CloseTime: 35.27us - GetBlockTime: 4.132ms - OpenTime: 4.103us - PrepareTime: 170.968us - SinkTime: 2.984ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.491ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.539ms DATA_STREAM_SINK_OPERATOR (id=354,dst_id=354): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 136.72 KB - CloseTime: 16.261us - CompressTime: 0ns - ExecTime: 3.99ms - InputRows: 13.162K (13162) - LocalBytesSent: 217.72 KB - LocalSendTime: 190.998us - LocalSentRows: 6.613K (6613) - MemoryUsage: - PeakMemoryUsage: 716.00 KB - MergeBlockTime: 0ns - OpenTime: 107.729us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 259.441ms - RowsProduced: 13.162K (13162) - RpcAvgTime: 237.820ms - RpcCount: 12 - RpcMaxTime: 238.582ms - RpcMinTime: 237.164ms - RpcSumTime: 2s853ms - SerializeBatchTime: 228.964us - SplitBlockDistributeByChannelTime: 1.365ms - SplitBlockHashComputeTime: 197.822us - UncompressedRowBatchSize: 227.51 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.591ms - CloseTime: 4.987us - ExecTime: 3.957ms - HashTableComputeTime: 3.51ms - HashTableEmplaceTime: 2.491ms - HashTableInputCount: 13.162K (13162) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.889us - ProjectionTime: 334.921us - RowsProduced: 13.162K (13162) EXCHANGE_OPERATOR (id=352): - BlocksProduced: 22 - BytesReceived: 140.41 KB - CloseTime: 9.561us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 347.885us - ExecTime: 158.942us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 60.00 KB - MemoryUsage: - Blocks: 88.00 KB - PeakMemoryUsage: 30.00 KB - OpenTime: 23.47us - ProjectionTime: 0ns - RowsProduced: 13.162K (13162) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s397ms Fragment 16: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 109.398ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 109.182ms - CloseTime: 55.124us - GetBlockTime: 99.96ms - OpenTime: 4.113us - PrepareTime: 149.30us - SinkTime: 8.992ms - GetBlockCounter: 527 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 109.15ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.656ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 98.94 KB - CloseTime: 21.800us - CompressTime: 0ns - ExecTime: 8.872ms - InputRows: 9.774K (9774) - LocalBytesSent: 38.75 KB - LocalSendTime: 37.619us - LocalSentRows: 1.608K (1608) - MemoryUsage: - PeakMemoryUsage: 360.00 KB - MergeBlockTime: 0ns - OpenTime: 58.206us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s38ms - RowsProduced: 9.774K (9774) - RpcAvgTime: 1s14ms - RpcCount: 10 - RpcMaxTime: 1s14ms - RpcMinTime: 1s13ms - RpcSumTime: 10s142ms - SerializeBatchTime: 327.513us - SplitBlockDistributeByChannelTime: 3.827ms - SplitBlockHashComputeTime: 1.601ms - UncompressedRowBatchSize: 205.65 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 5.609ms - CloseTime: 3.630us - ExecTime: 5.985ms - HashTableComputeTime: 4.503ms - HashTableEmplaceTime: 3.594ms - HashTableInputCount: 10.445K (10445) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.837us - ProjectionTime: 0ns - RowsProduced: 9.774K (9774) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 526 - BuildOutputBlock: 0ns - CloseTime: 22.692us - ExecTime: 91.13ms - InitProbeSideTime: 38.648ms - JoinFilterTimer: 71.846us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 32.404us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 52.520us - ProbeFindNextTime: 0ns - ProbeRows: 2.137664M (2137664) - ProbeTime: 88.20ms - ProbeWhenBuildSideOutputTime: 3.135ms - ProbeWhenProbeSideOutputTime: 1.580ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 39.673ms - ProjectionTime: 1.375ms - RowsProduced: 10.445K (10445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s404ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 526 - CloseTime: 0ns - ExecTime: 1.302ms - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 46.56 MB - OpenTime: 722ns - ProjectionTime: 0ns - RowsProduced: 2.137664M (2137664) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 757.501ms PipelineXTask (index=3):(Active: 123.122ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 122.909ms - CloseTime: 52.204us - GetBlockTime: 112.232ms - OpenTime: 7.304us - PrepareTime: 146.656us - SinkTime: 9.569ms - GetBlockCounter: 527 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 122.985ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.518ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 101.57 KB - CloseTime: 10.834us - CompressTime: 0ns - ExecTime: 9.431ms - InputRows: 9.982K (9982) - LocalBytesSent: 38.78 KB - LocalSendTime: 47.329us - LocalSentRows: 1.609K (1609) - MemoryUsage: - PeakMemoryUsage: 360.00 KB - MergeBlockTime: 0ns - OpenTime: 59.262us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s39ms - RowsProduced: 9.982K (9982) - RpcAvgTime: 1s5ms - RpcCount: 10 - RpcMaxTime: 1s6ms - RpcMinTime: 1s4ms - RpcSumTime: 10s53ms - SerializeBatchTime: 304.941us - SplitBlockDistributeByChannelTime: 4.119ms - SplitBlockHashComputeTime: 1.708ms - UncompressedRowBatchSize: 211.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=351): - BlocksProduced: 0 - BuildTime: 6.226ms - CloseTime: 3.862us - ExecTime: 6.616ms - HashTableComputeTime: 4.981ms - HashTableEmplaceTime: 4.76ms - HashTableInputCount: 10.459K (10459) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.247us - ProjectionTime: 0ns - RowsProduced: 9.982K (9982) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 525 - BuildOutputBlock: 0ns - CloseTime: 32.273us - ExecTime: 103.453ms - InitProbeSideTime: 46.738ms - JoinFilterTimer: 55.898us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.677us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 75.202us - ProbeFindNextTime: 0ns - ProbeRows: 2.128676M (2128676) - ProbeTime: 100.482ms - ProbeWhenBuildSideOutputTime: 3.200ms - ProbeWhenProbeSideOutputTime: 1.483ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.409ms - ProjectionTime: 1.444ms - RowsProduced: 10.459K (10459) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s404ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 526 - CloseTime: 0ns - ExecTime: 1.135ms - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 45.91 MB - OpenTime: 1000ns - ProjectionTime: 0ns - RowsProduced: 2.128676M (2128676) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 757.556ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 78.430ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.698ms - CloseTime: 31.398us - GetBlockTime: 423.893us - OpenTime: 38.551ms - PrepareTime: 141.157us - SinkTime: 595.211us - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.797ms - WaitBfTime: 679.260ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.144ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 564.826us - InputRows: 876.719K (876719) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.228us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns 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.909us - BlocksProduced: 216 - CloseTime: 28.122us - ExecTime: 380.664ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 38.634ms - ProcessConjunctTime: 30.582us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 137.28ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 341.606ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [200.404ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [137.028ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 199.375ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.298ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.675us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 91.465ms - ScannerCtxSchedTime: 137.23ms - ScannerFilterTime: 172.369us - ScannerGetBlockTime: 200.77ms - ScannerInitTime: 38.463ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 536ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.280us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 10.345us - BlockInitTime: 69.620us - BlockLoadTime: 200.436ms - BlocksLoad: 217 - CachedPagesNum: 364 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 778.53us - FirstReadTime: 197.12ms - IOTimer: 0ns - InvertedIndexFilterTime: 795ns - 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: 93.18us - OutputIndexResultColumnTimer: 35.223us - 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=4):(Active: 4.513ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.64ms - CloseTime: 49.464us - GetBlockTime: 1.487ms - OpenTime: 223.805us - PrepareTime: 166.359us - SinkTime: 1.988ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.400ms - WaitBfTime: 679.210ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 192.253ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.886ms - InputRows: 3.389621M (3389621) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.155us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns 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: 4.406us - BlocksProduced: 836 - CloseTime: 47.628us - ExecTime: 344.485ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 327.842us - ProcessConjunctTime: 36.983us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 154.295ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 342.715ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 106, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax RuntimeFilter: (id = 107, type = in_or_bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [319.690ms, 173.659ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [39.158ms, 115.136ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 491.132ms - MemoryUsage: - FreeBlocks: 20.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 974.204us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.347us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 121.35ms - ScannerCtxSchedTime: 154.287ms - ScannerFilterTime: 401.396us - ScannerGetBlockTime: 492.608ms - ScannerInitTime: 132.255us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 2.268us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.991us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 28.424us - BlockInitTime: 133.335us - BlockLoadTime: 491.688ms - BlocksLoad: 838 - CachedPagesNum: 579 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 636.231us - FirstReadTime: 369.998ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.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: 200.608us - OutputIndexResultColumnTimer: 83.557us - 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 Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 24.665ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 24.560ms - CloseTime: 10.630us - GetBlockTime: 866.850us - OpenTime: 1.576us - PrepareTime: 83.501us - SinkTime: 23.229ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 39 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.559ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.932ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 26.346us - BuildRows: 180.832K (180832) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.303ms - BuildTableInsertTime: 7.487ms - BuildTableTime: 7.640ms - CloseTime: 0ns - ExecTime: 23.229ms - InputRows: 180.831K (180831) - MemoryUsage: - BuildBlocks: 8.40 MB - BuildKeyArena: 5.52 MB - HashTable: 1.69 MB - PeakMemoryUsage: 15.61 MB - OpenTime: 28.658us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.380us - RuntimeFilterComputeTime: 5.32ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=348): - BlocksProduced: 53 - BytesReceived: 1.00 MB - CloseTime: 7.983us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.115ms - ExecTime: 852.409us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.69 MB - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 400.00 KB - OpenTime: 17.324us - ProjectionTime: 0ns - RowsProduced: 180.831K (180831) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s136ms PipelineXTask (index=5):(Active: 189.664us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 93.338us - CloseTime: 7.521us - GetBlockTime: 0ns - OpenTime: 2.377us - PrepareTime: 81.328us - SinkTime: 74.567us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 175.681us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.422us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86ce - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 116.149us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 42.164us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s164ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.642us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.207us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.6us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 219.760ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 219.534ms - CloseTime: 44.537us - GetBlockTime: 208.110ms - OpenTime: 5.879us - PrepareTime: 166.254us - SinkTime: 9.526ms - GetBlockCounter: 474 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 21 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 142.918ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.212ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.47 KB - CloseTime: 9.293us - CompressTime: 0ns - ExecTime: 9.452ms - InputRows: 14.023K (14023) - LocalBytesSent: 281.59 KB - LocalSendTime: 43.996us - LocalSentRows: 11.663K (11663) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 90.994us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 41.555ms - RowsProduced: 14.023K (14023) - RpcAvgTime: 19.922ms - RpcCount: 2 - RpcMaxTime: 19.940ms - RpcMinTime: 19.904ms - RpcSumTime: 39.844ms - SerializeBatchTime: 66.128us - SplitBlockDistributeByChannelTime: 4.690ms - SplitBlockHashComputeTime: 1.769ms - UncompressedRowBatchSize: 59.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 7.562ms - CloseTime: 3.460us - ExecTime: 8.18ms - HashTableComputeTime: 6.2ms - HashTableEmplaceTime: 4.889ms - HashTableInputCount: 15.044K (15044) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.754us - ProjectionTime: 0ns - RowsProduced: 14.023K (14023) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 458 - BuildOutputBlock: 0ns - CloseTime: 27.862us - ExecTime: 197.248ms - InitProbeSideTime: 67.99ms - JoinFilterTimer: 67.656us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 14.401us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 89.113us - ProbeFindNextTime: 0ns - ProbeRows: 1.820356M (1820356) - ProbeTime: 194.233ms - ProbeWhenBuildSideOutputTime: 3.656ms - ProbeWhenProbeSideOutputTime: 1.397ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 116.408ms - ProjectionTime: 1.536ms - RowsProduced: 15.044K (15044) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 458 - CloseTime: 0ns - ExecTime: 1.820ms - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 18.87 MB - OpenTime: 782ns - ProjectionTime: 0ns - RowsProduced: 1.820356M (1820356) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 884.367ms PipelineXTask (index=3):(Active: 158.606ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 158.423ms - CloseTime: 40.425us - GetBlockTime: 147.256ms - OpenTime: 2.374us - PrepareTime: 131.609us - SinkTime: 9.344ms - GetBlockCounter: 480 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 28 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 140.384ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.171ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.55 KB - CloseTime: 6.412us - CompressTime: 0ns - ExecTime: 9.202ms - InputRows: 14.334K (14334) - LocalBytesSent: 288.84 KB - LocalSendTime: 55.996us - LocalSentRows: 11.984K (11984) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 58.752us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.641ms - RowsProduced: 14.334K (14334) - RpcAvgTime: 20.275ms - RpcCount: 2 - RpcMaxTime: 20.277ms - RpcMinTime: 20.272ms - RpcSumTime: 40.550ms - SerializeBatchTime: 75.629us - SplitBlockDistributeByChannelTime: 4.200ms - SplitBlockHashComputeTime: 1.856ms - UncompressedRowBatchSize: 59.10 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 7.642ms - CloseTime: 2.128us - ExecTime: 8.121ms - HashTableComputeTime: 6.93ms - HashTableEmplaceTime: 4.920ms - HashTableInputCount: 15.102K (15102) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.929us - ProjectionTime: 0ns - RowsProduced: 14.334K (14334) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 455 - BuildOutputBlock: 0ns - CloseTime: 29.648us - ExecTime: 136.251ms - InitProbeSideTime: 52.716ms - JoinFilterTimer: 64.206us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 13.304us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 81.233us - ProbeFindNextTime: 0ns - ProbeRows: 1.813294M (1813294) - ProbeTime: 133.174ms - ProbeWhenBuildSideOutputTime: 3.317ms - ProbeWhenProbeSideOutputTime: 1.430ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 69.871ms - ProjectionTime: 1.460ms - RowsProduced: 15.102K (15102) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 457 - CloseTime: 0ns - ExecTime: 1.849ms - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 17.29 MB - OpenTime: 633ns - ProjectionTime: 0ns - RowsProduced: 1.813294M (1813294) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 923.707ms PipelineXTask (index=6):(Active: 244.404ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 244.218ms - CloseTime: 39.501us - GetBlockTime: 233.495ms - OpenTime: 6.450us - PrepareTime: 132.70us - SinkTime: 9.29ms - GetBlockCounter: 470 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 20 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 140.957ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.151ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.60 KB - CloseTime: 15.80us - CompressTime: 0ns - ExecTime: 8.924ms - InputRows: 13.962K (13962) - LocalBytesSent: 280.35 KB - LocalSendTime: 90.762us - LocalSentRows: 11.604K (11604) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 60.392us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.21ms - RowsProduced: 13.962K (13962) - RpcAvgTime: 15.107ms - RpcCount: 2 - RpcMaxTime: 15.177ms - RpcMinTime: 15.37ms - RpcSumTime: 30.215ms - SerializeBatchTime: 100.356us - SplitBlockDistributeByChannelTime: 3.963ms - SplitBlockHashComputeTime: 1.864ms - UncompressedRowBatchSize: 59.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 7.442ms - CloseTime: 4.256us - ExecTime: 18.679ms - HashTableComputeTime: 5.936ms - HashTableEmplaceTime: 4.834ms - HashTableInputCount: 15.192K (15192) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.281us - ProjectionTime: 0ns - RowsProduced: 13.962K (13962) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 456 - BuildOutputBlock: 0ns - CloseTime: 13.536us - ExecTime: 203.142ms - InitProbeSideTime: 58.537ms - JoinFilterTimer: 64.862us - MemoryUsage: - PeakMemoryUsage: 384.00 KB - ProbeKeyArena: 384.00 KB - OpenTime: 19.414us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 90.599us - ProbeFindNextTime: 0ns - ProbeRows: 1.812596M (1812596) - ProbeTime: 199.874ms - ProbeWhenBuildSideOutputTime: 3.666ms - ProbeWhenProbeSideOutputTime: 1.337ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 130.699ms - ProjectionTime: 1.665ms - RowsProduced: 15.192K (15192) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 456 - CloseTime: 0ns - ExecTime: 2.106ms - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 14.70 MB - OpenTime: 681ns - ProjectionTime: 0ns - RowsProduced: 1.812596M (1812596) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 873.264ms PipelineXTask (index=9):(Active: 149.421ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 149.265ms - CloseTime: 31.146us - GetBlockTime: 137.467ms - OpenTime: 3.781us - PrepareTime: 113.762us - SinkTime: 9.954ms - GetBlockCounter: 483 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 32 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 137.868ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.880ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.03 KB - CloseTime: 10.326us - CompressTime: 0ns - ExecTime: 9.837ms - InputRows: 14.156K (14156) - LocalBytesSent: 285.71 KB - LocalSendTime: 67.116us - LocalSentRows: 11.846K (11846) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 60.169us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 30.21ms - RowsProduced: 14.156K (14156) - RpcAvgTime: 21.761ms - RpcCount: 2 - RpcMaxTime: 21.776ms - RpcMinTime: 21.746ms - RpcSumTime: 43.522ms - SerializeBatchTime: 105.544us - SplitBlockDistributeByChannelTime: 4.494ms - SplitBlockHashComputeTime: 1.888ms - UncompressedRowBatchSize: 58.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 7.537ms - CloseTime: 3.634us - ExecTime: 7.978ms - HashTableComputeTime: 6.42ms - HashTableEmplaceTime: 4.891ms - HashTableInputCount: 15.055K (15055) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.649us - ProjectionTime: 0ns - RowsProduced: 14.156K (14156) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 456 - BuildOutputBlock: 0ns - CloseTime: 14.236us - ExecTime: 126.339ms - InitProbeSideTime: 43.488ms - JoinFilterTimer: 64.535us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 11.834us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 102.805us - ProbeFindNextTime: 0ns - ProbeRows: 1.810729M (1810729) - ProbeTime: 123.220ms - ProbeWhenBuildSideOutputTime: 3.296ms - ProbeWhenProbeSideOutputTime: 1.467ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 69.542ms - ProjectionTime: 1.600ms - RowsProduced: 15.055K (15055) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 456 - CloseTime: 0ns - ExecTime: 2.81ms - GetBlockFailedTime: 27 - MemoryUsage: - PeakMemoryUsage: 14.45 MB - OpenTime: 600ns - ProjectionTime: 0ns - RowsProduced: 1.810729M (1810729) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 932.161ms PipelineXTask (index=12):(Active: 102.879ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 102.651ms - CloseTime: 83.568us - GetBlockTime: 94.713ms - OpenTime: 3.989us - PrepareTime: 130.171us - SinkTime: 6.621ms - GetBlockCounter: 484 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 99.784ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.765ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.93 KB - CloseTime: 9.75us - CompressTime: 0ns - ExecTime: 6.568ms - InputRows: 13.638K (13638) - LocalBytesSent: 275.68 KB - LocalSendTime: 51.217us - LocalSentRows: 11.421K (11421) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 77.222us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 46.688ms - RowsProduced: 13.638K (13638) - RpcAvgTime: 19.697ms - RpcCount: 2 - RpcMaxTime: 19.706ms - RpcMinTime: 19.687ms - RpcSumTime: 39.394ms - SerializeBatchTime: 97.886us - SplitBlockDistributeByChannelTime: 2.884ms - SplitBlockHashComputeTime: 1.228ms - UncompressedRowBatchSize: 55.74 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.37ms - CloseTime: 2.666us - ExecTime: 6.343ms - HashTableComputeTime: 4.974ms - HashTableEmplaceTime: 4.102ms - HashTableInputCount: 14.657K (14657) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.847us - ProjectionTime: 0ns - RowsProduced: 13.638K (13638) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 454 - BuildOutputBlock: 0ns - CloseTime: 68.733us - ExecTime: 85.991ms - InitProbeSideTime: 28.781ms - JoinFilterTimer: 36.584us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 13.114us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 57.638us - ProbeFindNextTime: 0ns - ProbeRows: 1.797371M (1797371) - ProbeTime: 83.736ms - ProbeWhenBuildSideOutputTime: 2.706ms - ProbeWhenProbeSideOutputTime: 1.67ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 44.645ms - ProjectionTime: 1.15ms - RowsProduced: 14.657K (14657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 455 - CloseTime: 0ns - ExecTime: 1.705ms - GetBlockFailedTime: 29 - MemoryUsage: - PeakMemoryUsage: 13.09 MB - OpenTime: 603ns - ProjectionTime: 0ns - RowsProduced: 1.797371M (1797371) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 981.615ms PipelineXTask (index=15):(Active: 155.684ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 155.501ms - CloseTime: 37.966us - GetBlockTime: 141.14ms - OpenTime: 3.130us - PrepareTime: 134.114us - SinkTime: 12.500ms - GetBlockCounter: 478 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 30 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 151.767ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.890ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.79 KB - CloseTime: 8.99us - CompressTime: 0ns - ExecTime: 9.720ms - InputRows: 13.718K (13718) - LocalBytesSent: 276.50 KB - LocalSendTime: 59.8us - LocalSentRows: 11.439K (11439) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 68.354us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.583ms - RowsProduced: 13.718K (13718) - RpcAvgTime: 19.782ms - RpcCount: 2 - RpcMaxTime: 19.800ms - RpcMinTime: 19.764ms - RpcSumTime: 39.565ms - SerializeBatchTime: 88.393us - SplitBlockDistributeByChannelTime: 3.953ms - SplitBlockHashComputeTime: 2.137ms - UncompressedRowBatchSize: 57.42 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 8.79ms - CloseTime: 13.22us - ExecTime: 8.612ms - HashTableComputeTime: 6.474ms - HashTableEmplaceTime: 5.293ms - HashTableInputCount: 14.59K (14590) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.732us - ProjectionTime: 0ns - RowsProduced: 13.718K (13718) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 453 - BuildOutputBlock: 0ns - CloseTime: 14.466us - ExecTime: 129.119ms - InitProbeSideTime: 46.420ms - JoinFilterTimer: 72.47us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 8.572us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 118.796us - ProbeFindNextTime: 0ns - ProbeRows: 1.786691M (1786691) - ProbeTime: 125.796ms - ProbeWhenBuildSideOutputTime: 3.640ms - ProbeWhenProbeSideOutputTime: 1.344ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 67.587ms - ProjectionTime: 1.622ms - RowsProduced: 14.59K (14590) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 453 - CloseTime: 0ns - ExecTime: 2.9ms - GetBlockFailedTime: 25 - MemoryUsage: - PeakMemoryUsage: 15.80 MB - OpenTime: 798ns - ProjectionTime: 0ns - RowsProduced: 1.786691M (1786691) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 935.629ms PipelineXTask (index=18):(Active: 128.50ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 127.877ms - CloseTime: 34.945us - GetBlockTime: 117.463ms - OpenTime: 6.440us - PrepareTime: 119.62us - SinkTime: 8.548ms - GetBlockCounter: 485 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 114.459ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 54.509ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.43 KB - CloseTime: 8.839us - CompressTime: 0ns - ExecTime: 8.460ms - InputRows: 13.837K (13837) - LocalBytesSent: 277.06 KB - LocalSendTime: 52.332us - LocalSentRows: 11.491K (11491) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 61.849us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 46.321ms - RowsProduced: 13.837K (13837) - RpcAvgTime: 19.599ms - RpcCount: 2 - RpcMaxTime: 19.619ms - RpcMinTime: 19.579ms - RpcSumTime: 39.199ms - SerializeBatchTime: 80.997us - SplitBlockDistributeByChannelTime: 4.145ms - SplitBlockHashComputeTime: 1.568ms - UncompressedRowBatchSize: 58.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.215ms - CloseTime: 3.343us - ExecTime: 6.592ms - HashTableComputeTime: 4.901ms - HashTableEmplaceTime: 3.937ms - HashTableInputCount: 14.838K (14838) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.807us - ProjectionTime: 0ns - RowsProduced: 13.837K (13837) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 452 - BuildOutputBlock: 0ns - CloseTime: 19.630us - ExecTime: 107.668ms - InitProbeSideTime: 32.628ms - JoinFilterTimer: 39.748us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 12.572us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 67.922us - ProbeFindNextTime: 0ns - ProbeRows: 1.794823M (1794823) - ProbeTime: 104.737ms - ProbeWhenBuildSideOutputTime: 3.170ms - ProbeWhenProbeSideOutputTime: 1.272ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 62.832ms - ProjectionTime: 1.340ms - RowsProduced: 14.838K (14838) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 452 - CloseTime: 0ns - ExecTime: 2.205ms - GetBlockFailedTime: 33 - MemoryUsage: - PeakMemoryUsage: 13.88 MB - OpenTime: 608ns - ProjectionTime: 0ns - RowsProduced: 1.794823M (1794823) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 968.242ms PipelineXTask (index=21):(Active: 109.667ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 109.475ms - CloseTime: 55.126us - GetBlockTime: 100.91ms - OpenTime: 3.96us - PrepareTime: 126.645us - SinkTime: 7.760ms - GetBlockCounter: 486 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 40 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 109.386ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.867ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.42 KB - CloseTime: 22.527us - CompressTime: 0ns - ExecTime: 7.696ms - InputRows: 13.964K (13964) - LocalBytesSent: 282.75 KB - LocalSendTime: 44.201us - LocalSentRows: 11.712K (11712) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 62.652us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.959ms - RowsProduced: 13.964K (13964) - RpcAvgTime: 15.676ms - RpcCount: 2 - RpcMaxTime: 15.693ms - RpcMinTime: 15.660ms - RpcSumTime: 31.353ms - SerializeBatchTime: 81.9us - SplitBlockDistributeByChannelTime: 3.704ms - SplitBlockHashComputeTime: 1.384ms - UncompressedRowBatchSize: 56.61 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.559ms - CloseTime: 5.866us - ExecTime: 6.955ms - HashTableComputeTime: 5.291ms - HashTableEmplaceTime: 4.377ms - HashTableInputCount: 14.848K (14848) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.813us - ProjectionTime: 0ns - RowsProduced: 13.964K (13964) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 450 - BuildOutputBlock: 0ns - CloseTime: 19.133us - ExecTime: 90.398ms - InitProbeSideTime: 30.350ms - JoinFilterTimer: 36.441us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 12.893us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 66.731us - ProbeFindNextTime: 0ns - ProbeRows: 1.79049M (1790490) - ProbeTime: 88.94ms - ProbeWhenBuildSideOutputTime: 2.936ms - ProbeWhenProbeSideOutputTime: 1.200ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 49.704ms - ProjectionTime: 1.93ms - RowsProduced: 14.848K (14848) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 450 - CloseTime: 0ns - ExecTime: 1.905ms - GetBlockFailedTime: 36 - MemoryUsage: - PeakMemoryUsage: 12.70 MB - OpenTime: 651ns - ProjectionTime: 0ns - RowsProduced: 1.79049M (1790490) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 979.726ms PipelineXTask (index=24):(Active: 123.346ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 123.138ms - CloseTime: 64.123us - GetBlockTime: 114.296ms - OpenTime: 3.898us - PrepareTime: 128.697us - SinkTime: 7.464ms - GetBlockCounter: 480 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 104.128ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.415ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.89 KB - CloseTime: 11.827us - CompressTime: 0ns - ExecTime: 7.392ms - InputRows: 14.064K (14064) - LocalBytesSent: 282.31 KB - LocalSendTime: 96.650us - LocalSentRows: 11.679K (11679) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 62.469us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.121ms - RowsProduced: 14.064K (14064) - RpcAvgTime: 15.619ms - RpcCount: 2 - RpcMaxTime: 15.682ms - RpcMinTime: 15.556ms - RpcSumTime: 31.239ms - SerializeBatchTime: 95.103us - SplitBlockDistributeByChannelTime: 3.523ms - SplitBlockHashComputeTime: 1.397ms - UncompressedRowBatchSize: 59.98 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.521ms - CloseTime: 3.365us - ExecTime: 6.807ms - HashTableComputeTime: 5.318ms - HashTableEmplaceTime: 4.461ms - HashTableInputCount: 15.415K (15415) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.506us - ProjectionTime: 0ns - RowsProduced: 14.064K (14064) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 449 - BuildOutputBlock: 0ns - CloseTime: 44.904us - ExecTime: 105.38ms - InitProbeSideTime: 28.865ms - JoinFilterTimer: 34.65us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 15.184us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 68.878us - ProbeFindNextTime: 0ns - ProbeRows: 1.783217M (1783217) - ProbeTime: 102.608ms - ProbeWhenBuildSideOutputTime: 2.881ms - ProbeWhenProbeSideOutputTime: 1.119ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 66.58ms - ProjectionTime: 1.107ms - RowsProduced: 15.415K (15415) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 450 - CloseTime: 0ns - ExecTime: 1.685ms - GetBlockFailedTime: 30 - MemoryUsage: - PeakMemoryUsage: 12.62 MB - OpenTime: 635ns - ProjectionTime: 0ns - RowsProduced: 1.783217M (1783217) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 959.480ms PipelineXTask (index=27):(Active: 200.968ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 200.783ms - CloseTime: 41.567us - GetBlockTime: 189.915ms - OpenTime: 3.898us - PrepareTime: 132.278us - SinkTime: 8.919ms - GetBlockCounter: 472 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 28 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 127.166ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.546ms DATA_STREAM_SINK_OPERATOR (id=352,dst_id=352): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.23 KB - CloseTime: 15.799us - CompressTime: 0ns - ExecTime: 8.793ms - InputRows: 14.277K (14277) - LocalBytesSent: 286.40 KB - LocalSendTime: 55.530us - LocalSentRows: 11.855K (11855) - MemoryUsage: - PeakMemoryUsage: 528.00 KB - MergeBlockTime: 0ns - OpenTime: 64.548us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 30.981ms - RowsProduced: 14.277K (14277) - RpcAvgTime: 21.562ms - RpcCount: 2 - RpcMaxTime: 21.582ms - RpcMinTime: 21.542ms - RpcSumTime: 43.125ms - SerializeBatchTime: 77.185us - SplitBlockDistributeByChannelTime: 3.935ms - SplitBlockHashComputeTime: 1.871ms - UncompressedRowBatchSize: 60.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 7.166ms - CloseTime: 8.242us - ExecTime: 7.619ms - HashTableComputeTime: 5.623ms - HashTableEmplaceTime: 4.599ms - HashTableInputCount: 15.58K (15580) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.960us - ProjectionTime: 0ns - RowsProduced: 14.277K (14277) HASH_JOIN_OPERATOR (id=350): - BlocksProduced: 448 - BuildOutputBlock: 0ns - CloseTime: 11.53us - ExecTime: 179.197ms - InitProbeSideTime: 93.356ms - JoinFilterTimer: 73.210us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 19.485us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 85.389us - ProbeFindNextTime: 0ns - ProbeRows: 1.788308M (1788308) - ProbeTime: 176.167ms - ProbeWhenBuildSideOutputTime: 3.570ms - ProbeWhenProbeSideOutputTime: 1.298ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 72.439ms - ProjectionTime: 1.500ms - RowsProduced: 15.58K (15580) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s235ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 449 - CloseTime: 0ns - ExecTime: 2.97ms - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 16.86 MB - OpenTime: 613ns - ProjectionTime: 0ns - RowsProduced: 1.788308M (1788308) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 901.601ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 10.728ms, % non-child: 0.00%) - CoreChangeTimes: 53 - ExecuteTime: 10.266ms - CloseTime: 104.808us - GetBlockTime: 6.344ms - OpenTime: 183.926us - PrepareTime: 130.590us - SinkTime: 2.181ms - GetBlockCounter: 717 - NumBlockedBySinkTimes: 243 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 256 - NumScheduleTimes: 256 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.382ms - WaitBfTime: 721.847ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.48ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 2.50ms - InputRows: 2.857188M (2857188) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.230us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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.385us - BlocksProduced: 717 - CloseTime: 102.440us - ExecTime: 266.556ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 262.161us - ProcessConjunctTime: 43.364us - ProjectionTime: 0ns - RowsProduced: 2.857188M (2857188) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 20.339ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 259.985ms - 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.616784M (1616784) - expr_input_rows: 2.467104M (2467104) 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.941901M (1941901) - expr_input_rows: 2.25984M (2259840) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [266.064ms, 261.286ms, 66.961ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [4.854ms, 8.901ms, 6.583ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 378.699ms - MemoryUsage: - FreeBlocks: 31.26 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.516ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 34.391us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 347.883ms - ScannerCtxSchedTime: 20.322ms - ScannerFilterTime: 212.246ms - ScannerGetBlockTime: 381.446ms - ScannerInitTime: 97.542us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 14 SegmentIterator: - BitmapIndexFilterTimer: 6.625us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 28.777us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 34.973us - BlockInitTime: 230.129us - BlockLoadTime: 379.408ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 1.221K (1221) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.366K (2366) - FirstReadSeekTime: 938.611us - FirstReadTime: 370.125ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.845us - 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: 281.433us - OutputIndexResultColumnTimer: 177.524us - 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: 7.129ms, % non-child: 0.00%) - CoreChangeTimes: 52 - ExecuteTime: 6.449ms - CloseTime: 105.424us - GetBlockTime: 3.642ms - OpenTime: 396.393us - PrepareTime: 133.671us - SinkTime: 1.30ms - GetBlockCounter: 465 - NumBlockedBySinkTimes: 245 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 261 - NumScheduleTimes: 261 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.105ms - WaitBfTime: 722.125ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 90.410ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 954.43us - InputRows: 1.798632M (1798632) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.126us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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: 2.376us - BlocksProduced: 465 - CloseTime: 101.390us - ExecTime: 365.224ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 480.297us - ProcessConjunctTime: 21.691us - ProjectionTime: 0ns - RowsProduced: 1.798632M (1798632) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 34.229ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 361.94ms - 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.50443M (2504430) - expr_input_rows: 3.697058M (3697058) 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.000378M (3000378) - expr_input_rows: 3.486338M (3486338) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [275.529ms, 363.705ms, 60.544ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [7.768ms, 14.866ms, 11.594ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 409.967ms - MemoryUsage: - FreeBlocks: 30.11 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.23ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.293us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 435.816ms - ScannerCtxSchedTime: 34.200ms - ScannerFilterTime: 250.117ms - ScannerGetBlockTime: 448.908ms - ScannerInitTime: 35.197us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 8.344us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 47.40us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 37.916us - BlockInitTime: 417.721us - BlockLoadTime: 411.861ms - 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.508ms - FirstReadTime: 389.143ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.131us - 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: 392.585us - OutputIndexResultColumnTimer: 215.325us - 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: 9.820ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 9.293ms - CloseTime: 72.448us - GetBlockTime: 6.336ms - OpenTime: 290.993us - PrepareTime: 127.43us - SinkTime: 1.394ms - GetBlockCounter: 615 - NumBlockedBySinkTimes: 194 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 203 - NumScheduleTimes: 203 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.100ms - WaitBfTime: 721.954ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.282ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.285ms - InputRows: 2.490808M (2490808) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.133us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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: 2.513us - BlocksProduced: 615 - CloseTime: 68.551us - ExecTime: 198.536ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 375.849us - ProcessConjunctTime: 20.878us - ProjectionTime: 0ns - RowsProduced: 2.490808M (2490808) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 22.762ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 191.862ms - 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: 944.892K (944892) - expr_input_rows: 1.227197M (1227197) 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: 981.354K (981354) - expr_input_rows: 1.019931M (1019931) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [207.262ms, 125.375ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [18.246ms, 4.515ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 280.934ms - MemoryUsage: - FreeBlocks: 24.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.19ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.218us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 187.153ms - ScannerCtxSchedTime: 22.752ms - ScannerFilterTime: 48.375ms - ScannerGetBlockTime: 283.775ms - ScannerInitTime: 239.876us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 4.162us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.446us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 45.454us - BlockInitTime: 290.209us - BlockLoadTime: 281.992ms - BlocksLoad: 865 - CachedPagesNum: 539 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.714K (1714) - FirstReadSeekTime: 1.128ms - FirstReadTime: 241.603ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.908us - 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: 206.342us - OutputIndexResultColumnTimer: 126.643us - 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: 5.467ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 4.979ms - CloseTime: 65.985us - GetBlockTime: 2.480ms - OpenTime: 265.181us - PrepareTime: 133.690us - SinkTime: 1.529ms - GetBlockCounter: 511 - NumBlockedBySinkTimes: 59 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 71 - NumScheduleTimes: 71 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.84ms - WaitBfTime: 721.820ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.765ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.439ms - InputRows: 2.067826M (2067826) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.157us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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.124us - BlocksProduced: 511 - CloseTime: 62.298us - ExecTime: 216.410ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 346.360us - ProcessConjunctTime: 29.805us - ProjectionTime: 0ns - RowsProduced: 2.067826M (2067826) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 16.320ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 213.643ms - 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.356352M (1356352) - expr_input_rows: 1.662304M (1662304) 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.4043M (1404300) - expr_input_rows: 1.45504M (1455040) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [206.983ms, 36.515ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [2.314ms, 14.006ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 173.136ms - MemoryUsage: - FreeBlocks: 18.95 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.214ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.743us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 195.284ms - ScannerCtxSchedTime: 16.308ms - ScannerFilterTime: 67.29ms - ScannerGetBlockTime: 175.953ms - ScannerInitTime: 197.389us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 4.483us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 22.941us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 65.808us - BlockInitTime: 306.268us - BlockLoadTime: 174.329ms - BlocksLoad: 863 - CachedPagesNum: 537 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.716K (1716) - FirstReadSeekTime: 1.315ms - FirstReadTime: 167.436ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.968us - 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: 294.234us - OutputIndexResultColumnTimer: 128.448us - 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: 2.810ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 2.572ms - CloseTime: 36.489us - GetBlockTime: 1.310ms - OpenTime: 59.334us - PrepareTime: 125.965us - SinkTime: 575.908us - GetBlockCounter: 246 - NumBlockedBySinkTimes: 75 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 87 - NumScheduleTimes: 87 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.622ms - WaitBfTime: 722.491ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.305ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 532.171us - InputRows: 879.594K (879594) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.992us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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.39us - BlocksProduced: 246 - CloseTime: 33.858us - ExecTime: 421.640ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 129.909us - ProcessConjunctTime: 10.907us - ProjectionTime: 0ns - RowsProduced: 879.594K (879594) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.368ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 420.215ms - 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: 831.173K (831173) - expr_input_rows: 2.129747M (2129747) 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.380201M (1380201) - expr_input_rows: 1.922483M (1922483) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [393.925ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [17.368ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 207.437ms - MemoryUsage: - FreeBlocks: 10.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.25ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.222us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 245.541ms - ScannerCtxSchedTime: 17.358ms - ScannerFilterTime: 184.403ms - ScannerGetBlockTime: 209.184ms - ScannerInitTime: 25.431us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 8.432us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.246us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 13.842us - BlockInitTime: 92.514us - BlockLoadTime: 208.8ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 658.20us - FirstReadTime: 205.14ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.224us - 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: 152.271us - OutputIndexResultColumnTimer: 114.687us - 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.4ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 2.730ms - CloseTime: 57.935us - GetBlockTime: 1.361ms - OpenTime: 87.105us - PrepareTime: 117.215us - SinkTime: 836.661us - GetBlockCounter: 369 - NumBlockedBySinkTimes: 33 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 45 - NumScheduleTimes: 45 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.880ms - WaitBfTime: 722.275ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.389ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 779.141us - InputRows: 1.408517M (1408517) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.155us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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: 3.716us - BlocksProduced: 369 - CloseTime: 43.104us - ExecTime: 416.515ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 159.575us - ProcessConjunctTime: 11.897us - ProjectionTime: 0ns - RowsProduced: 1.408517M (1408517) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 29.413ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 415.0ms - 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: 447.059K (447059) - expr_input_rows: 1.459177M (1459177) 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: 851.267K (851267) - expr_input_rows: 1.251913M (1251913) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [380.225ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [29.413ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 227.963ms - MemoryUsage: - FreeBlocks: 10.18 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 593.705us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 18.259us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 222.393ms - ScannerCtxSchedTime: 29.402ms - ScannerFilterTime: 150.502ms - ScannerGetBlockTime: 229.430ms - ScannerInitTime: 32.472us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 752ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.587us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.410us - BlockInitTime: 41.351us - BlockLoadTime: 228.215ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 554.246us - FirstReadTime: 223.883ms - IOTimer: 0ns - InvertedIndexFilterTime: 807ns - 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: 184.591us - OutputIndexResultColumnTimer: 90.239us - 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: 3.176ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 2.740ms - CloseTime: 61.446us - GetBlockTime: 1.165ms - OpenTime: 203.847us - PrepareTime: 145.810us - SinkTime: 702.237us - GetBlockCounter: 200 - NumBlockedBySinkTimes: 118 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 125 - NumScheduleTimes: 125 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.935ms - WaitBfTime: 721.848ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.73ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 659.264us - InputRows: 804.37K (804370) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.74us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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.524us - BlocksProduced: 200 - CloseTime: 57.251us - ExecTime: 92.930ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 302.109us - ProcessConjunctTime: 68.763us - ProjectionTime: 0ns - RowsProduced: 804.37K (804370) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.52ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 91.453ms - 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: [82.680ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [6.052ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 72.339ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.3ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.985us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 79.759ms - ScannerCtxSchedTime: 6.47ms - ScannerFilterTime: 9.711ms - ScannerGetBlockTime: 72.858ms - ScannerInitTime: 88.961us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 880ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.566us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 12.797us - BlockInitTime: 55.178us - BlockLoadTime: 73.141ms - BlocksLoad: 217 - CachedPagesNum: 363 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 530.577us - FirstReadTime: 71.106ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.96us - 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: 62.585us - OutputIndexResultColumnTimer: 33.324us - 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=22):(Active: 88.807ms, % non-child: 0.00%) - CoreChangeTimes: 32 - ExecuteTime: 46.770ms - CloseTime: 59.793us - GetBlockTime: 3.78ms - OpenTime: 41.779ms - PrepareTime: 156.50us - SinkTime: 752.649us - GetBlockCounter: 317 - NumBlockedBySinkTimes: 233 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 243 - NumScheduleTimes: 243 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.111ms - WaitBfTime: 721.989ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.42ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 686.217us - InputRows: 1.277689M (1277689) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.199us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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: 2.835us - BlocksProduced: 317 - CloseTime: 57.197us - ExecTime: 267.880ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 41.865ms - ProcessConjunctTime: 13.528us - ProjectionTime: 0ns - RowsProduced: 1.277689M (1277689) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 23.220ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 222.948ms - 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.996138M (1996138) - 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: [222.322ms, 164.116ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [9.902ms, 13.317ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 254.540ms - MemoryUsage: - FreeBlocks: 24.00 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 996.466us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 19.136us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 228.823ms - ScannerCtxSchedTime: 23.207ms - ScannerFilterTime: 129.544ms - ScannerGetBlockTime: 256.463ms - ScannerInitTime: 41.731ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - BitmapIndexFilterTimer: 2.998us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.906us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 18.727us - BlockInitTime: 177.422us - BlockLoadTime: 254.937ms - BlocksLoad: 838 - CachedPagesNum: 578 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 716.504us - FirstReadTime: 251.266ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.469us - 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: 195.401us - OutputIndexResultColumnTimer: 116.138us - 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=25):(Active: 7.252ms, % non-child: 0.00%) - CoreChangeTimes: 43 - ExecuteTime: 6.870ms - CloseTime: 126.243us - GetBlockTime: 4.433ms - OpenTime: 88.501us - PrepareTime: 127.481us - SinkTime: 973.8us - GetBlockCounter: 482 - NumBlockedBySinkTimes: 244 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 258 - NumScheduleTimes: 258 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.764ms - WaitBfTime: 722.345ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.263ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 880.176us - InputRows: 1.934073M (1934073) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.142us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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: 2.618us - BlocksProduced: 482 - CloseTime: 123.24us - ExecTime: 230.92ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 158.590us - ProcessConjunctTime: 11.440us - ProjectionTime: 0ns - RowsProduced: 1.934073M (1934073) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.6ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 225.473ms - 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.867309M (2867309) - expr_input_rows: 3.432451M (3432451) 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.042537M (3042537) - expr_input_rows: 3.221123M (3221123) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [229.293ms, 262.957ms, 74.597ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [5.902ms, 7.879ms, 3.225ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 412.61ms - MemoryUsage: - FreeBlocks: 33.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.961ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.30us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 356.467ms - ScannerCtxSchedTime: 16.986ms - ScannerFilterTime: 149.769ms - ScannerGetBlockTime: 416.391ms - ScannerInitTime: 39.320us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 14 SegmentIterator: - BitmapIndexFilterTimer: 8.456us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 31.96us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 53.758us - BlockInitTime: 415.331us - BlockLoadTime: 414.76ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 851 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 1.888ms - FirstReadTime: 407.726ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.390us - 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: 436.865us - OutputIndexResultColumnTimer: 192.172us - 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=28):(Active: 32.511ms, % non-child: 0.00%) - CoreChangeTimes: 40 - ExecuteTime: 19.641ms - CloseTime: 107.910us - GetBlockTime: 4.160ms - OpenTime: 12.561ms - PrepareTime: 144.725us - SinkTime: 1.557ms - GetBlockCounter: 614 - NumBlockedBySinkTimes: 223 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 236 - NumScheduleTimes: 236 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.533ms - WaitBfTime: 722.74ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.170ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.436ms - InputRows: 2.479178M (2479178) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.191us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s207ms 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: 2.801us - BlocksProduced: 614 - CloseTime: 104.801us - ExecTime: 253.598ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 12.658ms - ProcessConjunctTime: 35.282us - ProjectionTime: 0ns - RowsProduced: 2.479178M (2479178) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 20.540ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 236.800ms - 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.355789M (2355789) - expr_input_rows: 2.847169M (2847169) 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.496959M (2496959) - expr_input_rows: 2.641586M (2641586) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [266.291ms, 249.221ms, 42.756ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [5.834ms, 14.259ms, 446.457us, ] - BlockConvertTime: 0ns - BlockFetchTime: 338.342ms - MemoryUsage: - FreeBlocks: 27.41 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.97ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 34.264us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 332.548ms - ScannerCtxSchedTime: 20.517ms - ScannerFilterTime: 214.414ms - ScannerGetBlockTime: 343.180ms - ScannerInitTime: 156.878us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 12 SegmentIterator: - BitmapIndexFilterTimer: 8.293us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 41.710us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 121.818us - BlockInitTime: 548.115us - BlockLoadTime: 340.629ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 862 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.456K (2456) - FirstReadSeekTime: 1.807ms - FirstReadTime: 331.32ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.630us - 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: 337.306us - OutputIndexResultColumnTimer: 207.679us - 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.87, port:9060)): PipelineXTask (index=2):(Active: 29.149ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.45ms - CloseTime: 16.330us - GetBlockTime: 755.947us - OpenTime: 3.286us - PrepareTime: 74.761us - SinkTime: 27.883ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 29.51ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.558ms HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 47.341us - BuildRows: 180.832K (180832) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.501ms - BuildTableInsertTime: 8.22ms - BuildTableTime: 8.239ms - CloseTime: 0ns - ExecTime: 27.879ms - InputRows: 180.831K (180831) - MemoryUsage: - BuildBlocks: 8.40 MB - BuildKeyArena: 5.52 MB - HashTable: 1.69 MB - PeakMemoryUsage: 15.61 MB - OpenTime: 21.380us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.459us - RuntimeFilterComputeTime: 7.808ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=348): - BlocksProduced: 79 - BytesReceived: 4.18 MB - CloseTime: 12.727us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.342ms - ExecTime: 724.950us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.21 MB - MemoryUsage: - Blocks: 984.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.138us - ProjectionTime: 0ns - RowsProduced: 180.831K (180831) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 11s936ms PipelineXTask (index=5):(Active: 190.26us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 122.22us - CloseTime: 9.240us - GetBlockTime: 0ns - OpenTime: 1.510us - PrepareTime: 53.787us - SinkTime: 104.953us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 133.981us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 129.13us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 126.41us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.162us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.918us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.108us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.736us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 137.29us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 69.296us - CloseTime: 8.374us - GetBlockTime: 0ns - OpenTime: 1.242us - PrepareTime: 54.908us - SinkTime: 56.318us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.539us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.358us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 70.875us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.69us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.658us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.185us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.980us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 152.259us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 78.666us - CloseTime: 19.175us - GetBlockTime: 0ns - OpenTime: 1.427us - PrepareTime: 49.676us - SinkTime: 58.982us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 125.581us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 120.620us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 77.254us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.931us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.263us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.776us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 149.588us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 87.83us - CloseTime: 6.730us - GetBlockTime: 0ns - OpenTime: 2.414us - PrepareTime: 50.400us - SinkTime: 71.512us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.507us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 84.110us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.60us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.905us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.935us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.363us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 3.941ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 80.847us - CloseTime: 3.804ms - GetBlockTime: 0ns - OpenTime: 1.625us - PrepareTime: 51.145us - SinkTime: 43.688us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.87us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.211us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 57.629us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.256us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.801ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 3.820ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.576us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 186.208us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 91.682us - CloseTime: 32.168us - GetBlockTime: 0ns - OpenTime: 2.210us - PrepareTime: 56.517us - SinkTime: 75.680us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 149.141us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.411us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 94.306us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.990us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 29.15us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.708us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.16us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 117.542us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.448us - CloseTime: 29.72us - GetBlockTime: 0ns - OpenTime: 1.681us - PrepareTime: 49.960us - SinkTime: 22.749us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.403us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.843us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.69us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.442us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 27.731us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.857us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.248us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 146.177us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.909us - CloseTime: 34.339us - GetBlockTime: 0ns - OpenTime: 1.612us - PrepareTime: 49.212us - SinkTime: 45.187us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.450us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.43us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.672us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.961us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 32.496us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 51.953us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.641us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 98.547us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.57us - CloseTime: 6.760us - GetBlockTime: 0ns - OpenTime: 2.694us - PrepareTime: 51.688us - SinkTime: 18.477us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.267us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 111.751us HASH_JOIN_SINK_OPERATOR (id=350): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc86c4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.242us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.361us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s972ms EXCHANGE_OPERATOR (id=348): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.282us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.394us - 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 Fragment 17: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 19.329ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.154ms - CloseTime: 52.99us - GetBlockTime: 11.399ms - OpenTime: 3.672us - PrepareTime: 113.612us - SinkTime: 7.645ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 19.259ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.581ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.01 MB - CloseTime: 15.970us - CompressTime: 0ns - ExecTime: 7.687ms - InputRows: 35.067K (35067) - LocalBytesSent: 1.64 MB - LocalSendTime: 558.439us - LocalSentRows: 35.067K (35067) - MemoryUsage: - PeakMemoryUsage: 400.00 KB - MergeBlockTime: 393.540us - OpenTime: 40.117us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 48.584ms - RowsProduced: 35.067K (35067) - RpcAvgTime: 2.631ms - RpcCount: 9 - RpcMaxTime: 23.687ms - RpcMinTime: 23.687ms - RpcSumTime: 23.687ms - SerializeBatchTime: 6.169ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.33 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 17.342us - ExecTime: 11.203ms - InitProbeSideTime: 4.466ms - JoinFilterTimer: 3.791us - MemoryUsage: - PeakMemoryUsage: 864.00 KB - ProbeKeyArena: 864.00 KB - OpenTime: 17.513us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.866us - ProbeFindNextTime: 0ns - ProbeRows: 77.326K (77326) - ProbeTime: 10.456ms - ProbeWhenBuildSideOutputTime: 624.886us - ProbeWhenProbeSideOutputTime: 57.482us - ProbeWhenProcessHashTableTime: 2.51ms - ProbeWhenSearchHashTableTime: 2.846ms - ProjectionTime: 560.763us - RowsProduced: 35.067K (35067) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 7s753ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 36 - BytesReceived: 1.75 MB - CloseTime: 13.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.731ms - ExecTime: 222.82us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.62 MB - MemoryUsage: - Blocks: 6.81 MB - PeakMemoryUsage: 1.62 MB - OpenTime: 19.298us - ProjectionTime: 0ns - RowsProduced: 77.326K (77326) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s332ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 12.548ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.426ms - CloseTime: 14.744us - GetBlockTime: 266.572us - OpenTime: 1.912us - PrepareTime: 101.285us - SinkTime: 12.22ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.503ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 771.480us HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.453us - BuildRows: 35.068K (35068) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.739ms - BuildTableInsertTime: 5.524ms - BuildTableTime: 5.530ms - CloseTime: 0ns - ExecTime: 12.52ms - InputRows: 35.067K (35067) - MemoryUsage: - BuildBlocks: 2.84 MB - BuildKeyArena: 2.31 MB - HashTable: 427.23 KB - PeakMemoryUsage: 5.57 MB - OpenTime: 37.847us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 321.730us - RuntimeFilterComputeTime: 3.293ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 16 - BytesReceived: 681.84 KB - CloseTime: 11.398us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.97ms - ExecTime: 295.315us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.80 MB - MemoryUsage: - Blocks: 688.00 KB - PeakMemoryUsage: 688.00 KB - OpenTime: 31.539us - ProjectionTime: 0ns - RowsProduced: 35.067K (35067) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s490ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 16.251ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 16.46ms - CloseTime: 72.808us - GetBlockTime: 12.42ms - OpenTime: 3.640us - PrepareTime: 117.421us - SinkTime: 3.940ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 16.164ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.477ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.11 MB - CloseTime: 32.338us - CompressTime: 0ns - ExecTime: 4.9ms - InputRows: 36.774K (36774) - LocalBytesSent: 1.70 MB - LocalSendTime: 454.842us - LocalSentRows: 36.774K (36774) - MemoryUsage: - PeakMemoryUsage: 400.00 KB - MergeBlockTime: 426.22us - OpenTime: 44.98us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s893ms - RowsProduced: 36.774K (36774) - RpcAvgTime: 763.483ms - RpcCount: 9 - RpcMaxTime: 6s871ms - RpcMinTime: 6s871ms - RpcSumTime: 6s871ms - SerializeBatchTime: 2.902ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.47 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 23.848us - ExecTime: 11.766ms - InitProbeSideTime: 4.817ms - JoinFilterTimer: 2.596us - MemoryUsage: - PeakMemoryUsage: 888.00 KB - ProbeKeyArena: 888.00 KB - OpenTime: 14.962us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.708us - ProbeFindNextTime: 0ns - ProbeRows: 78.852K (78852) - ProbeTime: 11.314ms - ProbeWhenBuildSideOutputTime: 876.318us - ProbeWhenProbeSideOutputTime: 78.53us - ProbeWhenProcessHashTableTime: 1.247ms - ProbeWhenSearchHashTableTime: 3.956ms - ProjectionTime: 279.502us - RowsProduced: 36.774K (36774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s247ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 23 - BytesReceived: 473.68 KB - CloseTime: 11.38us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 894.143us - ExecTime: 329.354us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.27 MB - MemoryUsage: - Blocks: 7.89 MB - PeakMemoryUsage: 6.27 MB - OpenTime: 27.486us - ProjectionTime: 0ns - RowsProduced: 78.852K (78852) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 700.929ms PipelineXTask (index=2):(Active: 19.532ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.348ms - CloseTime: 62.162us - GetBlockTime: 14.347ms - OpenTime: 15.778us - PrepareTime: 99.241us - SinkTime: 4.906ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 19.459ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.366ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 15 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.84 MB - CloseTime: 13.8us - CompressTime: 0ns - ExecTime: 4.945ms - InputRows: 32.103K (32103) - LocalBytesSent: 1.47 MB - LocalSendTime: 569.690us - LocalSentRows: 32.103K (32103) - MemoryUsage: - PeakMemoryUsage: 400.00 KB - MergeBlockTime: 390.839us - OpenTime: 36.324us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s556ms - RowsProduced: 32.103K (32103) - RpcAvgTime: 934.416ms - RpcCount: 7 - RpcMaxTime: 6s540ms - RpcMinTime: 6s540ms - RpcSumTime: 6s540ms - SerializeBatchTime: 3.693ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.00 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 20.706us - ExecTime: 14.77ms - InitProbeSideTime: 6.753ms - JoinFilterTimer: 4.295us - MemoryUsage: - PeakMemoryUsage: 936.00 KB - ProbeKeyArena: 936.00 KB - OpenTime: 27.821us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.731us - ProbeFindNextTime: 0ns - ProbeRows: 81.45K (81450) - ProbeTime: 13.494ms - ProbeWhenBuildSideOutputTime: 806.986us - ProbeWhenProbeSideOutputTime: 106.790us - ProbeWhenProcessHashTableTime: 1.415ms - ProbeWhenSearchHashTableTime: 3.955ms - ProjectionTime: 347.910us - RowsProduced: 32.103K (32103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s113ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 24 - BytesReceived: 415.31 KB - CloseTime: 24.299us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 747.398us - ExecTime: 315.811us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.42 MB - MemoryUsage: - Blocks: 7.87 MB - PeakMemoryUsage: 6.42 MB - OpenTime: 14.442us - ProjectionTime: 0ns - RowsProduced: 81.45K (81450) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 702.859ms PipelineXTask (index=4):(Active: 23.741ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.531ms - CloseTime: 97.274us - GetBlockTime: 16.269ms - OpenTime: 5.323us - PrepareTime: 100.550us - SinkTime: 7.181ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 23.607ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.929ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.23 MB - CloseTime: 19.469us - CompressTime: 0ns - ExecTime: 7.222ms - InputRows: 38.892K (38892) - LocalBytesSent: 1.81 MB - LocalSendTime: 610.256us - LocalSentRows: 38.892K (38892) - MemoryUsage: - PeakMemoryUsage: 400.00 KB - MergeBlockTime: 451.520us - OpenTime: 35.194us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s88ms - RowsProduced: 38.892K (38892) - RpcAvgTime: 706.813ms - RpcCount: 10 - RpcMaxTime: 7s68ms - RpcMinTime: 7s68ms - RpcSumTime: 7s68ms - SerializeBatchTime: 5.884ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.68 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 27 - BuildOutputBlock: 0ns - CloseTime: 57.740us - ExecTime: 16.49ms - InitProbeSideTime: 7.749ms - JoinFilterTimer: 4.602us - MemoryUsage: - PeakMemoryUsage: 948.00 KB - ProbeKeyArena: 948.00 KB - OpenTime: 9.831us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.397us - ProbeFindNextTime: 0ns - ProbeRows: 78.302K (78302) - ProbeTime: 15.362ms - ProbeWhenBuildSideOutputTime: 1.68ms - ProbeWhenProbeSideOutputTime: 81.38us - ProbeWhenProcessHashTableTime: 2.227ms - ProbeWhenSearchHashTableTime: 3.747ms - ProjectionTime: 429.714us - RowsProduced: 38.892K (38892) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s140ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 24 - BytesReceived: 439.66 KB - CloseTime: 14.732us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 830.36us - ExecTime: 277.281us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.02 MB - MemoryUsage: - Blocks: 7.50 MB - PeakMemoryUsage: 6.02 MB - OpenTime: 16.514us - ProjectionTime: 0ns - RowsProduced: 78.302K (78302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 703.151ms PipelineXTask (index=6):(Active: 24.473ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.297ms - CloseTime: 60.349us - GetBlockTime: 17.316ms - OpenTime: 3.902us - PrepareTime: 105.178us - SinkTime: 6.882ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.403ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.619ms DATA_STREAM_SINK_OPERATOR (id=348,dst_id=348): - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.18 MB - CloseTime: 14.656us - CompressTime: 0ns - ExecTime: 6.917ms - InputRows: 37.995K (37995) - LocalBytesSent: 1.78 MB - LocalSendTime: 1.421ms - LocalSentRows: 37.995K (37995) - MemoryUsage: - PeakMemoryUsage: 400.00 KB - MergeBlockTime: 607.187us - OpenTime: 50.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s6ms - RowsProduced: 37.995K (37995) - RpcAvgTime: 776.941ms - RpcCount: 9 - RpcMaxTime: 6s992ms - RpcMinTime: 6s992ms - RpcSumTime: 6s992ms - SerializeBatchTime: 4.447ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.61 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=347): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 30.915us - ExecTime: 17.104ms - InitProbeSideTime: 7.35ms - JoinFilterTimer: 3.23us - MemoryUsage: - PeakMemoryUsage: 972.00 KB - ProbeKeyArena: 972.00 KB - OpenTime: 12.206us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.272us - ProbeFindNextTime: 0ns - ProbeRows: 83.153K (83153) - ProbeTime: 16.246ms - ProbeWhenBuildSideOutputTime: 1.225ms - ProbeWhenProbeSideOutputTime: 101.345us - ProbeWhenProcessHashTableTime: 2.450ms - ProbeWhenSearchHashTableTime: 4.911ms - ProjectionTime: 548.55us - RowsProduced: 37.995K (37995) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s114ms EXCHANGE_OPERATOR (id=346): - BlocksProduced: 24 - BytesReceived: 514.01 KB - CloseTime: 11.663us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 803.583us - ExecTime: 245.125us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.35 MB - MemoryUsage: - Blocks: 8.15 MB - PeakMemoryUsage: 6.35 MB - OpenTime: 11.786us - ProjectionTime: 0ns - RowsProduced: 83.153K (83153) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 703.423ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 29.479ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.331ms - CloseTime: 28.879us - GetBlockTime: 261.954us - OpenTime: 3.419us - PrepareTime: 108.507us - SinkTime: 28.935ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.919ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.259ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.493us - BuildRows: 36.775K (36775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.485ms - BuildTableInsertTime: 4.357ms - BuildTableTime: 4.363ms - CloseTime: 0ns - ExecTime: 28.987ms - InputRows: 36.774K (36774) - MemoryUsage: - BuildBlocks: 2.97 MB - BuildKeyArena: 2.43 MB - HashTable: 435.57 KB - PeakMemoryUsage: 5.81 MB - OpenTime: 60.483us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 147.508us - RuntimeFilterComputeTime: 1.820ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 14 - BytesReceived: 469.87 KB - CloseTime: 24.710us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 493.706us - ExecTime: 282.290us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.68 MB - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 1.28 MB - OpenTime: 12.261us - ProjectionTime: 0ns - RowsProduced: 36.774K (36774) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s888ms PipelineXTask (index=3):(Active: 10.265ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 10.178ms - CloseTime: 11.233us - GetBlockTime: 211.792us - OpenTime: 4.255us - PrepareTime: 65.167us - SinkTime: 9.839ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.232ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.997ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 29.656us - BuildRows: 32.104K (32104) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.701ms - BuildTableInsertTime: 3.289ms - BuildTableTime: 3.293ms - CloseTime: 0ns - ExecTime: 9.849ms - InputRows: 32.103K (32103) - MemoryUsage: - BuildBlocks: 2.58 MB - BuildKeyArena: 2.12 MB - HashTable: 412.76 KB - PeakMemoryUsage: 5.09 MB - OpenTime: 18.90us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.136us - RuntimeFilterComputeTime: 1.693ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 12 - BytesReceived: 316.61 KB - CloseTime: 8.455us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 485.267us - ExecTime: 236.912us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.86 MB - MemoryUsage: - Blocks: 1.30 MB - PeakMemoryUsage: 1.30 MB - OpenTime: 32.460us - ProjectionTime: 0ns - RowsProduced: 32.103K (32103) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s786ms PipelineXTask (index=5):(Active: 18.269ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 18.137ms - CloseTime: 27.606us - GetBlockTime: 290.712us - OpenTime: 4.242us - PrepareTime: 92.296us - SinkTime: 17.720ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.185ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.791ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.140us - BuildRows: 38.893K (38893) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.8ms - BuildTableInsertTime: 7.281ms - BuildTableTime: 7.289ms - CloseTime: 0ns - ExecTime: 17.749ms - InputRows: 38.892K (38892) - MemoryUsage: - BuildBlocks: 3.15 MB - BuildKeyArena: 2.57 MB - HashTable: 445.91 KB - PeakMemoryUsage: 6.14 MB - OpenTime: 36.685us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 40.434us - RuntimeFilterComputeTime: 4.264ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 13 - BytesReceived: 417.44 KB - CloseTime: 23.677us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 601.664us - ExecTime: 325.596us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.22 MB - MemoryUsage: - Blocks: 1.85 MB - PeakMemoryUsage: 1.85 MB - OpenTime: 23.898us - ProjectionTime: 0ns - RowsProduced: 38.892K (38892) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s799ms PipelineXTask (index=7):(Active: 16.323ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 16.250ms - CloseTime: 9.537us - GetBlockTime: 190.893us - OpenTime: 3.62us - PrepareTime: 55.162us - SinkTime: 15.958ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.292ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.279ms HASH_JOIN_SINK_OPERATOR (id=347): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 40.954us - BuildRows: 37.996K (37996) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.957ms - BuildTableInsertTime: 6.186ms - BuildTableTime: 6.192ms - CloseTime: 0ns - ExecTime: 15.962ms - InputRows: 37.995K (37995) - MemoryUsage: - BuildBlocks: 3.08 MB - BuildKeyArena: 2.51 MB - HashTable: 441.53 KB - PeakMemoryUsage: 6.02 MB - OpenTime: 21.543us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.22us - RuntimeFilterComputeTime: 2.632ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=344): - BlocksProduced: 12 - BytesReceived: 388.67 KB - CloseTime: 7.407us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 600.832us - ExecTime: 200.116us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.05 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 1.47 MB - OpenTime: 13.897us - ProjectionTime: 0ns - RowsProduced: 37.995K (37995) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s786ms Fragment 18: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 31.847ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 31.389ms - CloseTime: 45.330us - GetBlockTime: 184.828us - OpenTime: 204.185us - PrepareTime: 199.380us - SinkTime: 30.922ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.215ms - WaitBfTime: 736.680ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 851.871us DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 MB - CloseTime: 16.503us - CompressTime: 0ns - ExecTime: 30.967ms - InputRows: 78.985K (78985) - LocalBytesSent: 1.00 MB - LocalSendTime: 33.6us - LocalSentRows: 15.645K (15645) - MemoryUsage: - PeakMemoryUsage: 3.53 MB - MergeBlockTime: 0ns - OpenTime: 35.123us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s59ms - RowsProduced: 78.985K (78985) - RpcAvgTime: 257.4ms - RpcCount: 16 - RpcMaxTime: 1s41ms - RpcMinTime: 1s13ms - RpcSumTime: 4s112ms - SerializeBatchTime: 19.926ms - SplitBlockDistributeByChannelTime: 5.770ms - SplitBlockHashComputeTime: 2.992ms - UncompressedRowBatchSize: 4.11 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 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: 5.373us - BlocksProduced: 20 - CloseTime: 24.797us - ExecTime: 6.227ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 291.314us - ProcessConjunctTime: 48.471us - ProjectionTime: 0ns - RowsProduced: 78.985K (78985) - RowsRead: 78.985K (78985) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.242ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 5.733ms - 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: [3.808ms, ] - PerScannerRowsRead: [78.98K, ] - PerScannerWaitTime: [1.242ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.749ms - MemoryUsage: - FreeBlocks: 5.62 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 543.960us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 815ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.513ms - ScannerCtxSchedTime: 1.242ms - ScannerFilterTime: 6.490us - ScannerGetBlockTime: 3.795ms - ScannerInitTime: 100.136us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 125ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 834ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 33.379us - BlockInitTime: 49.659us - BlockLoadTime: 4.231ms - BlocksLoad: 21 - CachedPagesNum: 31 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 239.176us - FirstReadTime: 4.119ms - IOTimer: 0ns - InvertedIndexFilterTime: 200ns - 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.287us - OutputIndexResultColumnTimer: 2.861us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 100.527ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 100.28ms - CloseTime: 104.583us - GetBlockTime: 402.11us - OpenTime: 94.45us - PrepareTime: 289.58us - SinkTime: 99.423ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 22.333ms - WaitBfTime: 688.605ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.447ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 461.74 KB - CloseTime: 49.864us - CompressTime: 0ns - ExecTime: 99.503ms - InputRows: 83.949K (83949) - LocalBytesSent: 4.37 MB - LocalSendTime: 211.509us - LocalSentRows: 68.077K (68077) - MemoryUsage: - PeakMemoryUsage: 6.88 MB - MergeBlockTime: 0ns - OpenTime: 42.184us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s298ms - RowsProduced: 83.949K (83949) - RpcAvgTime: 2s91ms - RpcCount: 4 - RpcMaxTime: 8s367ms - RpcMinTime: 8s367ms - RpcSumTime: 8s367ms - SerializeBatchTime: 23.666ms - SplitBlockDistributeByChannelTime: 70.921ms - SplitBlockHashComputeTime: 3.389ms - UncompressedRowBatchSize: 1.03 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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: 4.682us - BlocksProduced: 21 - CloseTime: 51.35us - ExecTime: 10.812ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 209.543us - ProcessConjunctTime: 19.377us - ProjectionTime: 0ns - RowsProduced: 83.949K (83949) - RowsRead: 83.949K (83949) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.286ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 10.166ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [7.419ms, ] - PerScannerRowsRead: [83.95K, ] - PerScannerWaitTime: [1.286ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.258ms - MemoryUsage: - FreeBlocks: 6.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.4ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.727us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.873ms - ScannerCtxSchedTime: 1.282ms - ScannerFilterTime: 23.284us - ScannerGetBlockTime: 7.373ms - ScannerInitTime: 42.189us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 353ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.20us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 57.175us - BlockInitTime: 123.898us - BlockLoadTime: 8.161ms - BlocksLoad: 22 - CachedPagesNum: 35 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 42 - FirstReadSeekTime: 405.466us - FirstReadTime: 7.860ms - IOTimer: 0ns - InvertedIndexFilterTime: 692ns - 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.637us - OutputIndexResultColumnTimer: 5.176us - 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: 74.333ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 73.904ms - CloseTime: 59.283us - GetBlockTime: 337.873us - OpenTime: 84.512us - PrepareTime: 259.324us - SinkTime: 73.365ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 21.43ms - WaitBfTime: 688.683ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.62ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 461.25 KB - CloseTime: 16.513us - CompressTime: 0ns - ExecTime: 73.393ms - InputRows: 76.266K (76266) - LocalBytesSent: 3.87 MB - LocalSendTime: 220.652us - LocalSentRows: 60.397K (60397) - MemoryUsage: - PeakMemoryUsage: 6.31 MB - MergeBlockTime: 0ns - OpenTime: 42.397us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s326ms - RowsProduced: 76.266K (76266) - RpcAvgTime: 2s93ms - RpcCount: 4 - RpcMaxTime: 8s375ms - RpcMinTime: 8s375ms - RpcSumTime: 8s375ms - SerializeBatchTime: 3.156ms - SplitBlockDistributeByChannelTime: 65.907ms - SplitBlockHashComputeTime: 2.998ms - UncompressedRowBatchSize: 1.03 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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: 2.317us - BlocksProduced: 19 - CloseTime: 39.116us - ExecTime: 8.28ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 226.286us - ProcessConjunctTime: 16.790us - ProjectionTime: 0ns - RowsProduced: 76.266K (76266) - RowsRead: 76.266K (76266) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.215ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 7.439ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [4.141ms, ] - PerScannerRowsRead: [76.27K, ] - PerScannerWaitTime: [2.215ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.55ms - MemoryUsage: - FreeBlocks: 5.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 871.330us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.485us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.228ms - ScannerCtxSchedTime: 2.211ms - ScannerFilterTime: 9.14us - ScannerGetBlockTime: 4.125ms - ScannerInitTime: 37.200us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 118ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 803ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 39.822us - BlockInitTime: 58.937us - BlockLoadTime: 4.794ms - BlocksLoad: 20 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 38 - FirstReadSeekTime: 405.355us - FirstReadTime: 4.646ms - IOTimer: 0ns - InvertedIndexFilterTime: 312ns - 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.925us - OutputIndexResultColumnTimer: 2.532us - 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: 25.627ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.250ms - CloseTime: 56.684us - GetBlockTime: 266.451us - OpenTime: 118.766us - PrepareTime: 192.83us - SinkTime: 24.788ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 16.537ms - WaitBfTime: 689.708ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.854ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 412.87 KB - CloseTime: 26.91us - CompressTime: 0ns - ExecTime: 24.856ms - InputRows: 80.456K (80456) - LocalBytesSent: 4.25 MB - LocalSendTime: 144.688us - LocalSentRows: 66.201K (66201) - MemoryUsage: - PeakMemoryUsage: 6.79 MB - MergeBlockTime: 0ns - OpenTime: 49.380us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s331ms - RowsProduced: 80.456K (80456) - RpcAvgTime: 2s83ms - RpcCount: 4 - RpcMaxTime: 8s333ms - RpcMinTime: 8s333ms - RpcSumTime: 8s333ms - SerializeBatchTime: 2.56ms - SplitBlockDistributeByChannelTime: 18.895ms - SplitBlockHashComputeTime: 2.944ms - UncompressedRowBatchSize: 944.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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: 2.689us - BlocksProduced: 20 - CloseTime: 27.579us - ExecTime: 51.492ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 197.735us - ProcessConjunctTime: 24.841us - ProjectionTime: 0ns - RowsProduced: 80.456K (80456) - RowsRead: 80.456K (80456) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.662ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 51.8ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [48.289ms, ] - PerScannerRowsRead: [80.46K, ] - PerScannerWaitTime: [1.662ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 48.155ms - MemoryUsage: - FreeBlocks: 5.75 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 708.655us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.166us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.890ms - ScannerCtxSchedTime: 1.660ms - ScannerFilterTime: 14.46us - ScannerGetBlockTime: 48.251ms - ScannerInitTime: 56.673us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 246ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.229us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 32.413us - BlockInitTime: 54.570us - BlockLoadTime: 48.776ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 286.213us - FirstReadTime: 48.602ms - IOTimer: 0ns - InvertedIndexFilterTime: 430ns - 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.283us - OutputIndexResultColumnTimer: 4.271us - 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: 36.197ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.679ms - CloseTime: 81.117us - GetBlockTime: 280.546us - OpenTime: 106.849us - PrepareTime: 319.661us - SinkTime: 35.186ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 21.762ms - WaitBfTime: 689.815ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.664ms DATA_STREAM_SINK_OPERATOR (id=346,dst_id=346): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 457.12 KB - CloseTime: 26.456us - CompressTime: 0ns - ExecTime: 35.287ms - InputRows: 79.427K (79427) - LocalBytesSent: 4.09 MB - LocalSendTime: 199.593us - LocalSentRows: 63.742K (63742) - MemoryUsage: - PeakMemoryUsage: 6.85 MB - MergeBlockTime: 0ns - OpenTime: 85.219us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s358ms - RowsProduced: 79.427K (79427) - RpcAvgTime: 2s92ms - RpcCount: 4 - RpcMaxTime: 8s370ms - RpcMinTime: 8s370ms - RpcSumTime: 8s370ms - SerializeBatchTime: 3.7ms - SplitBlockDistributeByChannelTime: 15.866ms - SplitBlockHashComputeTime: 14.979ms - UncompressedRowBatchSize: 1.02 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 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: 2.335us - BlocksProduced: 20 - CloseTime: 50.492us - ExecTime: 14.339ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 242.821us - ProcessConjunctTime: 15.335us - ProjectionTime: 0ns - RowsProduced: 79.427K (79427) - RowsRead: 79.427K (79427) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.771ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 13.779ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 102, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 103, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 RuntimeFilter: (id = 104, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 105, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 65536 VScanner: - ReadColumns: [CHAT_ID, UNIONID] - PerScannerRunningTime: [8.589ms, ] - PerScannerRowsRead: [79.43K, ] - PerScannerWaitTime: [3.771ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.450ms - MemoryUsage: - FreeBlocks: 5.68 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 923.2us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.176us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.986ms - ScannerCtxSchedTime: 3.769ms - ScannerFilterTime: 23.855us - ScannerGetBlockTime: 8.553ms - ScannerInitTime: 56.589us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 510ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.960us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 43.864us - BlockInitTime: 74.313us - BlockLoadTime: 9.277ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 40 - FirstReadSeekTime: 391.593us - FirstReadTime: 9.66ms - IOTimer: 0ns - InvertedIndexFilterTime: 394ns - 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: 8.944us - OutputIndexResultColumnTimer: 3.757us - 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 Fragment 19: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 19.887ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.347ms - CloseTime: 71.539us - GetBlockTime: 8.270ms - OpenTime: 193.864us - PrepareTime: 266.801us - SinkTime: 10.743ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 19.799ms - WaitBfTime: 736.529ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.855ms DATA_STREAM_SINK_OPERATOR (id=344,dst_id=344): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.55 MB - CloseTime: 13.822us - CompressTime: 0ns - ExecTime: 10.788ms - InputRows: 63.423K (63423) - LocalBytesSent: 1.13 MB - LocalSendTime: 70.761us - LocalSentRows: 13.887K (13887) - MemoryUsage: - PeakMemoryUsage: 4.24 MB - MergeBlockTime: 0ns - OpenTime: 46.930us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 563.507ms - RowsProduced: 63.423K (63423) - RpcAvgTime: 150.863ms - RpcCount: 13 - RpcMaxTime: 585.973ms - RpcMinTime: 452.364ms - RpcSumTime: 1s961ms - SerializeBatchTime: 4.944ms - SplitBlockDistributeByChannelTime: 3.231ms - SplitBlockHashComputeTime: 1.708ms - UncompressedRowBatchSize: 4.06 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=343): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 18.407us - ExecTime: 7.950ms - InitProbeSideTime: 3.201ms - JoinFilterTimer: 4.978us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 21.457us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.357us - ProbeFindNextTime: 0ns - ProbeRows: 173.151K (173151) - ProbeTime: 7.121ms - ProbeWhenBuildSideOutputTime: 590.57us - ProbeWhenProbeSideOutputTime: 1.327ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.496ms - ProjectionTime: 701.333us - RowsProduced: 63.423K (63423) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s578ms 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: 10.940us - BlocksProduced: 46 - CloseTime: 35.790us - ExecTime: 47.896ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 306.251us - ProcessConjunctTime: 75.568us - ProjectionTime: 4.905ms - RowsProduced: 173.151K (173151) - RowsRead: 355.894K (355894) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.434ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 42.325ms - 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: [34.833ms, ] - PerScannerRowsRead: [355.89K, ] - PerScannerWaitTime: [1.434ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 24.952ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 839.414us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.840us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.203ms - ScannerCtxSchedTime: 1.431ms - ScannerFilterTime: 9.696ms - ScannerGetBlockTime: 25.106ms - ScannerInitTime: 77.92us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 545ns - BlockConditionsFilteredBloomFilterTime: 1.798us - BlockConditionsFilteredDictTime: 478ns - BlockConditionsFilteredTime: 57.705us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 47.308us - BlockInitSeekCount: 9 - BlockInitSeekTime: 52.217us - BlockInitTime: 132.734us - BlockLoadTime: 25.643ms - BlocksLoad: 94 - CachedPagesNum: 212 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 186 - FirstReadSeekTime: 237.311us - FirstReadTime: 5.548ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.162us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 15.169ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 3.722ms - OutputIndexResultColumnTimer: 16.640us - 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: 311.394us - TotalPagesNum: 212 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 451.628us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 221.374us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 151.481us - CloseTime: 11.33us - GetBlockTime: 4.830us - OpenTime: 1.925us - PrepareTime: 53.244us - SinkTime: 132.692us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 205.126us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 114.976us HASH_JOIN_SINK_OPERATOR (id=343): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.124us - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.503us - BuildTableInsertTime: 24.916us - BuildTableTime: 27.737us - CloseTime: 0ns - ExecTime: 147.845us - InputRows: 160 - MemoryUsage: - BuildBlocks: 8.10 KB - BuildKeyArena: 12.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 17.73 KB - OpenTime: 15.296us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.846us - RuntimeFilterComputeTime: 56.805us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=341): - BlocksProduced: 2 - BytesReceived: 5.19 KB - CloseTime: 8.867us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 14.306us - ExecTime: 31.246us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.553us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s341ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 26.238ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.459ms - CloseTime: 94.450us - GetBlockTime: 9.724ms - OpenTime: 221.20us - PrepareTime: 452.139us - SinkTime: 15.395ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.904ms - WaitBfTime: 693.496ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.331ms DATA_STREAM_SINK_OPERATOR (id=344,dst_id=344): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 16 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 359.84 KB - CloseTime: 17.526us - CompressTime: 0ns - ExecTime: 15.469ms - InputRows: 59.09K (59090) - LocalBytesSent: 3.86 MB - LocalSendTime: 187.784us - LocalSentRows: 47.865K (47865) - MemoryUsage: - PeakMemoryUsage: 6.46 MB - MergeBlockTime: 0ns - OpenTime: 69.473us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s563ms - RowsProduced: 59.09K (59090) - RpcAvgTime: 2s521ms - RpcCount: 3 - RpcMaxTime: 7s563ms - RpcMinTime: 7s563ms - RpcSumTime: 7s563ms - SerializeBatchTime: 2.433ms - SplitBlockDistributeByChannelTime: 9.493ms - SplitBlockHashComputeTime: 2.129ms - UncompressedRowBatchSize: 945.10 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=343): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 16.854us - ExecTime: 9.508ms - InitProbeSideTime: 2.19ms - JoinFilterTimer: 3.692us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 28.250us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.738us - ProbeFindNextTime: 0ns - ProbeRows: 59.09K (59090) - ProbeTime: 8.314ms - ProbeWhenBuildSideOutputTime: 1.61ms - ProbeWhenProbeSideOutputTime: 3.425ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.344ms - ProjectionTime: 1.81ms - RowsProduced: 59.09K (59090) - 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: [15208] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.371us - BlocksProduced: 16 - CloseTime: 55.262us - ExecTime: 109.121ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 411.935us - ProcessConjunctTime: 80.667us - ProjectionTime: 1.521ms - RowsProduced: 59.09K (59090) - RowsRead: 345.71K (345710) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.781ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 106.896ms - 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: 286.62K (286620) - expr_input_rows: 345.71K (345710) 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: [80.428ms, ] - PerScannerRowsRead: [345.71K, ] - PerScannerWaitTime: [2.781ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 36.27ms - MemoryUsage: - FreeBlocks: 4.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 9.417ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.101us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.877ms - ScannerCtxSchedTime: 2.778ms - ScannerFilterTime: 44.81ms - ScannerGetBlockTime: 36.295ms - ScannerInitTime: 80.223us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.740us - BlockConditionsFilteredBloomFilterTime: 2.432us - BlockConditionsFilteredDictTime: 627ns - BlockConditionsFilteredTime: 50.438us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.446us - BlockInitSeekCount: 9 - BlockInitSeekTime: 148.493us - BlockInitTime: 7.785ms - BlockLoadTime: 45.268ms - BlocksLoad: 92 - CachedPagesNum: 205 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 182 - FirstReadSeekTime: 599.391us - FirstReadTime: 27.229ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.328us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.27ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 3.986ms - OutputIndexResultColumnTimer: 16.399us - 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: 368.48us - TotalPagesNum: 205 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 479.836us PipelineXTask (index=2):(Active: 18.637ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.954ms - CloseTime: 129.707us - GetBlockTime: 7.421ms - OpenTime: 164.294us - PrepareTime: 378.839us - SinkTime: 10.280ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.464ms - WaitBfTime: 693.756ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 204.967ms DATA_STREAM_SINK_OPERATOR (id=344,dst_id=344): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 18 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 321.72 KB - CloseTime: 24.180us - CompressTime: 0ns - ExecTime: 10.362ms - InputRows: 58.318K (58318) - LocalBytesSent: 3.90 MB - LocalSendTime: 109.122us - LocalSentRows: 48.363K (48363) - MemoryUsage: - PeakMemoryUsage: 6.57 MB - MergeBlockTime: 0ns - OpenTime: 66.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s318ms - RowsProduced: 58.318K (58318) - RpcAvgTime: 2s435ms - RpcCount: 3 - RpcMaxTime: 7s307ms - RpcMinTime: 7s307ms - RpcSumTime: 7s307ms - SerializeBatchTime: 1.473ms - SplitBlockDistributeByChannelTime: 6.551ms - SplitBlockHashComputeTime: 1.553ms - UncompressedRowBatchSize: 838.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=343): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 23.265us - ExecTime: 7.234ms - InitProbeSideTime: 1.466ms - JoinFilterTimer: 2.556us - MemoryUsage: - PeakMemoryUsage: 312.00 KB - ProbeKeyArena: 312.00 KB - OpenTime: 27.822us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.426us - ProbeFindNextTime: 0ns - ProbeRows: 58.318K (58318) - ProbeTime: 6.308ms - ProbeWhenBuildSideOutputTime: 617.94us - ProbeWhenProbeSideOutputTime: 3.56ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 880.742us - ProjectionTime: 828.306us - 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.328us - BlocksProduced: 16 - CloseTime: 76.571us - ExecTime: 320.199ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 322.254us - ProcessConjunctTime: 43.46us - ProjectionTime: 53.727ms - RowsProduced: 58.318K (58318) - RowsRead: 344.73K (344730) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.708ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 265.837ms - 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: 286.412K (286412) - expr_input_rows: 344.73K (344730) 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: [180.701ms, ] - PerScannerRowsRead: [344.73K, ] - PerScannerWaitTime: [3.708ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 85.443ms - MemoryUsage: - FreeBlocks: 4.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.76ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.969us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.214ms - ScannerCtxSchedTime: 3.706ms - ScannerFilterTime: 91.515ms - ScannerGetBlockTime: 89.107ms - ScannerInitTime: 72.302us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 3.571us - BlockConditionsFilteredBloomFilterTime: 9.333us - BlockConditionsFilteredDictTime: 2.14us - BlockConditionsFilteredTime: 176.732us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 134.537us - BlockInitSeekCount: 25 - BlockInitSeekTime: 222.907us - BlockInitTime: 516.400us - BlockLoadTime: 90.349ms - BlocksLoad: 95 - CachedPagesNum: 189 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 184 - FirstReadSeekTime: 1.758ms - FirstReadTime: 10.661ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.522us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 35.968ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 41.313ms - OutputIndexResultColumnTimer: 36.290us - 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: 561.768us - TotalPagesNum: 189 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 681.193us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 569.733us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 396.412us - CloseTime: 16.675us - GetBlockTime: 8.260us - OpenTime: 1.803us - PrepareTime: 148.380us - SinkTime: 368.187us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 338.782us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.232ms HASH_JOIN_SINK_OPERATOR (id=343): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.108us - BuildRows: 149 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 249.536us - BuildTableInsertTime: 9.378us - BuildTableTime: 12.551us - CloseTime: 0ns - ExecTime: 403.719us - InputRows: 148 - MemoryUsage: - BuildBlocks: 7.48 KB - BuildKeyArena: 12.00 KB - HashTable: 1.59 KB - PeakMemoryUsage: 17.06 KB - OpenTime: 35.964us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.689us - RuntimeFilterComputeTime: 60.958us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=341): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 14.337us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 59.66us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 37.428us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 693.447ms PipelineXTask (index=3):(Active: 217.713us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 114.519us - CloseTime: 9.762us - GetBlockTime: 6.689us - OpenTime: 3.144us - PrepareTime: 84.637us - SinkTime: 87.645us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 200.174us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.588ms HASH_JOIN_SINK_OPERATOR (id=343): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 943ns - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.893us - BuildTableInsertTime: 8.187us - BuildTableTime: 9.565us - CloseTime: 0ns - ExecTime: 112.690us - InputRows: 139 - MemoryUsage: - BuildBlocks: 7.03 KB - BuildKeyArena: 12.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 16.57 KB - OpenTime: 25.201us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.364us - RuntimeFilterComputeTime: 37.931us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=341): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.929us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.200us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.25 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 12.25 KB - OpenTime: 20.781us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 693.486ms Fragment 20: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.387ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 634.224us - CloseTime: 140.496us - GetBlockTime: 46.956us - OpenTime: 273.168us - PrepareTime: 313.200us - SinkTime: 269.147us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.217ms - WaitBfTime: 690.14ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 427.301us DATA_STREAM_SINK_OPERATOR (id=341,dst_id=341): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 4 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.16 KB - CloseTime: 40.160us - CompressTime: 0ns - ExecTime: 362.903us - InputRows: 447 - LocalBytesSent: 14.51 KB - LocalSendTime: 39.228us - LocalSentRows: 287 - MemoryUsage: - PeakMemoryUsage: 36.75 KB - MergeBlockTime: 0ns - OpenTime: 54.530us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s662ms - RowsProduced: 447 - RpcAvgTime: 3s649ms - RpcCount: 1 - RpcMaxTime: 3s649ms - RpcMinTime: 3s649ms - RpcSumTime: 3s649ms - SerializeBatchTime: 37.420us - SplitBlockDistributeByChannelTime: 42.474us - SplitBlockHashComputeTime: 31.121us - UncompressedRowBatchSize: 8.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.608us - BlocksProduced: 1 - CloseTime: 95.360us - ExecTime: 3.474ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 406.666us - ProcessConjunctTime: 105.654us - ProjectionTime: 22.5us - RowsProduced: 447 - RowsRead: 447 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 393.188us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 2.902ms - 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: [1.394ms, ] - PerScannerRowsRead: [447, ] - PerScannerWaitTime: [393.188us, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.332ms - MemoryUsage: - FreeBlocks: 116.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 976.949us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 95ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 2.517ms - ScannerCtxSchedTime: 391.293us - ScannerFilterTime: 4.268us - ScannerGetBlockTime: 1.379ms - ScannerInitTime: 117.496us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 394ns - BlockConditionsFilteredBloomFilterTime: 2.467us - BlockConditionsFilteredDictTime: 350ns - BlockConditionsFilteredTime: 17.808us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.192us - BlockInitSeekCount: 8 - BlockInitSeekTime: 61.424us - BlockInitTime: 119.796us - BlockLoadTime: 2.127ms - BlocksLoad: 7 - CachedPagesNum: 11 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 295.815us - FirstReadSeekCount: 6 - FirstReadSeekTime: 8.864us - FirstReadTime: 67.202us - IOTimer: 0ns - InvertedIndexFilterTime: 1.583us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.482ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 38.512us - OutputIndexResultColumnTimer: 1.266us - 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: 1.186ms - ShortPredEvalTime: 370ns - TotalPagesNum: 11 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 35.416us Fragment 21: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.722ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.316ms - CloseTime: 72.649us - GetBlockTime: 466.489us - OpenTime: 10.557us - PrepareTime: 313.874us - SinkTime: 764.963us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.636ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.523ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 33.167us - CompressTime: 0ns - ExecTime: 987.387us - InputRows: 398 - LocalBytesSent: 98.78 KB - LocalSendTime: 159.963us - LocalSentRows: 398 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 190.666us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.339ms - RowsProduced: 398 - RpcAvgTime: 514.964us - RpcCount: 12 - RpcMaxTime: 744.93us - RpcMinTime: 306.996us - RpcSumTime: 6.179ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 99.653us - SplitBlockHashComputeTime: 16.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=338): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 32.160us - ExecTime: 513.877us - InitProbeSideTime: 61.926us - JoinFilterTimer: 145ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 55.449us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.842us - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 260.384us - ProbeWhenBuildSideOutputTime: 39.848us - ProbeWhenProbeSideOutputTime: 64.834us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 17.330us - ProjectionTime: 146.559us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 4.612us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.469us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 113.69 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 101.50 KB - OpenTime: 18.987us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=2):(Active: 1.823ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.485ms - CloseTime: 38.606us - GetBlockTime: 378.276us - OpenTime: 6.367us - PrepareTime: 284.940us - SinkTime: 1.54ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.770ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.773ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 38.04 KB - CloseTime: 19.629us - CompressTime: 0ns - ExecTime: 1.228ms - InputRows: 372 - LocalBytesSent: 0.00 - LocalSendTime: 168.199us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 155.911us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.71ms - RowsProduced: 372 - RpcAvgTime: 625.106us - RpcCount: 12 - RpcMaxTime: 807.132us - RpcMinTime: 472.968us - RpcSumTime: 7.501ms - SerializeBatchTime: 93.978us - SplitBlockDistributeByChannelTime: 74.616us - SplitBlockHashComputeTime: 19.943us - UncompressedRowBatchSize: 98.62 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 2 - BuildOutputBlock: 0ns - CloseTime: 13.676us - ExecTime: 409.99us - InitProbeSideTime: 24.767us - JoinFilterTimer: 118ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 48.84us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 923ns - ProbeFindNextTime: 0ns - ProbeRows: 372 - ProbeTime: 187.869us - ProbeWhenBuildSideOutputTime: 29.7us - ProbeWhenProbeSideOutputTime: 51.184us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.623us - ProjectionTime: 148.394us - RowsProduced: 372 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 3.554us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.589us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 104.31 KB - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 97.50 KB - OpenTime: 20.307us - ProjectionTime: 0ns - RowsProduced: 372 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=4):(Active: 2.92ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.761ms - CloseTime: 45.240us - GetBlockTime: 781.901us - OpenTime: 5.630us - PrepareTime: 272.960us - SinkTime: 901.504us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.30ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.551ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 37.03 KB - CloseTime: 13.180us - CompressTime: 0ns - ExecTime: 1.69ms - InputRows: 361 - LocalBytesSent: 0.00 - LocalSendTime: 129.630us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 129.03 KB - MergeBlockTime: 0ns - OpenTime: 157.953us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.249ms - RowsProduced: 361 - RpcAvgTime: 595.896us - RpcCount: 12 - RpcMaxTime: 815.241us - RpcMinTime: 441.840us - RpcSumTime: 7.150ms - SerializeBatchTime: 79.33us - SplitBlockDistributeByChannelTime: 158.77us - SplitBlockHashComputeTime: 26.479us - UncompressedRowBatchSize: 95.81 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 17.437us - ExecTime: 742.206us - InitProbeSideTime: 37.132us - JoinFilterTimer: 519ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 46.937us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.809us - ProbeFindNextTime: 0ns - ProbeRows: 361 - ProbeTime: 449.567us - ProbeWhenBuildSideOutputTime: 66.376us - ProbeWhenProbeSideOutputTime: 98.6us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.188us - ProjectionTime: 198.683us - RowsProduced: 361 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 16 - BytesReceived: 37.24 KB - CloseTime: 4.722us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 308.981us - ExecTime: 99.306us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 14.607us - ProjectionTime: 0ns - RowsProduced: 361 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s314ms PipelineXTask (index=6):(Active: 2.192ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.905ms - CloseTime: 52.945us - GetBlockTime: 722.786us - OpenTime: 8.896us - PrepareTime: 217.769us - SinkTime: 1.110ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.125ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.668ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.95 KB - CloseTime: 13.864us - CompressTime: 0ns - ExecTime: 1.239ms - InputRows: 392 - LocalBytesSent: 0.00 - LocalSendTime: 159.937us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 118.244us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.30ms - RowsProduced: 392 - RpcAvgTime: 590.23us - RpcCount: 12 - RpcMaxTime: 870.495us - RpcMinTime: 259.988us - RpcSumTime: 7.80ms - SerializeBatchTime: 84.660us - SplitBlockDistributeByChannelTime: 151.748us - SplitBlockHashComputeTime: 24.911us - UncompressedRowBatchSize: 103.93 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 21.628us - ExecTime: 672.929us - InitProbeSideTime: 38.171us - JoinFilterTimer: 440ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 25.519us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.687us - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 394.48us - ProbeWhenBuildSideOutputTime: 52.787us - ProbeWhenProbeSideOutputTime: 105.212us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.472us - ProjectionTime: 207.87us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 18 - BytesReceived: 40.83 KB - CloseTime: 15.23us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 289.692us - ExecTime: 98.822us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 99.94 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 16.747us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s314ms PipelineXTask (index=8):(Active: 2.342ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.108ms - CloseTime: 27.572us - GetBlockTime: 1.14ms - OpenTime: 7.290us - PrepareTime: 191.225us - SinkTime: 1.15ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.297ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.671ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.60us - CompressTime: 0ns - ExecTime: 1.128ms - InputRows: 378 - LocalBytesSent: 93.81 KB - LocalSendTime: 171.759us - LocalSentRows: 378 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 109.414us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.665ms - RowsProduced: 378 - RpcAvgTime: 647.680us - RpcCount: 12 - RpcMaxTime: 826.446us - RpcMinTime: 497.690us - RpcSumTime: 7.772ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 176.716us - SplitBlockHashComputeTime: 39.63us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 7 - BuildOutputBlock: 0ns - CloseTime: 16.316us - ExecTime: 951.411us - InitProbeSideTime: 68.787us - JoinFilterTimer: 702ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 22.123us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.273us - ProbeFindNextTime: 0ns - ProbeRows: 378 - ProbeTime: 589.19us - ProbeWhenBuildSideOutputTime: 71.976us - ProbeWhenProbeSideOutputTime: 156.0us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.495us - ProjectionTime: 291.942us - RowsProduced: 378 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 14 - BytesReceived: 39.02 KB - CloseTime: 1.936us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 255.834us - ExecTime: 95.611us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 22.470us - ProjectionTime: 0ns - RowsProduced: 378 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s314ms PipelineXTask (index=10):(Active: 2.393ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.118ms - CloseTime: 80.856us - GetBlockTime: 686.87us - OpenTime: 7.416us - PrepareTime: 180.148us - SinkTime: 1.366ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.299ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.113ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.42 KB - CloseTime: 18.663us - CompressTime: 0ns - ExecTime: 1.494ms - InputRows: 387 - LocalBytesSent: 0.00 - LocalSendTime: 234.585us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 112.620us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.624ms - RowsProduced: 387 - RpcAvgTime: 1.196ms - RpcCount: 12 - RpcMaxTime: 2.579ms - RpcMinTime: 60.841us - RpcSumTime: 14.360ms - SerializeBatchTime: 122.118us - SplitBlockDistributeByChannelTime: 179.959us - SplitBlockHashComputeTime: 28.678us - UncompressedRowBatchSize: 102.72 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 7 - BuildOutputBlock: 0ns - CloseTime: 37.503us - ExecTime: 660.507us - InitProbeSideTime: 48.588us - JoinFilterTimer: 461ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 20.802us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.293us - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 393.132us - ProbeWhenBuildSideOutputTime: 61.293us - ProbeWhenProbeSideOutputTime: 105.570us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.912us - ProjectionTime: 185.628us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 14 - BytesReceived: 40.21 KB - CloseTime: 21.36us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 364.697us - ExecTime: 94.496us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 13.553us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=12):(Active: 1.449ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.201ms - CloseTime: 53.942us - GetBlockTime: 343.942us - OpenTime: 6.857us - PrepareTime: 180.564us - SinkTime: 815.406us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.383ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.879ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.783us - CompressTime: 0ns - ExecTime: 922.686us - InputRows: 367 - LocalBytesSent: 90.86 KB - LocalSendTime: 197.335us - LocalSentRows: 367 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 100.868us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.750ms - RowsProduced: 367 - RpcAvgTime: 690.538us - RpcCount: 12 - RpcMaxTime: 919.185us - RpcMinTime: 509.680us - RpcSumTime: 8.286ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 92.827us - SplitBlockHashComputeTime: 22.240us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 2 - BuildOutputBlock: 0ns - CloseTime: 43.496us - ExecTime: 401.720us - InitProbeSideTime: 26.388us - JoinFilterTimer: 81ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 36.996us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 987ns - ProbeFindNextTime: 0ns - ProbeRows: 367 - ProbeTime: 219.206us - ProbeWhenBuildSideOutputTime: 48.483us - ProbeWhenProbeSideOutputTime: 60.230us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.82us - ProjectionTime: 94.258us - RowsProduced: 367 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 4 - BytesReceived: 31.65 KB - CloseTime: 1.396us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 143.807us - ExecTime: 27.437us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 12.22us - ProjectionTime: 0ns - RowsProduced: 367 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=14):(Active: 1.542ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.329ms - CloseTime: 33.466us - GetBlockTime: 476.918us - OpenTime: 11.7us - PrepareTime: 162.208us - SinkTime: 788.549us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.497ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.227ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.91 KB - CloseTime: 8.413us - CompressTime: 0ns - ExecTime: 892.551us - InputRows: 391 - LocalBytesSent: 0.00 - LocalSendTime: 125.922us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 97.545us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.885ms - RowsProduced: 391 - RpcAvgTime: 736.382us - RpcCount: 12 - RpcMaxTime: 876.85us - RpcMinTime: 572.769us - RpcSumTime: 8.836ms - SerializeBatchTime: 64.771us - SplitBlockDistributeByChannelTime: 150.872us - SplitBlockHashComputeTime: 26.796us - UncompressedRowBatchSize: 103.59 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 2 - BuildOutputBlock: 0ns - CloseTime: 21.555us - ExecTime: 492.797us - InitProbeSideTime: 52.992us - JoinFilterTimer: 122ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 22.547us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.326us - ProbeFindNextTime: 0ns - ProbeRows: 391 - ProbeTime: 260.642us - ProbeWhenBuildSideOutputTime: 50.395us - ProbeWhenProbeSideOutputTime: 69.888us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 18.679us - ProjectionTime: 175.264us - RowsProduced: 391 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 4 - BytesReceived: 33.65 KB - CloseTime: 2.308us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 136.14us - ExecTime: 31.504us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 12.388us - ProjectionTime: 0ns - RowsProduced: 391 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s317ms PipelineXTask (index=16):(Active: 1.913ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.611ms - CloseTime: 43.365us - GetBlockTime: 698.775us - OpenTime: 5.283us - PrepareTime: 246.537us - SinkTime: 856.354us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.858ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.769ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.324us - CompressTime: 0ns - ExecTime: 1.18ms - InputRows: 383 - LocalBytesSent: 95.11 KB - LocalSendTime: 146.620us - LocalSentRows: 383 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 157.281us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.197ms - RowsProduced: 383 - RpcAvgTime: 340.765us - RpcCount: 12 - RpcMaxTime: 617.893us - RpcMinTime: 15.372us - RpcSumTime: 4.89ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 161.587us - SplitBlockHashComputeTime: 20.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 HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 25.129us - ExecTime: 648.50us - InitProbeSideTime: 71.792us - JoinFilterTimer: 312ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 24.425us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.506us - ProbeFindNextTime: 0ns - ProbeRows: 383 - ProbeTime: 403.418us - ProbeWhenBuildSideOutputTime: 46.245us - ProbeWhenProbeSideOutputTime: 122.61us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.730us - ProjectionTime: 174.628us - RowsProduced: 383 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 14 - BytesReceived: 39.70 KB - CloseTime: 4.197us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 293.697us - ExecTime: 98.654us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 19.784us - ProjectionTime: 0ns - RowsProduced: 383 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s317ms PipelineXTask (index=18):(Active: 2.70ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.834ms - CloseTime: 48.250us - GetBlockTime: 741.553us - OpenTime: 5.263us - PrepareTime: 176.321us - SinkTime: 1.28ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.10ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.323ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.201us - CompressTime: 0ns - ExecTime: 1.142ms - InputRows: 393 - LocalBytesSent: 97.39 KB - LocalSendTime: 182.430us - LocalSentRows: 393 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 106.121us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.585ms - RowsProduced: 393 - RpcAvgTime: 863.368us - RpcCount: 12 - RpcMaxTime: 2.501ms - RpcMinTime: 100.985us - RpcSumTime: 10.360ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 136.914us - SplitBlockHashComputeTime: 23.671us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 7 - BuildOutputBlock: 0ns - CloseTime: 31.182us - ExecTime: 660.332us - InitProbeSideTime: 49.387us - JoinFilterTimer: 478ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 17.559us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.688us - ProbeFindNextTime: 0ns - ProbeRows: 393 - ProbeTime: 412.660us - ProbeWhenBuildSideOutputTime: 55.32us - ProbeWhenProbeSideOutputTime: 86.254us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 31.741us - ProjectionTime: 173.162us - RowsProduced: 393 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 14 - BytesReceived: 40.80 KB - CloseTime: 4.652us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 309.259us - ExecTime: 117.743us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.139us - ProjectionTime: 0ns - RowsProduced: 393 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s318ms PipelineXTask (index=20):(Active: 1.314ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.93ms - CloseTime: 43.984us - GetBlockTime: 367.936us - OpenTime: 8.464us - PrepareTime: 161.921us - SinkTime: 680.372us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.259ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.204ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.297us - CompressTime: 0ns - ExecTime: 784.791us - InputRows: 389 - LocalBytesSent: 96.54 KB - LocalSendTime: 129.80us - LocalSentRows: 389 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 88.170us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.239ms - RowsProduced: 389 - RpcAvgTime: 383.983us - RpcCount: 12 - RpcMaxTime: 602.90us - RpcMinTime: 86.4us - RpcSumTime: 4.607ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 87.482us - SplitBlockHashComputeTime: 13.705us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 2 - BuildOutputBlock: 0ns - CloseTime: 23.799us - ExecTime: 400.628us - InitProbeSideTime: 27.819us - JoinFilterTimer: 335ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 31.597us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 736ns - ProbeFindNextTime: 0ns - ProbeRows: 389 - ProbeTime: 204.243us - ProbeWhenBuildSideOutputTime: 36.39us - ProbeWhenProbeSideOutputTime: 62.244us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 22.588us - ProjectionTime: 125.176us - RowsProduced: 389 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 1.442us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.102us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 115.13 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 101.50 KB - OpenTime: 12.555us - ProjectionTime: 0ns - RowsProduced: 389 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s317ms PipelineXTask (index=22):(Active: 1.910ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.694ms - CloseTime: 32.523us - GetBlockTime: 573.423us - OpenTime: 10.55us - PrepareTime: 165.999us - SinkTime: 1.63ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.865ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.108ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.35 KB - CloseTime: 10.948us - CompressTime: 0ns - ExecTime: 1.170ms - InputRows: 385 - LocalBytesSent: 0.00 - LocalSendTime: 192.690us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 98.260us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.603ms - RowsProduced: 385 - RpcAvgTime: 749.417us - RpcCount: 12 - RpcMaxTime: 2.505ms - RpcMinTime: 34.384us - RpcSumTime: 8.993ms - SerializeBatchTime: 110.512us - SplitBlockDistributeByChannelTime: 112.136us - SplitBlockHashComputeTime: 20.481us - UncompressedRowBatchSize: 102.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 15.861us - ExecTime: 534.26us - InitProbeSideTime: 22.349us - JoinFilterTimer: 394ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 30.52us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.136us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 310.614us - ProbeWhenBuildSideOutputTime: 37.822us - ProbeWhenProbeSideOutputTime: 75.40us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 13.2us - ProjectionTime: 158.618us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 16 - BytesReceived: 41.39 KB - CloseTime: 3.308us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 370.230us - ExecTime: 69.530us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 110.25 KB - PeakMemoryUsage: 1.05 KB - OpenTime: 8.577us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s316ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 671.458us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 522.537us - CloseTime: 16.333us - GetBlockTime: 200.652us - OpenTime: 2.93us - PrepareTime: 123.17us - SinkTime: 241.33us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 635.499us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.308ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.75us - BuildRows: 74 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 109.230us - BuildTableInsertTime: 28.266us - BuildTableTime: 50.735us - CloseTime: 0ns - ExecTime: 273.652us - InputRows: 73 - MemoryUsage: - BuildBlocks: 5.28 KB - BuildKeyArena: 4.00 KB - HashTable: 812.00 B - PeakMemoryUsage: 6.06 KB - OpenTime: 37.733us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 36 - BytesReceived: 4.35 KB - CloseTime: 15.771us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 144.33us - ExecTime: 240.53us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.38 KB - MemoryUsage: - Blocks: 4.78 KB - PeakMemoryUsage: 3.75 KB - OpenTime: 32.170us - ProjectionTime: 0ns - RowsProduced: 73 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=3):(Active: 625.605us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 510.256us - CloseTime: 22.279us - GetBlockTime: 164.798us - OpenTime: 1.890us - PrepareTime: 84.188us - SinkTime: 226.980us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 580.822us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.328ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.662us - BuildRows: 67 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 127.710us - BuildTableInsertTime: 41.188us - BuildTableTime: 47.161us - CloseTime: 0ns - ExecTime: 238.533us - InputRows: 66 - MemoryUsage: - BuildBlocks: 4.77 KB - BuildKeyArena: 4.00 KB - HashTable: 784.00 B - PeakMemoryUsage: 5.53 KB - OpenTime: 15.382us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 34 - BytesReceived: 4.57 KB - CloseTime: 21.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 143.756us - ExecTime: 215.497us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.13 KB - MemoryUsage: - Blocks: 5.09 KB - PeakMemoryUsage: 3.68 KB - OpenTime: 36.721us - ProjectionTime: 0ns - RowsProduced: 66 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=5):(Active: 435.551us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 353.956us - CloseTime: 16.932us - GetBlockTime: 107.681us - OpenTime: 2.636us - PrepareTime: 48.38us - SinkTime: 174.847us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 395.210us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.250ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.323us - BuildRows: 73 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 90.367us - BuildTableInsertTime: 40.324us - BuildTableTime: 45.422us - CloseTime: 0ns - ExecTime: 178.799us - InputRows: 72 - MemoryUsage: - BuildBlocks: 5.20 KB - BuildKeyArena: 4.00 KB - HashTable: 808.00 B - PeakMemoryUsage: 5.98 KB - OpenTime: 7.480us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 4.42 KB - CloseTime: 3.754us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 135.149us - ExecTime: 123.638us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.66 KB - MemoryUsage: - Blocks: 5.00 KB - PeakMemoryUsage: 2.31 KB - OpenTime: 18.500us - ProjectionTime: 0ns - RowsProduced: 72 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=7):(Active: 474.662us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 406.816us - CloseTime: 5.381us - GetBlockTime: 127.274us - OpenTime: 4.523us - PrepareTime: 52.81us - SinkTime: 197.417us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 448.282us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.205ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.493us - BuildRows: 88 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 114.667us - BuildTableInsertTime: 27.462us - BuildTableTime: 34.716us - CloseTime: 0ns - ExecTime: 202.722us - InputRows: 87 - MemoryUsage: - BuildBlocks: 6.29 KB - BuildKeyArena: 4.00 KB - HashTable: 868.00 B - PeakMemoryUsage: 7.13 KB - OpenTime: 9.11us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 4.93 KB - CloseTime: 4.483us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 173.158us - ExecTime: 143.494us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.31 KB - MemoryUsage: - Blocks: 6.41 KB - PeakMemoryUsage: 6.75 KB - OpenTime: 21.63us - ProjectionTime: 0ns - RowsProduced: 87 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s516ms PipelineXTask (index=9):(Active: 534.692us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 475.821us - CloseTime: 7.476us - GetBlockTime: 166.771us - OpenTime: 2.543us - PrepareTime: 41.255us - SinkTime: 227.345us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 499.576us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.927ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.484us - BuildRows: 68 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 107.328us - BuildTableInsertTime: 62.188us - BuildTableTime: 71.619us - CloseTime: 0ns - ExecTime: 232.159us - InputRows: 67 - MemoryUsage: - BuildBlocks: 4.84 KB - BuildKeyArena: 4.00 KB - HashTable: 788.00 B - PeakMemoryUsage: 5.60 KB - OpenTime: 9.248us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 34 - BytesReceived: 3.78 KB - CloseTime: 5.704us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 132.499us - ExecTime: 177.848us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.28 KB - MemoryUsage: - Blocks: 4.50 KB - PeakMemoryUsage: 4.72 KB - OpenTime: 13.816us - ProjectionTime: 0ns - RowsProduced: 67 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=11):(Active: 519.235us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 425.603us - CloseTime: 18.949us - GetBlockTime: 157.44us - OpenTime: 3.40us - PrepareTime: 65.11us - SinkTime: 189.529us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 480.626us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.76ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.672us - BuildRows: 90 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 104.757us - BuildTableInsertTime: 20.399us - BuildTableTime: 30.664us - CloseTime: 0ns - ExecTime: 196.683us - InputRows: 89 - MemoryUsage: - BuildBlocks: 6.43 KB - BuildKeyArena: 4.00 KB - HashTable: 876.00 B - PeakMemoryUsage: 7.28 KB - OpenTime: 12.115us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 34 - BytesReceived: 4.94 KB - CloseTime: 17.196us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 106.274us - ExecTime: 185.650us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.78 KB - MemoryUsage: - Blocks: 6.41 KB - PeakMemoryUsage: 6.41 KB - OpenTime: 19.54us - ProjectionTime: 0ns - RowsProduced: 89 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s516ms PipelineXTask (index=13):(Active: 397.9us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 331.727us - CloseTime: 14.836us - GetBlockTime: 126.643us - OpenTime: 3.263us - PrepareTime: 40.897us - SinkTime: 141.394us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 365.671us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.569ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.537us - BuildRows: 66 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 81.856us - BuildTableInsertTime: 17.256us - BuildTableTime: 20.349us - CloseTime: 0ns - ExecTime: 147.844us - InputRows: 65 - MemoryUsage: - BuildBlocks: 4.70 KB - BuildKeyArena: 4.00 KB - HashTable: 780.00 B - PeakMemoryUsage: 5.45 KB - OpenTime: 9.696us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 4.21 KB - CloseTime: 14.236us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 137.594us - ExecTime: 145.538us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.13 KB - MemoryUsage: - Blocks: 6.91 KB - PeakMemoryUsage: 2.91 KB - OpenTime: 10.462us - ProjectionTime: 0ns - RowsProduced: 65 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms PipelineXTask (index=15):(Active: 478.18us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 418.364us - CloseTime: 9.654us - GetBlockTime: 187.584us - OpenTime: 3.360us - PrepareTime: 39.919us - SinkTime: 144.113us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 436.760us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.68ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.764us - BuildRows: 76 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 83.828us - BuildTableInsertTime: 21.515us - BuildTableTime: 27.65us - CloseTime: 0ns - ExecTime: 145.956us - InputRows: 75 - MemoryUsage: - BuildBlocks: 5.42 KB - BuildKeyArena: 4.00 KB - HashTable: 820.00 B - PeakMemoryUsage: 6.21 KB - OpenTime: 5.344us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 4.57 KB - CloseTime: 8.803us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 122.427us - ExecTime: 209.144us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.81 KB - MemoryUsage: - Blocks: 7.66 KB - PeakMemoryUsage: 6.69 KB - OpenTime: 19.201us - ProjectionTime: 0ns - RowsProduced: 75 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=17):(Active: 513.186us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 450.130us - CloseTime: 3.908us - GetBlockTime: 158.820us - OpenTime: 2.596us - PrepareTime: 50.267us - SinkTime: 195.407us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 476.93us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.35ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.532us - BuildRows: 78 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 110.230us - BuildTableInsertTime: 22.686us - BuildTableTime: 28.235us - CloseTime: 0ns - ExecTime: 199.175us - InputRows: 77 - MemoryUsage: - BuildBlocks: 5.56 KB - BuildKeyArena: 4.00 KB - HashTable: 828.00 B - PeakMemoryUsage: 6.37 KB - OpenTime: 8.267us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 4.28 KB - CloseTime: 3.323us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 132.894us - ExecTime: 176.534us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.41 KB - MemoryUsage: - Blocks: 6.66 KB - PeakMemoryUsage: 6.66 KB - OpenTime: 22.694us - ProjectionTime: 0ns - RowsProduced: 77 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s516ms PipelineXTask (index=19):(Active: 382.568us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 316.752us - CloseTime: 5.734us - GetBlockTime: 135.718us - OpenTime: 3.857us - PrepareTime: 51.126us - SinkTime: 126.314us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 364.766us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.906ms HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.450us - BuildRows: 79 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 63.950us - BuildTableInsertTime: 16.626us - BuildTableTime: 23.194us - CloseTime: 0ns - ExecTime: 129.244us - InputRows: 78 - MemoryUsage: - BuildBlocks: 5.64 KB - BuildKeyArena: 4.00 KB - HashTable: 832.00 B - PeakMemoryUsage: 6.44 KB - OpenTime: 5.782us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 34 - BytesReceived: 4.28 KB - CloseTime: 4.532us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 164.271us - ExecTime: 152.649us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.03 KB - MemoryUsage: - Blocks: 8.53 KB - PeakMemoryUsage: 7.12 KB - OpenTime: 17.167us - ProjectionTime: 0ns - RowsProduced: 78 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms PipelineXTask (index=21):(Active: 470.673us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 404.22us - CloseTime: 4.498us - GetBlockTime: 131.397us - OpenTime: 4.70us - PrepareTime: 52.906us - SinkTime: 204.999us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 451.124us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 942.700us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.562us - BuildRows: 77 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 89.967us - BuildTableInsertTime: 48.994us - BuildTableTime: 59.453us - CloseTime: 0ns - ExecTime: 217.251us - InputRows: 76 - MemoryUsage: - BuildBlocks: 5.49 KB - BuildKeyArena: 4.00 KB - HashTable: 824.00 B - PeakMemoryUsage: 6.29 KB - OpenTime: 16.123us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 4.42 KB - CloseTime: 3.391us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 167.565us - ExecTime: 138.621us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.00 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 6.09 KB - OpenTime: 11.993us - ProjectionTime: 0ns - RowsProduced: 76 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s516ms PipelineXTask (index=23):(Active: 436.666us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 378.483us - CloseTime: 4.192us - GetBlockTime: 165.477us - OpenTime: 2.717us - PrepareTime: 45.704us - SinkTime: 148.369us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 419.6us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 926.986us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.113us - BuildRows: 74 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 86.984us - BuildTableInsertTime: 16.341us - BuildTableTime: 22.68us - CloseTime: 0ns - ExecTime: 155.225us - InputRows: 73 - MemoryUsage: - BuildBlocks: 5.28 KB - BuildKeyArena: 4.00 KB - HashTable: 812.00 B - PeakMemoryUsage: 6.06 KB - OpenTime: 10.312us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 36 - BytesReceived: 3.56 KB - CloseTime: 3.353us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 169.668us - ExecTime: 177.687us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.72 KB - MemoryUsage: - Blocks: 7.34 KB - PeakMemoryUsage: 7.34 KB - OpenTime: 14.638us - ProjectionTime: 0ns - RowsProduced: 73 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s516ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.41ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.780ms - CloseTime: 29.963us - GetBlockTime: 774.844us - OpenTime: 9.935us - PrepareTime: 214.995us - SinkTime: 930.333us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.999ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 412.619us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.20us - CompressTime: 0ns - ExecTime: 1.70ms - InputRows: 385 - LocalBytesSent: 95.46 KB - LocalSendTime: 183.624us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 131.474us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.208ms - RowsProduced: 385 - RpcAvgTime: 2.421ms - RpcCount: 12 - RpcMaxTime: 2.677ms - RpcMinTime: 2.28ms - RpcSumTime: 29.59ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 134.820us - SplitBlockHashComputeTime: 30.742us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 7 - BuildOutputBlock: 0ns - CloseTime: 11.97us - ExecTime: 714.49us - InitProbeSideTime: 33.76us - JoinFilterTimer: 522ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 29.581us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.676us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 432.278us - ProbeWhenBuildSideOutputTime: 55.50us - ProbeWhenProbeSideOutputTime: 92.553us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.495us - ProjectionTime: 213.964us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 4.616us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.800us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 125.63 KB - MemoryUsage: - Blocks: 111.88 KB - PeakMemoryUsage: 111.88 KB - OpenTime: 14.160us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s313ms PipelineXTask (index=2):(Active: 1.752ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.514ms - CloseTime: 28.517us - GetBlockTime: 657.789us - OpenTime: 7.947us - PrepareTime: 197.388us - SinkTime: 789.793us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.713ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 839.399us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.958us - CompressTime: 0ns - ExecTime: 897.429us - InputRows: 385 - LocalBytesSent: 95.54 KB - LocalSendTime: 128.391us - LocalSentRows: 385 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 96.592us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.348ms - RowsProduced: 385 - RpcAvgTime: 2.354ms - RpcCount: 12 - RpcMaxTime: 2.691ms - RpcMinTime: 1.988ms - RpcSumTime: 28.249ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 124.691us - SplitBlockHashComputeTime: 28.648us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 7 - BuildOutputBlock: 0ns - CloseTime: 11.736us - ExecTime: 609.205us - InitProbeSideTime: 28.857us - JoinFilterTimer: 613ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 21.623us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.360us - ProbeFindNextTime: 0ns - ProbeRows: 385 - ProbeTime: 361.713us - ProbeWhenBuildSideOutputTime: 50.366us - ProbeWhenProbeSideOutputTime: 76.694us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 17.834us - ProjectionTime: 191.355us - RowsProduced: 385 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 1.645us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.775us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 124.63 KB - MemoryUsage: - Blocks: 117.44 KB - PeakMemoryUsage: 119.53 KB - OpenTime: 15.754us - ProjectionTime: 0ns - RowsProduced: 385 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s313ms PipelineXTask (index=4):(Active: 1.821ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.567ms - CloseTime: 80.27us - GetBlockTime: 625.881us - OpenTime: 7.378us - PrepareTime: 161.312us - SinkTime: 884.743us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.729ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 787.490us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 38.29 KB - CloseTime: 11.254us - CompressTime: 0ns - ExecTime: 983.201us - InputRows: 376 - LocalBytesSent: 0.00 - LocalSendTime: 153.861us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 90.11us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.29ms - RowsProduced: 376 - RpcAvgTime: 2.552ms - RpcCount: 12 - RpcMaxTime: 2.698ms - RpcMinTime: 2.373ms - RpcSumTime: 30.628ms - SerializeBatchTime: 79.574us - SplitBlockDistributeByChannelTime: 116.987us - SplitBlockHashComputeTime: 23.515us - UncompressedRowBatchSize: 99.69 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 7 - BuildOutputBlock: 0ns - CloseTime: 62.167us - ExecTime: 625.147us - InitProbeSideTime: 28.454us - JoinFilterTimer: 376ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 24.905us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.251us - ProbeFindNextTime: 0ns - ProbeRows: 376 - ProbeTime: 344.837us - ProbeWhenBuildSideOutputTime: 50.308us - ProbeWhenProbeSideOutputTime: 72.763us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.710us - ProjectionTime: 169.637us - RowsProduced: 376 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 3.987us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.619us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 125.31 KB - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 100.64 KB - OpenTime: 15.201us - ProjectionTime: 0ns - RowsProduced: 376 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s313ms PipelineXTask (index=6):(Active: 2.217ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.935ms - CloseTime: 103.536us - GetBlockTime: 740.443us - OpenTime: 7.537us - PrepareTime: 166.837us - SinkTime: 1.116ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.103ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.331ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 29.40us - CompressTime: 0ns - ExecTime: 1.227ms - InputRows: 380 - LocalBytesSent: 94.20 KB - LocalSendTime: 231.494us - LocalSentRows: 380 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 85.548us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.685ms - RowsProduced: 380 - RpcAvgTime: 2.412ms - RpcCount: 12 - RpcMaxTime: 2.680ms - RpcMinTime: 2.31ms - RpcSumTime: 28.952ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 113.220us - SplitBlockHashComputeTime: 27.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 HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 61.582us - ExecTime: 750.929us - InitProbeSideTime: 49.425us - JoinFilterTimer: 595ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 30.59us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.939us - ProbeFindNextTime: 0ns - ProbeRows: 380 - ProbeTime: 427.369us - ProbeWhenBuildSideOutputTime: 40.982us - ProbeWhenProbeSideOutputTime: 107.404us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.635us - ProjectionTime: 204.142us - RowsProduced: 380 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 8.816us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.962us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 123.31 KB - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 100.64 KB - OpenTime: 12.906us - ProjectionTime: 0ns - RowsProduced: 380 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s313ms PipelineXTask (index=8):(Active: 1.714ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.479ms - CloseTime: 40.853us - GetBlockTime: 375.563us - OpenTime: 7.229us - PrepareTime: 182.912us - SinkTime: 1.60ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.664ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.151ms DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.42 KB - CloseTime: 14.389us - CompressTime: 0ns - ExecTime: 1.167ms - InputRows: 387 - LocalBytesSent: 0.00 - LocalSendTime: 185.812us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 94.336us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.637ms - RowsProduced: 387 - RpcAvgTime: 2.611ms - RpcCount: 12 - RpcMaxTime: 2.892ms - RpcMinTime: 2.227ms - RpcSumTime: 31.340ms - SerializeBatchTime: 82.137us - SplitBlockDistributeByChannelTime: 82.629us - SplitBlockHashComputeTime: 17.602us - UncompressedRowBatchSize: 102.69 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 2 - BuildOutputBlock: 0ns - CloseTime: 20.687us - ExecTime: 392.416us - InitProbeSideTime: 30.627us - JoinFilterTimer: 223ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 19.568us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.287us - ProbeFindNextTime: 0ns - ProbeRows: 387 - ProbeTime: 223.645us - ProbeWhenBuildSideOutputTime: 47.587us - ProbeWhenProbeSideOutputTime: 52.931us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.440us - ProjectionTime: 116.644us - RowsProduced: 387 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 3.725us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.513us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 108.69 KB - MemoryUsage: - Blocks: 108.69 KB - PeakMemoryUsage: 114.96 KB - OpenTime: 26.511us - ProjectionTime: 0ns - RowsProduced: 387 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s314ms PipelineXTask (index=10):(Active: 3.932ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.662ms - CloseTime: 86.275us - GetBlockTime: 765.916us - OpenTime: 6.225us - PrepareTime: 172.736us - SinkTime: 2.825ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.834ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 161.547us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 40.54 KB - CloseTime: 18.162us - CompressTime: 0ns - ExecTime: 2.943ms - InputRows: 398 - LocalBytesSent: 0.00 - LocalSendTime: 386.533us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 102.395us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.867ms - RowsProduced: 398 - RpcAvgTime: 3.344ms - RpcCount: 12 - RpcMaxTime: 4.244ms - RpcMinTime: 2.625ms - RpcSumTime: 40.136ms - SerializeBatchTime: 203.372us - SplitBlockDistributeByChannelTime: 186.379us - SplitBlockHashComputeTime: 36.176us - UncompressedRowBatchSize: 105.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 2 - BuildOutputBlock: 0ns - CloseTime: 33.108us - ExecTime: 764.658us - InitProbeSideTime: 38.92us - JoinFilterTimer: 210ns - MemoryUsage: - PeakMemoryUsage: 16.00 KB - ProbeKeyArena: 16.00 KB - OpenTime: 28.450us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.559us - ProbeFindNextTime: 0ns - ProbeRows: 398 - ProbeTime: 485.40us - ProbeWhenBuildSideOutputTime: 46.995us - ProbeWhenProbeSideOutputTime: 136.410us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 21.314us - ProjectionTime: 201.730us - RowsProduced: 398 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 7.305us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.210us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 108.69 KB - MemoryUsage: - Blocks: 101.50 KB - PeakMemoryUsage: 106.73 KB - OpenTime: 9.644us - ProjectionTime: 0ns - RowsProduced: 398 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=12):(Active: 2.596ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.317ms - CloseTime: 72.353us - GetBlockTime: 941.83us - OpenTime: 4.472us - PrepareTime: 197.758us - SinkTime: 1.281ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.507ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 799.751us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 30.774us - CompressTime: 0ns - ExecTime: 1.419ms - InputRows: 377 - LocalBytesSent: 93.39 KB - LocalSendTime: 227.480us - LocalSentRows: 377 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 111.689us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.531ms - RowsProduced: 377 - RpcAvgTime: 2.578ms - RpcCount: 12 - RpcMaxTime: 2.799ms - RpcMinTime: 2.217ms - RpcSumTime: 30.940ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 184.578us - SplitBlockHashComputeTime: 52.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 HASH_JOIN_OPERATOR (id=338): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 27.700us - ExecTime: 850.232us - InitProbeSideTime: 60.904us - JoinFilterTimer: 630ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 18.994us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.558us - ProbeFindNextTime: 0ns - ProbeRows: 377 - ProbeTime: 512.829us - ProbeWhenBuildSideOutputTime: 57.803us - ProbeWhenProbeSideOutputTime: 123.789us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.553us - ProjectionTime: 258.580us - RowsProduced: 377 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 8.778us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 129.313us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 124.56 KB - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 99.59 KB - OpenTime: 17.666us - ProjectionTime: 0ns - RowsProduced: 377 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s314ms PipelineXTask (index=14):(Active: 1.727ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.489ms - CloseTime: 43.163us - GetBlockTime: 639.393us - OpenTime: 4.581us - PrepareTime: 186.62us - SinkTime: 782.315us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 543.219us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.90 KB - CloseTime: 16.96us - CompressTime: 0ns - ExecTime: 886.733us - InputRows: 392 - LocalBytesSent: 0.00 - LocalSendTime: 127.841us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 91.769us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.983ms - RowsProduced: 392 - RpcAvgTime: 2.540ms - RpcCount: 12 - RpcMaxTime: 2.829ms - RpcMinTime: 1.979ms - RpcSumTime: 30.483ms - SerializeBatchTime: 74.50us - SplitBlockDistributeByChannelTime: 104.528us - SplitBlockHashComputeTime: 25.205us - UncompressedRowBatchSize: 104.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 21.276us - ExecTime: 598.129us - InitProbeSideTime: 26.985us - JoinFilterTimer: 446ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 24.266us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.917us - ProbeFindNextTime: 0ns - ProbeRows: 392 - ProbeTime: 342.120us - ProbeWhenBuildSideOutputTime: 47.414us - ProbeWhenProbeSideOutputTime: 76.138us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.930us - ProjectionTime: 184.315us - RowsProduced: 392 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 3.486us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 91.379us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 128.25 KB - MemoryUsage: - Blocks: 104.00 KB - PeakMemoryUsage: 105.05 KB - OpenTime: 24.640us - ProjectionTime: 0ns - RowsProduced: 392 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=16):(Active: 1.535ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.314ms - CloseTime: 48.690us - GetBlockTime: 435.433us - OpenTime: 5.591us - PrepareTime: 161.773us - SinkTime: 844.67us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.478ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.18us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.156us - CompressTime: 0ns - ExecTime: 951.373us - InputRows: 388 - LocalBytesSent: 96.13 KB - LocalSendTime: 162.743us - LocalSentRows: 388 - MemoryUsage: - PeakMemoryUsage: 137.03 KB - MergeBlockTime: 0ns - OpenTime: 94.617us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.837ms - RowsProduced: 388 - RpcAvgTime: 3.648ms - RpcCount: 12 - RpcMaxTime: 4.241ms - RpcMinTime: 2.597ms - RpcSumTime: 43.779ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 103.856us - SplitBlockHashComputeTime: 19.819us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 2 - BuildOutputBlock: 0ns - CloseTime: 26.472us - ExecTime: 448.226us - InitProbeSideTime: 47.75us - JoinFilterTimer: 298ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 18.136us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.190us - ProbeFindNextTime: 0ns - ProbeRows: 388 - ProbeTime: 243.949us - ProbeWhenBuildSideOutputTime: 41.822us - ProbeWhenProbeSideOutputTime: 64.243us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.111us - ProjectionTime: 146.653us - RowsProduced: 388 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 4 - BytesReceived: 33.43 KB - CloseTime: 5.613us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 141.773us - ExecTime: 41.605us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 9.41 KB - OpenTime: 11.986us - ProjectionTime: 0ns - RowsProduced: 388 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s316ms PipelineXTask (index=18):(Active: 2.448ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.205ms - CloseTime: 51.680us - GetBlockTime: 928.907us - OpenTime: 6.259us - PrepareTime: 180.722us - SinkTime: 1.198ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.382ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 641.801us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.21 KB - CloseTime: 14.453us - CompressTime: 0ns - ExecTime: 1.306ms - InputRows: 384 - LocalBytesSent: 0.00 - LocalSendTime: 182.591us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 98.433us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.64ms - RowsProduced: 384 - RpcAvgTime: 2.900ms - RpcCount: 12 - RpcMaxTime: 4.245ms - RpcMinTime: 2.424ms - RpcSumTime: 34.800ms - SerializeBatchTime: 99.471us - SplitBlockDistributeByChannelTime: 140.739us - SplitBlockHashComputeTime: 31.537us - UncompressedRowBatchSize: 101.83 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 30.423us - ExecTime: 877.782us - InitProbeSideTime: 67.150us - JoinFilterTimer: 542ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 32.226us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.25us - ProbeFindNextTime: 0ns - ProbeRows: 384 - ProbeTime: 545.910us - ProbeWhenBuildSideOutputTime: 66.259us - ProbeWhenProbeSideOutputTime: 126.551us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 18.540us - ProjectionTime: 235.934us - RowsProduced: 384 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.620us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 101.295us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 122.81 KB - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 99.59 KB - OpenTime: 15.569us - ProjectionTime: 0ns - RowsProduced: 384 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=20):(Active: 1.744ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.520ms - CloseTime: 43.185us - GetBlockTime: 770.30us - OpenTime: 6.573us - PrepareTime: 168.16us - SinkTime: 676.538us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.689ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 586.633us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.862us - CompressTime: 0ns - ExecTime: 777.765us - InputRows: 370 - LocalBytesSent: 91.82 KB - LocalSendTime: 126.8us - LocalSentRows: 370 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 92.142us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.541ms - RowsProduced: 370 - RpcAvgTime: 2.624ms - RpcCount: 12 - RpcMaxTime: 2.729ms - RpcMinTime: 2.409ms - RpcSumTime: 31.493ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 118.885us - SplitBlockHashComputeTime: 31.146us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 23.31us - ExecTime: 697.748us - InitProbeSideTime: 36.600us - JoinFilterTimer: 542ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 26.197us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.598us - ProbeFindNextTime: 0ns - ProbeRows: 370 - ProbeTime: 405.458us - ProbeWhenBuildSideOutputTime: 48.997us - ProbeWhenProbeSideOutputTime: 78.357us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 15.500us - ProjectionTime: 213.271us - RowsProduced: 370 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.430us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 92.173us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 120.94 KB - MemoryUsage: - Blocks: 97.50 KB - PeakMemoryUsage: 99.59 KB - OpenTime: 9.360us - ProjectionTime: 0ns - RowsProduced: 370 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms PipelineXTask (index=22):(Active: 2.13ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.786ms - CloseTime: 34.259us - GetBlockTime: 694.337us - OpenTime: 7.374us - PrepareTime: 181.614us - SinkTime: 1.16ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.966ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 608.55us DATA_STREAM_SINK_OPERATOR (id=339,dst_id=339): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.05 KB - CloseTime: 12.408us - CompressTime: 0ns - ExecTime: 1.119ms - InputRows: 382 - LocalBytesSent: 0.00 - LocalSendTime: 146.680us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 133.03 KB - MergeBlockTime: 0ns - OpenTime: 105.886us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.450ms - RowsProduced: 382 - RpcAvgTime: 2.697ms - RpcCount: 12 - RpcMaxTime: 2.860ms - RpcMinTime: 2.468ms - RpcSumTime: 32.365ms - SerializeBatchTime: 90.560us - SplitBlockDistributeByChannelTime: 111.616us - SplitBlockHashComputeTime: 33.38us - UncompressedRowBatchSize: 101.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 14.554us - ExecTime: 644.309us - InitProbeSideTime: 27.880us - JoinFilterTimer: 561ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 32.762us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.416us - ProbeFindNextTime: 0ns - ProbeRows: 382 - ProbeTime: 383.774us - ProbeWhenBuildSideOutputTime: 41.404us - ProbeWhenProbeSideOutputTime: 79.264us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.376us - ProjectionTime: 186.79us - RowsProduced: 382 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=337): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.622us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.646us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 127.44 KB - MemoryUsage: - Blocks: 112.19 KB - PeakMemoryUsage: 113.23 KB - OpenTime: 13.649us - ProjectionTime: 0ns - RowsProduced: 382 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s315ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 527.513us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 393.254us - CloseTime: 86.51us - GetBlockTime: 108.708us - OpenTime: 2.238us - PrepareTime: 41.676us - SinkTime: 212.707us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 425.384us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 548.286us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.792us - BuildRows: 87 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 66.984us - BuildTableInsertTime: 44.315us - BuildTableTime: 55.400us - CloseTime: 0ns - ExecTime: 218.993us - InputRows: 86 - MemoryUsage: - BuildBlocks: 6.21 KB - BuildKeyArena: 4.00 KB - HashTable: 864.00 B - PeakMemoryUsage: 7.05 KB - OpenTime: 9.973us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 4.35 KB - CloseTime: 83.783us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 167.876us - ExecTime: 197.226us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.44 KB - MemoryUsage: - Blocks: 3.88 KB - PeakMemoryUsage: 1.94 KB - OpenTime: 12.55us - ProjectionTime: 0ns - RowsProduced: 86 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=3):(Active: 381.496us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 311.706us - CloseTime: 6.375us - GetBlockTime: 95.900us - OpenTime: 1.260us - PrepareTime: 57.769us - SinkTime: 144.542us - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 356.215us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 576.414us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.307us - BuildRows: 79 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 67.985us - BuildTableInsertTime: 18.254us - BuildTableTime: 25.557us - CloseTime: 0ns - ExecTime: 146.835us - InputRows: 78 - MemoryUsage: - BuildBlocks: 5.64 KB - BuildKeyArena: 4.00 KB - HashTable: 832.00 B - PeakMemoryUsage: 6.44 KB - OpenTime: 5.888us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 31 - BytesReceived: 4.08 KB - CloseTime: 4.760us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 135.749us - ExecTime: 125.259us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.88 KB - MemoryUsage: - Blocks: 4.50 KB - PeakMemoryUsage: 2.63 KB - OpenTime: 30.993us - ProjectionTime: 0ns - RowsProduced: 78 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=5):(Active: 379.351us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 307.937us - CloseTime: 7.606us - GetBlockTime: 118.894us - OpenTime: 2.948us - PrepareTime: 55.899us - SinkTime: 126.112us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 353.895us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 495.586us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.906us - BuildRows: 91 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 58.25us - BuildTableInsertTime: 13.645us - BuildTableTime: 21.985us - CloseTime: 0ns - ExecTime: 146.691us - InputRows: 90 - MemoryUsage: - BuildBlocks: 6.50 KB - BuildKeyArena: 4.00 KB - HashTable: 880.00 B - PeakMemoryUsage: 7.36 KB - OpenTime: 24.341us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 36 - BytesReceived: 5.07 KB - CloseTime: 5.994us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 150.652us - ExecTime: 128.479us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.91 KB - MemoryUsage: - Blocks: 2.75 KB - PeakMemoryUsage: 896.00 B - OpenTime: 9.352us - ProjectionTime: 0ns - RowsProduced: 90 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=7):(Active: 467.291us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 397.431us - CloseTime: 17.813us - GetBlockTime: 118.935us - OpenTime: 1.926us - PrepareTime: 45.304us - SinkTime: 207.916us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 430.542us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 427.363us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.480us - BuildRows: 79 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 99.339us - BuildTableInsertTime: 21.473us - BuildTableTime: 30.897us - CloseTime: 0ns - ExecTime: 209.176us - InputRows: 78 - MemoryUsage: - BuildBlocks: 5.64 KB - BuildKeyArena: 4.00 KB - HashTable: 832.00 B - PeakMemoryUsage: 6.44 KB - OpenTime: 5.724us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 32 - BytesReceived: 4.16 KB - CloseTime: 15.976us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 141.93us - ExecTime: 142.965us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.06 KB - MemoryUsage: - Blocks: 2.31 KB - PeakMemoryUsage: 1.06 KB - OpenTime: 14.729us - ProjectionTime: 0ns - RowsProduced: 78 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=9):(Active: 437.422us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 375.115us - CloseTime: 12.421us - GetBlockTime: 126.896us - OpenTime: 1.957us - PrepareTime: 42.631us - SinkTime: 159.77us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 403.836us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 501.79us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.314us - BuildRows: 82 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 100.33us - BuildTableInsertTime: 13.468us - BuildTableTime: 18.913us - CloseTime: 0ns - ExecTime: 168.29us - InputRows: 81 - MemoryUsage: - BuildBlocks: 5.85 KB - BuildKeyArena: 4.00 KB - HashTable: 844.00 B - PeakMemoryUsage: 6.67 KB - OpenTime: 13.550us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 34 - BytesReceived: 4.15 KB - CloseTime: 11.503us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 132.719us - ExecTime: 126.833us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.91 KB - MemoryUsage: - Blocks: 2.78 KB - PeakMemoryUsage: 1.09 KB - OpenTime: 12.225us - ProjectionTime: 0ns - RowsProduced: 81 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms PipelineXTask (index=11):(Active: 417.777us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 357.842us - CloseTime: 4.217us - GetBlockTime: 124.994us - OpenTime: 1.165us - PrepareTime: 50.728us - SinkTime: 162.706us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 396.279us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 830.853us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.928us - BuildRows: 80 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 76.296us - BuildTableInsertTime: 33.439us - BuildTableTime: 37.948us - CloseTime: 0ns - ExecTime: 163.121us - InputRows: 79 - MemoryUsage: - BuildBlocks: 5.71 KB - BuildKeyArena: 4.00 KB - HashTable: 836.00 B - PeakMemoryUsage: 6.52 KB - OpenTime: 5.390us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 36 - BytesReceived: 4.57 KB - CloseTime: 3.369us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 145.789us - ExecTime: 134.405us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.59 KB - MemoryUsage: - Blocks: 6.16 KB - PeakMemoryUsage: 4.16 KB - OpenTime: 13.624us - ProjectionTime: 0ns - RowsProduced: 79 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=13):(Active: 350.629us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 296.226us - CloseTime: 8.256us - GetBlockTime: 96.545us - OpenTime: 1.292us - PrepareTime: 40.927us - SinkTime: 137.833us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 326.218us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 604.419us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.88us - BuildRows: 71 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.263us - BuildTableInsertTime: 28.346us - BuildTableTime: 34.217us - CloseTime: 0ns - ExecTime: 140.241us - InputRows: 70 - MemoryUsage: - BuildBlocks: 5.06 KB - BuildKeyArena: 4.00 KB - HashTable: 800.00 B - PeakMemoryUsage: 5.83 KB - OpenTime: 5.869us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 30 - BytesReceived: 3.79 KB - CloseTime: 6.856us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 102.392us - ExecTime: 109.841us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.56 KB - MemoryUsage: - Blocks: 5.88 KB - PeakMemoryUsage: 5.46 KB - OpenTime: 16.197us - ProjectionTime: 0ns - RowsProduced: 70 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s514ms PipelineXTask (index=15):(Active: 410.273us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 342.410us - CloseTime: 17.571us - GetBlockTime: 139.54us - OpenTime: 1.770us - PrepareTime: 44.540us - SinkTime: 145.176us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 377.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 430.545us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.21us - BuildRows: 85 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.554us - BuildTableInsertTime: 20.57us - BuildTableTime: 25.661us - CloseTime: 0ns - ExecTime: 141.498us - InputRows: 84 - MemoryUsage: - BuildBlocks: 6.07 KB - BuildKeyArena: 4.00 KB - HashTable: 856.00 B - PeakMemoryUsage: 6.90 KB - OpenTime: 10.813us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 35 - BytesReceived: 5.29 KB - CloseTime: 16.488us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 129.596us - ExecTime: 166.63us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.66 KB - MemoryUsage: - Blocks: 6.63 KB - PeakMemoryUsage: 5.88 KB - OpenTime: 20.238us - ProjectionTime: 0ns - RowsProduced: 84 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms PipelineXTask (index=17):(Active: 463.858us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 410.600us - CloseTime: 8.683us - GetBlockTime: 160.701us - OpenTime: 1.704us - PrepareTime: 37.992us - SinkTime: 163.689us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 432.649us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 390.796us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.711us - BuildRows: 77 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 85.620us - BuildTableInsertTime: 24.562us - BuildTableTime: 33.690us - CloseTime: 0ns - ExecTime: 165.209us - InputRows: 76 - MemoryUsage: - BuildBlocks: 5.49 KB - BuildKeyArena: 4.00 KB - HashTable: 824.00 B - PeakMemoryUsage: 6.29 KB - OpenTime: 5.871us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 36 - BytesReceived: 4.93 KB - CloseTime: 6.891us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 163.789us - ExecTime: 172.489us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.00 KB - MemoryUsage: - Blocks: 4.66 KB - PeakMemoryUsage: 1.50 KB - OpenTime: 12.449us - ProjectionTime: 0ns - RowsProduced: 76 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms PipelineXTask (index=19):(Active: 413.847us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 347.656us - CloseTime: 6.847us - GetBlockTime: 110.944us - OpenTime: 1.89us - PrepareTime: 54.337us - SinkTime: 160.695us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 384.988us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 448.231us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.680us - BuildRows: 80 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 79.870us - BuildTableInsertTime: 34.206us - BuildTableTime: 43.486us - CloseTime: 0ns - ExecTime: 171.304us - InputRows: 79 - MemoryUsage: - BuildBlocks: 5.71 KB - BuildKeyArena: 4.00 KB - HashTable: 836.00 B - PeakMemoryUsage: 6.52 KB - OpenTime: 14.642us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 32 - BytesReceived: 4.30 KB - CloseTime: 5.278us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 142.395us - ExecTime: 125.715us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.28 KB - MemoryUsage: - Blocks: 4.56 KB - PeakMemoryUsage: 3.44 KB - OpenTime: 16.584us - ProjectionTime: 0ns - RowsProduced: 79 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms PipelineXTask (index=21):(Active: 609.559us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 560.207us - CloseTime: 5.667us - GetBlockTime: 367.378us - OpenTime: 1.985us - PrepareTime: 37.879us - SinkTime: 118.104us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 362.634us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 318.912us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.608us - BuildRows: 67 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.143us - BuildTableInsertTime: 9.866us - BuildTableTime: 14.519us - CloseTime: 0ns - ExecTime: 123.325us - InputRows: 66 - MemoryUsage: - BuildBlocks: 4.77 KB - BuildKeyArena: 4.00 KB - HashTable: 784.00 B - PeakMemoryUsage: 5.53 KB - OpenTime: 8.726us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 34 - BytesReceived: 3.71 KB - CloseTime: 4.729us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 176.428us - ExecTime: 374.354us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.56 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 2.75 KB - OpenTime: 9.632us - ProjectionTime: 0ns - RowsProduced: 66 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms PipelineXTask (index=23):(Active: 402.540us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 353.343us - CloseTime: 4.96us - GetBlockTime: 146.553us - OpenTime: 1.453us - PrepareTime: 39.49us - SinkTime: 146.128us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 325.941us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 526.82us HASH_JOIN_SINK_OPERATOR (id=338): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.40us - BuildRows: 80 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 73.121us - BuildTableInsertTime: 15.825us - BuildTableTime: 21.490us - CloseTime: 0ns - ExecTime: 150.366us - InputRows: 79 - MemoryUsage: - BuildBlocks: 5.71 KB - BuildKeyArena: 4.00 KB - HashTable: 836.00 B - PeakMemoryUsage: 6.52 KB - OpenTime: 7.910us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=194): - BlocksProduced: 34 - BytesReceived: 4.43 KB - CloseTime: 3.151us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 146.222us - ExecTime: 156.185us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.78 KB - MemoryUsage: - Blocks: 2.63 KB - PeakMemoryUsage: 2.38 KB - OpenTime: 13.431us - ProjectionTime: 0ns - RowsProduced: 79 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s515ms Fragment 22: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.106ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.824ms - CloseTime: 64.769us - GetBlockTime: 1.85ms - OpenTime: 20.237us - PrepareTime: 184.95us - SinkTime: 1.601ms - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.15ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.551ms DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.23 KB - CloseTime: 15.179us - CompressTime: 0ns - ExecTime: 1.717ms - InputRows: 153 - LocalBytesSent: 19.70 KB - LocalSendTime: 236.559us - LocalSentRows: 102 - MemoryUsage: - PeakMemoryUsage: 50.00 KB - MergeBlockTime: 0ns - OpenTime: 106.722us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.848ms - RowsProduced: 153 - RpcAvgTime: 55.181us - RpcCount: 12 - RpcMaxTime: 250.175us - RpcMinTime: 45.466us - RpcSumTime: 662.173us - SerializeBatchTime: 40.430us - SplitBlockDistributeByChannelTime: 243.760us - SplitBlockHashComputeTime: 62.826us - UncompressedRowBatchSize: 10.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 45.651us - ExecTime: 1.48ms - InitProbeSideTime: 43.423us - JoinFilterTimer: 1.531us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 28.130us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.464us - ProbeFindNextTime: 0ns - ProbeRows: 153 - ProbeTime: 644.451us - ProbeWhenBuildSideOutputTime: 84.460us - ProbeWhenProbeSideOutputTime: 120.55us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 70.812us - ProjectionTime: 271.400us - RowsProduced: 153 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 9 - CloseTime: 0ns - ExecTime: 61.835us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 18.19 KB - OpenTime: 729ns - ProjectionTime: 0ns - RowsProduced: 153 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s312ms PipelineXTask (index=4):(Active: 3.972ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.749ms - CloseTime: 43.24us - GetBlockTime: 1.398ms - OpenTime: 8.293us - PrepareTime: 166.1us - SinkTime: 2.249ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.915ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 534.985us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.81 KB - CloseTime: 20.109us - CompressTime: 0ns - ExecTime: 2.363ms - InputRows: 1.394K (1394) - LocalBytesSent: 207.73 KB - LocalSendTime: 278.673us - LocalSentRows: 1.057K (1057) - MemoryUsage: - PeakMemoryUsage: 401.75 KB - MergeBlockTime: 0ns - OpenTime: 98.622us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.312ms - RowsProduced: 1.394K (1394) - RpcAvgTime: 172.160us - RpcCount: 12 - RpcMaxTime: 541.959us - RpcMinTime: 30.893us - RpcSumTime: 2.65ms - SerializeBatchTime: 136.848us - SplitBlockDistributeByChannelTime: 466.173us - SplitBlockHashComputeTime: 107.379us - UncompressedRowBatchSize: 70.92 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 8 - BuildOutputBlock: 0ns - CloseTime: 20.418us - ExecTime: 1.336ms - InitProbeSideTime: 120.748us - JoinFilterTimer: 1.21us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 24.441us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.820us - ProbeFindNextTime: 0ns - ProbeRows: 1.394K (1394) - ProbeTime: 936.515us - ProbeWhenBuildSideOutputTime: 113.199us - ProbeWhenProbeSideOutputTime: 186.817us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 271.905us - ProjectionTime: 313.610us - RowsProduced: 1.394K (1394) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 68.422us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 357.56 KB - OpenTime: 611ns - ProjectionTime: 0ns - RowsProduced: 1.394K (1394) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s313ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.739ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.591ms - CloseTime: 49.16us - GetBlockTime: 1.396ms - OpenTime: 8.9us - PrepareTime: 84.151us - SinkTime: 104.723us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.669ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.288ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 100.58us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.241us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 30.476us - ExecTime: 1.331ms - InitProbeSideTime: 130.244us - JoinFilterTimer: 1.22us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 20.711us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.232us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 765.760us - ProbeWhenBuildSideOutputTime: 75.299us - ProbeWhenProbeSideOutputTime: 176.873us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 51.140us - ProjectionTime: 470.882us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 16 - BytesReceived: 55.45 KB - CloseTime: 8.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 457.850us - ExecTime: 107.312us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 1.60 KB - OpenTime: 19.173us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms PipelineXTask (index=5):(Active: 1.686ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.549ms - CloseTime: 24.915us - GetBlockTime: 1.368ms - OpenTime: 7.763us - PrepareTime: 98.904us - SinkTime: 92.216us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.649ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 232.866us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 87.147us - InputRows: 777 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.102us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 17.247us - ExecTime: 1.217ms - InitProbeSideTime: 95.264us - JoinFilterTimer: 1.255us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 22.620us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.540us - ProbeFindNextTime: 0ns - ProbeRows: 777 - ProbeTime: 724.595us - ProbeWhenBuildSideOutputTime: 87.749us - ProbeWhenProbeSideOutputTime: 207.569us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 81.363us - ProjectionTime: 415.993us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 18 - BytesReceived: 58.19 KB - CloseTime: 5.71us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 436.136us - ExecTime: 176.642us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 151.50 KB - PeakMemoryUsage: 1.60 KB - OpenTime: 28.834us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s313ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.492ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.421ms - CloseTime: 13.515us - GetBlockTime: 75.315us - OpenTime: 2.854us - PrepareTime: 48.158us - SinkTime: 1.297ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.465ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.793ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 4.254us - BuildRows: 8.218K (8218) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 792.824us - BuildTableInsertTime: 429.407us - BuildTableTime: 460.64us - CloseTime: 0ns - ExecTime: 1.302ms - InputRows: 8.217K (8217) - MemoryUsage: - BuildBlocks: 397.64 KB - BuildKeyArena: 192.00 KB - HashTable: 96.11 KB - PeakMemoryUsage: 681.74 KB - OpenTime: 7.450us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=202): - BlocksProduced: 5 - BytesReceived: 85.10 KB - CloseTime: 11.322us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 124.595us - ExecTime: 102.40us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 300.00 KB - MemoryUsage: - Blocks: 300.00 KB - PeakMemoryUsage: 236.00 KB - OpenTime: 21.925us - ProjectionTime: 0ns - RowsProduced: 8.217K (8217) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s537ms PipelineXTask (index=6):(Active: 119.531us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.54us - CloseTime: 6.343us - GetBlockTime: 0ns - OpenTime: 2.376us - PrepareTime: 63.711us - SinkTime: 26.406us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.76us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 386.9us HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8694 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.608us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.782us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s549ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.950us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.34us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.190us - 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: 260.912us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 214.272us - CloseTime: 6.773us - GetBlockTime: 67.81us - OpenTime: 2.543us - PrepareTime: 32.262us - SinkTime: 106.613us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 244.756us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 286.356us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.350us - BuildRows: 285 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 36.740us - BuildTableInsertTime: 33.384us - BuildTableTime: 39.745us - CloseTime: 0ns - ExecTime: 109.735us - InputRows: 284 - MemoryUsage: - BuildBlocks: 13.81 KB - BuildKeyArena: 12.00 KB - HashTable: 3.12 KB - PeakMemoryUsage: 24.92 KB - OpenTime: 5.37us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 22 - BytesReceived: 9.76 KB - CloseTime: 5.323us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 117.268us - ExecTime: 76.959us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.75 KB - MemoryUsage: - Blocks: 19.25 KB - PeakMemoryUsage: 1.94 KB - OpenTime: 7.583us - ProjectionTime: 0ns - RowsProduced: 284 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s166ms PipelineXTask (index=7):(Active: 283.107us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 225.31us - CloseTime: 7.454us - GetBlockTime: 76.747us - OpenTime: 2.806us - PrepareTime: 42.301us - SinkTime: 98.763us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 265.643us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.361ms HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.700us - BuildRows: 283 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 46.859us - BuildTableInsertTime: 19.540us - BuildTableTime: 25.770us - CloseTime: 0ns - ExecTime: 101.365us - InputRows: 282 - MemoryUsage: - BuildBlocks: 13.71 KB - BuildKeyArena: 12.00 KB - HashTable: 3.11 KB - PeakMemoryUsage: 24.81 KB - OpenTime: 4.869us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 22 - BytesReceived: 9.57 KB - CloseTime: 5.850us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 140.937us - ExecTime: 97.850us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.50 KB - MemoryUsage: - Blocks: 9.06 KB - PeakMemoryUsage: 1.94 KB - OpenTime: 17.588us - ProjectionTime: 0ns - RowsProduced: 282 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s165ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.440ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.203ms - CloseTime: 28.785us - GetBlockTime: 871.594us - OpenTime: 6.711us - PrepareTime: 195.340us - SinkTime: 1.261ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.399ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 286.659us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 20.29 KB - CloseTime: 7.512us - CompressTime: 0ns - ExecTime: 1.372ms - InputRows: 307 - LocalBytesSent: 30.89 KB - LocalSendTime: 217.44us - LocalSentRows: 160 - MemoryUsage: - PeakMemoryUsage: 114.66 KB - MergeBlockTime: 0ns - OpenTime: 107.722us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.566ms - RowsProduced: 307 - RpcAvgTime: 1.835ms - RpcCount: 12 - RpcMaxTime: 2.560ms - RpcMinTime: 564.529us - RpcSumTime: 22.28ms - SerializeBatchTime: 120.522us - SplitBlockDistributeByChannelTime: 213.499us - SplitBlockHashComputeTime: 33.84us - UncompressedRowBatchSize: 31.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 19.755us - ExecTime: 865.218us - InitProbeSideTime: 32.781us - JoinFilterTimer: 1.88us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 42.294us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.692us - ProbeFindNextTime: 0ns - ProbeRows: 307 - ProbeTime: 571.789us - ProbeWhenBuildSideOutputTime: 54.645us - ProbeWhenProbeSideOutputTime: 149.663us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 85.283us - ProjectionTime: 187.750us - RowsProduced: 307 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 38.412us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 45.88 KB - OpenTime: 852ns - ProjectionTime: 0ns - RowsProduced: 307 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s310ms PipelineXTask (index=4):(Active: 2.709ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.516ms - CloseTime: 17.380us - GetBlockTime: 1.0ms - OpenTime: 7.649us - PrepareTime: 163.230us - SinkTime: 1.460ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.685ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 830.405us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 71.63 KB - CloseTime: 6.127us - CompressTime: 0ns - ExecTime: 1.569ms - InputRows: 1.562K (1562) - LocalBytesSent: 158.36 KB - LocalSendTime: 162.832us - LocalSentRows: 807 - MemoryUsage: - PeakMemoryUsage: 465.19 KB - MergeBlockTime: 0ns - OpenTime: 106.838us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.83ms - RowsProduced: 1.562K (1562) - RpcAvgTime: 2.526ms - RpcCount: 12 - RpcMaxTime: 2.596ms - RpcMinTime: 2.412ms - RpcSumTime: 30.316ms - SerializeBatchTime: 187.567us - SplitBlockDistributeByChannelTime: 423.32us - SplitBlockHashComputeTime: 64.703us - UncompressedRowBatchSize: 158.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 10.163us - ExecTime: 985.309us - InitProbeSideTime: 79.404us - JoinFilterTimer: 1.90us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 24.570us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.24us - ProbeFindNextTime: 0ns - ProbeRows: 1.562K (1562) - ProbeTime: 677.181us - ProbeWhenBuildSideOutputTime: 60.957us - ProbeWhenProbeSideOutputTime: 154.723us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 153.330us - ProjectionTime: 244.186us - RowsProduced: 1.562K (1562) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 29.280us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 408.75 KB - OpenTime: 724ns - ProjectionTime: 0ns - RowsProduced: 1.562K (1562) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s310ms PipelineXTask (index=8):(Active: 1.897ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.698ms - CloseTime: 28.436us - GetBlockTime: 653.938us - OpenTime: 4.545us - PrepareTime: 161.663us - SinkTime: 982.212us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.859ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 754.452us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.56 KB - CloseTime: 10.308us - CompressTime: 0ns - ExecTime: 1.91ms - InputRows: 130 - LocalBytesSent: 15.64 KB - LocalSendTime: 160.133us - LocalSentRows: 81 - MemoryUsage: - PeakMemoryUsage: 61.69 KB - MergeBlockTime: 0ns - OpenTime: 102.312us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.631ms - RowsProduced: 130 - RpcAvgTime: 1.861ms - RpcCount: 12 - RpcMaxTime: 2.571ms - RpcMinTime: 1.623ms - RpcSumTime: 22.338ms - SerializeBatchTime: 61.975us - SplitBlockDistributeByChannelTime: 149.632us - SplitBlockHashComputeTime: 24.381us - UncompressedRowBatchSize: 10.46 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 8 - BuildOutputBlock: 0ns - CloseTime: 15.927us - ExecTime: 634.788us - InitProbeSideTime: 29.578us - JoinFilterTimer: 1.108us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 23.115us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.331us - ProbeFindNextTime: 0ns - ProbeRows: 130 - ProbeTime: 399.260us - ProbeWhenBuildSideOutputTime: 30.67us - ProbeWhenProbeSideOutputTime: 102.853us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.773us - ProjectionTime: 170.250us - RowsProduced: 130 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 31.708us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 40.31 KB - OpenTime: 612ns - ProjectionTime: 0ns - RowsProduced: 130 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s310ms PipelineXTask (index=12):(Active: 2.296ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.73ms - CloseTime: 31.756us - GetBlockTime: 695.319us - OpenTime: 4.272us - PrepareTime: 180.938us - SinkTime: 1.320ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.254ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 516.727us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.69 KB - CloseTime: 7.618us - CompressTime: 0ns - ExecTime: 1.441ms - InputRows: 146 - LocalBytesSent: 16.61 KB - LocalSendTime: 263.736us - LocalSentRows: 86 - MemoryUsage: - PeakMemoryUsage: 66.44 KB - MergeBlockTime: 0ns - OpenTime: 117.37us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.447ms - RowsProduced: 146 - RpcAvgTime: 2.70ms - RpcCount: 12 - RpcMaxTime: 2.606ms - RpcMinTime: 1.625ms - RpcSumTime: 24.840ms - SerializeBatchTime: 79.635us - SplitBlockDistributeByChannelTime: 154.839us - SplitBlockHashComputeTime: 25.356us - UncompressedRowBatchSize: 12.58 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 8 - BuildOutputBlock: 0ns - CloseTime: 22.861us - ExecTime: 684.769us - InitProbeSideTime: 32.564us - JoinFilterTimer: 551ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.477us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.409us - ProbeFindNextTime: 0ns - ProbeRows: 146 - ProbeTime: 444.699us - ProbeWhenBuildSideOutputTime: 29.999us - ProbeWhenProbeSideOutputTime: 88.181us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.908us - ProjectionTime: 172.492us - RowsProduced: 146 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 27.233us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 42.06 KB - OpenTime: 958ns - ProjectionTime: 0ns - RowsProduced: 146 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s310ms PipelineXTask (index=16):(Active: 2.213ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.939ms - CloseTime: 23.563us - GetBlockTime: 649.269us - OpenTime: 4.713us - PrepareTime: 237.985us - SinkTime: 1.231ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.178ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 824.147us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.26 KB - CloseTime: 8.86us - CompressTime: 0ns - ExecTime: 1.385ms - InputRows: 140 - LocalBytesSent: 14.88 KB - LocalSendTime: 207.910us - LocalSentRows: 77 - MemoryUsage: - PeakMemoryUsage: 64.94 KB - MergeBlockTime: 0ns - OpenTime: 150.353us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.226ms - RowsProduced: 140 - RpcAvgTime: 2.363ms - RpcCount: 12 - RpcMaxTime: 2.596ms - RpcMinTime: 1.810ms - RpcSumTime: 28.366ms - SerializeBatchTime: 80.899us - SplitBlockDistributeByChannelTime: 177.208us - SplitBlockHashComputeTime: 25.952us - UncompressedRowBatchSize: 13.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 8 - BuildOutputBlock: 0ns - CloseTime: 14.87us - ExecTime: 638.569us - InitProbeSideTime: 27.577us - JoinFilterTimer: 715ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 29.562us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.906us - ProbeFindNextTime: 0ns - ProbeRows: 140 - ProbeTime: 401.37us - ProbeWhenBuildSideOutputTime: 27.530us - ProbeWhenProbeSideOutputTime: 105.771us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.894us - ProjectionTime: 165.888us - RowsProduced: 140 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 28.520us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 40.19 KB - OpenTime: 897ns - ProjectionTime: 0ns - RowsProduced: 140 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s310ms PipelineXTask (index=20):(Active: 2.32ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.780ms - CloseTime: 22.930us - GetBlockTime: 668.593us - OpenTime: 4.280us - PrepareTime: 218.777us - SinkTime: 1.68ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.936ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 378.633us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 34.26 KB - CloseTime: 9.829us - CompressTime: 0ns - ExecTime: 1.204ms - InputRows: 1.336K (1336) - LocalBytesSent: 192.57 KB - LocalSendTime: 203.776us - LocalSentRows: 979 - MemoryUsage: - PeakMemoryUsage: 430.06 KB - MergeBlockTime: 0ns - OpenTime: 128.30us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.684ms - RowsProduced: 1.336K (1336) - RpcAvgTime: 1.626ms - RpcCount: 12 - RpcMaxTime: 2.517ms - RpcMinTime: 732.688us - RpcSumTime: 19.519ms - SerializeBatchTime: 85.37us - SplitBlockDistributeByChannelTime: 293.958us - SplitBlockHashComputeTime: 49.606us - UncompressedRowBatchSize: 75.51 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 8 - BuildOutputBlock: 0ns - CloseTime: 10.715us - ExecTime: 670.0us - InitProbeSideTime: 53.615us - JoinFilterTimer: 451ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 23.570us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.254us - ProbeFindNextTime: 0ns - ProbeRows: 1.336K (1336) - ProbeTime: 475.740us - ProbeWhenBuildSideOutputTime: 47.271us - ProbeWhenProbeSideOutputTime: 98.312us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 145.641us - ProjectionTime: 143.29us - RowsProduced: 1.336K (1336) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 19.470us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 212.81 KB - OpenTime: 687ns - ProjectionTime: 0ns - RowsProduced: 1.336K (1336) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s311ms PipelineXTask (index=24):(Active: 4.748ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.522ms - CloseTime: 37.777us - GetBlockTime: 1.615ms - OpenTime: 7.383us - PrepareTime: 174.451us - SinkTime: 2.804ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.693ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 350.275us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 112.59 KB - CloseTime: 6.703us - CompressTime: 0ns - ExecTime: 2.905ms - InputRows: 2.041K (2041) - LocalBytesSent: 139.67 KB - LocalSendTime: 363.677us - LocalSentRows: 712 - MemoryUsage: - PeakMemoryUsage: 628.88 KB - MergeBlockTime: 0ns - OpenTime: 99.802us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.200ms - RowsProduced: 2.041K (2041) - RpcAvgTime: 2.339ms - RpcCount: 12 - RpcMaxTime: 2.712ms - RpcMinTime: 1.948ms - RpcSumTime: 28.71ms - SerializeBatchTime: 504.25us - SplitBlockDistributeByChannelTime: 635.233us - SplitBlockHashComputeTime: 127.7us - UncompressedRowBatchSize: 280.19 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 8 - BuildOutputBlock: 0ns - CloseTime: 29.575us - ExecTime: 1.594ms - InitProbeSideTime: 135.763us - JoinFilterTimer: 1.205us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 37.83us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.366us - ProbeFindNextTime: 0ns - ProbeRows: 2.041K (2041) - ProbeTime: 1.113ms - ProbeWhenBuildSideOutputTime: 121.897us - ProbeWhenProbeSideOutputTime: 289.496us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 204.598us - ProjectionTime: 356.641us - RowsProduced: 2.041K (2041) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 8 - CloseTime: 0ns - ExecTime: 50.120us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 366.38 KB - OpenTime: 2.679us - ProjectionTime: 0ns - RowsProduced: 2.041K (2041) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s311ms PipelineXTask (index=28):(Active: 2.936ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.716ms - CloseTime: 43.113us - GetBlockTime: 821.583us - OpenTime: 6.42us - PrepareTime: 165.295us - SinkTime: 1.822ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.880ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 176.916us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.67 KB - CloseTime: 8.994us - CompressTime: 0ns - ExecTime: 1.929ms - InputRows: 1.308K (1308) - LocalBytesSent: 191.49 KB - LocalSendTime: 275.107us - LocalSentRows: 974 - MemoryUsage: - PeakMemoryUsage: 404.75 KB - MergeBlockTime: 0ns - OpenTime: 101.163us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.34ms - RowsProduced: 1.308K (1308) - RpcAvgTime: 2.491ms - RpcCount: 12 - RpcMaxTime: 2.666ms - RpcMinTime: 2.215ms - RpcSumTime: 29.897ms - SerializeBatchTime: 117.928us - SplitBlockDistributeByChannelTime: 341.522us - SplitBlockHashComputeTime: 95.136us - UncompressedRowBatchSize: 70.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 4 - BuildOutputBlock: 0ns - CloseTime: 31.710us - ExecTime: 818.705us - InitProbeSideTime: 71.940us - JoinFilterTimer: 615ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 23.747us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.240us - ProbeFindNextTime: 0ns - ProbeRows: 1.308K (1308) - ProbeTime: 501.516us - ProbeWhenBuildSideOutputTime: 45.645us - ProbeWhenProbeSideOutputTime: 107.207us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 139.730us - ProjectionTime: 236.281us - RowsProduced: 1.308K (1308) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 4 - CloseTime: 0ns - ExecTime: 31.484us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 189.80 KB - OpenTime: 766ns - ProjectionTime: 0ns - RowsProduced: 1.308K (1308) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s311ms PipelineXTask (index=32):(Active: 1.669ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.450ms - CloseTime: 31.606us - GetBlockTime: 431.965us - OpenTime: 5.471us - PrepareTime: 177.266us - SinkTime: 976.43us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.628ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.713us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.35 KB - CloseTime: 10.858us - CompressTime: 0ns - ExecTime: 1.102ms - InputRows: 683 - LocalBytesSent: 66.94 KB - LocalSendTime: 152.810us - LocalSentRows: 340 - MemoryUsage: - PeakMemoryUsage: 203.13 KB - MergeBlockTime: 0ns - OpenTime: 116.860us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.956ms - RowsProduced: 683 - RpcAvgTime: 2.531ms - RpcCount: 12 - RpcMaxTime: 2.643ms - RpcMinTime: 2.354ms - RpcSumTime: 30.374ms - SerializeBatchTime: 82.549us - SplitBlockDistributeByChannelTime: 156.496us - SplitBlockHashComputeTime: 28.266us - UncompressedRowBatchSize: 72.11 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 18.212us - ExecTime: 455.64us - InitProbeSideTime: 56.137us - JoinFilterTimer: 160ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 26.531us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 456ns - ProbeFindNextTime: 0ns - ProbeRows: 683 - ProbeTime: 276.998us - ProbeWhenBuildSideOutputTime: 35.212us - ProbeWhenProbeSideOutputTime: 71.531us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 54.836us - ProjectionTime: 125.786us - RowsProduced: 683 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 14.644us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 185.00 KB - OpenTime: 584ns - ProjectionTime: 0ns - RowsProduced: 683 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s312ms PipelineXTask (index=36):(Active: 754.946us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 559.843us - CloseTime: 28.757us - GetBlockTime: 39.501us - OpenTime: 6.142us - PrepareTime: 156.56us - SinkTime: 486.41us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 708.736us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 288.426us DATA_STREAM_SINK_OPERATOR (id=337,dst_id=337): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.96us - CompressTime: 0ns - ExecTime: 598.78us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 106.320us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 4.50 KB - MergeBlockTime: 0ns - OpenTime: 100.566us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.520ms - RowsProduced: 0 - RpcAvgTime: 2.206ms - RpcCount: 12 - RpcMaxTime: 2.564ms - RpcMinTime: 1.640ms - RpcSumTime: 26.475ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 539ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 11.265us - ExecTime: 72.26us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 28.288us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.324us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 24.122us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 8.244us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 945.00 B - OpenTime: 2.925us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s312ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.94ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 994.366us - CloseTime: 16.650us - GetBlockTime: 817.20us - OpenTime: 5.279us - PrepareTime: 73.550us - SinkTime: 121.849us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.54ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 248.997us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 119.824us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.340us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 10.727us - ExecTime: 769.539us - InitProbeSideTime: 46.594us - JoinFilterTimer: 463ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 17.985us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.998us - ProbeFindNextTime: 0ns - ProbeRows: 770 - ProbeTime: 415.919us - ProbeWhenBuildSideOutputTime: 40.604us - ProbeWhenProbeSideOutputTime: 99.870us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.554us - ProjectionTime: 296.738us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 4.196us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.900us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 178.06 KB - MemoryUsage: - Blocks: 155.00 KB - PeakMemoryUsage: 156.60 KB - OpenTime: 22.148us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s310ms PipelineXTask (index=5):(Active: 807.810us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 711.131us - CloseTime: 17.46us - GetBlockTime: 610.727us - OpenTime: 6.438us - PrepareTime: 69.480us - SinkTime: 52.294us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 772.836us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 630.561us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 58.863us - InputRows: 756 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.593us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 11.219us - ExecTime: 585.694us - InitProbeSideTime: 49.494us - JoinFilterTimer: 331ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 18.672us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.70us - ProbeFindNextTime: 0ns - ProbeRows: 756 - ProbeTime: 343.790us - ProbeWhenBuildSideOutputTime: 34.953us - ProbeWhenProbeSideOutputTime: 97.465us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 31.573us - ProjectionTime: 188.602us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 3.942us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 60.982us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 178.31 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 145.40 KB - OpenTime: 17.996us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s310ms PipelineXTask (index=9):(Active: 564.802us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 459.538us - CloseTime: 24.969us - GetBlockTime: 406.307us - OpenTime: 3.504us - PrepareTime: 72.819us - SinkTime: 27.342us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 532.720us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 620.119us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 27.313us - InputRows: 785 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.180us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 20.694us - ExecTime: 419.792us - InitProbeSideTime: 48.981us - JoinFilterTimer: 175ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 14.595us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.71us - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 249.219us - ProbeWhenBuildSideOutputTime: 19.623us - ProbeWhenProbeSideOutputTime: 67.84us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 50.340us - ProjectionTime: 124.558us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 4 - BytesReceived: 49.69 KB - CloseTime: 3.122us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 299.909us - ExecTime: 37.979us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 161.13 KB - PeakMemoryUsage: 6.40 KB - OpenTime: 19.51us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms PipelineXTask (index=13):(Active: 938.712us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 784.195us - CloseTime: 26.433us - GetBlockTime: 644.143us - OpenTime: 3.396us - PrepareTime: 119.863us - SinkTime: 101.143us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 903.713us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 570.126us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 113.86us - InputRows: 738 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 15.98us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 20.570us - ExecTime: 629.422us - InitProbeSideTime: 40.987us - JoinFilterTimer: 527ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 27.302us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.287us - ProbeFindNextTime: 0ns - ProbeRows: 738 - ProbeTime: 351.925us - ProbeWhenBuildSideOutputTime: 42.100us - ProbeWhenProbeSideOutputTime: 94.699us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 33.858us - ProjectionTime: 204.701us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 3.846us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 67.552us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 173.06 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 144.60 KB - OpenTime: 21.805us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms PipelineXTask (index=17):(Active: 1.10ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 863.751us - CloseTime: 22.735us - GetBlockTime: 648.753us - OpenTime: 3.553us - PrepareTime: 115.150us - SinkTime: 174.366us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 978.290us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 250.897us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 172.152us - InputRows: 784 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.319us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 13.725us - ExecTime: 641.537us - InitProbeSideTime: 49.40us - JoinFilterTimer: 369ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 40.541us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.711us - ProbeFindNextTime: 0ns - ProbeRows: 784 - ProbeTime: 334.771us - ProbeWhenBuildSideOutputTime: 28.255us - ProbeWhenProbeSideOutputTime: 75.610us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 37.895us - ProjectionTime: 225.280us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 6.576us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 68.697us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 170.63 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 143.80 KB - OpenTime: 20.987us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms PipelineXTask (index=21):(Active: 1.586ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.423ms - CloseTime: 32.890us - GetBlockTime: 1.179ms - OpenTime: 6.397us - PrepareTime: 118.947us - SinkTime: 193.293us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.542ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.182us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 191.28us - InputRows: 765 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.328us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 13.863us - ExecTime: 1.92ms - InitProbeSideTime: 111.193us - JoinFilterTimer: 733ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 34.441us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.706us - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 652.323us - ProbeWhenBuildSideOutputTime: 58.569us - ProbeWhenProbeSideOutputTime: 162.366us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 53.514us - ProjectionTime: 349.394us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 6.135us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 136.309us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 172.50 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 145.40 KB - OpenTime: 21.15us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s310ms PipelineXTask (index=25):(Active: 625.822us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 529.521us - CloseTime: 22.71us - GetBlockTime: 449.820us - OpenTime: 3.545us - PrepareTime: 66.249us - SinkTime: 40.23us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 591.612us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.206us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 39.544us - InputRows: 758 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.236us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 15.818us - ExecTime: 445.568us - InitProbeSideTime: 52.702us - JoinFilterTimer: 264ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 17.625us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.696us - ProbeFindNextTime: 0ns - ProbeRows: 758 - ProbeTime: 274.269us - ProbeWhenBuildSideOutputTime: 42.19us - ProbeWhenProbeSideOutputTime: 55.725us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 57.939us - ProjectionTime: 124.206us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 4 - BytesReceived: 47.96 KB - CloseTime: 4.890us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 144.6us - ExecTime: 40.447us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.988us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms PipelineXTask (index=29):(Active: 922.502us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 813.704us - CloseTime: 16.790us - GetBlockTime: 710.182us - OpenTime: 4.746us - PrepareTime: 83.262us - SinkTime: 62.175us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 896.230us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.368us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 59.999us - InputRows: 776 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.395us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 12.137us - ExecTime: 679.684us - InitProbeSideTime: 47.633us - JoinFilterTimer: 606ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 18.379us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.348us - ProbeFindNextTime: 0ns - ProbeRows: 776 - ProbeTime: 390.178us - ProbeWhenBuildSideOutputTime: 48.231us - ProbeWhenProbeSideOutputTime: 94.206us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 33.418us - ProjectionTime: 231.627us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 7 - BytesReceived: 0.00 - CloseTime: 2.946us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.919us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 173.31 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 145.40 KB - OpenTime: 12.454us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms PipelineXTask (index=33):(Active: 1.120ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.16ms - CloseTime: 27.118us - GetBlockTime: 877.54us - OpenTime: 4.45us - PrepareTime: 69.54us - SinkTime: 90.215us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.82ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 417.971us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 88.317us - InputRows: 754 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.303us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 20.737us - ExecTime: 822.546us - InitProbeSideTime: 49.615us - JoinFilterTimer: 882ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 19.53us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.344us - ProbeFindNextTime: 0ns - ProbeRows: 754 - ProbeTime: 445.710us - ProbeWhenBuildSideOutputTime: 48.62us - ProbeWhenProbeSideOutputTime: 95.590us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.789us - ProjectionTime: 300.325us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 4.353us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 173.13 KB - MemoryUsage: - Blocks: 143.00 KB - PeakMemoryUsage: 144.60 KB - OpenTime: 19.718us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms PipelineXTask (index=37):(Active: 978.809us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 871.700us - CloseTime: 17.336us - GetBlockTime: 772.253us - OpenTime: 5.573us - PrepareTime: 80.23us - SinkTime: 55.772us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 952.387us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 389.14us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 54.146us - InputRows: 767 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.312us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=335): - BlocksProduced: 8 - BuildOutputBlock: 0ns - CloseTime: 8.104us - ExecTime: 726.376us - InitProbeSideTime: 67.689us - JoinFilterTimer: 451ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 27.351us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.949us - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 429.979us - ProbeWhenBuildSideOutputTime: 38.472us - ProbeWhenProbeSideOutputTime: 114.832us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 39.715us - ProjectionTime: 231.695us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=334): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 6.903us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.992us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 176.38 KB - MemoryUsage: - Blocks: 168.81 KB - PeakMemoryUsage: 169.61 KB - OpenTime: 13.966us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s311ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 1.340ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.276ms - CloseTime: 13.843us - GetBlockTime: 38.124us - OpenTime: 2.253us - PrepareTime: 44.269us - SinkTime: 1.204ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.318ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 325.562ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 3.422us - BuildRows: 8.218K (8218) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 664.135us - BuildTableInsertTime: 462.990us - BuildTableTime: 477.605us - CloseTime: 0ns - ExecTime: 1.212ms - InputRows: 8.217K (8217) - MemoryUsage: - BuildBlocks: 397.64 KB - BuildKeyArena: 192.00 KB - HashTable: 96.11 KB - PeakMemoryUsage: 681.74 KB - OpenTime: 10.331us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=202): - BlocksProduced: 4 - BytesReceived: 81.75 KB - CloseTime: 11.403us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 235.740us - ExecTime: 58.480us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 307.75 KB - MemoryUsage: - Blocks: 307.75 KB - PeakMemoryUsage: 472.00 KB - OpenTime: 13.473us - ProjectionTime: 0ns - RowsProduced: 8.217K (8217) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s49ms PipelineXTask (index=6):(Active: 97.263us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 41.828us - CloseTime: 13.842us - GetBlockTime: 0ns - OpenTime: 1.360us - PrepareTime: 36.864us - SinkTime: 26.731us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.431us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.647ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.794us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.479us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.157us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.342us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.687us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 122.162us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.752us - CloseTime: 16.442us - GetBlockTime: 0ns - OpenTime: 1.358us - PrepareTime: 61.584us - SinkTime: 23.378us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.190us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.503ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.241us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.318us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.526us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.476us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.464us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 92.580us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.690us - CloseTime: 7.599us - GetBlockTime: 0ns - OpenTime: 1.692us - PrepareTime: 59.817us - SinkTime: 8.593us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.899us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.515ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 21.633us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.283us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.515us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.385us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.215us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 98.42us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 14.768us - CloseTime: 6.369us - GetBlockTime: 0ns - OpenTime: 1.142us - PrepareTime: 71.334us - SinkTime: 5.207us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.178us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.528ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.105us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.307us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.41us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.519us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.892us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 73.709us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.86us - CloseTime: 5.527us - GetBlockTime: 0ns - OpenTime: 1.939us - PrepareTime: 41.844us - SinkTime: 7.578us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.41us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.892ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.445us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.215us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.398us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.454us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 75.496us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.897us - CloseTime: 4.982us - GetBlockTime: 0ns - OpenTime: 1.267us - PrepareTime: 42.931us - SinkTime: 6.902us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.634us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.894ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.430us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.750us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.707us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.294us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 112.610us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.985us - CloseTime: 15.667us - GetBlockTime: 0ns - OpenTime: 1.682us - PrepareTime: 44.538us - SinkTime: 26.50us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.583us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.330ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.808us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.437us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.898us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.692us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.235us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 114.456us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 29.491us - CloseTime: 16.271us - GetBlockTime: 0ns - OpenTime: 1.419us - PrepareTime: 63.630us - SinkTime: 15.635us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.89us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.354ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.558us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.587us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.63us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.658us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 83.623us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.484us - CloseTime: 8.433us - GetBlockTime: 0ns - OpenTime: 1.974us - PrepareTime: 38.585us - SinkTime: 13.304us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.860us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.508ms HASH_JOIN_SINK_OPERATOR (id=336): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8692 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 26.840us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.612us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s376ms EXCHANGE_OPERATOR (id=202): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.911us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.930us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.361us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 316.20us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 238.760us - CloseTime: 7.749us - GetBlockTime: 67.967us - OpenTime: 1.620us - PrepareTime: 63.480us - SinkTime: 124.275us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 296.159us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 396.618us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.725us - BuildRows: 267 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 48.190us - BuildTableInsertTime: 31.817us - BuildTableTime: 36.265us - CloseTime: 0ns - ExecTime: 128.104us - InputRows: 266 - MemoryUsage: - BuildBlocks: 12.95 KB - BuildKeyArena: 12.00 KB - HashTable: 3.05 KB - PeakMemoryUsage: 23.99 KB - OpenTime: 6.30us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.76 KB - CloseTime: 6.487us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 39.381us - ExecTime: 92.699us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.94 KB - MemoryUsage: - Blocks: 4.69 KB - PeakMemoryUsage: 4.69 KB - OpenTime: 22.905us - ProjectionTime: 0ns - RowsProduced: 266 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=7):(Active: 384.644us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 327.339us - CloseTime: 9.780us - GetBlockTime: 61.889us - OpenTime: 2.145us - PrepareTime: 40.232us - SinkTime: 207.310us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 360.467us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 297.418us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 41.935us - BuildRows: 283 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 64.431us - BuildTableInsertTime: 38.783us - BuildTableTime: 49.419us - CloseTime: 0ns - ExecTime: 211.443us - InputRows: 282 - MemoryUsage: - BuildBlocks: 13.74 KB - BuildKeyArena: 12.00 KB - HashTable: 3.11 KB - PeakMemoryUsage: 24.84 KB - OpenTime: 7.713us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.69 KB - CloseTime: 7.673us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 34.448us - ExecTime: 76.731us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.50 KB - MemoryUsage: - Blocks: 5.31 KB - PeakMemoryUsage: 5.31 KB - OpenTime: 13.502us - ProjectionTime: 0ns - RowsProduced: 282 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=11):(Active: 360.502us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 305.534us - CloseTime: 5.360us - GetBlockTime: 63.188us - OpenTime: 1.532us - PrepareTime: 43.804us - SinkTime: 179.755us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 340.153us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 453.952us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.142us - BuildRows: 283 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 73.466us - BuildTableInsertTime: 51.803us - BuildTableTime: 56.344us - CloseTime: 0ns - ExecTime: 181.809us - InputRows: 282 - MemoryUsage: - BuildBlocks: 13.72 KB - BuildKeyArena: 12.00 KB - HashTable: 3.11 KB - PeakMemoryUsage: 24.82 KB - OpenTime: 5.351us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.75 KB - CloseTime: 4.262us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 33.31us - ExecTime: 77.50us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.56 KB - MemoryUsage: - Blocks: 4.50 KB - PeakMemoryUsage: 4.50 KB - OpenTime: 14.814us - ProjectionTime: 0ns - RowsProduced: 282 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=15):(Active: 364.108us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 273.656us - CloseTime: 14.810us - GetBlockTime: 72.267us - OpenTime: 1.754us - PrepareTime: 68.904us - SinkTime: 164.864us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 337.646us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 305.960us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.948us - BuildRows: 277 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.8us - BuildTableInsertTime: 90.880us - BuildTableTime: 98.789us - CloseTime: 0ns - ExecTime: 172.114us - InputRows: 276 - MemoryUsage: - BuildBlocks: 13.41 KB - BuildKeyArena: 12.00 KB - HashTable: 3.09 KB - PeakMemoryUsage: 24.49 KB - OpenTime: 9.447us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.86 KB - CloseTime: 6.604us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 40.196us - ExecTime: 98.201us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.75 KB - MemoryUsage: - Blocks: 5.81 KB - PeakMemoryUsage: 5.81 KB - OpenTime: 24.34us - ProjectionTime: 0ns - RowsProduced: 276 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=19):(Active: 358.285us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 230.651us - CloseTime: 35.951us - GetBlockTime: 49.782us - OpenTime: 1.752us - PrepareTime: 84.927us - SinkTime: 123.897us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 309.634us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 299.438us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.173us - BuildRows: 280 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.326us - BuildTableInsertTime: 30.933us - BuildTableTime: 41.778us - CloseTime: 0ns - ExecTime: 141.845us - InputRows: 279 - MemoryUsage: - BuildBlocks: 13.60 KB - BuildKeyArena: 12.00 KB - HashTable: 3.10 KB - PeakMemoryUsage: 24.69 KB - OpenTime: 20.529us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.83 KB - CloseTime: 32.821us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 25.827us - ExecTime: 99.289us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.63 KB - MemoryUsage: - Blocks: 6.88 KB - PeakMemoryUsage: 6.88 KB - OpenTime: 21.508us - ProjectionTime: 0ns - RowsProduced: 279 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=23):(Active: 262.253us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 211.213us - CloseTime: 4.136us - GetBlockTime: 58.156us - OpenTime: 1.580us - PrepareTime: 41.756us - SinkTime: 113.958us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 248.294us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 483.500us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.246us - BuildRows: 267 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 46.181us - BuildTableInsertTime: 34.367us - BuildTableTime: 36.923us - CloseTime: 0ns - ExecTime: 119.38us - InputRows: 266 - MemoryUsage: - BuildBlocks: 12.95 KB - BuildKeyArena: 12.00 KB - HashTable: 3.05 KB - PeakMemoryUsage: 23.99 KB - OpenTime: 7.653us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.62 KB - CloseTime: 3.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 28.325us - ExecTime: 70.769us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.69 KB - MemoryUsage: - Blocks: 6.69 KB - PeakMemoryUsage: 6.69 KB - OpenTime: 14.91us - ProjectionTime: 0ns - RowsProduced: 266 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=27):(Active: 518.16us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 457.25us - CloseTime: 7.309us - GetBlockTime: 123.475us - OpenTime: 1.773us - PrepareTime: 47.197us - SinkTime: 277.242us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 493.620us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 463.195us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.9us - BuildRows: 312 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 39.825us - BuildTableInsertTime: 199.686us - BuildTableTime: 209.289us - CloseTime: 0ns - ExecTime: 281.846us - InputRows: 311 - MemoryUsage: - BuildBlocks: 15.11 KB - BuildKeyArena: 12.00 KB - HashTable: 3.22 KB - PeakMemoryUsage: 26.33 KB - OpenTime: 7.540us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.89 KB - CloseTime: 5.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 41.148us - ExecTime: 138.379us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.19 KB - MemoryUsage: - Blocks: 5.94 KB - PeakMemoryUsage: 5.94 KB - OpenTime: 15.274us - ProjectionTime: 0ns - RowsProduced: 311 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=31):(Active: 362.804us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 309.63us - CloseTime: 9.530us - GetBlockTime: 70.933us - OpenTime: 1.612us - PrepareTime: 38.366us - SinkTime: 170.530us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 336.94us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 266.869us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.627us - BuildRows: 281 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 82.903us - BuildTableInsertTime: 40.820us - BuildTableTime: 50.119us - CloseTime: 0ns - ExecTime: 174.647us - InputRows: 280 - MemoryUsage: - BuildBlocks: 13.64 KB - BuildKeyArena: 12.00 KB - HashTable: 3.10 KB - PeakMemoryUsage: 24.73 KB - OpenTime: 8.399us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 2.15 KB - CloseTime: 7.602us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 20.215us - ExecTime: 85.167us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.44 KB - MemoryUsage: - Blocks: 5.31 KB - PeakMemoryUsage: 7.13 KB - OpenTime: 12.638us - ProjectionTime: 0ns - RowsProduced: 280 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=35):(Active: 299.466us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 239.633us - CloseTime: 7.857us - GetBlockTime: 54.462us - OpenTime: 1.906us - PrepareTime: 44.630us - SinkTime: 115.486us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 274.466us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 407.659us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.105us - BuildRows: 271 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 47.233us - BuildTableInsertTime: 21.323us - BuildTableTime: 25.778us - CloseTime: 0ns - ExecTime: 120.854us - InputRows: 270 - MemoryUsage: - BuildBlocks: 13.15 KB - BuildKeyArena: 12.00 KB - HashTable: 3.06 KB - PeakMemoryUsage: 24.20 KB - OpenTime: 7.939us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 1.77 KB - CloseTime: 6.702us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 27.117us - ExecTime: 73.249us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.94 KB - MemoryUsage: - Blocks: 3.38 KB - PeakMemoryUsage: 7.63 KB - OpenTime: 17.66us - ProjectionTime: 0ns - RowsProduced: 270 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s647ms PipelineXTask (index=39):(Active: 287.415us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 222.928us - CloseTime: 5.160us - GetBlockTime: 55.478us - OpenTime: 2.225us - PrepareTime: 51.807us - SinkTime: 107.659us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 265.948us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.298us HASH_JOIN_SINK_OPERATOR (id=335): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.525us - BuildRows: 288 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 53.313us - BuildTableInsertTime: 21.280us - BuildTableTime: 26.489us - CloseTime: 0ns - ExecTime: 118.670us - InputRows: 287 - MemoryUsage: - BuildBlocks: 13.95 KB - BuildKeyArena: 12.00 KB - HashTable: 3.13 KB - PeakMemoryUsage: 25.07 KB - OpenTime: 13.412us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=230): - BlocksProduced: 14 - BytesReceived: 2.08 KB - CloseTime: 4.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 31.160us - ExecTime: 67.917us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.88 KB - MemoryUsage: - Blocks: 5.56 KB - PeakMemoryUsage: 5.56 KB - OpenTime: 13.493us - ProjectionTime: 0ns - RowsProduced: 287 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s648ms Fragment 23: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.941ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.743ms - CloseTime: 24.388us - GetBlockTime: 833.656us - OpenTime: 12.280us - PrepareTime: 151.901us - SinkTime: 853.129us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.904ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.332ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 87.00 KB - CloseTime: 11.170us - CompressTime: 0ns - ExecTime: 929.856us - InputRows: 1.407K (1407) - LocalBytesSent: 0.00 - LocalSendTime: 19.262us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 295.25 KB - MergeBlockTime: 0ns - OpenTime: 68.846us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.137ms - RowsProduced: 1.407K (1407) - RpcAvgTime: 440.716us - RpcCount: 10 - RpcMaxTime: 642.70us - RpcMinTime: 182.945us - RpcSumTime: 4.407ms - SerializeBatchTime: 139.641us - SplitBlockDistributeByChannelTime: 168.230us - SplitBlockHashComputeTime: 54.63us - UncompressedRowBatchSize: 217.34 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 14 - BuildOutputBlock: 0ns - CloseTime: 10.286us - ExecTime: 815.190us - InitProbeSideTime: 54.377us - JoinFilterTimer: 804ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 26.736us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.760us - ProbeFindNextTime: 0ns - ProbeRows: 1.407K (1407) - ProbeTime: 562.543us - ProbeWhenBuildSideOutputTime: 111.594us - ProbeWhenProbeSideOutputTime: 111.248us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 134.570us - ProjectionTime: 189.21us - RowsProduced: 1.407K (1407) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 14 - CloseTime: 0ns - ExecTime: 37.435us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 108.00 KB - OpenTime: 772ns - ProjectionTime: 0ns - RowsProduced: 1.407K (1407) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=8):(Active: 1.172ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 989.767us - CloseTime: 24.748us - GetBlockTime: 392.572us - OpenTime: 12.125us - PrepareTime: 140.247us - SinkTime: 547.121us - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.137ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.2ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.03 KB - CloseTime: 11.957us - CompressTime: 0ns - ExecTime: 628.271us - InputRows: 136 - LocalBytesSent: 0.00 - LocalSendTime: 24.145us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 29.25 KB - MergeBlockTime: 0ns - OpenTime: 71.899us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.615ms - RowsProduced: 136 - RpcAvgTime: 853.590us - RpcCount: 10 - RpcMaxTime: 1.164ms - RpcMinTime: 417.568us - RpcSumTime: 8.535ms - SerializeBatchTime: 39.870us - SplitBlockDistributeByChannelTime: 73.102us - SplitBlockHashComputeTime: 18.18us - UncompressedRowBatchSize: 21.14 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=333): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.534us - ExecTime: 390.283us - InitProbeSideTime: 23.561us - JoinFilterTimer: 680ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 24.171us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.834us - ProbeFindNextTime: 0ns - ProbeRows: 136 - ProbeTime: 234.277us - ProbeWhenBuildSideOutputTime: 30.292us - ProbeWhenProbeSideOutputTime: 31.606us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 27.347us - ProjectionTime: 103.176us - RowsProduced: 136 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 18.610us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 13.19 KB - OpenTime: 520ns - ProjectionTime: 0ns - RowsProduced: 136 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 909.299us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 803.399us - CloseTime: 7.186us - GetBlockTime: 646.963us - OpenTime: 9.610us - PrepareTime: 84.129us - SinkTime: 104.545us - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 891.999us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 230.644us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 103.255us - InputRows: 778 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.255us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.972us - ExecTime: 633.567us - InitProbeSideTime: 46.694us - JoinFilterTimer: 741ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 23.533us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.705us - ProbeFindNextTime: 0ns - ProbeRows: 778 - ProbeTime: 397.922us - ProbeWhenBuildSideOutputTime: 35.428us - ProbeWhenProbeSideOutputTime: 74.858us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 60.244us - ProjectionTime: 182.885us - RowsProduced: 778 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 24.617us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 1.750us - ProjectionTime: 0ns - RowsProduced: 778 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s309ms PipelineXTask (index=9):(Active: 715.268us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 638.373us - CloseTime: 13.771us - GetBlockTime: 553.712us - OpenTime: 8.130us - PrepareTime: 48.766us - SinkTime: 37.12us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 691.443us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.262ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 35.514us - InputRows: 765 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.24us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.691us - ExecTime: 549.200us - InitProbeSideTime: 41.296us - JoinFilterTimer: 606ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 19.35us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.204us - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 328.206us - ProbeWhenBuildSideOutputTime: 41.805us - ProbeWhenProbeSideOutputTime: 60.572us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 59.462us - ProjectionTime: 169.639us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 18.63us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 462ns - ProjectionTime: 0ns - RowsProduced: 765 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 839.686us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 770.608us - CloseTime: 12.267us - GetBlockTime: 635.423us - OpenTime: 4.806us - PrepareTime: 47.173us - SinkTime: 95.442us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 818.832us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 670.808us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 93.792us - InputRows: 1.419K (1419) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 990ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 14 - BuildOutputBlock: 0ns - CloseTime: 11.177us - ExecTime: 616.148us - InitProbeSideTime: 59.92us - JoinFilterTimer: 840ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 19.577us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.780us - ProbeFindNextTime: 0ns - ProbeRows: 1.419K (1419) - ProbeTime: 400.172us - ProbeWhenBuildSideOutputTime: 33.420us - ProbeWhenProbeSideOutputTime: 92.271us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 32.674us - ProjectionTime: 159.257us - RowsProduced: 1.419K (1419) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 14 - CloseTime: 0ns - ExecTime: 31.847us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 171.50 KB - OpenTime: 482ns - ProjectionTime: 0ns - RowsProduced: 1.419K (1419) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=10):(Active: 722.107us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 659.74us - CloseTime: 9.825us - GetBlockTime: 552.729us - OpenTime: 4.880us - PrepareTime: 42.611us - SinkTime: 66.5us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 703.489us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.31ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 63.949us - InputRows: 124 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 806ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 7.789us - ExecTime: 521.486us - InitProbeSideTime: 45.178us - JoinFilterTimer: 739ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.790us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.513us - ProbeFindNextTime: 0ns - ProbeRows: 124 - ProbeTime: 323.637us - ProbeWhenBuildSideOutputTime: 17.786us - ProbeWhenProbeSideOutputTime: 74.535us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.690us - ProjectionTime: 148.627us - RowsProduced: 124 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 37.286us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 4.25 KB - OpenTime: 416ns - ProjectionTime: 0ns - RowsProduced: 124 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 1.27ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 926.194us - CloseTime: 12.418us - GetBlockTime: 797.464us - OpenTime: 5.591us - PrepareTime: 78.435us - SinkTime: 83.956us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.6ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 380.376us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 81.330us - InputRows: 785 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 923ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.397us - ExecTime: 745.104us - InitProbeSideTime: 68.718us - JoinFilterTimer: 717ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 19.451us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.290us - ProbeFindNextTime: 0ns - ProbeRows: 321 - ProbeTime: 479.596us - ProbeWhenBuildSideOutputTime: 87.897us - ProbeWhenProbeSideOutputTime: 29.79us - ProbeWhenProcessHashTableTime: 75.338us - ProbeWhenSearchHashTableTime: 29.208us - ProjectionTime: 183.163us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 22 - BytesReceived: 8.70 KB - CloseTime: 3.98us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 152.338us - ExecTime: 90.456us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.63 KB - MemoryUsage: - Blocks: 6.13 KB - PeakMemoryUsage: 0.00 - OpenTime: 24.381us - ProjectionTime: 0ns - RowsProduced: 321 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s308ms PipelineXTask (index=11):(Active: 847.302us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 744.220us - CloseTime: 11.189us - GetBlockTime: 670.631us - OpenTime: 7.502us - PrepareTime: 79.37us - SinkTime: 29.891us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 829.85us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 810.376us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 27.981us - InputRows: 758 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 785ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.400us - ExecTime: 636.955us - InitProbeSideTime: 71.828us - JoinFilterTimer: 671ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.470us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.659us - ProbeFindNextTime: 0ns - ProbeRows: 305 - ProbeTime: 397.629us - ProbeWhenBuildSideOutputTime: 67.696us - ProbeWhenProbeSideOutputTime: 14.687us - ProbeWhenProcessHashTableTime: 53.816us - ProbeWhenSearchHashTableTime: 28.540us - ProjectionTime: 172.349us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 22 - BytesReceived: 8.68 KB - CloseTime: 3.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 174.86us - ExecTime: 64.693us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.38 KB - MemoryUsage: - Blocks: 10.75 KB - PeakMemoryUsage: 1.13 KB - OpenTime: 17.943us - ProjectionTime: 0ns - RowsProduced: 305 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s307ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 876.629us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 804.400us - CloseTime: 6.119us - GetBlockTime: 167.898us - OpenTime: 2.307us - PrepareTime: 58.521us - SinkTime: 562.532us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 843.16us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 439.595us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 19.374us - BuildRows: 4.965K (4965) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 269.852us - BuildTableInsertTime: 192.125us - BuildTableTime: 215.185us - CloseTime: 0ns - ExecTime: 567.185us - InputRows: 4.964K (4964) - MemoryUsage: - BuildBlocks: 318.79 KB - BuildKeyArena: 116.00 KB - HashTable: 51.40 KB - PeakMemoryUsage: 482.18 KB - OpenTime: 8.769us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=252): - BlocksProduced: 36 - BytesReceived: 80.62 KB - CloseTime: 3.778us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 350.442us - ExecTime: 182.835us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 259.25 KB - MemoryUsage: - Blocks: 69.00 KB - PeakMemoryUsage: 35.25 KB - OpenTime: 17.352us - ProjectionTime: 0ns - RowsProduced: 4.964K (4964) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s600ms PipelineXTask (index=12):(Active: 135.392us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 41.170us - CloseTime: 5.793us - GetBlockTime: 0ns - OpenTime: 2.570us - PrepareTime: 79.859us - SinkTime: 20.436us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.222us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.880ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8689 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 53.47us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.848us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.347us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.344us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.131us - 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: 655.49us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 597.18us - CloseTime: 11.122us - GetBlockTime: 124.133us - OpenTime: 2.62us - PrepareTime: 39.833us - SinkTime: 392.881us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 626.561us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 709.784us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 7.863us - BuildRows: 2.138K (2138) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 217.857us - BuildTableInsertTime: 98.62us - BuildTableTime: 105.597us - CloseTime: 0ns - ExecTime: 396.311us - InputRows: 2.137K (2137) - MemoryUsage: - BuildBlocks: 84.85 KB - BuildKeyArena: 56.00 KB - HashTable: 24.36 KB - PeakMemoryUsage: 161.20 KB - OpenTime: 7.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=263): - BlocksProduced: 24 - BytesReceived: 17.65 KB - CloseTime: 8.840us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 123.731us - ExecTime: 138.838us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 117.00 KB - MemoryUsage: - Blocks: 29.25 KB - PeakMemoryUsage: 17.50 KB - OpenTime: 15.48us - ProjectionTime: 0ns - RowsProduced: 2.137K (2137) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s795ms PipelineXTask (index=13):(Active: 83.745us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.931us - CloseTime: 4.32us - GetBlockTime: 0ns - OpenTime: 3.185us - PrepareTime: 35.716us - SinkTime: 16.182us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 73.635us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 279.129us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8689 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.763us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.893us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s796ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.934us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.320us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.639us - 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: 368.250us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 304.120us - CloseTime: 10.935us - GetBlockTime: 77.385us - OpenTime: 1.871us - PrepareTime: 46.127us - SinkTime: 160.27us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 341.888us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.245ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 9.389us - BuildRows: 44 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 35.123us - BuildTableInsertTime: 29.574us - BuildTableTime: 47.323us - CloseTime: 0ns - ExecTime: 171.126us - InputRows: 43 - MemoryUsage: - BuildBlocks: 1.29 KB - BuildKeyArena: 4.00 KB - HashTable: 436.00 B - PeakMemoryUsage: 1.71 KB - OpenTime: 15.792us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=277): - BlocksProduced: 33 - BytesReceived: 1.52 KB - CloseTime: 8.637us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 91.78us - ExecTime: 90.944us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.88 KB - MemoryUsage: - Blocks: 4.00 KB - PeakMemoryUsage: 1.62 KB - OpenTime: 13.588us - ProjectionTime: 0ns - RowsProduced: 43 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s903ms PipelineXTask (index=14):(Active: 96.516us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.640us - CloseTime: 5.937us - GetBlockTime: 0ns - OpenTime: 2.307us - PrepareTime: 44.822us - SinkTime: 19.585us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.452us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.900ms HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8689 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.822us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.657us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s904ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.309us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.71us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.702us - 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: 459.421us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 387.567us - CloseTime: 17.791us - GetBlockTime: 57.416us - OpenTime: 3.880us - PrepareTime: 44.484us - SinkTime: 258.548us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 428.53us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.956ms HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.375us - BuildRows: 786 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 61.634us - BuildTableInsertTime: 86.135us - BuildTableTime: 92.246us - CloseTime: 0ns - ExecTime: 262.836us - InputRows: 785 - MemoryUsage: - BuildBlocks: 54.44 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 82.28 KB - OpenTime: 6.841us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 14.738us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.720us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 81.00 KB - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 82.29 KB - OpenTime: 12.985us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s635ms PipelineXTask (index=15):(Active: 244.714us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 175.241us - CloseTime: 9.497us - GetBlockTime: 11.409us - OpenTime: 3.147us - PrepareTime: 52.2us - SinkTime: 137.962us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 227.683us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 886.852us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.326us - BuildRows: 759 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.974us - BuildTableInsertTime: 46.855us - BuildTableTime: 50.664us - CloseTime: 0ns - ExecTime: 142.706us - InputRows: 758 - MemoryUsage: - BuildBlocks: 52.18 KB - BuildKeyArena: 24.00 KB - HashTable: 7.71 KB - PeakMemoryUsage: 79.88 KB - OpenTime: 5.173us - 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.632us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.89us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 75.15 KB - OpenTime: 14.157us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s636ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 4.202ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.994ms - CloseTime: 48.516us - GetBlockTime: 2.267ms - OpenTime: 7.579us - PrepareTime: 145.788us - SinkTime: 1.602ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 448.856us DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 44.00 KB - CloseTime: 14.28us - CompressTime: 0ns - ExecTime: 1.677ms - InputRows: 4.651K (4651) - LocalBytesSent: 578.22 KB - LocalSendTime: 204.396us - LocalSentRows: 3.965K (3965) - MemoryUsage: - PeakMemoryUsage: 1019.56 KB - MergeBlockTime: 0ns - OpenTime: 69.332us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 702.379us - RowsProduced: 4.651K (4651) - RpcAvgTime: 1.28ms - RpcCount: 2 - RpcMaxTime: 1.163ms - RpcMinTime: 894.77us - RpcSumTime: 2.57ms - SerializeBatchTime: 135.118us - SplitBlockDistributeByChannelTime: 648.921us - SplitBlockHashComputeTime: 195.958us - UncompressedRowBatchSize: 106.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 20 - BuildOutputBlock: 0ns - CloseTime: 32.114us - ExecTime: 2.181ms - InitProbeSideTime: 186.623us - JoinFilterTimer: 3.419us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 38.357us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.750us - ProbeFindNextTime: 0ns - ProbeRows: 4.651K (4651) - ProbeTime: 1.664ms - ProbeWhenBuildSideOutputTime: 255.367us - ProbeWhenProbeSideOutputTime: 374.422us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 403.724us - ProjectionTime: 385.96us - RowsProduced: 4.651K (4651) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 95.871us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 435.13 KB - OpenTime: 3.297us - ProjectionTime: 0ns - RowsProduced: 4.651K (4651) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=8):(Active: 1.584ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.412ms - CloseTime: 38.763us - GetBlockTime: 818.226us - OpenTime: 2.493us - PrepareTime: 126.412us - SinkTime: 512.978us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.515ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.499ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.80 KB - CloseTime: 17.204us - CompressTime: 0ns - ExecTime: 596.115us - InputRows: 222 - LocalBytesSent: 26.76 KB - LocalSendTime: 136.697us - LocalSentRows: 188 - MemoryUsage: - PeakMemoryUsage: 61.75 KB - MergeBlockTime: 0ns - OpenTime: 71.643us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.81ms - RowsProduced: 222 - RpcAvgTime: 752.534us - RpcCount: 2 - RpcMaxTime: 795.769us - RpcMinTime: 709.299us - RpcSumTime: 1.505ms - SerializeBatchTime: 21.97us - SplitBlockDistributeByChannelTime: 154.27us - SplitBlockHashComputeTime: 40.38us - UncompressedRowBatchSize: 5.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 20 - BuildOutputBlock: 0ns - CloseTime: 17.207us - ExecTime: 781.807us - InitProbeSideTime: 41.386us - JoinFilterTimer: 2.293us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.308us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.413us - ProbeFindNextTime: 0ns - ProbeRows: 222 - ProbeTime: 509.651us - ProbeWhenBuildSideOutputTime: 68.753us - ProbeWhenProbeSideOutputTime: 96.594us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 36.494us - ProjectionTime: 200.178us - RowsProduced: 222 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 35.760us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 16.25 KB - OpenTime: 608ns - ProjectionTime: 0ns - RowsProduced: 222 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=16):(Active: 1.772ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.550ms - CloseTime: 38.284us - GetBlockTime: 961.156us - OpenTime: 4.380us - PrepareTime: 132.483us - SinkTime: 492.964us - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.710ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 861.879us DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.91 KB - CloseTime: 10.124us - CompressTime: 0ns - ExecTime: 566.721us - InputRows: 192 - LocalBytesSent: 22.78 KB - LocalSendTime: 113.276us - LocalSentRows: 160 - MemoryUsage: - PeakMemoryUsage: 47.69 KB - MergeBlockTime: 0ns - OpenTime: 69.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.44ms - RowsProduced: 192 - RpcAvgTime: 706.319us - RpcCount: 2 - RpcMaxTime: 761.644us - RpcMinTime: 650.995us - RpcSumTime: 1.412ms - SerializeBatchTime: 39.124us - SplitBlockDistributeByChannelTime: 101.904us - SplitBlockHashComputeTime: 41.484us - UncompressedRowBatchSize: 4.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 20 - BuildOutputBlock: 0ns - CloseTime: 26.180us - ExecTime: 912.262us - InitProbeSideTime: 47.848us - JoinFilterTimer: 1.847us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 19.712us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.499us - ProbeFindNextTime: 0ns - ProbeRows: 192 - ProbeTime: 576.886us - ProbeWhenBuildSideOutputTime: 76.9us - ProbeWhenProbeSideOutputTime: 107.522us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 36.909us - ProjectionTime: 247.493us - RowsProduced: 192 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 50.870us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 111.13 KB - OpenTime: 625ns - ProjectionTime: 0ns - RowsProduced: 192 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=24):(Active: 2.116ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.945ms - CloseTime: 32.282us - GetBlockTime: 584.891us - OpenTime: 5.874us - PrepareTime: 129.228us - SinkTime: 1.283ms - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.246ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.811ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.24 KB - CloseTime: 20.475us - CompressTime: 0ns - ExecTime: 1.377ms - InputRows: 92 - LocalBytesSent: 10.11 KB - LocalSendTime: 963.335us - LocalSentRows: 71 - MemoryUsage: - PeakMemoryUsage: 26.38 KB - MergeBlockTime: 0ns - OpenTime: 77.253us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.226ms - RowsProduced: 92 - RpcAvgTime: 975.226us - RpcCount: 2 - RpcMaxTime: 1.216ms - RpcMinTime: 733.562us - RpcSumTime: 1.950ms - SerializeBatchTime: 25.887us - SplitBlockDistributeByChannelTime: 53.176us - SplitBlockHashComputeTime: 24.33us - UncompressedRowBatchSize: 3.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 9.550us - ExecTime: 532.949us - InitProbeSideTime: 22.737us - JoinFilterTimer: 852ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 19.535us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.405us - ProbeFindNextTime: 0ns - ProbeRows: 92 - ProbeTime: 317.580us - ProbeWhenBuildSideOutputTime: 38.799us - ProbeWhenProbeSideOutputTime: 62.803us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 20.733us - ProjectionTime: 164.174us - RowsProduced: 92 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 34.886us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 125.44 KB - OpenTime: 606ns - ProjectionTime: 0ns - RowsProduced: 92 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=32):(Active: 1.330ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.134ms - CloseTime: 24.309us - GetBlockTime: 590.859us - OpenTime: 6.580us - PrepareTime: 160.299us - SinkTime: 464.646us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.290ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.181ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.39 KB - CloseTime: 9.618us - CompressTime: 0ns - ExecTime: 575.544us - InputRows: 108 - LocalBytesSent: 13.24 KB - LocalSendTime: 117.256us - LocalSentRows: 93 - MemoryUsage: - PeakMemoryUsage: 29.81 KB - MergeBlockTime: 0ns - OpenTime: 104.693us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.991ms - RowsProduced: 108 - RpcAvgTime: 720.47us - RpcCount: 2 - RpcMaxTime: 864.69us - RpcMinTime: 576.26us - RpcSumTime: 1.440ms - SerializeBatchTime: 37.909us - SplitBlockDistributeByChannelTime: 63.844us - SplitBlockHashComputeTime: 27.725us - UncompressedRowBatchSize: 2.36 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 13.6us - ExecTime: 574.152us - InitProbeSideTime: 27.356us - JoinFilterTimer: 1.633us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 23.266us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.619us - ProbeFindNextTime: 0ns - ProbeRows: 108 - ProbeTime: 365.269us - ProbeWhenBuildSideOutputTime: 40.868us - ProbeWhenProbeSideOutputTime: 80.699us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.67us - ProjectionTime: 147.545us - RowsProduced: 108 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 28.245us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 18.38 KB - OpenTime: 3.108us - ProjectionTime: 0ns - RowsProduced: 108 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=40):(Active: 1.285ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.104ms - CloseTime: 24.840us - GetBlockTime: 539.564us - OpenTime: 4.7us - PrepareTime: 148.378us - SinkTime: 504.80us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.253ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.206ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.84 KB - CloseTime: 7.808us - CompressTime: 0ns - ExecTime: 602.622us - InputRows: 106 - LocalBytesSent: 10.82 KB - LocalSendTime: 128.232us - LocalSentRows: 76 - MemoryUsage: - PeakMemoryUsage: 30.75 KB - MergeBlockTime: 0ns - OpenTime: 93.711us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.845ms - RowsProduced: 106 - RpcAvgTime: 1.121ms - RpcCount: 2 - RpcMaxTime: 1.429ms - RpcMinTime: 813.778us - RpcSumTime: 2.243ms - SerializeBatchTime: 33.142us - SplitBlockDistributeByChannelTime: 57.911us - SplitBlockHashComputeTime: 23.783us - UncompressedRowBatchSize: 4.62 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 15.641us - ExecTime: 526.86us - InitProbeSideTime: 24.908us - JoinFilterTimer: 1.516us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.36us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.315us - ProbeFindNextTime: 0ns - ProbeRows: 106 - ProbeTime: 340.114us - ProbeWhenBuildSideOutputTime: 49.440us - ProbeWhenProbeSideOutputTime: 62.646us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 16.602us - ProjectionTime: 128.850us - RowsProduced: 106 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 25.896us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 124.75 KB - OpenTime: 641ns - ProjectionTime: 0ns - RowsProduced: 106 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=48):(Active: 1.282ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.92ms - CloseTime: 30.953us - GetBlockTime: 553.43us - OpenTime: 2.830us - PrepareTime: 151.981us - SinkTime: 487.174us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.239ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.353ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.41 KB - CloseTime: 11.320us - CompressTime: 0ns - ExecTime: 559.255us - InputRows: 710 - LocalBytesSent: 102.23 KB - LocalSendTime: 109.449us - LocalSentRows: 701 - MemoryUsage: - PeakMemoryUsage: 169.31 KB - MergeBlockTime: 0ns - OpenTime: 63.349us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.661ms - RowsProduced: 710 - RpcAvgTime: 1.228ms - RpcCount: 2 - RpcMaxTime: 1.726ms - RpcMinTime: 729.318us - RpcSumTime: 2.456ms - SerializeBatchTime: 13.121us - SplitBlockDistributeByChannelTime: 118.993us - SplitBlockHashComputeTime: 27.813us - UncompressedRowBatchSize: 1.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 17.260us - ExecTime: 565.572us - InitProbeSideTime: 41.596us - JoinFilterTimer: 763ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 32.562us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.838us - ProbeFindNextTime: 0ns - ProbeRows: 710 - ProbeTime: 360.325us - ProbeWhenBuildSideOutputTime: 52.977us - ProbeWhenProbeSideOutputTime: 66.304us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 73.621us - ProjectionTime: 137.731us - RowsProduced: 710 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 19.84us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 121.75 KB - OpenTime: 697ns - ProjectionTime: 0ns - RowsProduced: 710 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=56):(Active: 1.545ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.406ms - CloseTime: 25.433us - GetBlockTime: 758.220us - OpenTime: 2.225us - PrepareTime: 107.298us - SinkTime: 573.75us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.506ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.100ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.97 KB - CloseTime: 12.903us - CompressTime: 0ns - ExecTime: 635.27us - InputRows: 108 - LocalBytesSent: 13.52 KB - LocalSendTime: 111.895us - LocalSentRows: 95 - MemoryUsage: - PeakMemoryUsage: 30.13 KB - MergeBlockTime: 0ns - OpenTime: 54.149us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.992ms - RowsProduced: 108 - RpcAvgTime: 744.643us - RpcCount: 2 - RpcMaxTime: 807.595us - RpcMinTime: 681.692us - RpcSumTime: 1.489ms - SerializeBatchTime: 14.492us - SplitBlockDistributeByChannelTime: 100.69us - SplitBlockHashComputeTime: 39.328us - UncompressedRowBatchSize: 1.96 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 9.859us - ExecTime: 718.59us - InitProbeSideTime: 27.573us - JoinFilterTimer: 1.92us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.554us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.541us - ProbeFindNextTime: 0ns - ProbeRows: 108 - ProbeTime: 448.242us - ProbeWhenBuildSideOutputTime: 51.551us - ProbeWhenProbeSideOutputTime: 83.381us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 20.365us - ProjectionTime: 209.928us - RowsProduced: 108 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 34.241us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 108.00 KB - OpenTime: 619ns - ProjectionTime: 0ns - RowsProduced: 108 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=64):(Active: 1.378ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.196ms - CloseTime: 32.483us - GetBlockTime: 623.586us - OpenTime: 4.469us - PrepareTime: 139.782us - SinkTime: 506.90us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.333ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.743ms DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.89 KB - CloseTime: 14.273us - CompressTime: 0ns - ExecTime: 596.692us - InputRows: 111 - LocalBytesSent: 10.25 KB - LocalSendTime: 143.957us - LocalSentRows: 72 - MemoryUsage: - PeakMemoryUsage: 28.94 KB - MergeBlockTime: 0ns - OpenTime: 79.623us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.560ms - RowsProduced: 111 - RpcAvgTime: 1.629ms - RpcCount: 2 - RpcMaxTime: 1.716ms - RpcMinTime: 1.542ms - RpcSumTime: 3.259ms - SerializeBatchTime: 48.280us - SplitBlockDistributeByChannelTime: 61.465us - SplitBlockHashComputeTime: 24.954us - UncompressedRowBatchSize: 5.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 15.545us - ExecTime: 600.481us - InitProbeSideTime: 24.706us - JoinFilterTimer: 1.62us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.218us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.995us - ProbeFindNextTime: 0ns - ProbeRows: 111 - ProbeTime: 385.118us - ProbeWhenBuildSideOutputTime: 38.461us - ProbeWhenProbeSideOutputTime: 73.74us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 18.714us - ProjectionTime: 153.430us - RowsProduced: 111 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 29.604us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 111.13 KB - OpenTime: 778ns - ProjectionTime: 0ns - RowsProduced: 111 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=72):(Active: 1.593ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.422ms - CloseTime: 30.981us - GetBlockTime: 732.338us - OpenTime: 2.817us - PrepareTime: 132.895us - SinkTime: 638.86us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.551ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 869.157us DATA_STREAM_SINK_OPERATOR (id=334,dst_id=334): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 42.58 KB - CloseTime: 10.697us - CompressTime: 0ns - ExecTime: 712.597us - InputRows: 1.357K (1357) - LocalBytesSent: 100.32 KB - LocalSendTime: 109.238us - LocalSentRows: 689 - MemoryUsage: - PeakMemoryUsage: 304.50 KB - MergeBlockTime: 0ns - OpenTime: 66.791us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.729ms - RowsProduced: 1.357K (1357) - RpcAvgTime: 1.315ms - RpcCount: 2 - RpcMaxTime: 1.804ms - RpcMinTime: 827.38us - RpcSumTime: 2.631ms - SerializeBatchTime: 102.260us - SplitBlockDistributeByChannelTime: 164.723us - SplitBlockHashComputeTime: 52.107us - UncompressedRowBatchSize: 103.56 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 17.965us - ExecTime: 701.450us - InitProbeSideTime: 56.924us - JoinFilterTimer: 1.148us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 14.368us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.332us - ProbeFindNextTime: 0ns - ProbeRows: 1.357K (1357) - ProbeTime: 490.553us - ProbeWhenBuildSideOutputTime: 79.795us - ProbeWhenProbeSideOutputTime: 96.652us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 102.24us - ProjectionTime: 156.550us - RowsProduced: 1.357K (1357) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-11): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 44.972us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 224.44 KB - OpenTime: 559ns - ProjectionTime: 0ns - RowsProduced: 1.357K (1357) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.194ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.118ms - CloseTime: 10.195us - GetBlockTime: 915.529us - OpenTime: 5.665us - PrepareTime: 56.72us - SinkTime: 121.939us - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.169ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.379ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 119.777us - InputRows: 763 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.265us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 8.363us - ExecTime: 843.280us - InitProbeSideTime: 56.460us - JoinFilterTimer: 1.163us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 18.248us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.720us - ProbeFindNextTime: 0ns - ProbeRows: 763 - ProbeTime: 518.370us - ProbeWhenBuildSideOutputTime: 42.478us - ProbeWhenProbeSideOutputTime: 109.868us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 78.726us - ProjectionTime: 259.175us - RowsProduced: 763 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 52.375us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 93.81 KB - OpenTime: 543ns - ProjectionTime: 0ns - RowsProduced: 763 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=9):(Active: 911.210us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 828.339us - CloseTime: 6.186us - GetBlockTime: 693.972us - OpenTime: 5.356us - PrepareTime: 66.574us - SinkTime: 65.541us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 889.307us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.678ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.944us - InputRows: 762 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.229us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.253us - ExecTime: 654.173us - InitProbeSideTime: 58.929us - JoinFilterTimer: 816ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 14.548us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.491us - ProbeFindNextTime: 0ns - ProbeRows: 762 - ProbeTime: 403.99us - ProbeWhenBuildSideOutputTime: 36.191us - ProbeWhenProbeSideOutputTime: 74.870us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 53.540us - ProjectionTime: 202.361us - RowsProduced: 762 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 31.678us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 94.88 KB - OpenTime: 2.402us - ProjectionTime: 0ns - RowsProduced: 762 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=17):(Active: 811.757us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 744.835us - CloseTime: 7.535us - GetBlockTime: 616.384us - OpenTime: 2.969us - PrepareTime: 51.865us - SinkTime: 69.264us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 790.410us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.304ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 67.621us - InputRows: 759 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.226us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 6.463us - ExecTime: 586.354us - InitProbeSideTime: 49.750us - JoinFilterTimer: 836ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 14.696us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.619us - ProbeFindNextTime: 0ns - ProbeRows: 759 - ProbeTime: 345.389us - ProbeWhenBuildSideOutputTime: 26.279us - ProbeWhenProbeSideOutputTime: 62.94us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 37.379us - ProjectionTime: 193.66us - RowsProduced: 759 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 23.638us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 98.44 KB - OpenTime: 512ns - ProjectionTime: 0ns - RowsProduced: 759 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=25):(Active: 878.681us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 812.809us - CloseTime: 7.223us - GetBlockTime: 691.566us - OpenTime: 4.417us - PrepareTime: 50.611us - SinkTime: 60.990us - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 864.304us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.163ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 59.4us - InputRows: 785 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.129us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.400us - ExecTime: 668.992us - InitProbeSideTime: 61.844us - JoinFilterTimer: 845ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 19.701us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.843us - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 401.520us - ProbeWhenBuildSideOutputTime: 30.176us - ProbeWhenProbeSideOutputTime: 79.674us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 55.705us - ProjectionTime: 215.67us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 23.614us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 115.38 KB - OpenTime: 597ns - ProjectionTime: 0ns - RowsProduced: 785 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=33):(Active: 796.126us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 739.871us - CloseTime: 4.463us - GetBlockTime: 620.322us - OpenTime: 1.939us - PrepareTime: 46.104us - SinkTime: 66.915us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 779.500us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.128ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 64.743us - InputRows: 768 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.132us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 3.518us - ExecTime: 585.558us - InitProbeSideTime: 44.743us - JoinFilterTimer: 744ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 12.289us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.847us - ProbeFindNextTime: 0ns - ProbeRows: 768 - ProbeTime: 347.291us - ProbeWhenBuildSideOutputTime: 44.190us - ProbeWhenProbeSideOutputTime: 55.773us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 36.950us - ProjectionTime: 197.730us - RowsProduced: 768 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 25.40us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 95.69 KB - OpenTime: 615ns - ProjectionTime: 0ns - RowsProduced: 768 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=41):(Active: 774.183us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 706.626us - CloseTime: 12.550us - GetBlockTime: 581.125us - OpenTime: 3.212us - PrepareTime: 47.681us - SinkTime: 70.286us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 749.756us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.350ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 68.781us - InputRows: 785 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.106us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.992us - ExecTime: 555.26us - InitProbeSideTime: 50.806us - JoinFilterTimer: 601ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 15.16us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.31us - ProbeFindNextTime: 0ns - ProbeRows: 785 - ProbeTime: 327.980us - ProbeWhenBuildSideOutputTime: 31.588us - ProbeWhenProbeSideOutputTime: 70.869us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 32.476us - ProjectionTime: 175.155us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 28.103us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 532ns - ProjectionTime: 0ns - RowsProduced: 785 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=49):(Active: 986.390us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 920.489us - CloseTime: 12.487us - GetBlockTime: 766.518us - OpenTime: 2.853us - PrepareTime: 46.952us - SinkTime: 93.681us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 968.174us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.154ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 90.242us - InputRows: 737 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.61us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.30us - ExecTime: 739.284us - InitProbeSideTime: 55.702us - JoinFilterTimer: 1.37us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 12.845us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.929us - ProbeFindNextTime: 0ns - ProbeRows: 737 - ProbeTime: 438.856us - ProbeWhenBuildSideOutputTime: 39.55us - ProbeWhenProbeSideOutputTime: 82.397us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 44.113us - ProjectionTime: 246.418us - RowsProduced: 737 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 25.713us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 115.31 KB - OpenTime: 582ns - ProjectionTime: 0ns - RowsProduced: 737 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=57):(Active: 752.580us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 687.124us - CloseTime: 11.678us - GetBlockTime: 576.915us - OpenTime: 2.646us - PrepareTime: 47.123us - SinkTime: 51.55us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 727.766us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.90ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 49.129us - InputRows: 767 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.40us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.606us - ExecTime: 547.357us - InitProbeSideTime: 41.859us - JoinFilterTimer: 647ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 21.92us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.383us - ProbeFindNextTime: 0ns - ProbeRows: 767 - ProbeTime: 319.562us - ProbeWhenBuildSideOutputTime: 24.485us - ProbeWhenProbeSideOutputTime: 51.675us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 28.794us - ProjectionTime: 171.634us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 33.598us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 96.63 KB - OpenTime: 476ns - ProjectionTime: 0ns - RowsProduced: 767 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=65):(Active: 961.587us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 888.114us - CloseTime: 17.841us - GetBlockTime: 754.473us - OpenTime: 2.544us - PrepareTime: 48.972us - SinkTime: 66.962us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 928.598us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.155ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 64.79us - InputRows: 765 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.460us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 16.811us - ExecTime: 725.469us - InitProbeSideTime: 64.311us - JoinFilterTimer: 1.255us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 13.947us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.325us - ProbeFindNextTime: 0ns - ProbeRows: 765 - ProbeTime: 403.435us - ProbeWhenBuildSideOutputTime: 35.592us - ProbeWhenProbeSideOutputTime: 80.956us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 44.125us - ProjectionTime: 257.876us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 27.460us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 91.00 KB - OpenTime: 692ns - ProjectionTime: 0ns - RowsProduced: 765 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=73):(Active: 555.481us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 498.66us - CloseTime: 5.883us - GetBlockTime: 429.660us - OpenTime: 2.438us - PrepareTime: 45.761us - SinkTime: 34.200us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 544.923us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.969ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-11): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 33.52us - InputRows: 766 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 997ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=332): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 4.489us - ExecTime: 418.737us - InitProbeSideTime: 36.179us - JoinFilterTimer: 475ns - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 13.506us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.114us - ProbeFindNextTime: 0ns - ProbeRows: 766 - ProbeTime: 249.415us - ProbeWhenBuildSideOutputTime: 26.189us - ProbeWhenProbeSideOutputTime: 48.287us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.38us - ProjectionTime: 132.814us - RowsProduced: 766 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-10): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 16.608us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 107.63 KB - OpenTime: 557ns - ProjectionTime: 0ns - RowsProduced: 766 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 1.174ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.109ms - CloseTime: 7.952us - GetBlockTime: 857.408us - OpenTime: 4.187us - PrepareTime: 48.368us - SinkTime: 179.183us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.152ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 994.708us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 175.347us - InputRows: 201 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.15us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 6.66us - ExecTime: 769.195us - InitProbeSideTime: 30.777us - JoinFilterTimer: 1.662us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.624us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.184us - ProbeFindNextTime: 0ns - ProbeRows: 201 - ProbeTime: 443.720us - ProbeWhenBuildSideOutputTime: 29.188us - ProbeWhenProbeSideOutputTime: 96.759us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.627us - ProjectionTime: 240.898us - RowsProduced: 201 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 64.611us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 12.13 KB - OpenTime: 473ns - ProjectionTime: 0ns - RowsProduced: 201 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=10):(Active: 996.170us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 936.714us - CloseTime: 7.376us - GetBlockTime: 793.557us - OpenTime: 6.918us - PrepareTime: 41.453us - SinkTime: 72.491us - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 979.720us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.716ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 68.438us - InputRows: 196 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.270us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 5.943us - ExecTime: 731.268us - InitProbeSideTime: 42.393us - JoinFilterTimer: 1.653us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.939us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.298us - ProbeFindNextTime: 0ns - ProbeRows: 196 - ProbeTime: 425.900us - ProbeWhenBuildSideOutputTime: 25.281us - ProbeWhenProbeSideOutputTime: 84.37us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 11.331us - ProjectionTime: 241.633us - RowsProduced: 196 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 44.983us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 35.19 KB - OpenTime: 458ns - ProjectionTime: 0ns - RowsProduced: 196 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=18):(Active: 2.21ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.967ms - CloseTime: 4.572us - GetBlockTime: 1.787ms - OpenTime: 2.831us - PrepareTime: 42.345us - SinkTime: 99.497us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.5ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 683.969us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 93.747us - InputRows: 6.522K (6522) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.7us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 3.925us - ExecTime: 1.714ms - InitProbeSideTime: 256.463us - JoinFilterTimer: 1.560us - MemoryUsage: - PeakMemoryUsage: 20.00 KB - ProbeKeyArena: 20.00 KB - OpenTime: 11.35us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.333us - ProbeFindNextTime: 0ns - ProbeRows: 6.522K (6522) - ProbeTime: 1.247ms - ProbeWhenBuildSideOutputTime: 116.398us - ProbeWhenProbeSideOutputTime: 371.726us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 212.769us - ProjectionTime: 400.28us - RowsProduced: 6.522K (6522) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 49.20us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 410.00 KB - OpenTime: 1.639us - ProjectionTime: 0ns - RowsProduced: 6.522K (6522) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=26):(Active: 768.617us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 688.52us - CloseTime: 28.6us - GetBlockTime: 585.320us - OpenTime: 3.280us - PrepareTime: 45.969us - SinkTime: 54.383us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 731.218us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.469ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.578us - InputRows: 125 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 892ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 7.860us - ExecTime: 562.154us - InitProbeSideTime: 34.193us - JoinFilterTimer: 1.6us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 25.217us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.494us - ProbeFindNextTime: 0ns - ProbeRows: 125 - ProbeTime: 317.538us - ProbeWhenBuildSideOutputTime: 16.960us - ProbeWhenProbeSideOutputTime: 50.188us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 9.346us - ProjectionTime: 175.240us - RowsProduced: 125 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 32.377us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 20.00 KB - OpenTime: 936ns - ProjectionTime: 0ns - RowsProduced: 125 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=34):(Active: 519.549us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 465.491us - CloseTime: 6.720us - GetBlockTime: 368.866us - OpenTime: 2.960us - PrepareTime: 41.143us - SinkTime: 60.127us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 504.40us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 475.504us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 60.194us - InputRows: 110 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.797us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 4.834us - ExecTime: 341.376us - InitProbeSideTime: 24.328us - JoinFilterTimer: 319ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.554us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.689us - ProbeFindNextTime: 0ns - ProbeRows: 110 - ProbeTime: 195.437us - ProbeWhenBuildSideOutputTime: 11.797us - ProbeWhenProbeSideOutputTime: 39.314us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.971us - ProjectionTime: 110.549us - RowsProduced: 110 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 31.240us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 11.25 KB - OpenTime: 519ns - ProjectionTime: 0ns - RowsProduced: 110 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=42):(Active: 420.944us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 367.980us - CloseTime: 4.94us - GetBlockTime: 305.400us - OpenTime: 1.910us - PrepareTime: 43.398us - SinkTime: 35.208us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 410.439us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 887.321us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 34.19us - InputRows: 104 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 882ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 3.559us - ExecTime: 295.26us - InitProbeSideTime: 23.457us - JoinFilterTimer: 402ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 12.772us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.739us - ProbeFindNextTime: 0ns - ProbeRows: 104 - ProbeTime: 170.299us - ProbeWhenBuildSideOutputTime: 9.401us - ProbeWhenProbeSideOutputTime: 31.285us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.909us - ProjectionTime: 94.118us - RowsProduced: 104 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 17.10us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 12.69 KB - OpenTime: 2.443us - ProjectionTime: 0ns - RowsProduced: 104 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=50):(Active: 534.444us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 464.629us - CloseTime: 8.440us - GetBlockTime: 389.813us - OpenTime: 2.332us - PrepareTime: 55.603us - SinkTime: 36.780us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 519.217us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.340ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 35.892us - InputRows: 108 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.69us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 7.40us - ExecTime: 370.382us - InitProbeSideTime: 20.513us - JoinFilterTimer: 895ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.315us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.641us - ProbeFindNextTime: 0ns - ProbeRows: 108 - ProbeTime: 187.527us - ProbeWhenBuildSideOutputTime: 12.248us - ProbeWhenProbeSideOutputTime: 35.836us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.714us - ProjectionTime: 137.836us - RowsProduced: 108 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 20.906us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 19.56 KB - OpenTime: 460ns - ProjectionTime: 0ns - RowsProduced: 108 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms PipelineXTask (index=58):(Active: 671.784us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 614.262us - CloseTime: 6.909us - GetBlockTime: 504.529us - OpenTime: 2.464us - PrepareTime: 44.399us - SinkTime: 62.923us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 653.899us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 965.739us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 45.829us - InputRows: 98 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 919ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 5.802us - ExecTime: 468.342us - InitProbeSideTime: 22.803us - JoinFilterTimer: 748ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.82us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.195us - ProbeFindNextTime: 0ns - ProbeRows: 98 - ProbeTime: 258.396us - ProbeWhenBuildSideOutputTime: 16.57us - ProbeWhenProbeSideOutputTime: 46.52us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 6.54us - ProjectionTime: 164.278us - RowsProduced: 98 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 26.984us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 11.69 KB - OpenTime: 553ns - ProjectionTime: 0ns - RowsProduced: 98 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=66):(Active: 617.633us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 512.631us - CloseTime: 6.967us - GetBlockTime: 379.24us - OpenTime: 1.978us - PrepareTime: 91.959us - SinkTime: 70.489us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 598.946us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 697.97us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 109.577us - InputRows: 99 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 41.289us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 6.424us - ExecTime: 350.459us - InitProbeSideTime: 27.222us - JoinFilterTimer: 452ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.383us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.445us - ProbeFindNextTime: 0ns - ProbeRows: 99 - ProbeTime: 196.194us - ProbeWhenBuildSideOutputTime: 13.556us - ProbeWhenProbeSideOutputTime: 43.253us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.367us - ProjectionTime: 96.534us - RowsProduced: 99 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 35.173us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 10.69 KB - OpenTime: 473ns - ProjectionTime: 0ns - RowsProduced: 99 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s308ms PipelineXTask (index=74):(Active: 382.876us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 313.362us - CloseTime: 4.118us - GetBlockTime: 266.480us - OpenTime: 2.173us - PrepareTime: 59.692us - SinkTime: 17.872us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 373.279us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.221ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-10): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.280us - InputRows: 94 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.831us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=331): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 3.557us - ExecTime: 246.584us - InitProbeSideTime: 19.361us - JoinFilterTimer: 341ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 12.965us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.517us - ProbeFindNextTime: 0ns - ProbeRows: 94 - ProbeTime: 138.478us - ProbeWhenBuildSideOutputTime: 8.458us - ProbeWhenProbeSideOutputTime: 29.247us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.236us - ProjectionTime: 77.366us - RowsProduced: 94 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-9): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 25.979us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 17.31 KB - OpenTime: 496ns - ProjectionTime: 0ns - RowsProduced: 94 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 20s307ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 740.801us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 641.455us - CloseTime: 10.901us - GetBlockTime: 538.259us - OpenTime: 4.821us - PrepareTime: 79.759us - SinkTime: 65.857us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 722.736us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 694.412us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 65.230us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.61us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 4.491us - ExecTime: 509.773us - InitProbeSideTime: 32.899us - JoinFilterTimer: 542ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.782us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.20us - ProbeFindNextTime: 0ns - ProbeRows: 327 - ProbeTime: 313.179us - ProbeWhenBuildSideOutputTime: 62.828us - ProbeWhenProbeSideOutputTime: 14.589us - ProbeWhenProcessHashTableTime: 62.856us - ProbeWhenSearchHashTableTime: 28.810us - ProjectionTime: 147.733us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.74 KB - CloseTime: 4.363us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 28.293us - ExecTime: 63.827us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.13 KB - MemoryUsage: - Blocks: 10.63 KB - PeakMemoryUsage: 10.63 KB - OpenTime: 33.518us - ProjectionTime: 0ns - RowsProduced: 327 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=11):(Active: 889.142us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 809.630us - CloseTime: 12.484us - GetBlockTime: 639.538us - OpenTime: 2.936us - PrepareTime: 60.253us - SinkTime: 120.598us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 863.212us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 620.395us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 118.271us - InputRows: 756 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 918ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.958us - ExecTime: 609.976us - InitProbeSideTime: 51.411us - JoinFilterTimer: 504ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 17.422us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.320us - ProbeFindNextTime: 0ns - ProbeRows: 304 - ProbeTime: 387.499us - ProbeWhenBuildSideOutputTime: 54.236us - ProbeWhenProbeSideOutputTime: 17.706us - ProbeWhenProcessHashTableTime: 64.695us - ProbeWhenSearchHashTableTime: 35.80us - ProjectionTime: 162.297us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.96 KB - CloseTime: 4.120us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 40.462us - ExecTime: 51.438us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.50 KB - MemoryUsage: - Blocks: 6.13 KB - PeakMemoryUsage: 6.13 KB - OpenTime: 14.818us - ProjectionTime: 0ns - RowsProduced: 304 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=19):(Active: 892.768us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 803.317us - CloseTime: 11.93us - GetBlockTime: 675.326us - OpenTime: 3.630us - PrepareTime: 71.125us - SinkTime: 89.321us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 873.578us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 412.980us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 86.603us - InputRows: 770 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 964ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.110us - ExecTime: 658.577us - InitProbeSideTime: 47.202us - JoinFilterTimer: 918ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 27.819us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.811us - ProbeFindNextTime: 0ns - ProbeRows: 314 - ProbeTime: 391.738us - ProbeWhenBuildSideOutputTime: 63.416us - ProbeWhenProbeSideOutputTime: 21.591us - ProbeWhenProcessHashTableTime: 55.864us - ProbeWhenSearchHashTableTime: 28.930us - ProjectionTime: 179.426us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.58 KB - CloseTime: 4.11us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 37.131us - ExecTime: 52.91us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.63 KB - MemoryUsage: - Blocks: 8.63 KB - PeakMemoryUsage: 8.63 KB - OpenTime: 15.878us - ProjectionTime: 0ns - RowsProduced: 314 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=27):(Active: 959.862us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 882.877us - CloseTime: 13.178us - GetBlockTime: 758.89us - OpenTime: 2.779us - PrepareTime: 57.643us - SinkTime: 65.564us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 936.811us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.242ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 62.190us - InputRows: 738 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 850ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.585us - ExecTime: 726.335us - InitProbeSideTime: 67.620us - JoinFilterTimer: 858ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.208us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.183us - ProbeFindNextTime: 0ns - ProbeRows: 306 - ProbeTime: 450.339us - ProbeWhenBuildSideOutputTime: 58.717us - ProbeWhenProbeSideOutputTime: 21.486us - ProbeWhenProcessHashTableTime: 84.532us - ProbeWhenSearchHashTableTime: 36.965us - ProjectionTime: 209.770us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.58 KB - CloseTime: 5.198us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 25.713us - ExecTime: 54.79us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.50 KB - MemoryUsage: - Blocks: 9.25 KB - PeakMemoryUsage: 9.25 KB - OpenTime: 14.204us - ProjectionTime: 0ns - RowsProduced: 306 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=35):(Active: 985.428us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 876.611us - CloseTime: 13.322us - GetBlockTime: 742.59us - OpenTime: 2.238us - PrepareTime: 89.493us - SinkTime: 93.378us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 963.428us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 239.708us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 90.867us - InputRows: 784 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 880ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.910us - ExecTime: 678.395us - InitProbeSideTime: 35.341us - JoinFilterTimer: 986ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 10.547us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.216us - ProbeFindNextTime: 0ns - ProbeRows: 315 - ProbeTime: 437.465us - ProbeWhenBuildSideOutputTime: 68.167us - ProbeWhenProbeSideOutputTime: 19.571us - ProbeWhenProcessHashTableTime: 94.611us - ProbeWhenSearchHashTableTime: 35.240us - ProjectionTime: 160.971us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.71 KB - CloseTime: 4.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 15.760us - ExecTime: 97.731us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.13 KB - MemoryUsage: - Blocks: 10.25 KB - PeakMemoryUsage: 10.25 KB - OpenTime: 31.855us - ProjectionTime: 0ns - RowsProduced: 315 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=43):(Active: 1.107ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.22ms - CloseTime: 23.933us - GetBlockTime: 905.114us - OpenTime: 2.307us - PrepareTime: 55.751us - SinkTime: 70.905us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.76ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 555.733us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 66.941us - InputRows: 765 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.141us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.874us - ExecTime: 855.553us - InitProbeSideTime: 69.213us - JoinFilterTimer: 1.82us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 8.738us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.852us - ProbeFindNextTime: 0ns - ProbeRows: 297 - ProbeTime: 533.293us - ProbeWhenBuildSideOutputTime: 83.677us - ProbeWhenProbeSideOutputTime: 23.496us - ProbeWhenProcessHashTableTime: 89.417us - ProbeWhenSearchHashTableTime: 34.751us - ProjectionTime: 252.154us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.65 KB - CloseTime: 7.677us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.312us - ExecTime: 71.718us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.13 KB - MemoryUsage: - Blocks: 11.75 KB - PeakMemoryUsage: 11.75 KB - OpenTime: 17.221us - ProjectionTime: 0ns - RowsProduced: 297 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=51):(Active: 918.221us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 836.100us - CloseTime: 12.557us - GetBlockTime: 705.954us - OpenTime: 3.719us - PrepareTime: 62.158us - SinkTime: 90.762us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 897.259us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.984ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 87.642us - InputRows: 776 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 869ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.428us - ExecTime: 665.5us - InitProbeSideTime: 44.238us - JoinFilterTimer: 1.24us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 12.913us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.41us - ProbeFindNextTime: 0ns - ProbeRows: 302 - ProbeTime: 429.116us - ProbeWhenBuildSideOutputTime: 70.421us - ProbeWhenProbeSideOutputTime: 33.965us - ProbeWhenProcessHashTableTime: 83.785us - ProbeWhenSearchHashTableTime: 34.256us - ProjectionTime: 177.533us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.58 KB - CloseTime: 4.963us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.154us - ExecTime: 50.545us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.63 KB - MemoryUsage: - Blocks: 8.75 KB - PeakMemoryUsage: 8.75 KB - OpenTime: 15.554us - ProjectionTime: 0ns - RowsProduced: 302 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=59):(Active: 1.43ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 960.58us - CloseTime: 15.993us - GetBlockTime: 809.810us - OpenTime: 2.487us - PrepareTime: 61.373us - SinkTime: 96.615us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.16ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 862.677us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 93.185us - InputRows: 777 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 825ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 6.440us - ExecTime: 767.235us - InitProbeSideTime: 37.667us - JoinFilterTimer: 757ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 10.619us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.828us - ProbeFindNextTime: 0ns - ProbeRows: 305 - ProbeTime: 450.247us - ProbeWhenBuildSideOutputTime: 69.200us - ProbeWhenProbeSideOutputTime: 18.238us - ProbeWhenProcessHashTableTime: 103.640us - ProbeWhenSearchHashTableTime: 33.305us - ProjectionTime: 250.148us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.74 KB - CloseTime: 6.752us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 15.340us - ExecTime: 51.247us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.50 KB - MemoryUsage: - Blocks: 10.00 KB - PeakMemoryUsage: 10.00 KB - OpenTime: 9.863us - ProjectionTime: 0ns - RowsProduced: 305 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=67):(Active: 1.156ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.31ms - CloseTime: 15.866us - GetBlockTime: 871.36us - OpenTime: 2.665us - PrepareTime: 102.866us - SinkTime: 109.628us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.132ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 512.419us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 104.813us - InputRows: 754 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 813ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 6.778us - ExecTime: 809.717us - InitProbeSideTime: 50.654us - JoinFilterTimer: 976ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.213us - ProbeFindNextTime: 0ns - ProbeRows: 317 - ProbeTime: 466.375us - ProbeWhenBuildSideOutputTime: 71.385us - ProbeWhenProbeSideOutputTime: 23.173us - ProbeWhenProcessHashTableTime: 77.577us - ProbeWhenSearchHashTableTime: 34.275us - ProjectionTime: 270.156us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.72 KB - CloseTime: 5.789us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 16.199us - ExecTime: 100.596us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.88 KB - MemoryUsage: - Blocks: 13.88 KB - PeakMemoryUsage: 13.88 KB - OpenTime: 36.863us - ProjectionTime: 0ns - RowsProduced: 317 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms PipelineXTask (index=75):(Active: 823.891us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 743.437us - CloseTime: 14.317us - GetBlockTime: 665.425us - OpenTime: 2.168us - PrepareTime: 60.477us - SinkTime: 27.330us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 803.527us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 752.545us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-9): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 25.141us - InputRows: 767 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 767ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=330): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 5.549us - ExecTime: 620.849us - InitProbeSideTime: 42.579us - JoinFilterTimer: 1.56us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 11.374us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.832us - ProbeFindNextTime: 0ns - ProbeRows: 309 - ProbeTime: 393.770us - ProbeWhenBuildSideOutputTime: 52.116us - ProbeWhenProbeSideOutputTime: 14.827us - ProbeWhenProcessHashTableTime: 98.384us - ProbeWhenSearchHashTableTime: 37.596us - ProjectionTime: 173.149us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=329): - BlocksProduced: 14 - BytesReceived: 1.66 KB - CloseTime: 6.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 16.216us - ExecTime: 56.704us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.63 KB - MemoryUsage: - Blocks: 14.63 KB - PeakMemoryUsage: 14.63 KB - OpenTime: 17.312us - ProjectionTime: 0ns - RowsProduced: 309 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=4):(Active: 823.568us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 754.181us - CloseTime: 8.136us - GetBlockTime: 137.192us - OpenTime: 1.452us - PrepareTime: 55.717us - SinkTime: 565.830us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 803.96us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.42ms HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 6.311us - BuildRows: 4.965K (4965) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 318.975us - BuildTableInsertTime: 160.297us - BuildTableTime: 174.407us - CloseTime: 0ns - ExecTime: 570.448us - InputRows: 4.964K (4964) - MemoryUsage: - BuildBlocks: 318.79 KB - BuildKeyArena: 116.00 KB - HashTable: 51.40 KB - PeakMemoryUsage: 482.18 KB - OpenTime: 8.910us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=252): - BlocksProduced: 36 - BytesReceived: 78.29 KB - CloseTime: 6.452us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 445.84us - ExecTime: 155.533us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 288.00 KB - MemoryUsage: - Blocks: 167.50 KB - PeakMemoryUsage: 154.25 KB - OpenTime: 17.718us - ProjectionTime: 0ns - RowsProduced: 4.964K (4964) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s598ms PipelineXTask (index=12):(Active: 93.80us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.327us - CloseTime: 9.958us - GetBlockTime: 0ns - OpenTime: 1.586us - PrepareTime: 42.113us - SinkTime: 17.427us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 77.669us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.458us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.385us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.677us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.478us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.936us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.882us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 89.331us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.362us - CloseTime: 12.668us - GetBlockTime: 0ns - OpenTime: 2.279us - PrepareTime: 42.302us - SinkTime: 9.631us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 70.436us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.165us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.54us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.604us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.301us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.221us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.331us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 90.39us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.522us - CloseTime: 6.85us - GetBlockTime: 0ns - OpenTime: 1.288us - PrepareTime: 63.916us - SinkTime: 5.560us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.627us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.441us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.62us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.719us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.916us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.221us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.696us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=36):(Active: 73.173us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.236us - CloseTime: 10.800us - GetBlockTime: 0ns - OpenTime: 1.194us - PrepareTime: 40.701us - SinkTime: 6.486us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 57.948us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.117us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.891us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.562us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.524us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.689us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.633us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 95.680us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.297us - CloseTime: 4.298us - GetBlockTime: 0ns - OpenTime: 2.1us - PrepareTime: 48.806us - SinkTime: 18.903us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.182us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.518us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.362us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.562us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.39us - 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: 19.24us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=52):(Active: 70.769us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.116us - CloseTime: 6.680us - GetBlockTime: 0ns - OpenTime: 1.232us - PrepareTime: 40.637us - SinkTime: 6.157us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 59.880us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.473us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.890us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.112us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.231us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.995us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.135us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=60):(Active: 90.474us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 14.117us - CloseTime: 20.581us - GetBlockTime: 0ns - OpenTime: 1.161us - PrepareTime: 51.312us - SinkTime: 4.435us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.814us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 111.966us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.344us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.265us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 19.415us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.836us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.875us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=68):(Active: 96.191us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.357us - CloseTime: 8.400us - GetBlockTime: 0ns - OpenTime: 2.12us - PrepareTime: 49.877us - SinkTime: 16.329us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.536us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.978us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.5us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.179us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.241us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.504us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.652us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=76):(Active: 65.62us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.890us - CloseTime: 6.298us - GetBlockTime: 0ns - OpenTime: 1.371us - PrepareTime: 36.6us - SinkTime: 7.405us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 54.828us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 123.768us HASH_JOIN_SINK_OPERATOR (id=333): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.796us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.485us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s599ms EXCHANGE_OPERATOR (id=252): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.938us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.94us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.640us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :5 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=5):(Active: 533.983us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 455.470us - CloseTime: 22.753us - GetBlockTime: 72.746us - OpenTime: 1.458us - PrepareTime: 50.520us - SinkTime: 331.417us - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 495.506us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 475.784us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 4.705us - BuildRows: 2.138K (2138) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 117.974us - BuildTableInsertTime: 108.370us - BuildTableTime: 115.221us - CloseTime: 0ns - ExecTime: 333.917us - InputRows: 2.137K (2137) - MemoryUsage: - BuildBlocks: 84.85 KB - BuildKeyArena: 56.00 KB - HashTable: 24.36 KB - PeakMemoryUsage: 161.20 KB - OpenTime: 5.715us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=263): - BlocksProduced: 30 - BytesReceived: 36.46 KB - CloseTime: 20.547us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 224.658us - ExecTime: 103.912us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.50 KB - MemoryUsage: - Blocks: 35.25 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.272us - ProjectionTime: 0ns - RowsProduced: 2.137K (2137) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s660ms PipelineXTask (index=13):(Active: 138.58us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 72.424us - CloseTime: 25.929us - GetBlockTime: 0ns - OpenTime: 1.629us - PrepareTime: 34.772us - SinkTime: 29.907us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.18us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.367us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.291us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.490us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 22.674us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.364us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.67us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=21):(Active: 122.744us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.577us - CloseTime: 8.944us - GetBlockTime: 0ns - OpenTime: 1.75us - PrepareTime: 57.438us - SinkTime: 28.677us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.283us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.89us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.467us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.232us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.127us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.545us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.958us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 68.755us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 16.109us - CloseTime: 8.560us - GetBlockTime: 0ns - OpenTime: 948ns - PrepareTime: 40.212us - SinkTime: 6.465us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 56.149us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 167.277us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 11.984us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.755us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.276us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.126us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.429us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=37):(Active: 66.238us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 15.535us - CloseTime: 3.38us - GetBlockTime: 0ns - OpenTime: 1.250us - PrepareTime: 43.366us - SinkTime: 4.952us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 58.861us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 153.982us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.577us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.895us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.94us - 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: 16.404us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=45):(Active: 62.763us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.234us - CloseTime: 5.838us - GetBlockTime: 0ns - OpenTime: 1.506us - PrepareTime: 34.897us - SinkTime: 6.860us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 52.858us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.495us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 11.834us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.201us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.300us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.570us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.587us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 167.517us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 72.341us - CloseTime: 48.80us - GetBlockTime: 0ns - OpenTime: 1.823us - PrepareTime: 41.978us - SinkTime: 38.303us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.827us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.547us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.748us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.858us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 43.878us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.321us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.800us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=61):(Active: 158.758us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 51.58us - CloseTime: 59.216us - GetBlockTime: 0ns - OpenTime: 1.282us - PrepareTime: 43.827us - SinkTime: 26.7us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.57us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.32us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.380us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.330us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 55.947us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 75.236us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.595us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=69):(Active: 66.697us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.594us - CloseTime: 6.209us - GetBlockTime: 0ns - OpenTime: 1.33us - PrepareTime: 38.796us - SinkTime: 7.966us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 56.468us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 116.351us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.202us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.537us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.957us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.694us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.273us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=77):(Active: 81.106us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.164us - CloseTime: 7.56us - GetBlockTime: 0ns - OpenTime: 1.281us - PrepareTime: 42.322us - SinkTime: 14.227us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.329us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.672us HASH_JOIN_SINK_OPERATOR (id=332): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.597us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.648us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2s661ms EXCHANGE_OPERATOR (id=263): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.306us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.479us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.704us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :6 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=6):(Active: 371.24us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 322.290us - CloseTime: 7.167us - GetBlockTime: 88.804us - OpenTime: 1.55us - PrepareTime: 36.563us - SinkTime: 186.715us - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 340.99us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 433.510us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 5.770us - BuildRows: 44 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.128us - BuildTableInsertTime: 36.240us - BuildTableTime: 44.301us - CloseTime: 0ns - ExecTime: 189.12us - InputRows: 43 - MemoryUsage: - BuildBlocks: 1.29 KB - BuildKeyArena: 4.00 KB - HashTable: 436.00 B - PeakMemoryUsage: 1.71 KB - OpenTime: 6.381us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=277): - BlocksProduced: 33 - BytesReceived: 1.45 KB - CloseTime: 6.97us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 89.20us - ExecTime: 101.604us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.00 KB - MemoryUsage: - Blocks: 2.06 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.351us - ProjectionTime: 0ns - RowsProduced: 43 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s744ms PipelineXTask (index=14):(Active: 90.527us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.651us - CloseTime: 7.340us - GetBlockTime: 0ns - OpenTime: 1.88us - PrepareTime: 40.445us - SinkTime: 19.783us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 76.990us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.232us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.480us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.139us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.506us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.704us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.648us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 74.350us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 22.516us - CloseTime: 5.815us - GetBlockTime: 0ns - OpenTime: 1.500us - PrepareTime: 40.955us - SinkTime: 11.367us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.877us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.694us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.771us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.738us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.694us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.81us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=30):(Active: 100.191us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 45.145us - CloseTime: 6.315us - GetBlockTime: 0ns - OpenTime: 2.468us - PrepareTime: 42.322us - SinkTime: 5.290us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.756us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.522us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 11.509us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.341us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.929us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 103.348us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 53.330us - CloseTime: 16.509us - GetBlockTime: 0ns - OpenTime: 1.187us - PrepareTime: 29.66us - SinkTime: 34.352us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.955us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.450us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.290us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.761us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.42us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.432us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.757us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=46):(Active: 238.658us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 16.893us - CloseTime: 5.195us - GetBlockTime: 0ns - OpenTime: 1.635us - PrepareTime: 210.194us - SinkTime: 4.350us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.152us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.537us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 8.908us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 4.531us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.9us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 187.548us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 183.1us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 75.40us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.222us - CloseTime: 6.134us - GetBlockTime: 0ns - OpenTime: 1.963us - PrepareTime: 46.244us - SinkTime: 5.90us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.848us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.265us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 9.869us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.157us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.734us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.974us - 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=62):(Active: 164.920us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 84.217us - CloseTime: 15.20us - GetBlockTime: 0ns - OpenTime: 1.295us - PrepareTime: 60.873us - SinkTime: 41.377us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 142.57us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.290us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 58.710us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.206us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.550us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.588us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.14us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=70):(Active: 64.14us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 13.744us - CloseTime: 4.426us - GetBlockTime: 0ns - OpenTime: 1.108us - PrepareTime: 41.403us - SinkTime: 5.40us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 55.873us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.72us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 9.795us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 4.944us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.411us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.541us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.610us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=78):(Active: 94.842us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 17.435us - CloseTime: 7.383us - GetBlockTime: 0ns - OpenTime: 1.460us - PrepareTime: 64.998us - SinkTime: 6.425us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.859us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.132us HASH_JOIN_SINK_OPERATOR (id=331): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8686 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.899us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.496us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 3s745ms EXCHANGE_OPERATOR (id=277): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.57us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.309us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 39.676us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :7 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=7):(Active: 275.276us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 187.162us - CloseTime: 18.785us - GetBlockTime: 26.603us - OpenTime: 989ns - PrepareTime: 64.936us - SinkTime: 138.196us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 249.324us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 238.82us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.388us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.470us - BuildTableInsertTime: 67.739us - BuildTableTime: 72.761us - CloseTime: 0ns - ExecTime: 168.608us - InputRows: 770 - MemoryUsage: - BuildBlocks: 53.40 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 81.16 KB - OpenTime: 31.220us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 2 - BytesReceived: 25.72 KB - CloseTime: 16.457us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 38.630us - ExecTime: 53.29us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 2.15 KB - OpenTime: 12.438us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=15):(Active: 257.694us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 201.340us - CloseTime: 13.660us - GetBlockTime: 50.879us - OpenTime: 1.213us - PrepareTime: 38.164us - SinkTime: 127.260us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.724us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 185.378us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 553ns - BuildRows: 757 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.304us - BuildTableInsertTime: 64.286us - BuildTableTime: 68.670us - CloseTime: 0ns - ExecTime: 133.746us - InputRows: 756 - MemoryUsage: - BuildBlocks: 52.21 KB - BuildKeyArena: 24.00 KB - HashTable: 7.70 KB - PeakMemoryUsage: 79.90 KB - OpenTime: 7.76us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.560us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 74.291us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 73.86 KB - OpenTime: 14.68us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=23):(Active: 228.165us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 167.552us - CloseTime: 23.741us - GetBlockTime: 12.872us - OpenTime: 1.362us - PrepareTime: 32.242us - SinkTime: 130.223us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 197.525us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 196.752us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 996ns - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 31.213us - BuildTableInsertTime: 61.390us - BuildTableTime: 64.936us - CloseTime: 0ns - ExecTime: 134.590us - InputRows: 770 - MemoryUsage: - BuildBlocks: 53.27 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 81.03 KB - OpenTime: 5.108us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 2 - BytesReceived: 25.83 KB - CloseTime: 22.502us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 46.436us - ExecTime: 41.810us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 2.15 KB - OpenTime: 8.75us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=31):(Active: 223.234us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 146.685us - CloseTime: 34.816us - GetBlockTime: 16.837us - OpenTime: 1.536us - PrepareTime: 36.899us - SinkTime: 109.730us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 182.514us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 345.840us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.166us - BuildRows: 739 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.21us - BuildTableInsertTime: 42.890us - BuildTableTime: 44.418us - CloseTime: 0ns - ExecTime: 114.141us - InputRows: 738 - MemoryUsage: - BuildBlocks: 50.88 KB - BuildKeyArena: 24.00 KB - HashTable: 7.61 KB - PeakMemoryUsage: 78.48 KB - OpenTime: 4.963us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 33.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 60.646us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 73.00 KB - OpenTime: 12.138us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=39):(Active: 255.172us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 163.424us - CloseTime: 47.633us - GetBlockTime: 20.983us - OpenTime: 885ns - PrepareTime: 40.160us - SinkTime: 113.677us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 200.195us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 243.86us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.364us - BuildRows: 785 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 32.823us - BuildTableInsertTime: 39.739us - BuildTableTime: 40.861us - CloseTime: 0ns - ExecTime: 121.766us - InputRows: 784 - MemoryUsage: - BuildBlocks: 54.29 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 82.12 KB - OpenTime: 8.766us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 46.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 74.577us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 81.00 KB - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 81.86 KB - OpenTime: 8.665us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=47):(Active: 245.481us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 179.369us - CloseTime: 14.627us - GetBlockTime: 24.242us - OpenTime: 1.158us - PrepareTime: 46.790us - SinkTime: 121.161us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.864us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 232.280us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.87us - BuildRows: 766 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.49us - BuildTableInsertTime: 54.823us - BuildTableTime: 58.986us - CloseTime: 0ns - ExecTime: 133.349us - InputRows: 765 - MemoryUsage: - BuildBlocks: 53.06 KB - BuildKeyArena: 24.00 KB - HashTable: 7.74 KB - PeakMemoryUsage: 80.79 KB - OpenTime: 13.485us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 2 - BytesReceived: 25.56 KB - CloseTime: 12.607us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 121.350us - ExecTime: 47.956us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 2.15 KB - OpenTime: 13.761us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=55):(Active: 287.71us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 145.67us - CloseTime: 84.484us - GetBlockTime: 16.393us - OpenTime: 1.428us - PrepareTime: 52.448us - SinkTime: 105.805us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 195.515us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.371us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 982ns - BuildRows: 777 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.249us - BuildTableInsertTime: 45.888us - BuildTableTime: 47.350us - CloseTime: 0ns - ExecTime: 113.198us - InputRows: 776 - MemoryUsage: - BuildBlocks: 53.82 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 81.61 KB - OpenTime: 7.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 83.584us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 122.931us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 81.00 KB - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 82.72 KB - OpenTime: 25.676us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=63):(Active: 264.757us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 217.538us - CloseTime: 6.283us - GetBlockTime: 22.470us - OpenTime: 1.336us - PrepareTime: 36.136us - SinkTime: 176.190us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 251.739us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 280.500us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.674us - BuildRows: 778 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.20us - BuildTableInsertTime: 78.367us - BuildTableTime: 80.656us - CloseTime: 0ns - ExecTime: 182.909us - InputRows: 777 - MemoryUsage: - BuildBlocks: 53.81 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 81.61 KB - OpenTime: 7.518us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 2 - BytesReceived: 26.08 KB - CloseTime: 4.957us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 112.62us - ExecTime: 37.552us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 81.00 KB - PeakMemoryUsage: 2.15 KB - OpenTime: 11.601us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=71):(Active: 210.164us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 159.12us - CloseTime: 5.433us - GetBlockTime: 11.11us - OpenTime: 1.512us - PrepareTime: 41.41us - SinkTime: 133.578us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 199.406us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.935us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 926ns - BuildRows: 755 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.692us - BuildTableInsertTime: 76.777us - BuildTableTime: 79.203us - CloseTime: 0ns - ExecTime: 140.451us - InputRows: 754 - MemoryUsage: - BuildBlocks: 52.22 KB - BuildKeyArena: 24.00 KB - HashTable: 7.69 KB - PeakMemoryUsage: 79.90 KB - OpenTime: 7.447us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=310): - BlocksProduced: 2 - BytesReceived: 25.27 KB - CloseTime: 4.293us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 53.293us - ExecTime: 29.607us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 2.15 KB - OpenTime: 15.159us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms PipelineXTask (index=79):(Active: 210.372us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 153.908us - CloseTime: 3.844us - GetBlockTime: 11.783us - OpenTime: 2.194us - PrepareTime: 45.832us - SinkTime: 117.747us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 198.208us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.753us HASH_JOIN_SINK_OPERATOR (id=330): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 957ns - BuildRows: 768 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.522us - BuildTableInsertTime: 41.148us - BuildTableTime: 42.671us - CloseTime: 0ns - ExecTime: 127.296us - InputRows: 767 - MemoryUsage: - BuildBlocks: 52.97 KB - BuildKeyArena: 24.00 KB - HashTable: 7.75 KB - PeakMemoryUsage: 80.71 KB - OpenTime: 10.40us - 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.359us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.464us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.00 KB - MemoryUsage: - Blocks: 73.00 KB - PeakMemoryUsage: 74.29 KB - OpenTime: 15.159us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s272ms Fragment 24: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 688.87us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 567.118us - CloseTime: 10.939us - GetBlockTime: 133.125us - OpenTime: 4.270us - PrepareTime: 97.929us - SinkTime: 387.932us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 651.468us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.355ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.07 KB - CloseTime: 9.347us - CompressTime: 0ns - ExecTime: 452.538us - InputRows: 306 - LocalBytesSent: 1.64 KB - LocalSendTime: 21.908us - LocalSentRows: 53 - MemoryUsage: - PeakMemoryUsage: 16.50 KB - MergeBlockTime: 0ns - OpenTime: 55.582us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.451ms - RowsProduced: 306 - RpcAvgTime: 63.124us - RpcCount: 10 - RpcMaxTime: 142.186us - RpcMinTime: 26.516us - RpcSumTime: 631.246us - SerializeBatchTime: 34.357us - SplitBlockDistributeByChannelTime: 41.846us - SplitBlockHashComputeTime: 14.142us - UncompressedRowBatchSize: 8.32 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 248ns - DeserializeAndMergeTime: 0ns - ExecTime: 144.559us - GetResultsTime: 63.498us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.475us - HashTableSize: 306 - InsertKeysToColumnTime: 38.952us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.347us - ProjectionTime: 55.465us - RowsProduced: 306 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=2):(Active: 753.38us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 639.130us - CloseTime: 14.691us - GetBlockTime: 160.110us - OpenTime: 4.337us - PrepareTime: 89.419us - SinkTime: 457.75us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 731.255us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 195.79us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.20 KB - CloseTime: 11.780us - CompressTime: 0ns - ExecTime: 526.894us - InputRows: 292 - LocalBytesSent: 1.16 KB - LocalSendTime: 12.913us - LocalSentRows: 37 - MemoryUsage: - PeakMemoryUsage: 16.25 KB - MergeBlockTime: 0ns - OpenTime: 58.837us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.445ms - RowsProduced: 292 - RpcAvgTime: 71.969us - RpcCount: 10 - RpcMaxTime: 142.374us - RpcMinTime: 45.69us - RpcSumTime: 719.692us - SerializeBatchTime: 53.207us - SplitBlockDistributeByChannelTime: 39.208us - SplitBlockHashComputeTime: 20.644us - UncompressedRowBatchSize: 8.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=328): - BlocksProduced: 1 - CloseTime: 902ns - DeserializeAndMergeTime: 0ns - ExecTime: 171.449us - GetResultsTime: 66.744us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.508us - HashTableSize: 292 - InsertKeysToColumnTime: 50.957us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.164us - ProjectionTime: 82.478us - RowsProduced: 292 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s308ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.614ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.531ms - CloseTime: 15.20us - GetBlockTime: 188.650us - OpenTime: 3.949us - PrepareTime: 56.48us - SinkTime: 2.227ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.568ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.423ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 5.573us - DeserializeAndMergeTime: 1.569ms - ExecTime: 2.247ms - ExprTime: 0ns - HashTableComputeTime: 513.347us - HashTableEmplaceTime: 325.336us - HashTableInputCount: 1.79K (1790) - InputRows: 1.79K (1790) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 2.167ms - OpenTime: 22.615us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 22 - BytesReceived: 100.52 KB - CloseTime: 7.654us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 318.768us - ExecTime: 186.364us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.00 KB - MemoryUsage: - Blocks: 77.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.988us - ProjectionTime: 0ns - RowsProduced: 1.79K (1790) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s303ms PipelineXTask (index=3):(Active: 1.666ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.591ms - CloseTime: 9.381us - GetBlockTime: 130.604us - OpenTime: 3.143us - PrepareTime: 57.514us - SinkTime: 1.358ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.631ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 432.39us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.483us - DeserializeAndMergeTime: 896.906us - ExecTime: 1.381ms - ExprTime: 0ns - HashTableComputeTime: 393.204us - HashTableEmplaceTime: 265.112us - HashTableInputCount: 1.665K (1665) - InputRows: 1.665K (1665) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 1.338ms - OpenTime: 26.335us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 22 - BytesReceived: 85.45 KB - CloseTime: 6.786us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 263.366us - ExecTime: 147.833us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.635us - ProjectionTime: 0ns - RowsProduced: 1.665K (1665) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s306ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 681.719us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 551.342us - CloseTime: 15.784us - GetBlockTime: 110.421us - OpenTime: 2.9us - PrepareTime: 106.696us - SinkTime: 416.334us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 657.610us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 550.859us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.67 KB - CloseTime: 12.785us - CompressTime: 0ns - ExecTime: 496.584us - InputRows: 299 - LocalBytesSent: 7.74 KB - LocalSendTime: 107.451us - LocalSentRows: 246 - MemoryUsage: - PeakMemoryUsage: 16.25 KB - MergeBlockTime: 0ns - OpenTime: 68.366us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 939.630us - RowsProduced: 299 - RpcAvgTime: 741.270us - RpcCount: 2 - RpcMaxTime: 876.336us - RpcMinTime: 606.204us - RpcSumTime: 1.482ms - SerializeBatchTime: 21.379us - SplitBlockDistributeByChannelTime: 51.321us - SplitBlockHashComputeTime: 23.931us - UncompressedRowBatchSize: 1.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 685ns - DeserializeAndMergeTime: 0ns - ExecTime: 116.600us - GetResultsTime: 56.305us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.231us - HashTableSize: 299 - InsertKeysToColumnTime: 32.825us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.537us - ProjectionTime: 39.82us - RowsProduced: 299 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s305ms PipelineXTask (index=2):(Active: 527.934us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 410.204us - CloseTime: 10.950us - GetBlockTime: 101.643us - OpenTime: 1.643us - PrepareTime: 100.138us - SinkTime: 293.161us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 510.685us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 709.531us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.39 KB - CloseTime: 9.178us - CompressTime: 0ns - ExecTime: 379.112us - InputRows: 293 - LocalBytesSent: 7.89 KB - LocalSendTime: 55.841us - LocalSentRows: 251 - MemoryUsage: - PeakMemoryUsage: 16.00 KB - MergeBlockTime: 0ns - OpenTime: 77.281us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 849.751us - RowsProduced: 293 - RpcAvgTime: 707.102us - RpcCount: 2 - RpcMaxTime: 844.553us - RpcMinTime: 569.652us - RpcSumTime: 1.414ms - SerializeBatchTime: 8.953us - SplitBlockDistributeByChannelTime: 27.905us - SplitBlockHashComputeTime: 10.908us - UncompressedRowBatchSize: 1.36 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 537ns - DeserializeAndMergeTime: 0ns - ExecTime: 108.663us - GetResultsTime: 51.562us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.881us - HashTableSize: 293 - InsertKeysToColumnTime: 36.215us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.296us - ProjectionTime: 42.458us - RowsProduced: 293 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s305ms PipelineXTask (index=4):(Active: 604.540us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 477.232us - CloseTime: 11.774us - GetBlockTime: 145.540us - OpenTime: 1.835us - PrepareTime: 109.130us - SinkTime: 301.916us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 585.883us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.881ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.65 KB - CloseTime: 10.173us - CompressTime: 0ns - ExecTime: 376.580us - InputRows: 312 - LocalBytesSent: 8.12 KB - LocalSendTime: 77.274us - LocalSentRows: 260 - MemoryUsage: - PeakMemoryUsage: 17.00 KB - MergeBlockTime: 0ns - OpenTime: 65.136us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 844.21us - RowsProduced: 312 - RpcAvgTime: 872.363us - RpcCount: 2 - RpcMaxTime: 894.281us - RpcMinTime: 850.445us - RpcSumTime: 1.744ms - SerializeBatchTime: 18.92us - SplitBlockDistributeByChannelTime: 39.272us - SplitBlockHashComputeTime: 15.501us - UncompressedRowBatchSize: 1.68 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 375ns - DeserializeAndMergeTime: 0ns - ExecTime: 165.691us - GetResultsTime: 63.306us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.990us - HashTableSize: 312 - InsertKeysToColumnTime: 47.343us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 20.953us - ProjectionTime: 67.250us - RowsProduced: 312 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=6):(Active: 588.296us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 476.326us - CloseTime: 15.591us - GetBlockTime: 132.61us - OpenTime: 3.344us - PrepareTime: 88.645us - SinkTime: 321.134us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 565.254us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.70ms DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.79 KB - CloseTime: 12.409us - CompressTime: 0ns - ExecTime: 393.210us - InputRows: 342 - LocalBytesSent: 8.78 KB - LocalSendTime: 86.460us - LocalSentRows: 279 - MemoryUsage: - PeakMemoryUsage: 18.50 KB - MergeBlockTime: 0ns - OpenTime: 60.553us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 816.275us - RowsProduced: 342 - RpcAvgTime: 814.301us - RpcCount: 2 - RpcMaxTime: 898.392us - RpcMinTime: 730.211us - RpcSumTime: 1.628ms - SerializeBatchTime: 24.684us - SplitBlockDistributeByChannelTime: 34.464us - SplitBlockHashComputeTime: 18.334us - UncompressedRowBatchSize: 2.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 1.36us - DeserializeAndMergeTime: 0ns - ExecTime: 138.285us - GetResultsTime: 44.777us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.511us - HashTableSize: 342 - InsertKeysToColumnTime: 25.87us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.523us - ProjectionTime: 59.350us - RowsProduced: 342 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=8):(Active: 606.124us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 492.188us - CloseTime: 15.942us - GetBlockTime: 130.34us - OpenTime: 1.686us - PrepareTime: 92.26us - SinkTime: 344.430us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 583.89us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 546.538us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.83 KB - CloseTime: 13.306us - CompressTime: 0ns - ExecTime: 422.497us - InputRows: 328 - LocalBytesSent: 8.39 KB - LocalSendTime: 94.664us - LocalSentRows: 269 - MemoryUsage: - PeakMemoryUsage: 18.38 KB - MergeBlockTime: 0ns - OpenTime: 65.598us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 865.995us - RowsProduced: 328 - RpcAvgTime: 881.855us - RpcCount: 2 - RpcMaxTime: 882.737us - RpcMinTime: 880.973us - RpcSumTime: 1.763ms - SerializeBatchTime: 17.106us - SplitBlockDistributeByChannelTime: 37.195us - SplitBlockHashComputeTime: 34.922us - UncompressedRowBatchSize: 1.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 648ns - DeserializeAndMergeTime: 0ns - ExecTime: 135.261us - GetResultsTime: 71.512us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.930us - HashTableSize: 328 - InsertKeysToColumnTime: 48.72us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.340us - ProjectionTime: 48.598us - RowsProduced: 328 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s305ms PipelineXTask (index=10):(Active: 734.143us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 617.610us - CloseTime: 13.270us - GetBlockTime: 147.558us - OpenTime: 2.89us - PrepareTime: 97.50us - SinkTime: 444.663us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 713.236us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 478.329us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.77 KB - CloseTime: 10.988us - CompressTime: 0ns - ExecTime: 520.580us - InputRows: 300 - LocalBytesSent: 7.68 KB - LocalSendTime: 77.288us - LocalSentRows: 246 - MemoryUsage: - PeakMemoryUsage: 16.13 KB - MergeBlockTime: 0ns - OpenTime: 65.783us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.172ms - RowsProduced: 300 - RpcAvgTime: 689.438us - RpcCount: 2 - RpcMaxTime: 800.367us - RpcMinTime: 578.509us - RpcSumTime: 1.378ms - SerializeBatchTime: 19.984us - SplitBlockDistributeByChannelTime: 45.183us - SplitBlockHashComputeTime: 31.118us - UncompressedRowBatchSize: 1.80 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 713ns - DeserializeAndMergeTime: 0ns - ExecTime: 155.534us - GetResultsTime: 65.125us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.453us - HashTableSize: 300 - InsertKeysToColumnTime: 44.840us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.918us - ProjectionTime: 56.485us - RowsProduced: 300 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=12):(Active: 493.162us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 364.242us - CloseTime: 11.741us - GetBlockTime: 104.515us - OpenTime: 2.347us - PrepareTime: 110.853us - SinkTime: 243.970us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 476.223us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 700.848us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.78 KB - CloseTime: 10.424us - CompressTime: 0ns - ExecTime: 331.935us - InputRows: 309 - LocalBytesSent: 7.69 KB - LocalSendTime: 71.446us - LocalSentRows: 246 - MemoryUsage: - PeakMemoryUsage: 16.38 KB - MergeBlockTime: 0ns - OpenTime: 78.146us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.158ms - RowsProduced: 309 - RpcAvgTime: 748.254us - RpcCount: 2 - RpcMaxTime: 751.951us - RpcMinTime: 744.557us - RpcSumTime: 1.496ms - SerializeBatchTime: 20.300us - SplitBlockDistributeByChannelTime: 32.429us - SplitBlockHashComputeTime: 15.158us - UncompressedRowBatchSize: 2.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 299ns - DeserializeAndMergeTime: 0ns - ExecTime: 110.304us - GetResultsTime: 48.92us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.278us - HashTableSize: 309 - InsertKeysToColumnTime: 30.969us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.735us - ProjectionTime: 47.341us - RowsProduced: 309 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=14):(Active: 561.904us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 437.898us - CloseTime: 20.786us - GetBlockTime: 124.180us - OpenTime: 2.740us - PrepareTime: 95.633us - SinkTime: 288.932us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 533.62us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.769us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.51 KB - CloseTime: 17.211us - CompressTime: 0ns - ExecTime: 367.824us - InputRows: 309 - LocalBytesSent: 8.31 KB - LocalSendTime: 66.711us - LocalSentRows: 264 - MemoryUsage: - PeakMemoryUsage: 16.88 KB - MergeBlockTime: 0ns - OpenTime: 62.423us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 790.409us - RowsProduced: 309 - RpcAvgTime: 702.574us - RpcCount: 2 - RpcMaxTime: 802.372us - RpcMinTime: 602.777us - RpcSumTime: 1.405ms - SerializeBatchTime: 11.967us - SplitBlockDistributeByChannelTime: 48.604us - SplitBlockHashComputeTime: 20.725us - UncompressedRowBatchSize: 1.48 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 1.52us - DeserializeAndMergeTime: 0ns - ExecTime: 119.700us - GetResultsTime: 46.450us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.883us - HashTableSize: 309 - InsertKeysToColumnTime: 25.763us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.842us - ProjectionTime: 48.398us - RowsProduced: 309 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=16):(Active: 528.260us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 400.726us - CloseTime: 11.986us - GetBlockTime: 117.292us - OpenTime: 2.265us - PrepareTime: 109.168us - SinkTime: 266.182us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 510.258us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 529.989us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.61 KB - CloseTime: 10.83us - CompressTime: 0ns - ExecTime: 355.858us - InputRows: 317 - LocalBytesSent: 8.38 KB - LocalSendTime: 54.731us - LocalSentRows: 268 - MemoryUsage: - PeakMemoryUsage: 17.38 KB - MergeBlockTime: 0ns - OpenTime: 80.242us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 810.42us - RowsProduced: 317 - RpcAvgTime: 814.484us - RpcCount: 2 - RpcMaxTime: 935.915us - RpcMinTime: 693.53us - RpcSumTime: 1.628ms - SerializeBatchTime: 13.172us - SplitBlockDistributeByChannelTime: 27.675us - SplitBlockHashComputeTime: 11.73us - UncompressedRowBatchSize: 1.63 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 459ns - DeserializeAndMergeTime: 0ns - ExecTime: 122.588us - GetResultsTime: 53.655us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.232us - HashTableSize: 317 - InsertKeysToColumnTime: 39.177us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.847us - ProjectionTime: 41.314us - RowsProduced: 317 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms PipelineXTask (index=18):(Active: 517.494us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 409.18us - CloseTime: 12.577us - GetBlockTime: 98.997us - OpenTime: 1.621us - PrepareTime: 90.332us - SinkTime: 294.407us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 499.145us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 531.369us DATA_STREAM_SINK_OPERATOR (id=329,dst_id=329): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.75 KB - CloseTime: 10.521us - CompressTime: 0ns - ExecTime: 368.19us - InputRows: 315 - LocalBytesSent: 8.10 KB - LocalSendTime: 51.677us - LocalSentRows: 259 - MemoryUsage: - PeakMemoryUsage: 17.75 KB - MergeBlockTime: 0ns - OpenTime: 63.619us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.94ms - RowsProduced: 315 - RpcAvgTime: 687.776us - RpcCount: 2 - RpcMaxTime: 745.624us - RpcMinTime: 629.928us - RpcSumTime: 1.375ms - SerializeBatchTime: 21.716us - SplitBlockDistributeByChannelTime: 26.3us - SplitBlockHashComputeTime: 15.704us - UncompressedRowBatchSize: 1.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 572ns - DeserializeAndMergeTime: 0ns - ExecTime: 105.823us - GetResultsTime: 48.207us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.593us - HashTableSize: 315 - InsertKeysToColumnTime: 35.9us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.25us - ProjectionTime: 44.659us - RowsProduced: 315 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s306ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.312ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.227ms - CloseTime: 9.270us - GetBlockTime: 70.64us - OpenTime: 1.433us - PrepareTime: 68.670us - SinkTime: 1.86ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.283ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 715.910us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.420us - DeserializeAndMergeTime: 701.517us - ExecTime: 1.109ms - ExprTime: 0ns - HashTableComputeTime: 324.564us - HashTableEmplaceTime: 205.715us - HashTableInputCount: 1.705K (1705) - InputRows: 1.705K (1705) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 1.56ms - OpenTime: 26.962us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 17.56 KB - CloseTime: 6.540us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 34.889us - ExecTime: 84.683us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 16.765us - ProjectionTime: 0ns - RowsProduced: 1.705K (1705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=3):(Active: 1.133ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.67ms - CloseTime: 5.854us - GetBlockTime: 83.612us - OpenTime: 2.928us - PrepareTime: 52.254us - SinkTime: 913.473us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.109ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 799.674us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 910ns - DeserializeAndMergeTime: 573.570us - ExecTime: 923.734us - ExprTime: 0ns - HashTableComputeTime: 299.472us - HashTableEmplaceTime: 179.829us - HashTableInputCount: 1.637K (1637) - InputRows: 1.637K (1637) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 896.269us - OpenTime: 13.425us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 17.72 KB - CloseTime: 4.59us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 64.635us - ExecTime: 98.846us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 18.68us - ProjectionTime: 0ns - RowsProduced: 1.637K (1637) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=5):(Active: 1.51ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 974.651us - CloseTime: 5.178us - GetBlockTime: 53.108us - OpenTime: 2.465us - PrepareTime: 63.511us - SinkTime: 864.274us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.29ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 792.591us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.51us - DeserializeAndMergeTime: 588.780us - ExecTime: 878.542us - ExprTime: 0ns - HashTableComputeTime: 225.746us - HashTableEmplaceTime: 132.163us - HashTableInputCount: 1.65K (1650) - InputRows: 1.65K (1650) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 840.499us - OpenTime: 16.599us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 17.28 KB - CloseTime: 3.323us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 52.362us - ExecTime: 75.799us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 46.50 KB - PeakMemoryUsage: 46.50 KB - OpenTime: 25.793us - ProjectionTime: 0ns - RowsProduced: 1.65K (1650) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=7):(Active: 990.101us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 925.615us - CloseTime: 4.693us - GetBlockTime: 94.410us - OpenTime: 2.254us - PrepareTime: 52.557us - SinkTime: 781.947us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 970.640us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 810.845us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 534ns - DeserializeAndMergeTime: 534.132us - ExecTime: 796.874us - ExprTime: 0ns - HashTableComputeTime: 221.292us - HashTableEmplaceTime: 135.603us - HashTableInputCount: 1.922K (1922) - InputRows: 1.922K (1922) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 772.70us - OpenTime: 17.98us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 20.83 KB - CloseTime: 3.550us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 44.13us - ExecTime: 106.112us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 171.00 KB - MemoryUsage: - Blocks: 54.50 KB - PeakMemoryUsage: 54.50 KB - OpenTime: 14.172us - ProjectionTime: 0ns - RowsProduced: 1.922K (1922) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=9):(Active: 1.64ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.1ms - CloseTime: 8.384us - GetBlockTime: 91.409us - OpenTime: 2.534us - PrepareTime: 48.343us - SinkTime: 848.387us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.41ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 863.627us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.129us - DeserializeAndMergeTime: 593.148us - ExecTime: 863.282us - ExprTime: 0ns - HashTableComputeTime: 220.461us - HashTableEmplaceTime: 115.0us - HashTableInputCount: 1.838K (1838) - InputRows: 1.838K (1838) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 834.764us - OpenTime: 16.751us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 20.73 KB - CloseTime: 5.896us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 34.268us - ExecTime: 111.316us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 163.00 KB - MemoryUsage: - Blocks: 62.00 KB - PeakMemoryUsage: 62.00 KB - OpenTime: 20.503us - ProjectionTime: 0ns - RowsProduced: 1.838K (1838) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=11):(Active: 928.530us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 865.19us - CloseTime: 3.896us - GetBlockTime: 49.718us - OpenTime: 1.609us - PrepareTime: 54.59us - SinkTime: 768.532us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 910.567us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 951.856us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 749ns - DeserializeAndMergeTime: 532.429us - ExecTime: 788.431us - ExprTime: 0ns - HashTableComputeTime: 199.256us - HashTableEmplaceTime: 128.549us - HashTableInputCount: 1.674K (1674) - InputRows: 1.674K (1674) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 748.282us - OpenTime: 21.994us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 18.22 KB - CloseTime: 2.403us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 41.733us - ExecTime: 64.138us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 46.50 KB - PeakMemoryUsage: 46.50 KB - OpenTime: 16.500us - ProjectionTime: 0ns - RowsProduced: 1.674K (1674) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=13):(Active: 922.240us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 870.268us - CloseTime: 3.356us - GetBlockTime: 64.848us - OpenTime: 2.117us - PrepareTime: 42.204us - SinkTime: 746.672us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 904.500us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 646.358us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 654ns - DeserializeAndMergeTime: 512.288us - ExecTime: 763.255us - ExprTime: 0ns - HashTableComputeTime: 205.309us - HashTableEmplaceTime: 143.585us - HashTableInputCount: 1.708K (1708) - InputRows: 1.708K (1708) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 736.139us - OpenTime: 18.873us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 17.67 KB - CloseTime: 2.158us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 28.879us - ExecTime: 72.697us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 31.00 KB - PeakMemoryUsage: 31.00 KB - OpenTime: 11.442us - ProjectionTime: 0ns - RowsProduced: 1.708K (1708) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=15):(Active: 1.134ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.32ms - CloseTime: 12.240us - GetBlockTime: 66.47us - OpenTime: 2.441us - PrepareTime: 82.974us - SinkTime: 904.799us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 444.431us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.129us - DeserializeAndMergeTime: 619.582us - ExecTime: 944.124us - ExprTime: 0ns - HashTableComputeTime: 228.667us - HashTableEmplaceTime: 131.430us - HashTableInputCount: 1.821K (1821) - InputRows: 1.821K (1821) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 871.441us - OpenTime: 42.261us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 19.35 KB - CloseTime: 9.320us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 43.726us - ExecTime: 88.125us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 46.50 KB - PeakMemoryUsage: 46.50 KB - OpenTime: 19.796us - ProjectionTime: 0ns - RowsProduced: 1.821K (1821) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms PipelineXTask (index=17):(Active: 1.209ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.142ms - CloseTime: 8.49us - GetBlockTime: 69.469us - OpenTime: 1.917us - PrepareTime: 52.611us - SinkTime: 1.13ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.187ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.9ms AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 1.796us - DeserializeAndMergeTime: 672.813us - ExecTime: 1.33ms - ExprTime: 0ns - HashTableComputeTime: 287.940us - HashTableEmplaceTime: 163.577us - HashTableInputCount: 1.681K (1681) - InputRows: 1.681K (1681) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 987.730us - OpenTime: 22.117us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 18.23 KB - CloseTime: 5.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 38.503us - ExecTime: 78.438us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 77.50 KB - PeakMemoryUsage: 77.50 KB - OpenTime: 11.902us - ProjectionTime: 0ns - RowsProduced: 1.681K (1681) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s303ms PipelineXTask (index=19):(Active: 1.91ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.32ms - CloseTime: 3.343us - GetBlockTime: 68.225us - OpenTime: 1.459us - PrepareTime: 50.122us - SinkTime: 905.870us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.71ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 777.329us AGGREGATION_SINK_OPERATOR (id=328): - BuildTime: 0ns - CloseTime: 529ns - DeserializeAndMergeTime: 632.577us - ExecTime: 920.697us - ExprTime: 0ns - HashTableComputeTime: 231.470us - HashTableEmplaceTime: 156.202us - HashTableInputCount: 1.731K (1731) - InputRows: 1.731K (1731) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 547.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 895.215us - OpenTime: 17.29us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=327): - BlocksProduced: 14 - BytesReceived: 18.62 KB - CloseTime: 2.308us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 34.149us - ExecTime: 83.497us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 46.50 KB - PeakMemoryUsage: 46.50 KB - OpenTime: 19.128us - ProjectionTime: 0ns - RowsProduced: 1.731K (1731) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s304ms Fragment 25: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 32.870ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.329ms - CloseTime: 287.334us - GetBlockTime: 30.791ms - OpenTime: 10.895us - PrepareTime: 216.390us - SinkTime: 800.906us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 53 - NumBlockedTimes: 55 - NumScheduleTimes: 56 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 32.407ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.783ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 91.89 KB - CloseTime: 14.402us - CompressTime: 0ns - ExecTime: 888.289us - InputRows: 1.725K (1725) - LocalBytesSent: 22.12 KB - LocalSendTime: 44.111us - LocalSentRows: 288 - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 73.414us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.650ms - RowsProduced: 1.725K (1725) - RpcAvgTime: 14.318ms - RpcCount: 10 - RpcMaxTime: 14.636ms - RpcMinTime: 14.148ms - RpcSumTime: 143.186ms - SerializeBatchTime: 190.435us - SplitBlockDistributeByChannelTime: 203.772us - SplitBlockHashComputeTime: 53.708us - UncompressedRowBatchSize: 115.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.283ms - CloseTime: 228.173us - DeserializeAndMergeTime: 0ns - ExecTime: 4.160ms - ExprTime: 52.248us - GetResultsTime: 518.597us - HashTableComputeTime: 1.475ms - HashTableEmplaceTime: 1.118ms - HashTableInputCount: 6.043K (6043) - HashTableIterateTime: 16.510us - HashTableSize: 1.725K (1725) - InsertKeysToColumnTime: 76.3us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 24.945us - ProjectionTime: 0ns - RowsProduced: 1.725K (1725) - SerializeDataTime: 396.848us - SerializeKeyTime: 0ns - SerializeResultTime: 521.61us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 15.315us - ExecTime: 5.726ms - InitProbeSideTime: 519.984us - JoinFilterTimer: 5.724us - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 30.216us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.616us - ProbeFindNextTime: 0ns - ProbeRows: 5.684K (5684) - ProbeTime: 4.409ms - ProbeWhenBuildSideOutputTime: 143.836us - ProbeWhenProbeSideOutputTime: 420.679us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.331ms - ProjectionTime: 1.129ms - RowsProduced: 6.043K (6043) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s381ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 13.195us - ExecTime: 19.844ms - InitProbeSideTime: 9.83ms - JoinFilterTimer: 8.596us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 8.560us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 38.913us - ProbeFindNextTime: 0ns - ProbeRows: 341.049K (341049) - ProbeTime: 19.102ms - ProbeWhenBuildSideOutputTime: 1.40ms - ProbeWhenProbeSideOutputTime: 86.264us - ProbeWhenProcessHashTableTime: 66.309us - ProbeWhenSearchHashTableTime: 7.760ms - ProjectionTime: 370.7us - RowsProduced: 5.684K (5684) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s47ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 157 - BytesReceived: 7.07 MB - CloseTime: 10.49us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.439ms - ExecTime: 824.327us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.89 MB - MemoryUsage: - Blocks: 5.49 MB - PeakMemoryUsage: 2.89 MB - OpenTime: 16.655us - ProjectionTime: 0ns - RowsProduced: 341.049K (341049) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s41ms PipelineXTask (index=3):(Active: 33.216ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 32.753ms - CloseTime: 240.600us - GetBlockTime: 31.311ms - OpenTime: 10.13us - PrepareTime: 201.824us - SinkTime: 788.524us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 53 - NumBlockedTimes: 55 - NumScheduleTimes: 56 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 32.847ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.213ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 93.70 KB - CloseTime: 12.676us - CompressTime: 0ns - ExecTime: 862.293us - InputRows: 1.772K (1772) - LocalBytesSent: 23.34 KB - LocalSendTime: 52.595us - LocalSentRows: 296 - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 61.783us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.547ms - RowsProduced: 1.772K (1772) - RpcAvgTime: 11.421ms - RpcCount: 10 - RpcMaxTime: 11.624ms - RpcMinTime: 11.241ms - RpcSumTime: 114.214ms - SerializeBatchTime: 179.187us - SplitBlockDistributeByChannelTime: 145.260us - SplitBlockHashComputeTime: 42.911us - UncompressedRowBatchSize: 117.61 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=326): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 3.381ms - CloseTime: 191.964us - DeserializeAndMergeTime: 0ns - ExecTime: 4.81ms - ExprTime: 53.93us - GetResultsTime: 371.152us - HashTableComputeTime: 1.487ms - HashTableEmplaceTime: 1.78ms - HashTableInputCount: 6.897K (6897) - HashTableIterateTime: 8.946us - HashTableSize: 1.772K (1772) - InsertKeysToColumnTime: 72.298us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 27.643us - ProjectionTime: 0ns - RowsProduced: 1.772K (1772) - SerializeDataTime: 275.204us - SerializeKeyTime: 0ns - SerializeResultTime: 373.74us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 7.879us - ExecTime: 6.96ms - InitProbeSideTime: 548.46us - JoinFilterTimer: 7.640us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 15.820us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.967us - ProbeFindNextTime: 0ns - ProbeRows: 6.522K (6522) - ProbeTime: 4.696ms - ProbeWhenBuildSideOutputTime: 133.856us - ProbeWhenProbeSideOutputTime: 463.672us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.558ms - ProjectionTime: 1.205ms - RowsProduced: 6.897K (6897) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s373ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 12.169us - ExecTime: 19.981ms - InitProbeSideTime: 8.800ms - JoinFilterTimer: 7.760us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 13.811us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 32.691us - ProbeFindNextTime: 0ns - ProbeRows: 341.563K (341563) - ProbeTime: 19.218ms - ProbeWhenBuildSideOutputTime: 1.107ms - ProbeWhenProbeSideOutputTime: 74.673us - ProbeWhenProcessHashTableTime: 79.900us - ProbeWhenSearchHashTableTime: 8.101ms - ProjectionTime: 412.524us - RowsProduced: 6.522K (6522) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s43ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 157 - BytesReceived: 7.06 MB - CloseTime: 11.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.182ms - ExecTime: 853.33us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.90 MB - MemoryUsage: - Blocks: 5.49 MB - PeakMemoryUsage: 2.90 MB - OpenTime: 17.370us - ProjectionTime: 0ns - RowsProduced: 341.563K (341563) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s53ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 129.255ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 129.159ms - CloseTime: 17.468us - GetBlockTime: 3.348ms - OpenTime: 2.47us - PrepareTime: 57.383us - SinkTime: 124.459ms - GetBlockCounter: 107 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 99 - NumBlockedTimes: 101 - NumScheduleTimes: 101 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 128.973ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.873ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 134.404us - BuildRows: 402.19K (402190) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 69.790ms - BuildTableInsertTime: 29.344ms - BuildTableTime: 29.653ms - CloseTime: 0ns - ExecTime: 124.381ms - InputRows: 402.189K (402189) - MemoryUsage: - BuildBlocks: 40.66 MB - BuildKeyArena: 12.28 MB - HashTable: 3.53 MB - PeakMemoryUsage: 56.47 MB - OpenTime: 21.528us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.307ms - RuntimeFilterComputeTime: 19.71ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 150 - BytesReceived: 10.94 MB - CloseTime: 14.351us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 9.659ms - ExecTime: 3.225ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.28 MB - MemoryUsage: - Blocks: 1.17 MB - PeakMemoryUsage: 1.17 MB - OpenTime: 15.246us - ProjectionTime: 0ns - RowsProduced: 402.189K (402189) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s38ms PipelineXTask (index=4):(Active: 138.409ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 138.304ms - CloseTime: 13.937us - GetBlockTime: 3.100ms - OpenTime: 2.187us - PrepareTime: 52.808us - SinkTime: 133.934ms - GetBlockCounter: 108 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 99 - NumBlockedTimes: 101 - NumScheduleTimes: 101 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 138.99ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.374ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 98.382us - BuildRows: 403.963K (403963) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 85.112ms - BuildTableInsertTime: 28.290ms - BuildTableTime: 28.681ms - CloseTime: 0ns - ExecTime: 133.862ms - InputRows: 403.962K (403962) - MemoryUsage: - BuildBlocks: 40.84 MB - BuildKeyArena: 12.33 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.71 MB - OpenTime: 17.81us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.334us - RuntimeFilterComputeTime: 18.555ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 152 - BytesReceived: 10.98 MB - CloseTime: 10.57us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.483ms - ExecTime: 2.977ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.57 MB - MemoryUsage: - Blocks: 1.91 MB - PeakMemoryUsage: 1.91 MB - OpenTime: 13.577us - ProjectionTime: 0ns - RowsProduced: 403.962K (403962) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s36ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.48ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 979.861us - CloseTime: 9.673us - GetBlockTime: 37.441us - OpenTime: 3.427us - PrepareTime: 50.611us - SinkTime: 894.807us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.28ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.208ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.995us - BuildRows: 5.685K (5685) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 372.117us - BuildTableInsertTime: 209.127us - BuildTableTime: 211.932us - CloseTime: 0ns - ExecTime: 908.146us - InputRows: 5.684K (5684) - MemoryUsage: - BuildBlocks: 314.71 KB - BuildKeyArena: 188.00 KB - HashTable: 59.76 KB - PeakMemoryUsage: 558.46 KB - OpenTime: 15.485us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.739us - RuntimeFilterComputeTime: 206.800us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 4 - BytesReceived: 78.72 KB - CloseTime: 7.663us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 77.599us - ExecTime: 56.869us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 264.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 16.223us - ProjectionTime: 0ns - RowsProduced: 5.684K (5684) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s812ms PipelineXTask (index=5):(Active: 19.651ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.587ms - CloseTime: 9.88us - GetBlockTime: 57.27us - OpenTime: 3.880us - PrepareTime: 45.722us - SinkTime: 19.478ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.959ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.208ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.203us - BuildRows: 6.523K (6523) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.348ms - BuildTableInsertTime: 412.501us - BuildTableTime: 415.380us - CloseTime: 0ns - ExecTime: 19.484ms - InputRows: 6.522K (6522) - MemoryUsage: - BuildBlocks: 361.06 KB - BuildKeyArena: 216.00 KB - HashTable: 63.85 KB - PeakMemoryUsage: 636.91 KB - OpenTime: 8.881us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 258.215us - RuntimeFilterComputeTime: 341.273us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 4 - BytesReceived: 83.70 KB - CloseTime: 7.182us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 119.657us - ExecTime: 71.655us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 336.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 10.795us - ProjectionTime: 0ns - RowsProduced: 6.522K (6522) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s795ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 34.846ms, % non-child: 0.00%) - CoreChangeTimes: 28 - ExecuteTime: 34.293ms - CloseTime: 303.121us - GetBlockTime: 33.224ms - OpenTime: 6.825us - PrepareTime: 233.656us - SinkTime: 514.918us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 41 - NumBlockedTimes: 43 - NumScheduleTimes: 44 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 34.432ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.824ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.50 KB - CloseTime: 12.274us - CompressTime: 0ns - ExecTime: 591.789us - InputRows: 1.729K (1729) - LocalBytesSent: 109.95 KB - LocalSendTime: 93.902us - LocalSentRows: 1.443K (1443) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 65.357us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.940ms - RowsProduced: 1.729K (1729) - RpcAvgTime: 17.559ms - RpcCount: 2 - RpcMaxTime: 17.630ms - RpcMinTime: 17.488ms - RpcSumTime: 35.119ms - SerializeBatchTime: 44.86us - SplitBlockDistributeByChannelTime: 149.7us - SplitBlockHashComputeTime: 42.681us - UncompressedRowBatchSize: 23.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.300ms - CloseTime: 232.163us - DeserializeAndMergeTime: 0ns - ExecTime: 4.123ms - ExprTime: 61.29us - GetResultsTime: 467.897us - HashTableComputeTime: 1.549ms - HashTableEmplaceTime: 1.171ms - HashTableInputCount: 5.987K (5987) - HashTableIterateTime: 16.96us - HashTableSize: 1.729K (1729) - InsertKeysToColumnTime: 94.598us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 28.375us - ProjectionTime: 0ns - RowsProduced: 1.729K (1729) - SerializeDataTime: 340.109us - SerializeKeyTime: 0ns - SerializeResultTime: 470.40us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 27.749us - ExecTime: 5.591ms - InitProbeSideTime: 538.764us - JoinFilterTimer: 4.659us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 18.232us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.427us - ProbeFindNextTime: 0ns - ProbeRows: 5.55K (5550) - ProbeTime: 4.199ms - ProbeWhenBuildSideOutputTime: 133.995us - ProbeWhenProbeSideOutputTime: 421.372us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.66ms - ProjectionTime: 1.163ms - RowsProduced: 5.987K (5987) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s991ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 16.135us - ExecTime: 22.661ms - InitProbeSideTime: 9.229ms - JoinFilterTimer: 7.432us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 7.815us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 28.878us - ProbeFindNextTime: 0ns - ProbeRows: 341.819K (341819) - ProbeTime: 21.851ms - ProbeWhenBuildSideOutputTime: 1.120ms - ProbeWhenProbeSideOutputTime: 79.217us - ProbeWhenProcessHashTableTime: 58.209us - ProbeWhenSearchHashTableTime: 10.398ms - ProjectionTime: 475.99us - RowsProduced: 5.55K (5550) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s406ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 107 - BytesReceived: 2.00 MB - CloseTime: 8.848us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.337ms - ExecTime: 668.339us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.27 MB - MemoryUsage: - Blocks: 5.83 MB - PeakMemoryUsage: 2.89 MB - OpenTime: 22.999us - ProjectionTime: 0ns - RowsProduced: 341.819K (341819) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 993.729ms PipelineXTask (index=3):(Active: 390.311ms, % non-child: 0.00%) - CoreChangeTimes: 46 - ExecuteTime: 389.659ms - CloseTime: 395.993us - GetBlockTime: 380.695ms - OpenTime: 7.531us - PrepareTime: 184.817us - SinkTime: 782.509us - GetBlockCounter: 2.844K (2844) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 440 - NumBlockedTimes: 442 - NumScheduleTimes: 445 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 388.689ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 86.267ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.92 KB - CloseTime: 17.878us - CompressTime: 0ns - ExecTime: 871.469us - InputRows: 1.767K (1767) - LocalBytesSent: 113.51 KB - LocalSendTime: 158.220us - LocalSentRows: 1.471K (1471) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 72.552us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.270ms - RowsProduced: 1.767K (1767) - RpcAvgTime: 817.416us - RpcCount: 2 - RpcMaxTime: 907.896us - RpcMinTime: 726.936us - RpcSumTime: 1.634ms - SerializeBatchTime: 75.365us - SplitBlockDistributeByChannelTime: 195.999us - SplitBlockHashComputeTime: 75.92us - UncompressedRowBatchSize: 23.65 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.809ms - CloseTime: 337.830us - DeserializeAndMergeTime: 0ns - ExecTime: 8.734ms - ExprTime: 545.950us - GetResultsTime: 808.553us - HashTableComputeTime: 2.831ms - HashTableEmplaceTime: 1.918ms - HashTableInputCount: 6.42K (6420) - HashTableIterateTime: 24.138us - HashTableSize: 1.767K (1767) - InsertKeysToColumnTime: 135.94us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 24.970us - ProjectionTime: 0ns - RowsProduced: 1.767K (1767) - SerializeDataTime: 609.621us - SerializeKeyTime: 0ns - SerializeResultTime: 811.497us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 947 - BuildOutputBlock: 0ns - CloseTime: 17.874us - ExecTime: 23.875ms - InitProbeSideTime: 1.354ms - JoinFilterTimer: 45.162us - MemoryUsage: - PeakMemoryUsage: 56.00 KB - ProbeKeyArena: 56.00 KB - OpenTime: 13.646us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 198.914us - ProbeFindNextTime: 0ns - ProbeRows: 5.739K (5739) - ProbeTime: 14.129ms - ProbeWhenBuildSideOutputTime: 748.140us - ProbeWhenProbeSideOutputTime: 1.124ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.135ms - ProjectionTime: 8.129ms - RowsProduced: 6.42K (6420) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s978ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 1.042K (1042) - BuildOutputBlock: 0ns - CloseTime: 8.670us - ExecTime: 314.440ms - InitProbeSideTime: 204.217ms - JoinFilterTimer: 187.665us - MemoryUsage: - PeakMemoryUsage: 708.00 KB - ProbeKeyArena: 708.00 KB - OpenTime: 11.666us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 542.772us - ProbeFindNextTime: 0ns - ProbeRows: 20.055105M (20055105) - ProbeTime: 301.27ms - ProbeWhenBuildSideOutputTime: 3.702ms - ProbeWhenProbeSideOutputTime: 1.88ms - ProbeWhenProcessHashTableTime: 72.908us - ProbeWhenSearchHashTableTime: 74.642ms - ProjectionTime: 4.556ms - RowsProduced: 5.739K (5739) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s426ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 3.335K (3335) - BytesReceived: 12.23 MB - CloseTime: 7.82us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.365ms - ExecTime: 27.32ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 101.77 MB - MemoryUsage: - Blocks: 40.93 MB - PeakMemoryUsage: 40.61 MB - OpenTime: 20.880us - ProjectionTime: 0ns - RowsProduced: 20.055105M (20055105) - SendersBlockedTotalTimer(*): 26s621ms - WaitForDependencyTime: 0ns - WaitForData0: 2s425ms PipelineXTask (index=6):(Active: 36.881ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 36.370ms - CloseTime: 284.292us - GetBlockTime: 35.350ms - OpenTime: 7.895us - PrepareTime: 207.653us - SinkTime: 459.657us - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 44 - NumBlockedTimes: 46 - NumScheduleTimes: 47 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 36.477ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.418ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 17.51 KB - CloseTime: 11.106us - CompressTime: 0ns - ExecTime: 546.691us - InputRows: 1.717K (1717) - LocalBytesSent: 113.08 KB - LocalSendTime: 36.360us - LocalSentRows: 1.435K (1435) - MemoryUsage: - PeakMemoryUsage: 194.00 KB - MergeBlockTime: 0ns - OpenTime: 76.853us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.925ms - RowsProduced: 1.717K (1717) - RpcAvgTime: 17.656ms - RpcCount: 2 - RpcMaxTime: 17.734ms - RpcMinTime: 17.579ms - RpcSumTime: 35.313ms - SerializeBatchTime: 41.444us - SplitBlockDistributeByChannelTime: 177.330us - SplitBlockHashComputeTime: 61.507us - UncompressedRowBatchSize: 22.05 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.307ms - CloseTime: 238.331us - DeserializeAndMergeTime: 0ns - ExecTime: 4.106ms - ExprTime: 61.469us - GetResultsTime: 429.141us - HashTableComputeTime: 1.489ms - HashTableEmplaceTime: 1.81ms - HashTableInputCount: 6.115K (6115) - HashTableIterateTime: 11.605us - HashTableSize: 1.717K (1717) - InsertKeysToColumnTime: 69.395us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 32.511us - ProjectionTime: 0ns - RowsProduced: 1.717K (1717) - SerializeDataTime: 329.752us - SerializeKeyTime: 0ns - SerializeResultTime: 430.682us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 90 - BuildOutputBlock: 0ns - CloseTime: 12.560us - ExecTime: 6.220ms - InitProbeSideTime: 620.923us - JoinFilterTimer: 5.316us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 16.151us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.26us - ProbeFindNextTime: 0ns - ProbeRows: 6.052K (6052) - ProbeTime: 4.695ms - ProbeWhenBuildSideOutputTime: 155.125us - ProbeWhenProbeSideOutputTime: 451.285us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.406ms - ProjectionTime: 1.312ms - RowsProduced: 6.115K (6115) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s987ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 90 - BuildOutputBlock: 0ns - CloseTime: 11.898us - ExecTime: 24.119ms - InitProbeSideTime: 9.939ms - JoinFilterTimer: 9.633us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 8.563us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 26.669us - ProbeFindNextTime: 0ns - ProbeRows: 341.728K (341728) - ProbeTime: 23.259ms - ProbeWhenBuildSideOutputTime: 1.262ms - ProbeWhenProbeSideOutputTime: 87.698us - ProbeWhenProcessHashTableTime: 76.104us - ProbeWhenSearchHashTableTime: 10.865ms - ProjectionTime: 475.183us - RowsProduced: 6.052K (6052) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s415ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 108 - BytesReceived: 2.00 MB - CloseTime: 5.475us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.139ms - ExecTime: 698.106us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.36 MB - MemoryUsage: - Blocks: 5.95 MB - PeakMemoryUsage: 3.07 MB - OpenTime: 18.963us - ProjectionTime: 0ns - RowsProduced: 341.728K (341728) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 984.843ms PipelineXTask (index=9):(Active: 35.423ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 34.882ms - CloseTime: 304.206us - GetBlockTime: 33.845ms - OpenTime: 11.378us - PrepareTime: 215.33us - SinkTime: 493.224us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 35.45ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.199ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.23 KB - CloseTime: 11.967us - CompressTime: 0ns - ExecTime: 565.371us - InputRows: 1.721K (1721) - LocalBytesSent: 111.67 KB - LocalSendTime: 57.149us - LocalSentRows: 1.446K (1446) - MemoryUsage: - PeakMemoryUsage: 194.00 KB - MergeBlockTime: 0ns - OpenTime: 60.658us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.964ms - RowsProduced: 1.721K (1721) - RpcAvgTime: 17.640ms - RpcCount: 2 - RpcMaxTime: 17.705ms - RpcMinTime: 17.576ms - RpcSumTime: 35.281ms - SerializeBatchTime: 35.661us - SplitBlockDistributeByChannelTime: 173.794us - SplitBlockHashComputeTime: 43.773us - UncompressedRowBatchSize: 22.67 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.457ms - CloseTime: 247.844us - DeserializeAndMergeTime: 0ns - ExecTime: 4.322ms - ExprTime: 72.553us - GetResultsTime: 471.258us - HashTableComputeTime: 1.605ms - HashTableEmplaceTime: 1.203ms - HashTableInputCount: 6.056K (6056) - HashTableIterateTime: 34.669us - HashTableSize: 1.721K (1721) - InsertKeysToColumnTime: 77.504us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 45.546us - ProjectionTime: 0ns - RowsProduced: 1.721K (1721) - SerializeDataTime: 345.847us - SerializeKeyTime: 0ns - SerializeResultTime: 473.508us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 14.906us - ExecTime: 5.684ms - InitProbeSideTime: 501.5us - JoinFilterTimer: 7.439us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 19.782us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.201us - ProbeFindNextTime: 0ns - ProbeRows: 5.77K (5770) - ProbeTime: 4.204ms - ProbeWhenBuildSideOutputTime: 139.357us - ProbeWhenProbeSideOutputTime: 442.224us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.108ms - ProjectionTime: 1.276ms - RowsProduced: 6.056K (6056) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s999ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 9.921us - ExecTime: 23.110ms - InitProbeSideTime: 10.48ms - JoinFilterTimer: 8.124us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 10.342us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.692us - ProbeFindNextTime: 0ns - ProbeRows: 341.015K (341015) - ProbeTime: 22.315ms - ProbeWhenBuildSideOutputTime: 1.60ms - ProbeWhenProbeSideOutputTime: 82.778us - ProbeWhenProcessHashTableTime: 54.897us - ProbeWhenSearchHashTableTime: 10.111ms - ProjectionTime: 431.180us - RowsProduced: 5.77K (5770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s419ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 107 - BytesReceived: 2.01 MB - CloseTime: 6.15us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.249ms - ExecTime: 591.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.16 MB - MemoryUsage: - Blocks: 6.77 MB - PeakMemoryUsage: 3.84 MB - OpenTime: 16.865us - ProjectionTime: 0ns - RowsProduced: 341.015K (341015) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 973.525ms PipelineXTask (index=12):(Active: 33.357ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 32.731ms - CloseTime: 366.783us - GetBlockTime: 31.275ms - OpenTime: 6.513us - PrepareTime: 241.894us - SinkTime: 930.629us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 42 - NumBlockedTimes: 44 - NumScheduleTimes: 45 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 32.876ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.589ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.74 KB - CloseTime: 20.547us - CompressTime: 0ns - ExecTime: 1.14ms - InputRows: 1.781K (1781) - LocalBytesSent: 113.29 KB - LocalSendTime: 189.268us - LocalSentRows: 1.474K (1474) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 63.955us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.314ms - RowsProduced: 1.781K (1781) - RpcAvgTime: 17.143ms - RpcCount: 2 - RpcMaxTime: 17.224ms - RpcMinTime: 17.62ms - RpcSumTime: 34.286ms - SerializeBatchTime: 91.708us - SplitBlockDistributeByChannelTime: 264.72us - SplitBlockHashComputeTime: 88.22us - UncompressedRowBatchSize: 24.64 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.173ms - CloseTime: 316.281us - DeserializeAndMergeTime: 0ns - ExecTime: 4.310ms - ExprTime: 58.367us - GetResultsTime: 697.380us - HashTableComputeTime: 1.428ms - HashTableEmplaceTime: 1.65ms - HashTableInputCount: 6.219K (6219) - HashTableIterateTime: 22.612us - HashTableSize: 1.781K (1781) - InsertKeysToColumnTime: 169.585us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 28.767us - ProjectionTime: 0ns - RowsProduced: 1.781K (1781) - SerializeDataTime: 468.234us - SerializeKeyTime: 0ns - SerializeResultTime: 701.398us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 10.963us - ExecTime: 5.447ms - InitProbeSideTime: 521.689us - JoinFilterTimer: 4.354us - MemoryUsage: - PeakMemoryUsage: 76.00 KB - ProbeKeyArena: 76.00 KB - OpenTime: 14.754us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.572us - ProbeFindNextTime: 0ns - ProbeRows: 5.851K (5851) - ProbeTime: 4.211ms - ProbeWhenBuildSideOutputTime: 136.602us - ProbeWhenProbeSideOutputTime: 422.595us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.172ms - ProjectionTime: 1.66ms - RowsProduced: 6.219K (6219) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s977ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 9.765us - ExecTime: 20.854ms - InitProbeSideTime: 8.389ms - JoinFilterTimer: 8.843us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 24.118us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.952us - ProbeFindNextTime: 0ns - ProbeRows: 340.534K (340534) - ProbeTime: 20.102ms - ProbeWhenBuildSideOutputTime: 1.35ms - ProbeWhenProbeSideOutputTime: 75.767us - ProbeWhenProcessHashTableTime: 106.892us - ProbeWhenSearchHashTableTime: 9.603ms - ProjectionTime: 394.695us - RowsProduced: 5.851K (5851) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s423ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 107 - BytesReceived: 1.99 MB - CloseTime: 4.617us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.289ms - ExecTime: 583.458us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.22 MB - MemoryUsage: - Blocks: 5.95 MB - PeakMemoryUsage: 3.04 MB - OpenTime: 21.588us - ProjectionTime: 0ns - RowsProduced: 340.534K (340534) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 991.939ms PipelineXTask (index=15):(Active: 43.581ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 42.975ms - CloseTime: 374.244us - GetBlockTime: 41.848ms - OpenTime: 7.476us - PrepareTime: 215.634us - SinkTime: 592.594us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 43.115ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.103ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 17.87 KB - CloseTime: 12.572us - CompressTime: 0ns - ExecTime: 676.763us - InputRows: 1.728K (1728) - LocalBytesSent: 111.97 KB - LocalSendTime: 55.944us - LocalSentRows: 1.448K (1448) - MemoryUsage: - PeakMemoryUsage: 194.00 KB - MergeBlockTime: 0ns - OpenTime: 72.144us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.65ms - RowsProduced: 1.728K (1728) - RpcAvgTime: 17.642ms - RpcCount: 2 - RpcMaxTime: 17.649ms - RpcMinTime: 17.636ms - RpcSumTime: 35.285ms - SerializeBatchTime: 44.175us - SplitBlockDistributeByChannelTime: 241.195us - SplitBlockHashComputeTime: 62.578us - UncompressedRowBatchSize: 22.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.876ms - CloseTime: 301.556us - DeserializeAndMergeTime: 0ns - ExecTime: 4.929ms - ExprTime: 72.739us - GetResultsTime: 599.261us - HashTableComputeTime: 1.786ms - HashTableEmplaceTime: 1.331ms - HashTableInputCount: 6.244K (6244) - HashTableIterateTime: 16.819us - HashTableSize: 1.728K (1728) - InsertKeysToColumnTime: 97.667us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 22.824us - ProjectionTime: 0ns - RowsProduced: 1.728K (1728) - SerializeDataTime: 461.199us - SerializeKeyTime: 0ns - SerializeResultTime: 601.956us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 11.788us - ExecTime: 6.212ms - InitProbeSideTime: 575.798us - JoinFilterTimer: 7.98us - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 13.839us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 26.548us - ProbeFindNextTime: 0ns - ProbeRows: 5.743K (5743) - ProbeTime: 4.584ms - ProbeWhenBuildSideOutputTime: 145.703us - ProbeWhenProbeSideOutputTime: 483.644us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.273ms - ProjectionTime: 1.376ms - RowsProduced: 6.244K (6244) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s978ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 12.992us - ExecTime: 29.784ms - InitProbeSideTime: 13.548ms - JoinFilterTimer: 9.364us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 10.992us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 32.383us - ProbeFindNextTime: 0ns - ProbeRows: 341.844K (341844) - ProbeTime: 28.876ms - ProbeWhenBuildSideOutputTime: 1.243ms - ProbeWhenProbeSideOutputTime: 108.711us - ProbeWhenProcessHashTableTime: 67.145us - ProbeWhenSearchHashTableTime: 12.760ms - ProjectionTime: 475.694us - RowsProduced: 5.743K (5743) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s427ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 107 - BytesReceived: 2.00 MB - CloseTime: 30.297us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.253ms - ExecTime: 756.672us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.31 MB - MemoryUsage: - Blocks: 6.16 MB - PeakMemoryUsage: 3.25 MB - OpenTime: 19.88us - ProjectionTime: 0ns - RowsProduced: 341.844K (341844) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 978.38ms PipelineXTask (index=18):(Active: 34.643ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 33.673ms - CloseTime: 746.558us - GetBlockTime: 32.585ms - OpenTime: 5.482us - PrepareTime: 207.224us - SinkTime: 558.49us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 43 - NumBlockedTimes: 45 - NumScheduleTimes: 46 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 33.783ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.734ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.35 KB - CloseTime: 12.939us - CompressTime: 0ns - ExecTime: 662.180us - InputRows: 1.685K (1685) - LocalBytesSent: 107.86 KB - LocalSendTime: 62.69us - LocalSentRows: 1.393K (1393) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 92.53us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.173ms - RowsProduced: 1.685K (1685) - RpcAvgTime: 17.462ms - RpcCount: 2 - RpcMaxTime: 17.601ms - RpcMinTime: 17.324ms - RpcSumTime: 34.925ms - SerializeBatchTime: 48.318us - SplitBlockDistributeByChannelTime: 209.941us - SplitBlockHashComputeTime: 64.223us - UncompressedRowBatchSize: 24.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.275ms - CloseTime: 222.438us - DeserializeAndMergeTime: 0ns - ExecTime: 4.118ms - ExprTime: 53.133us - GetResultsTime: 508.955us - HashTableComputeTime: 1.522ms - HashTableEmplaceTime: 1.117ms - HashTableInputCount: 5.947K (5947) - HashTableIterateTime: 15.736us - HashTableSize: 1.685K (1685) - InsertKeysToColumnTime: 111.345us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 19.658us - ProjectionTime: 0ns - RowsProduced: 1.685K (1685) - SerializeDataTime: 361.101us - SerializeKeyTime: 0ns - SerializeResultTime: 511.444us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 12.720us - ExecTime: 5.403ms - InitProbeSideTime: 552.309us - JoinFilterTimer: 4.460us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 11.585us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.906us - ProbeFindNextTime: 0ns - ProbeRows: 5.633K (5633) - ProbeTime: 4.105ms - ProbeWhenBuildSideOutputTime: 119.146us - ProbeWhenProbeSideOutputTime: 415.58us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.87ms - ProjectionTime: 1.98ms - RowsProduced: 5.947K (5947) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s967ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 27.834us - ExecTime: 22.236ms - InitProbeSideTime: 9.197ms - JoinFilterTimer: 6.321us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 6.664us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.19us - ProbeFindNextTime: 0ns - ProbeRows: 341.413K (341413) - ProbeTime: 21.521ms - ProbeWhenBuildSideOutputTime: 1.76ms - ProbeWhenProbeSideOutputTime: 68.408us - ProbeWhenProcessHashTableTime: 68.813us - ProbeWhenSearchHashTableTime: 10.243ms - ProjectionTime: 390.825us - RowsProduced: 5.633K (5633) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s430ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 107 - BytesReceived: 2.00 MB - CloseTime: 465.358us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.256ms - ExecTime: 1.102ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.25 MB - MemoryUsage: - Blocks: 5.76 MB - PeakMemoryUsage: 2.87 MB - OpenTime: 15.286us - ProjectionTime: 0ns - RowsProduced: 341.413K (341413) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 995.526ms PipelineXTask (index=21):(Active: 34.592ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 33.996ms - CloseTime: 382.994us - GetBlockTime: 32.832ms - OpenTime: 9.63us - PrepareTime: 194.450us - SinkTime: 627.220us - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 39 - NumBlockedTimes: 41 - NumScheduleTimes: 42 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 34.126ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.146ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.19 KB - CloseTime: 19.886us - CompressTime: 0ns - ExecTime: 707.908us - InputRows: 1.755K (1755) - LocalBytesSent: 112.76 KB - LocalSendTime: 58.357us - LocalSentRows: 1.451K (1451) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 61.610us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.915ms - RowsProduced: 1.755K (1755) - RpcAvgTime: 17.573ms - RpcCount: 2 - RpcMaxTime: 17.624ms - RpcMinTime: 17.521ms - RpcSumTime: 35.146ms - SerializeBatchTime: 49.880us - SplitBlockDistributeByChannelTime: 234.238us - SplitBlockHashComputeTime: 64.486us - UncompressedRowBatchSize: 24.07 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.433ms - CloseTime: 303.757us - DeserializeAndMergeTime: 0ns - ExecTime: 4.433ms - ExprTime: 72.736us - GetResultsTime: 576.998us - HashTableComputeTime: 1.402ms - HashTableEmplaceTime: 984.114us - HashTableInputCount: 7.289K (7289) - HashTableIterateTime: 14.430us - HashTableSize: 1.755K (1755) - InsertKeysToColumnTime: 123.727us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 27.287us - ProjectionTime: 0ns - RowsProduced: 1.755K (1755) - SerializeDataTime: 411.219us - SerializeKeyTime: 0ns - SerializeResultTime: 579.168us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 90 - BuildOutputBlock: 0ns - CloseTime: 24.625us - ExecTime: 5.938ms - InitProbeSideTime: 560.580us - JoinFilterTimer: 4.819us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 17.528us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.925us - ProbeFindNextTime: 0ns - ProbeRows: 6.153K (6153) - ProbeTime: 4.495ms - ProbeWhenBuildSideOutputTime: 139.880us - ProbeWhenProbeSideOutputTime: 487.323us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.375ms - ProjectionTime: 1.222ms - RowsProduced: 7.289K (7289) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s976ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 90 - BuildOutputBlock: 0ns - CloseTime: 16.742us - ExecTime: 21.727ms - InitProbeSideTime: 8.800ms - JoinFilterTimer: 7.959us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 8.501us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 27.817us - ProbeFindNextTime: 0ns - ProbeRows: 341.921K (341921) - ProbeTime: 20.968ms - ProbeWhenBuildSideOutputTime: 1.231ms - ProbeWhenProbeSideOutputTime: 77.561us - ProbeWhenProcessHashTableTime: 92.631us - ProbeWhenSearchHashTableTime: 9.851ms - ProjectionTime: 423.613us - RowsProduced: 6.153K (6153) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s434ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 109 - BytesReceived: 2.01 MB - CloseTime: 9.456us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.167ms - ExecTime: 614.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.28 MB - MemoryUsage: - Blocks: 6.72 MB - PeakMemoryUsage: 3.82 MB - OpenTime: 13.417us - ProjectionTime: 0ns - RowsProduced: 341.921K (341921) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 984.180ms PipelineXTask (index=24):(Active: 39.468ms, % non-child: 0.00%) - CoreChangeTimes: 28 - ExecuteTime: 38.850ms - CloseTime: 388.335us - GetBlockTime: 37.583ms - OpenTime: 6.178us - PrepareTime: 213.696us - SinkTime: 678.237us - GetBlockCounter: 90 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 48 - NumBlockedTimes: 50 - NumScheduleTimes: 51 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 38.972ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.95ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 17.83 KB - CloseTime: 14.98us - CompressTime: 0ns - ExecTime: 774.509us - InputRows: 1.72K (1720) - LocalBytesSent: 112.10 KB - LocalSendTime: 104.28us - LocalSentRows: 1.45K (1450) - MemoryUsage: - PeakMemoryUsage: 185.00 KB - MergeBlockTime: 0ns - OpenTime: 83.29us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.349ms - RowsProduced: 1.72K (1720) - RpcAvgTime: 17.516ms - RpcCount: 2 - RpcMaxTime: 17.566ms - RpcMinTime: 17.465ms - RpcSumTime: 35.32ms - SerializeBatchTime: 46.955us - SplitBlockDistributeByChannelTime: 214.953us - SplitBlockHashComputeTime: 81.82us - UncompressedRowBatchSize: 22.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.792ms - CloseTime: 320.263us - DeserializeAndMergeTime: 0ns - ExecTime: 4.673ms - ExprTime: 60.373us - GetResultsTime: 412.507us - HashTableComputeTime: 1.708ms - HashTableEmplaceTime: 1.291ms - HashTableInputCount: 5.933K (5933) - HashTableIterateTime: 8.930us - HashTableSize: 1.72K (1720) - InsertKeysToColumnTime: 61.68us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 21.124us - ProjectionTime: 0ns - RowsProduced: 1.72K (1720) - SerializeDataTime: 326.320us - SerializeKeyTime: 0ns - SerializeResultTime: 414.632us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 16.863us - ExecTime: 6.733ms - InitProbeSideTime: 618.657us - JoinFilterTimer: 5.998us - MemoryUsage: - PeakMemoryUsage: 76.00 KB - ProbeKeyArena: 76.00 KB - OpenTime: 21.451us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.877us - ProbeFindNextTime: 0ns - ProbeRows: 5.735K (5735) - ProbeTime: 5.173ms - ProbeWhenBuildSideOutputTime: 140.216us - ProbeWhenProbeSideOutputTime: 551.162us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.748ms - ProjectionTime: 1.330ms - RowsProduced: 5.933K (5933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s950ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 13.504us - ExecTime: 25.292ms - InitProbeSideTime: 10.183ms - JoinFilterTimer: 9.304us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 6.948us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 28.273us - ProbeFindNextTime: 0ns - ProbeRows: 341.365K (341365) - ProbeTime: 24.390ms - ProbeWhenBuildSideOutputTime: 1.454ms - ProbeWhenProbeSideOutputTime: 84.359us - ProbeWhenProcessHashTableTime: 51.657us - ProbeWhenSearchHashTableTime: 11.518ms - ProjectionTime: 511.419us - RowsProduced: 5.735K (5735) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s440ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 107 - BytesReceived: 1.99 MB - CloseTime: 17.796us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.202ms - ExecTime: 727.165us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.24 MB - MemoryUsage: - Blocks: 5.42 MB - PeakMemoryUsage: 2.56 MB - OpenTime: 19.967us - ProjectionTime: 0ns - RowsProduced: 341.365K (341365) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 996.187ms PipelineXTask (index=27):(Active: 35.110ms, % non-child: 0.00%) - CoreChangeTimes: 33 - ExecuteTime: 34.593ms - CloseTime: 268.356us - GetBlockTime: 33.648ms - OpenTime: 7.787us - PrepareTime: 232.564us - SinkTime: 416.181us - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 46 - NumBlockedTimes: 48 - NumScheduleTimes: 49 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 34.732ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.724ms DATA_STREAM_SINK_OPERATOR (id=327,dst_id=327): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.20 KB - CloseTime: 9.186us - CompressTime: 0ns - ExecTime: 520.885us - InputRows: 1.722K (1722) - LocalBytesSent: 111.93 KB - LocalSendTime: 54.819us - LocalSentRows: 1.443K (1443) - MemoryUsage: - PeakMemoryUsage: 186.00 KB - MergeBlockTime: 0ns - OpenTime: 96.343us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.344ms - RowsProduced: 1.722K (1722) - RpcAvgTime: 17.440ms - RpcCount: 2 - RpcMaxTime: 17.458ms - RpcMinTime: 17.422ms - RpcSumTime: 34.880ms - SerializeBatchTime: 36.73us - SplitBlockDistributeByChannelTime: 163.920us - SplitBlockHashComputeTime: 41.759us - UncompressedRowBatchSize: 22.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.567ms - CloseTime: 219.692us - DeserializeAndMergeTime: 0ns - ExecTime: 4.509ms - ExprTime: 57.337us - GetResultsTime: 587.344us - HashTableComputeTime: 1.588ms - HashTableEmplaceTime: 1.204ms - HashTableInputCount: 7.059K (7059) - HashTableIterateTime: 10.194us - HashTableSize: 1.722K (1722) - InsertKeysToColumnTime: 80.863us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 631.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 37.517us - ProjectionTime: 0ns - RowsProduced: 1.722K (1722) - SerializeDataTime: 478.712us - SerializeKeyTime: 0ns - SerializeResultTime: 588.955us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=325): - BlocksProduced: 89 - BuildOutputBlock: 0ns - CloseTime: 16.120us - ExecTime: 5.986ms - InitProbeSideTime: 548.154us - JoinFilterTimer: 4.184us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 14.478us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.609us - ProbeFindNextTime: 0ns - ProbeRows: 5.684K (5684) - ProbeTime: 4.573ms - ProbeWhenBuildSideOutputTime: 121.660us - ProbeWhenProbeSideOutputTime: 481.650us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.472ms - ProjectionTime: 1.219ms - RowsProduced: 7.059K (7059) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s948ms HASH_JOIN_OPERATOR (id=324): - BlocksProduced: 90 - BuildOutputBlock: 0ns - CloseTime: 16.486us - ExecTime: 22.331ms - InitProbeSideTime: 8.719ms - JoinFilterTimer: 6.407us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 11.943us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.27us - ProbeFindNextTime: 0ns - ProbeRows: 341.797K (341797) - ProbeTime: 21.572ms - ProbeWhenBuildSideOutputTime: 1.226ms - ProbeWhenProbeSideOutputTime: 104.636us - ProbeWhenProcessHashTableTime: 50.691us - ProbeWhenSearchHashTableTime: 10.615ms - ProjectionTime: 397.320us - RowsProduced: 5.684K (5684) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s444ms EXCHANGE_OPERATOR (id=323): - BlocksProduced: 108 - BytesReceived: 2.00 MB - CloseTime: 3.741us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.319ms - ExecTime: 617.523us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.29 MB - MemoryUsage: - Blocks: 5.57 MB - PeakMemoryUsage: 2.69 MB - OpenTime: 16.89us - ProjectionTime: 0ns - RowsProduced: 341.797K (341797) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 998.575ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 133.863ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 133.764ms - CloseTime: 14.382us - GetBlockTime: 2.222ms - OpenTime: 1.785us - PrepareTime: 61.140us - SinkTime: 130.444ms - GetBlockCounter: 108 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 105 - NumBlockedTimes: 107 - NumScheduleTimes: 107 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.835ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 48.493ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 109.748us - BuildRows: 403.727K (403727) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 77.857ms - BuildTableInsertTime: 21.476ms - BuildTableTime: 21.826ms - CloseTime: 0ns - ExecTime: 130.393ms - InputRows: 403.726K (403726) - MemoryUsage: - BuildBlocks: 40.81 MB - BuildKeyArena: 12.33 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.68 MB - OpenTime: 20.835us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.4ms - RuntimeFilterComputeTime: 28.567ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 170 - BytesReceived: 15.43 MB - CloseTime: 10.870us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 13.206ms - ExecTime: 2.105ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 27.05 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 15.660us - ProjectionTime: 0ns - RowsProduced: 403.726K (403726) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s5ms PipelineXTask (index=4):(Active: 124.633ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 124.553ms - CloseTime: 11.236us - GetBlockTime: 2.609ms - OpenTime: 1.505us - PrepareTime: 49.618us - SinkTime: 120.677ms - GetBlockCounter: 109 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 104 - NumBlockedTimes: 106 - NumScheduleTimes: 106 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 113.170ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.203ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 96.666us - BuildRows: 413.714K (413714) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 76.824ms - BuildTableInsertTime: 17.887ms - BuildTableTime: 18.246ms - CloseTime: 0ns - ExecTime: 120.613ms - InputRows: 413.713K (413713) - MemoryUsage: - BuildBlocks: 41.59 MB - BuildKeyArena: 12.63 MB - HashTable: 3.58 MB - PeakMemoryUsage: 57.80 MB - OpenTime: 16.324us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 860.641us - RuntimeFilterComputeTime: 23.488ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 171 - BytesReceived: 15.67 MB - CloseTime: 8.460us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.256ms - ExecTime: 2.495ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 28.89 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 12.220us - ProjectionTime: 0ns - RowsProduced: 413.713K (413713) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s962ms PipelineXTask (index=7):(Active: 144.806ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 144.541ms - CloseTime: 13.193us - GetBlockTime: 2.259ms - OpenTime: 1.892us - PrepareTime: 222.118us - SinkTime: 141.123ms - GetBlockCounter: 108 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 103 - NumBlockedTimes: 105 - NumScheduleTimes: 105 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.303ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 55.899ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 105.713us - BuildRows: 402.736K (402736) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 84.538ms - BuildTableInsertTime: 23.430ms - BuildTableTime: 23.779ms - CloseTime: 0ns - ExecTime: 141.209ms - InputRows: 402.735K (402735) - MemoryUsage: - BuildBlocks: 40.71 MB - BuildKeyArena: 12.30 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.54 MB - OpenTime: 159.854us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.792ms - RuntimeFilterComputeTime: 29.788ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 169 - BytesReceived: 15.37 MB - CloseTime: 9.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.568ms - ExecTime: 2.128ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 26.43 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 31.770us - ProjectionTime: 0ns - RowsProduced: 402.735K (402735) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s992ms PipelineXTask (index=10):(Active: 141.201ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 141.115ms - CloseTime: 13.86us - GetBlockTime: 2.298ms - OpenTime: 1.831us - PrepareTime: 51.147us - SinkTime: 137.636ms - GetBlockCounter: 107 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 104 - NumBlockedTimes: 106 - NumScheduleTimes: 106 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 140.885ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.176ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 92.94us - BuildRows: 403.532K (403532) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 67.197ms - BuildTableInsertTime: 18.336ms - BuildTableTime: 18.852ms - CloseTime: 0ns - ExecTime: 137.577ms - InputRows: 403.531K (403531) - MemoryUsage: - BuildBlocks: 40.79 MB - BuildKeyArena: 12.32 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.65 MB - OpenTime: 22.452us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.438ms - RuntimeFilterComputeTime: 45.669ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 168 - BytesReceived: 15.40 MB - CloseTime: 9.356us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.359ms - ExecTime: 2.178ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 26.63 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.141us - ProjectionTime: 0ns - RowsProduced: 403.531K (403531) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s3ms PipelineXTask (index=13):(Active: 136.376ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 136.291ms - CloseTime: 13.814us - GetBlockTime: 2.225ms - OpenTime: 1.540us - PrepareTime: 46.826us - SinkTime: 132.983ms - GetBlockCounter: 108 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 105 - NumBlockedTimes: 107 - NumScheduleTimes: 107 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.979ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 56.427ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 77.892us - BuildRows: 403.274K (403274) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 76.960ms - BuildTableInsertTime: 22.301ms - BuildTableTime: 22.676ms - CloseTime: 0ns - ExecTime: 132.917ms - InputRows: 403.273K (403273) - MemoryUsage: - BuildBlocks: 40.77 MB - BuildKeyArena: 12.31 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.61 MB - OpenTime: 15.975us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.96ms - RuntimeFilterComputeTime: 31.99ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 170 - BytesReceived: 15.42 MB - CloseTime: 10.546us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.633ms - ExecTime: 2.122ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 27.01 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.925us - ProjectionTime: 0ns - RowsProduced: 403.273K (403273) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s998ms PipelineXTask (index=16):(Active: 135.304ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 135.225ms - CloseTime: 12.617us - GetBlockTime: 2.206ms - OpenTime: 1.482us - PrepareTime: 48.419us - SinkTime: 131.849ms - GetBlockCounter: 108 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 106 - NumBlockedTimes: 108 - NumScheduleTimes: 108 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 134.561ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.101ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 88.262us - BuildRows: 404.418K (404418) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 70.393ms - BuildTableInsertTime: 19.498ms - BuildTableTime: 19.985ms - CloseTime: 0ns - ExecTime: 131.790ms - InputRows: 404.417K (404417) - MemoryUsage: - BuildBlocks: 40.88 MB - BuildKeyArena: 12.35 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.77 MB - OpenTime: 14.417us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.185ms - RuntimeFilterComputeTime: 38.882ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 169 - BytesReceived: 15.40 MB - CloseTime: 8.923us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.867ms - ExecTime: 2.119ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 27.40 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.803us - ProjectionTime: 0ns - RowsProduced: 404.417K (404417) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s999ms PipelineXTask (index=19):(Active: 129.976ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 129.884ms - CloseTime: 11.642us - GetBlockTime: 2.331ms - OpenTime: 2.246us - PrepareTime: 52.163us - SinkTime: 126.335ms - GetBlockCounter: 107 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 103 - NumBlockedTimes: 105 - NumScheduleTimes: 105 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.27ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.140ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 102.632us - BuildRows: 402.544K (402544) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 73.272ms - BuildTableInsertTime: 17.652ms - BuildTableTime: 18.49ms - CloseTime: 0ns - ExecTime: 126.278ms - InputRows: 402.543K (402543) - MemoryUsage: - BuildBlocks: 40.69 MB - BuildKeyArena: 12.29 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.51 MB - OpenTime: 18.759us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.53ms - RuntimeFilterComputeTime: 31.681ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 168 - BytesReceived: 15.37 MB - CloseTime: 8.923us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.716ms - ExecTime: 2.213ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 28.32 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 10.936us - ProjectionTime: 0ns - RowsProduced: 402.543K (402543) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s6ms PipelineXTask (index=22):(Active: 152.803ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 152.688ms - CloseTime: 12.842us - GetBlockTime: 2.145ms - OpenTime: 2.23us - PrepareTime: 81.445us - SinkTime: 149.373ms - GetBlockCounter: 107 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 104 - NumBlockedTimes: 106 - NumScheduleTimes: 106 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 137.119ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.784ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 73.232us - BuildRows: 403.97K (403970) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 85.779ms - BuildTableInsertTime: 27.490ms - BuildTableTime: 27.914ms - CloseTime: 0ns - ExecTime: 149.293ms - InputRows: 403.969K (403969) - MemoryUsage: - BuildBlocks: 40.84 MB - BuildKeyArena: 12.34 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.71 MB - OpenTime: 22.507us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.365ms - RuntimeFilterComputeTime: 30.688ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 168 - BytesReceived: 15.42 MB - CloseTime: 9.712us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.929ms - ExecTime: 2.24ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 28.92 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 10.884us - ProjectionTime: 0ns - RowsProduced: 403.969K (403969) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s10ms PipelineXTask (index=25):(Active: 110.228ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 110.148ms - CloseTime: 17.78us - GetBlockTime: 2.271ms - OpenTime: 1.184us - PrepareTime: 42.390us - SinkTime: 106.852ms - GetBlockCounter: 104 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 101 - NumBlockedTimes: 103 - NumScheduleTimes: 103 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.950ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.775ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 78.806us - BuildRows: 403.496K (403496) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 62.819ms - BuildTableInsertTime: 16.910ms - BuildTableTime: 17.277ms - CloseTime: 0ns - ExecTime: 106.797ms - InputRows: 403.495K (403495) - MemoryUsage: - BuildBlocks: 40.79 MB - BuildKeyArena: 12.32 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.64 MB - OpenTime: 12.286us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.242ms - RuntimeFilterComputeTime: 24.142ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 163 - BytesReceived: 15.40 MB - CloseTime: 12.221us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.681ms - ExecTime: 2.127ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 28.06 MB - MemoryUsage: - Blocks: 1.17 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.708us - ProjectionTime: 0ns - RowsProduced: 403.495K (403495) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s24ms PipelineXTask (index=28):(Active: 117.922ms, % non-child: 0.00%) - CoreChangeTimes: 39 - ExecuteTime: 117.841ms - CloseTime: 13.433us - GetBlockTime: 2.280ms - OpenTime: 1.565us - PrepareTime: 50.157us - SinkTime: 114.442ms - GetBlockCounter: 107 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 103 - NumBlockedTimes: 105 - NumScheduleTimes: 105 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 115.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.212ms HASH_JOIN_SINK_OPERATOR (id=325): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 99.35us - BuildRows: 402.724K (402724) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 65.857ms - BuildTableInsertTime: 22.748ms - BuildTableTime: 23.79ms - CloseTime: 0ns - ExecTime: 114.384ms - InputRows: 402.723K (402723) - MemoryUsage: - BuildBlocks: 40.71 MB - BuildKeyArena: 12.30 MB - HashTable: 3.54 MB - PeakMemoryUsage: 56.54 MB - OpenTime: 16.643us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.854us - RuntimeFilterComputeTime: 24.289ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=316): - BlocksProduced: 168 - BytesReceived: 15.40 MB - CloseTime: 9.828us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.467ms - ExecTime: 2.162ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 27.58 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 11.213us - ProjectionTime: 0ns - RowsProduced: 402.723K (402723) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s985ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 1.213ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.142ms - CloseTime: 11.974us - GetBlockTime: 64.305us - OpenTime: 1.97us - PrepareTime: 54.158us - SinkTime: 1.37ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.191ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 263.18us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.208us - BuildRows: 5.551K (5551) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 262.178us - BuildTableInsertTime: 318.761us - BuildTableTime: 322.609us - CloseTime: 0ns - ExecTime: 1.51ms - InputRows: 5.55K (5550) - MemoryUsage: - BuildBlocks: 307.16 KB - BuildKeyArena: 184.00 KB - HashTable: 59.11 KB - PeakMemoryUsage: 546.26 KB - OpenTime: 16.552us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.430us - RuntimeFilterComputeTime: 271.798us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 141.64 KB - CloseTime: 9.163us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 182.665us - ExecTime: 82.764us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 13.662us - ProjectionTime: 0ns - RowsProduced: 5.55K (5550) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s194ms PipelineXTask (index=5):(Active: 1.3ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 938.655us - CloseTime: 12.526us - GetBlockTime: 57.678us - OpenTime: 1.410us - PrepareTime: 47.122us - SinkTime: 839.708us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 980.162us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 280.938us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.558us - BuildRows: 5.74K (5740) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 269.994us - BuildTableInsertTime: 219.567us - BuildTableTime: 221.597us - CloseTime: 0ns - ExecTime: 856.645us - InputRows: 5.739K (5739) - MemoryUsage: - BuildBlocks: 317.68 KB - BuildKeyArena: 192.00 KB - HashTable: 60.03 KB - PeakMemoryUsage: 565.70 KB - OpenTime: 19.497us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 32.260us - RuntimeFilterComputeTime: 185.922us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 146.58 KB - CloseTime: 5.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 116.138us - ExecTime: 69.293us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 10.787us - ProjectionTime: 0ns - RowsProduced: 5.739K (5739) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s200ms PipelineXTask (index=8):(Active: 1.403ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.322ms - CloseTime: 13.853us - GetBlockTime: 74.288us - OpenTime: 1.320us - PrepareTime: 61.355us - SinkTime: 1.203ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.377ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 476.488us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.306us - BuildRows: 6.053K (6053) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 324.438us - BuildTableInsertTime: 389.503us - BuildTableTime: 394.402us - CloseTime: 0ns - ExecTime: 1.214ms - InputRows: 6.052K (6052) - MemoryUsage: - BuildBlocks: 334.91 KB - BuildKeyArena: 200.00 KB - HashTable: 61.56 KB - PeakMemoryUsage: 592.46 KB - OpenTime: 15.458us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 37.413us - RuntimeFilterComputeTime: 342.621us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 152.10 KB - CloseTime: 11.565us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 145.875us - ExecTime: 99.79us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 19.161us - ProjectionTime: 0ns - RowsProduced: 6.052K (6052) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s204ms PipelineXTask (index=11):(Active: 1.184ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.119ms - CloseTime: 8.292us - GetBlockTime: 42.898us - OpenTime: 2.937us - PrepareTime: 48.660us - SinkTime: 1.30ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.163ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 266.852us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.253us - BuildRows: 5.771K (5771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 258.917us - BuildTableInsertTime: 325.886us - BuildTableTime: 330.131us - CloseTime: 0ns - ExecTime: 1.42ms - InputRows: 5.77K (5770) - MemoryUsage: - BuildBlocks: 319.27 KB - BuildKeyArena: 192.00 KB - HashTable: 60.18 KB - PeakMemoryUsage: 567.44 KB - OpenTime: 14.170us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 60.540us - RuntimeFilterComputeTime: 256.149us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 147.17 KB - CloseTime: 5.829us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 174.185us - ExecTime: 62.218us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.00 KB - MemoryUsage: - Blocks: 136.00 KB - PeakMemoryUsage: 136.00 KB - OpenTime: 17.613us - ProjectionTime: 0ns - RowsProduced: 5.77K (5770) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s206ms PipelineXTask (index=14):(Active: 1.81ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.2ms - CloseTime: 17.943us - GetBlockTime: 83.836us - OpenTime: 2.558us - PrepareTime: 53.526us - SinkTime: 864.890us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.51ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 171.692us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.885us - BuildRows: 5.852K (5852) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 246.855us - BuildTableInsertTime: 299.309us - BuildTableTime: 301.276us - CloseTime: 0ns - ExecTime: 874.542us - InputRows: 5.851K (5851) - MemoryUsage: - BuildBlocks: 323.67 KB - BuildKeyArena: 196.00 KB - HashTable: 60.58 KB - PeakMemoryUsage: 576.25 KB - OpenTime: 11.994us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 23.501us - RuntimeFilterComputeTime: 190.541us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 150.43 KB - CloseTime: 16.400us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 197.741us - ExecTime: 111.643us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.00 KB - MemoryUsage: - Blocks: 136.00 KB - PeakMemoryUsage: 136.00 KB - OpenTime: 14.539us - ProjectionTime: 0ns - RowsProduced: 5.851K (5851) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s212ms PipelineXTask (index=17):(Active: 1.40ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 979.419us - CloseTime: 5.910us - GetBlockTime: 44.818us - OpenTime: 1.948us - PrepareTime: 49.300us - SinkTime: 890.729us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.22ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 246.336us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.226us - BuildRows: 5.744K (5744) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 247.384us - BuildTableInsertTime: 270.272us - BuildTableTime: 272.583us - CloseTime: 0ns - ExecTime: 902.362us - InputRows: 5.743K (5743) - MemoryUsage: - BuildBlocks: 317.86 KB - BuildKeyArena: 192.00 KB - HashTable: 60.05 KB - PeakMemoryUsage: 565.91 KB - OpenTime: 14.63us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 37.984us - RuntimeFilterComputeTime: 173.664us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 145.22 KB - CloseTime: 4.876us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 186.189us - ExecTime: 61.714us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 15.607us - ProjectionTime: 0ns - RowsProduced: 5.743K (5743) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s216ms PipelineXTask (index=20):(Active: 910.652us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 832.468us - CloseTime: 6.201us - GetBlockTime: 46.773us - OpenTime: 1.867us - PrepareTime: 66.64us - SinkTime: 751.733us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 894.38us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.14ms HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.644us - BuildRows: 5.634K (5634) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 216.163us - BuildTableInsertTime: 205.373us - BuildTableTime: 207.763us - CloseTime: 0ns - ExecTime: 770.976us - InputRows: 5.633K (5633) - MemoryUsage: - BuildBlocks: 311.81 KB - BuildKeyArena: 188.00 KB - HashTable: 59.51 KB - PeakMemoryUsage: 555.32 KB - OpenTime: 21.238us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 26.902us - RuntimeFilterComputeTime: 179.822us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 141.97 KB - CloseTime: 4.814us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 116.117us - ExecTime: 62.344us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 136.00 KB - MemoryUsage: - Blocks: 136.00 KB - PeakMemoryUsage: 136.00 KB - OpenTime: 13.687us - ProjectionTime: 0ns - RowsProduced: 5.633K (5633) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s218ms PipelineXTask (index=23):(Active: 1.492ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.429ms - CloseTime: 10.16us - GetBlockTime: 66.742us - OpenTime: 1.218us - PrepareTime: 48.251us - SinkTime: 1.303ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.459ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 200.832us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.570us - BuildRows: 6.154K (6154) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 280.980us - BuildTableInsertTime: 409.696us - BuildTableTime: 413.331us - CloseTime: 0ns - ExecTime: 1.312ms - InputRows: 6.153K (6153) - MemoryUsage: - BuildBlocks: 340.77 KB - BuildKeyArena: 204.00 KB - HashTable: 62.05 KB - PeakMemoryUsage: 602.81 KB - OpenTime: 11.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 78.80us - RuntimeFilterComputeTime: 422.671us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 151.14 KB - CloseTime: 7.887us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 344.929us - ExecTime: 87.93us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 168.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 17.162us - ProjectionTime: 0ns - RowsProduced: 6.153K (6153) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s222ms PipelineXTask (index=26):(Active: 1.32ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 970.253us - CloseTime: 6.520us - GetBlockTime: 52.506us - OpenTime: 2.865us - PrepareTime: 46.661us - SinkTime: 873.378us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.13ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.867us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.624us - BuildRows: 5.736K (5736) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 238.986us - BuildTableInsertTime: 350.453us - BuildTableTime: 352.752us - CloseTime: 0ns - ExecTime: 885.291us - InputRows: 5.735K (5735) - MemoryUsage: - BuildBlocks: 317.51 KB - BuildKeyArena: 192.00 KB - HashTable: 60.01 KB - PeakMemoryUsage: 565.51 KB - OpenTime: 13.993us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 27.365us - RuntimeFilterComputeTime: 163.406us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 147.09 KB - CloseTime: 5.7us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 172.999us - ExecTime: 64.604us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 10.507us - ProjectionTime: 0ns - RowsProduced: 5.735K (5735) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s229ms PipelineXTask (index=29):(Active: 1.227ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.165ms - CloseTime: 5.855us - GetBlockTime: 45.765us - OpenTime: 1.705us - PrepareTime: 50.698us - SinkTime: 1.66ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.210ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 143.963us HASH_JOIN_SINK_OPERATOR (id=324): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.36us - BuildRows: 5.685K (5685) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 271.251us - BuildTableInsertTime: 199.484us - BuildTableTime: 202.502us - CloseTime: 0ns - ExecTime: 1.76ms - InputRows: 5.684K (5684) - MemoryUsage: - BuildBlocks: 314.58 KB - BuildKeyArena: 188.00 KB - HashTable: 59.76 KB - PeakMemoryUsage: 558.34 KB - OpenTime: 11.194us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 316.319us - RuntimeFilterComputeTime: 171.90us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=321): - BlocksProduced: 5 - BytesReceived: 144.91 KB - CloseTime: 4.680us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 131.32us - ExecTime: 58.779us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 132.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 11.851us - ProjectionTime: 0ns - RowsProduced: 5.684K (5684) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s233ms Fragment 26: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 133.220ms, % non-child: 0.00%) - CoreChangeTimes: 256 - ExecuteTime: 132.762ms - CloseTime: 80.68us - GetBlockTime: 2.834ms - OpenTime: 80.513us - PrepareTime: 239.462us - SinkTime: 126.935ms - GetBlockCounter: 492 - NumBlockedBySinkTimes: 525 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 535 - NumScheduleTimes: 536 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 100.124ms - WaitBfTime: 748.299ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.364ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 343 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.18 MB - CloseTime: 17.326us - CompressTime: 0ns - ExecTime: 126.899ms - InputRows: 1.968652M (1968652) - LocalBytesSent: 19.93 MB - LocalSendTime: 2.4ms - LocalSentRows: 1.886508M (1886508) - MemoryUsage: - PeakMemoryUsage: 24.96 MB - MergeBlockTime: 0ns - OpenTime: 82.31us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 103.101ms - RowsProduced: 1.968652M (1968652) - RpcAvgTime: 57.759ms - RpcCount: 20 - RpcMaxTime: 579.494ms - RpcMinTime: 575.695ms - RpcSumTime: 1s155ms - SerializeBatchTime: 7.228ms - SplitBlockDistributeByChannelTime: 30.417ms - SplitBlockHashComputeTime: 73.170ms - UncompressedRowBatchSize: 2.62 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 2.493us - BlocksProduced: 492 - CloseTime: 59.452us - ExecTime: 146.28ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 179.752us - ProcessConjunctTime: 9.165us - ProjectionTime: 0ns - RowsProduced: 1.968652M (1968652) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 20.682ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.84ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [159.531ms, 171.999ms, 88.197ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [6.500ms, 6.567ms, 7.615ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 332.265ms - MemoryUsage: - FreeBlocks: 27.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.641ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.197us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 256.734ms - ScannerCtxSchedTime: 20.659ms - ScannerFilterTime: 85.153ms - ScannerGetBlockTime: 334.94ms - ScannerInitTime: 35.625us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 7.246us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 24.440us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 172.208us - BlockLoadTime: 333.541ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 632 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 537.39us - FirstReadTime: 330.669ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.389us - 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: 173.98us - OutputIndexResultColumnTimer: 119.63us - 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: 140.325ms, % non-child: 0.00%) - CoreChangeTimes: 146 - ExecuteTime: 139.956ms - CloseTime: 62.537us - GetBlockTime: 2.643ms - OpenTime: 82.417us - PrepareTime: 184.202us - SinkTime: 134.779ms - GetBlockCounter: 458 - NumBlockedBySinkTimes: 345 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 356 - NumScheduleTimes: 357 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 93.328ms - WaitBfTime: 748.374ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.882ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 321 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.88 MB - CloseTime: 12.665us - CompressTime: 0ns - ExecTime: 134.721ms - InputRows: 1.830008M (1830008) - LocalBytesSent: 17.87 MB - LocalSendTime: 1.833ms - LocalSentRows: 1.759237M (1759237) - MemoryUsage: - PeakMemoryUsage: 22.96 MB - MergeBlockTime: 0ns - OpenTime: 60.632us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.558ms - RowsProduced: 1.830008M (1830008) - RpcAvgTime: 109.27ms - RpcCount: 18 - RpcMaxTime: 987.761ms - RpcMinTime: 974.737ms - RpcSumTime: 1s962ms - SerializeBatchTime: 6.447ms - SplitBlockDistributeByChannelTime: 29.299ms - SplitBlockHashComputeTime: 83.889ms - UncompressedRowBatchSize: 2.26 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 1.521us - BlocksProduced: 458 - CloseTime: 46.845us - ExecTime: 164.438ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 152.848us - ProcessConjunctTime: 9.2us - ProjectionTime: 0ns - RowsProduced: 1.830008M (1830008) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 24.553ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 161.719ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [112.288ms, 220.767ms, 19.978ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [7.895ms, 7.941ms, 8.715ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 243.94ms - MemoryUsage: - FreeBlocks: 20.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.695ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.950us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 291.300ms - ScannerCtxSchedTime: 24.538ms - ScannerFilterTime: 107.63ms - ScannerGetBlockTime: 245.448ms - ScannerInitTime: 33.601us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 4.90us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.750us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 126.846us - BlockLoadTime: 244.115ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 618 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 901.827us - FirstReadTime: 240.722ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.583us - 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: 193.288us - OutputIndexResultColumnTimer: 145.67us - 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: 94.816ms, % non-child: 0.00%) - CoreChangeTimes: 274 - ExecuteTime: 94.379ms - CloseTime: 57.47us - GetBlockTime: 3.302ms - OpenTime: 98.38us - PrepareTime: 170.11us - SinkTime: 87.459ms - GetBlockCounter: 640 - NumBlockedBySinkTimes: 613 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 618 - NumScheduleTimes: 619 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 93.672ms - WaitBfTime: 748.454ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.581ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 366 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 870.22 KB - CloseTime: 10.428us - CompressTime: 0ns - ExecTime: 87.362ms - InputRows: 2.590868M (2590868) - LocalBytesSent: 16.46 MB - LocalSendTime: 1.943ms - LocalSentRows: 2.558876M (2558876) - MemoryUsage: - PeakMemoryUsage: 18.77 MB - MergeBlockTime: 0ns - OpenTime: 62.483us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 54.872ms - RowsProduced: 2.590868M (2590868) - RpcAvgTime: 42.155ms - RpcCount: 8 - RpcMaxTime: 169.596ms - RpcMinTime: 167.644ms - RpcSumTime: 337.240ms - SerializeBatchTime: 2.665ms - SplitBlockDistributeByChannelTime: 26.215ms - SplitBlockHashComputeTime: 39.745ms - UncompressedRowBatchSize: 1.02 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 1.91us - BlocksProduced: 640 - CloseTime: 43.421us - ExecTime: 124.533ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 165.799us - ProcessConjunctTime: 9.623us - ProjectionTime: 0ns - RowsProduced: 2.590868M (2590868) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 18.874ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 121.203ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [145.009ms, 100.919ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [9.237ms, 9.636ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 210.244ms - MemoryUsage: - FreeBlocks: 18.81 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 754.427us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 31.584us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 130.837ms - ScannerCtxSchedTime: 18.866ms - ScannerFilterTime: 33.10ms - ScannerGetBlockTime: 212.526ms - ScannerInitTime: 65.693us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 4.447us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 21.586us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 133.374us - BlockLoadTime: 211.59ms - BlocksLoad: 865 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 821.270us - FirstReadTime: 208.534ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.2us - 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: 144.524us - OutputIndexResultColumnTimer: 101.635us - 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: 113.337ms, % non-child: 0.00%) - CoreChangeTimes: 189 - ExecuteTime: 112.954ms - CloseTime: 61.753us - GetBlockTime: 3.15ms - OpenTime: 69.178us - PrepareTime: 175.507us - SinkTime: 106.667ms - GetBlockCounter: 643 - NumBlockedBySinkTimes: 511 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 516 - NumScheduleTimes: 517 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 89.561ms - WaitBfTime: 748.548ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.419ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 367 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 868.13 KB - CloseTime: 10.77us - CompressTime: 0ns - ExecTime: 106.573ms - InputRows: 2.605441M (2605441) - LocalBytesSent: 16.56 MB - LocalSendTime: 2.362ms - LocalSentRows: 2.573524M (2573524) - MemoryUsage: - PeakMemoryUsage: 18.77 MB - MergeBlockTime: 0ns - OpenTime: 63.183us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 99.545ms - RowsProduced: 2.605441M (2605441) - RpcAvgTime: 41.252ms - RpcCount: 8 - RpcMaxTime: 175.687ms - RpcMinTime: 154.328ms - RpcSumTime: 330.16ms - SerializeBatchTime: 2.350ms - SplitBlockDistributeByChannelTime: 25.42ms - SplitBlockHashComputeTime: 60.625ms - UncompressedRowBatchSize: 1.02 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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.39us - BlocksProduced: 643 - CloseTime: 49.282us - ExecTime: 85.417ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 141.50us - ProcessConjunctTime: 7.103us - ProjectionTime: 0ns - RowsProduced: 2.605441M (2605441) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 21.421ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 82.356ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [106.534ms, 75.005ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [10.828ms, 10.593ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 146.648ms - MemoryUsage: - FreeBlocks: 19.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 871.938us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 30.346us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 125.845ms - ScannerCtxSchedTime: 21.415ms - ScannerFilterTime: 32.340ms - ScannerGetBlockTime: 148.869ms - ScannerInitTime: 45.718us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.629us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.621us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 97.773us - BlockLoadTime: 147.917ms - BlocksLoad: 863 - CachedPagesNum: 107 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 1.237ms - FirstReadTime: 145.776ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.41us - 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.784us - OutputIndexResultColumnTimer: 80.641us - 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: 73.903ms, % non-child: 0.00%) - CoreChangeTimes: 118 - ExecuteTime: 73.611ms - CloseTime: 55.282us - GetBlockTime: 1.136ms - OpenTime: 41.743us - PrepareTime: 165.251us - SinkTime: 71.158ms - GetBlockCounter: 227 - NumBlockedBySinkTimes: 178 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 188 - NumScheduleTimes: 189 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 59.492ms - WaitBfTime: 748.612ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.831ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 193 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.60 MB - CloseTime: 23.446us - CompressTime: 0ns - ExecTime: 71.168ms - InputRows: 903.59K (903590) - LocalBytesSent: 12.04 MB - LocalSendTime: 1.293ms - LocalSentRows: 843.449K (843449) - MemoryUsage: - PeakMemoryUsage: 16.01 MB - MergeBlockTime: 0ns - OpenTime: 64.382us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 82.668ms - RowsProduced: 903.59K (903590) - RpcAvgTime: 121.75ms - RpcCount: 16 - RpcMaxTime: 970.17ms - RpcMinTime: 967.196ms - RpcSumTime: 1s937ms - SerializeBatchTime: 6.54ms - SplitBlockDistributeByChannelTime: 20.849ms - SplitBlockHashComputeTime: 22.141ms - UncompressedRowBatchSize: 1.92 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 945ns - BlocksProduced: 227 - CloseTime: 28.419us - ExecTime: 205.405ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 103.711us - ProcessConjunctTime: 6.33us - ProjectionTime: 0ns - RowsProduced: 903.59K (903590) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 60.810ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 204.196ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [141.620ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [60.810ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 99.561ms - MemoryUsage: - FreeBlocks: 12.22 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 725.322us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.810us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 126.19ms - ScannerCtxSchedTime: 60.802ms - ScannerFilterTime: 40.961ms - ScannerGetBlockTime: 100.465ms - ScannerInitTime: 21.939us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 765ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.912us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 28.454us - BlockLoadTime: 100.19ms - BlocksLoad: 558 - CachedPagesNum: 593 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 565.504us - FirstReadTime: 98.646ms - IOTimer: 0ns - InvertedIndexFilterTime: 814ns - 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: 89.58us - OutputIndexResultColumnTimer: 58.908us - 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: 69.589ms, % non-child: 0.00%) - CoreChangeTimes: 50 - ExecuteTime: 69.270ms - CloseTime: 61.647us - GetBlockTime: 1.13ms - OpenTime: 60.483us - PrepareTime: 182.86us - SinkTime: 67.457ms - GetBlockCounter: 130 - NumBlockedBySinkTimes: 61 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 71 - NumScheduleTimes: 72 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 46.470ms - WaitBfTime: 748.195ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.947ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 112 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 904.91 KB - CloseTime: 20.38us - CompressTime: 0ns - ExecTime: 67.492ms - InputRows: 505.536K (505536) - LocalBytesSent: 6.72 MB - LocalSendTime: 560.400us - LocalSentRows: 472.297K (472297) - MemoryUsage: - PeakMemoryUsage: 8.84 MB - MergeBlockTime: 0ns - OpenTime: 65.368us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 44.843ms - RowsProduced: 505.536K (505536) - RpcAvgTime: 170.827ms - RpcCount: 10 - RpcMaxTime: 854.492ms - RpcMinTime: 853.778ms - RpcSumTime: 1s708ms - SerializeBatchTime: 14.804ms - SplitBlockDistributeByChannelTime: 18.39ms - SplitBlockHashComputeTime: 28.482ms - UncompressedRowBatchSize: 1.06 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 1.520us - BlocksProduced: 130 - CloseTime: 37.734us - ExecTime: 164.277ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 119.608us - ProcessConjunctTime: 7.553us - ProjectionTime: 0ns - RowsProduced: 505.536K (505536) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.498ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 163.160ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [155.567ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [5.498ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 84.250ms - MemoryUsage: - FreeBlocks: 10.54 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 719.391us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.806us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 147.635ms - ScannerCtxSchedTime: 5.481ms - ScannerFilterTime: 70.45ms - ScannerGetBlockTime: 85.294ms - ScannerInitTime: 30.164us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 1.290us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.973us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 39.526us - BlockLoadTime: 84.664ms - BlocksLoad: 558 - CachedPagesNum: 593 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 474.160us - FirstReadTime: 83.203ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.367us - 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: 77.427us - OutputIndexResultColumnTimer: 63.560us - 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: 57.66ms, % non-child: 0.00%) - CoreChangeTimes: 42 - ExecuteTime: 56.795ms - CloseTime: 40.631us - GetBlockTime: 828.529us - OpenTime: 41.689us - PrepareTime: 173.9us - SinkTime: 55.158ms - GetBlockCounter: 147 - NumBlockedBySinkTimes: 79 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 86 - NumScheduleTimes: 87 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 55.117ms - WaitBfTime: 748.649ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.246ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 137 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.75 MB - CloseTime: 12.489us - CompressTime: 0ns - ExecTime: 55.173ms - InputRows: 591.299K (591299) - LocalBytesSent: 11.28 MB - LocalSendTime: 1.928ms - LocalSentRows: 525.597K (525597) - MemoryUsage: - PeakMemoryUsage: 14.98 MB - MergeBlockTime: 0ns - OpenTime: 51.646us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 110.801ms - RowsProduced: 591.299K (591299) - RpcAvgTime: 147.689ms - RpcCount: 16 - RpcMaxTime: 1s182ms - RpcMinTime: 1s180ms - RpcSumTime: 2s363ms - SerializeBatchTime: 7.94ms - SplitBlockDistributeByChannelTime: 18.665ms - SplitBlockHashComputeTime: 21.878ms - UncompressedRowBatchSize: 2.10 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 1.391us - BlocksProduced: 147 - CloseTime: 25.525us - ExecTime: 144.564ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 101.396us - ProcessConjunctTime: 6.776us - ProjectionTime: 0ns - RowsProduced: 591.299K (591299) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 64.976ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.660ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [76.976ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [64.976ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 57.356ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 831.924us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.609us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 78.699ms - ScannerCtxSchedTime: 64.970ms - ScannerFilterTime: 19.87ms - ScannerGetBlockTime: 57.797ms - ScannerInitTime: 20.403us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 728ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.674us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 30.108us - BlockLoadTime: 58.10ms - BlocksLoad: 217 - CachedPagesNum: 254 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 365.369us - FirstReadTime: 57.335ms - 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: 1 - OutputColumnTime: 40.346us - OutputIndexResultColumnTimer: 26.90us - 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=7):(Active: 85.190ms, % non-child: 0.00%) - CoreChangeTimes: 270 - ExecuteTime: 84.745ms - CloseTime: 137.673us - GetBlockTime: 3.11ms - OpenTime: 52.930us - PrepareTime: 175.921us - SinkTime: 78.608ms - GetBlockCounter: 573 - NumBlockedBySinkTimes: 569 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 574 - NumScheduleTimes: 575 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 83.112ms - WaitBfTime: 748.739ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 56.808ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 343 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.04 MB - CloseTime: 26.473us - CompressTime: 0ns - ExecTime: 78.560ms - InputRows: 2.321363M (2321363) - LocalBytesSent: 16.12 MB - LocalSendTime: 2.885ms - LocalSentRows: 2.282178M (2282178) - MemoryUsage: - PeakMemoryUsage: 19.06 MB - MergeBlockTime: 0ns - OpenTime: 71.637us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 104.212ms - RowsProduced: 2.321363M (2321363) - RpcAvgTime: 36.550ms - RpcCount: 10 - RpcMaxTime: 182.941ms - RpcMinTime: 182.563ms - RpcSumTime: 365.504ms - SerializeBatchTime: 2.993ms - SplitBlockDistributeByChannelTime: 23.401ms - SplitBlockHashComputeTime: 35.102ms - UncompressedRowBatchSize: 1.25 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 1.322us - BlocksProduced: 573 - CloseTime: 106.87us - ExecTime: 105.910ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 118.670us - ProcessConjunctTime: 5.769us - ProjectionTime: 0ns - RowsProduced: 2.321363M (2321363) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 33.652ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.814ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [136.700ms, 88.232ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [15.823ms, 17.829ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 172.780ms - MemoryUsage: - FreeBlocks: 19.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 984.502us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37.320us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 149.604ms - ScannerCtxSchedTime: 33.646ms - ScannerFilterTime: 36.123ms - ScannerGetBlockTime: 188.504ms - ScannerInitTime: 30.818us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.991us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.645us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 111.845us - BlockLoadTime: 173.322ms - BlocksLoad: 838 - CachedPagesNum: 162 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 527.728us - FirstReadTime: 171.147ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.477us - 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.485us - OutputIndexResultColumnTimer: 85.837us - 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=8):(Active: 165.424ms, % non-child: 0.00%) - CoreChangeTimes: 220 - ExecuteTime: 164.975ms - CloseTime: 86.87us - GetBlockTime: 4.63ms - OpenTime: 121.724us - PrepareTime: 174.288us - SinkTime: 156.997ms - GetBlockCounter: 769 - NumBlockedBySinkTimes: 548 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 554 - NumScheduleTimes: 555 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 128.64ms - WaitBfTime: 748.64ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.456ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 474 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.54 MB - CloseTime: 13.150us - CompressTime: 0ns - ExecTime: 156.857ms - InputRows: 3.112246M (3112246) - LocalBytesSent: 22.38 MB - LocalSendTime: 5.142ms - LocalSentRows: 3.054108M (3054108) - MemoryUsage: - PeakMemoryUsage: 26.51 MB - MergeBlockTime: 0ns - OpenTime: 64.685us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 104.46ms - RowsProduced: 3.112246M (3112246) - RpcAvgTime: 67.99ms - RpcCount: 16 - RpcMaxTime: 537.888ms - RpcMinTime: 535.709ms - RpcSumTime: 1s73ms - SerializeBatchTime: 5.278ms - SplitBlockDistributeByChannelTime: 71.643ms - SplitBlockHashComputeTime: 53.509ms - UncompressedRowBatchSize: 1.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 2.116us - BlocksProduced: 769 - CloseTime: 67.987us - ExecTime: 64.261ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 185.766us - ProcessConjunctTime: 11.896us - ProjectionTime: 0ns - RowsProduced: 3.112246M (3112246) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.305ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 60.126ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [103.016ms, 159.302ms, 19.421ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [1.215ms, 1.095ms, 994.245us, ] - BlockConvertTime: 0ns - BlockFetchTime: 228.826ms - MemoryUsage: - FreeBlocks: 20.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 991.74us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37.592us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 174.804ms - ScannerCtxSchedTime: 3.297ms - ScannerFilterTime: 49.889ms - ScannerGetBlockTime: 231.404ms - ScannerInitTime: 67.585us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 4.601us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 22.495us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 135.670us - BlockLoadTime: 230.356ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 236 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 1.261ms - FirstReadTime: 227.903ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.880us - 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: 154.111us - OutputIndexResultColumnTimer: 90.686us - 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=9):(Active: 149.328ms, % non-child: 0.00%) - CoreChangeTimes: 274 - ExecuteTime: 148.82ms - CloseTime: 66.147us - GetBlockTime: 3.524ms - OpenTime: 902.976us - PrepareTime: 175.256us - SinkTime: 140.230ms - GetBlockCounter: 771 - NumBlockedBySinkTimes: 586 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 592 - NumScheduleTimes: 593 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 111.536ms - WaitBfTime: 747.858ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.54ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 475 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.55 MB - CloseTime: 14.124us - CompressTime: 0ns - ExecTime: 140.123ms - InputRows: 3.11581M (3115810) - LocalBytesSent: 22.40 MB - LocalSendTime: 2.447ms - LocalSentRows: 3.057313M (3057313) - MemoryUsage: - PeakMemoryUsage: 26.53 MB - MergeBlockTime: 0ns - OpenTime: 65.640us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 102.581ms - RowsProduced: 3.11581M (3115810) - RpcAvgTime: 65.157ms - RpcCount: 16 - RpcMaxTime: 525.962ms - RpcMinTime: 516.557ms - RpcSumTime: 1s42ms - SerializeBatchTime: 4.735ms - SplitBlockDistributeByChannelTime: 32.450ms - SplitBlockHashComputeTime: 82.209ms - UncompressedRowBatchSize: 1.87 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s386ms - 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: 3.634us - BlocksProduced: 771 - CloseTime: 48.928us - ExecTime: 79.836ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 966.123us - ProcessConjunctTime: 22.452us - ProjectionTime: 0ns - RowsProduced: 3.11581M (3115810) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 19.430ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 75.461ms - 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: 10.919411M (10919411) - expr_input_rows: 16.687917M (16687917) 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: 15.736834M (15736834) - expr_input_rows: 15.765855M (15765855) VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [103.194ms, 211.104ms, 17.478ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [99.179us, 254.190us, 19.076ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 271.903ms - MemoryUsage: - FreeBlocks: 19.73 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.382ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 33.411us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 194.59ms - ScannerCtxSchedTime: 19.413ms - ScannerFilterTime: 56.512ms - ScannerGetBlockTime: 274.815ms - ScannerInitTime: 125.416us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 5.102us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 27.235us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 152.62us - BlockLoadTime: 273.717ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 242 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 1.379ms - FirstReadTime: 270.903ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.751us - 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: 153.468us - OutputIndexResultColumnTimer: 103.850us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 306.638ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 306.75ms - CloseTime: 53.776us - GetBlockTime: 1.267ms - OpenTime: 274.149us - PrepareTime: 224.318us - SinkTime: 303.926ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 131.44ms - WaitBfTime: 699.694ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.409ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 207 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.14 MB - CloseTime: 15.214us - CompressTime: 0ns - ExecTime: 303.921ms - InputRows: 876.719K (876719) - LocalBytesSent: 2.88 MB - LocalSendTime: 179.659us - LocalSentRows: 91.486K (91486) - MemoryUsage: - PeakMemoryUsage: 5.10 MB - MergeBlockTime: 0ns - OpenTime: 62.968us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18s257ms - RowsProduced: 876.719K (876719) - RpcAvgTime: 600.1ms - RpcCount: 175 - RpcMaxTime: 11s226ms - RpcMinTime: 4s719ms - RpcSumTime: 1m45s - SerializeBatchTime: 167.616ms - SplitBlockDistributeByChannelTime: 30.224ms - SplitBlockHashComputeTime: 76.192ms - UncompressedRowBatchSize: 16.20 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.997us - BlocksProduced: 216 - CloseTime: 35.360us - ExecTime: 161.956ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 366.350us - ProcessConjunctTime: 43.601us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 49.282ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 160.388ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [110.183ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [49.282ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 109.333ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 794.245us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.910us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 69.810ms - ScannerCtxSchedTime: 49.276ms - ScannerFilterTime: 130.164us - ScannerGetBlockTime: 109.931ms - ScannerInitTime: 161.538us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 605ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.846us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 35.956us - BlockLoadTime: 109.947ms - BlocksLoad: 217 - CachedPagesNum: 255 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 355.650us - FirstReadTime: 97.871ms - IOTimer: 0ns - InvertedIndexFilterTime: 892ns - 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: 63.632us - OutputIndexResultColumnTimer: 39.186us - 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=1):(Active: 248.901ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 248.489ms - CloseTime: 100.880us - GetBlockTime: 11.588ms - OpenTime: 120.691us - PrepareTime: 181.715us - SinkTime: 235.366ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 7 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 181.446ms - WaitBfTime: 699.963ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.46ms DATA_STREAM_SINK_OPERATOR (id=323,dst_id=323): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 516 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 17.08 MB - CloseTime: 44.514us - CompressTime: 0ns - ExecTime: 235.202ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 1.87 MB - LocalSendTime: 120.736us - LocalSentRows: 59.4K (59400) - MemoryUsage: - PeakMemoryUsage: 3.77 MB - MergeBlockTime: 0ns - OpenTime: 61.104us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18s978ms - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 202.764ms - RpcCount: 490 - RpcMaxTime: 10s436ms - RpcMinTime: 5s448ms - RpcSumTime: 1m39s - SerializeBatchTime: 69.169ms - SplitBlockDistributeByChannelTime: 55.114ms - SplitBlockHashComputeTime: 75.561ms - UncompressedRowBatchSize: 24.88 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 1.893us - BlocksProduced: 836 - CloseTime: 51.64us - ExecTime: 189.39ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 190.559us - ProcessConjunctTime: 15.83us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 19.181ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 177.483ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 96, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 97, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 VScanner: - ReadColumns: [UNIONID] - PerScannerRunningTime: [238.955ms, 193.753ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [17.421ms, 1.759ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 430.561ms - MemoryUsage: - FreeBlocks: 18.86 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.93ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 57.666us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 106.763ms - ScannerCtxSchedTime: 19.174ms - ScannerFilterTime: 290.517us - ScannerGetBlockTime: 432.100ms - ScannerInitTime: 61.255us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 4.249us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.122us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 126.0us - BlockLoadTime: 431.255ms - BlocksLoad: 838 - CachedPagesNum: 163 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 536.643us - FirstReadTime: 428.684ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.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: 130.489us - OutputIndexResultColumnTimer: 84.547us - 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 Fragment 27: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 9.337ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.802ms - CloseTime: 149.41us - GetBlockTime: 3.715ms - OpenTime: 118.771us - PrepareTime: 258.798us - SinkTime: 4.883ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.177ms - WaitBfTime: 778.456ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.832ms DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 162.31 KB - CloseTime: 20.567us - CompressTime: 0ns - ExecTime: 4.963ms - InputRows: 24.68K (24680) - LocalBytesSent: 1.10 MB - LocalSendTime: 174.34us - LocalSentRows: 20.403K (20403) - MemoryUsage: - PeakMemoryUsage: 1.70 MB - MergeBlockTime: 0ns - OpenTime: 64.223us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 150.523ms - RowsProduced: 24.68K (24680) - RpcAvgTime: 147.964ms - RpcCount: 2 - RpcMaxTime: 148.634ms - RpcMinTime: 147.295ms - RpcSumTime: 295.929ms - SerializeBatchTime: 695.458us - SplitBlockDistributeByChannelTime: 2.235ms - SplitBlockHashComputeTime: 1.201ms - UncompressedRowBatchSize: 242.68 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12.740us - ExecTime: 3.601ms - InitProbeSideTime: 931.966us - JoinFilterTimer: 1.313us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 15.917us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.772us - ProbeFindNextTime: 0ns - ProbeRows: 24.68K (24680) - ProbeTime: 3.251ms - ProbeWhenBuildSideOutputTime: 581.850us - ProbeWhenProbeSideOutputTime: 613.721us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 913.456us - ProjectionTime: 293.332us - RowsProduced: 24.68K (24680) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s645ms 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: 3.959us - BlocksProduced: 7 - CloseTime: 110.643us - ExecTime: 225.425ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 214.319us - ProcessConjunctTime: 67.270us - ProjectionTime: 636.562us - RowsProduced: 24.68K (24680) - RowsRead: 24.68K (24680) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 13.493ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 224.323ms - 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: [104.529ms, ] - PerScannerRowsRead: [24.68K, ] - PerScannerWaitTime: [13.493ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 104.139ms - MemoryUsage: - FreeBlocks: 2.19 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.576ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 625ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.526ms - ScannerCtxSchedTime: 13.491ms - ScannerFilterTime: 78.679us - ScannerGetBlockTime: 104.387ms - ScannerInitTime: 28.186us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.88us - BlockConditionsFilteredBloomFilterTime: 3.101us - BlockConditionsFilteredDictTime: 1000ns - BlockConditionsFilteredTime: 176.433us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 160.747us - BlockInitSeekCount: 9 - BlockInitSeekTime: 87.299us - BlockInitTime: 296.827us - BlockLoadTime: 105.500ms - BlocksLoad: 94 - CachedPagesNum: 259 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 22.559ms - FirstReadSeekCount: 279 - FirstReadSeekTime: 353.485us - FirstReadTime: 74.330ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.277us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.246ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.900ms - OutputIndexResultColumnTimer: 15.794us - 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: 501.896us - TotalPagesNum: 259 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 973.498us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.95ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.19ms - CloseTime: 10.214us - GetBlockTime: 53.511us - OpenTime: 2.292us - PrepareTime: 59.204us - SinkTime: 928.917us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.75ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.629ms HASH_JOIN_SINK_OPERATOR (id=320): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.157us - BuildRows: 7.61K (7610) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 357.104us - BuildTableInsertTime: 506.23us - BuildTableTime: 529.206us - CloseTime: 0ns - ExecTime: 936.658us - InputRows: 7.609K (7609) - MemoryUsage: - BuildBlocks: 373.87 KB - BuildKeyArena: 272.00 KB - HashTable: 93.73 KB - PeakMemoryUsage: 735.60 KB - OpenTime: 9.371us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=318): - BlocksProduced: 4 - BytesReceived: 236.58 KB - CloseTime: 8.540us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.131ms - ExecTime: 87.487us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 392.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 28.978us - ProjectionTime: 0ns - RowsProduced: 7.609K (7609) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s657ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 53.758ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 53.72ms - CloseTime: 126.200us - GetBlockTime: 4.255ms - OpenTime: 264.480us - PrepareTime: 283.610us - SinkTime: 48.483ms - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.250ms - WaitBfTime: 699.217ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.592ms DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 720.77 KB - CloseTime: 11.402us - CompressTime: 0ns - ExecTime: 48.557ms - InputRows: 22.426K (22426) - LocalBytesSent: 220.12 KB - LocalSendTime: 23.614us - LocalSentRows: 3.974K (3974) - MemoryUsage: - PeakMemoryUsage: 1.58 MB - MergeBlockTime: 0ns - OpenTime: 66.968us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s316ms - RowsProduced: 22.426K (22426) - RpcAvgTime: 4s264ms - RpcCount: 10 - RpcMaxTime: 4s304ms - RpcMinTime: 4s210ms - RpcSumTime: 42s649ms - SerializeBatchTime: 22.949ms - SplitBlockDistributeByChannelTime: 3.260ms - SplitBlockHashComputeTime: 743.805us - UncompressedRowBatchSize: 1.02 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=320): - BlocksProduced: 6 - BuildOutputBlock: 0ns - CloseTime: 15.816us - ExecTime: 4.107ms - InitProbeSideTime: 1.132ms - JoinFilterTimer: 1.380us - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 12.919us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.428us - ProbeFindNextTime: 0ns - ProbeRows: 22.426K (22426) - ProbeTime: 3.705ms - ProbeWhenBuildSideOutputTime: 603.646us - ProbeWhenProbeSideOutputTime: 884.280us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 879.173us - ProjectionTime: 348.949us - 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: 4.303us - BlocksProduced: 6 - CloseTime: 95.11us - ExecTime: 145.16ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 353.315us - ProcessConjunctTime: 133.425us - ProjectionTime: 696.61us - RowsProduced: 22.426K (22426) - RowsRead: 22.426K (22426) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.307ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.705ms - 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: [136.566ms, ] - PerScannerRowsRead: [22.43K, ] - PerScannerWaitTime: [2.307ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 136.103ms - MemoryUsage: - FreeBlocks: 2.00 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.652ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 559ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.850ms - ScannerCtxSchedTime: 2.305ms - ScannerFilterTime: 102.317us - ScannerGetBlockTime: 136.401ms - ScannerInitTime: 78.12us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 921ns - BlockConditionsFilteredBloomFilterTime: 3.175us - BlockConditionsFilteredDictTime: 760ns - BlockConditionsFilteredTime: 124.122us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 108.688us - BlockInitSeekCount: 9 - BlockInitSeekTime: 73.62us - BlockInitTime: 243.585us - BlockLoadTime: 137.470ms - BlocksLoad: 92 - CachedPagesNum: 250 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 19.604ms - FirstReadSeekCount: 273 - FirstReadSeekTime: 358.425us - FirstReadTime: 37.824ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.222us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 19.482ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 37.53ms - OutputIndexResultColumnTimer: 20.988us - 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: 463.363us - TotalPagesNum: 250 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 21.993ms PipelineXTask (index=2):(Active: 35.990ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.492ms - CloseTime: 91.962us - GetBlockTime: 15.638ms - OpenTime: 153.820us - PrepareTime: 243.667us - SinkTime: 19.642ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 13.894ms - WaitBfTime: 699.457ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.757ms DATA_STREAM_SINK_OPERATOR (id=321,dst_id=321): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 746.43 KB - CloseTime: 14.964us - CompressTime: 0ns - ExecTime: 19.735ms - InputRows: 23.01K (23010) - LocalBytesSent: 218.71 KB - LocalSendTime: 23.163us - LocalSentRows: 3.955K (3955) - MemoryUsage: - PeakMemoryUsage: 1.62 MB - MergeBlockTime: 0ns - OpenTime: 86.301us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s343ms - RowsProduced: 23.01K (23010) - RpcAvgTime: 4s309ms - RpcCount: 10 - RpcMaxTime: 4s327ms - RpcMinTime: 4s291ms - RpcSumTime: 43s91ms - SerializeBatchTime: 2.705ms - SplitBlockDistributeByChannelTime: 14.777ms - SplitBlockHashComputeTime: 741.554us - UncompressedRowBatchSize: 1.05 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=320): - BlocksProduced: 7 - BuildOutputBlock: 0ns - CloseTime: 11.708us - ExecTime: 15.507ms - InitProbeSideTime: 993.737us - JoinFilterTimer: 1.428us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 12.929us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.430us - ProbeFindNextTime: 0ns - ProbeRows: 23.01K (23010) - ProbeTime: 3.893ms - ProbeWhenBuildSideOutputTime: 838.295us - ProbeWhenProbeSideOutputTime: 932.990us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 941.605us - ProjectionTime: 11.558ms - 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.169us - BlocksProduced: 7 - CloseTime: 61.578us - ExecTime: 157.450ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 213.927us - ProcessConjunctTime: 53.230us - ProjectionTime: 711.188us - RowsProduced: 23.01K (23010) - RowsRead: 23.01K (23010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.400ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.305ms - 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: [147.687ms, ] - PerScannerRowsRead: [23.01K, ] - PerScannerWaitTime: [3.400ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 144.185ms - MemoryUsage: - FreeBlocks: 2.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.542ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 667ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 44.756ms - ScannerCtxSchedTime: 3.397ms - ScannerFilterTime: 96.239us - ScannerGetBlockTime: 147.525ms - ScannerInitTime: 66.192us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.315us - BlockConditionsFilteredBloomFilterTime: 6.990us - BlockConditionsFilteredDictTime: 2.437us - BlockConditionsFilteredTime: 228.558us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 188.856us - BlockInitSeekCount: 25 - BlockInitSeekTime: 253.917us - BlockInitTime: 577.924us - BlockLoadTime: 149.249ms - BlocksLoad: 95 - CachedPagesNum: 235 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 110.45ms - FirstReadSeekCount: 276 - FirstReadSeekTime: 1.357ms - FirstReadTime: 29.27ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.835us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.381ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 5.800ms - OutputIndexResultColumnTimer: 22.472us - 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: 509.903us - TotalPagesNum: 235 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 997.572us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 588.86us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 514.23us - CloseTime: 13.547us - GetBlockTime: 27.804us - OpenTime: 2.127us - PrepareTime: 52.639us - SinkTime: 457.606us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 565.105us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.347ms HASH_JOIN_SINK_OPERATOR (id=320): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.114us - BuildRows: 7.659K (7659) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 161.34us - BuildTableInsertTime: 247.543us - BuildTableTime: 278.907us - CloseTime: 0ns - ExecTime: 468.173us - InputRows: 7.658K (7658) - MemoryUsage: - BuildBlocks: 376.18 KB - BuildKeyArena: 276.00 KB - HashTable: 93.92 KB - PeakMemoryUsage: 742.10 KB - OpenTime: 12.82us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=318): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 10.980us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.401us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 588.00 KB - MemoryUsage: - Blocks: 392.00 KB - PeakMemoryUsage: 392.00 KB - OpenTime: 19.578us - ProjectionTime: 0ns - RowsProduced: 7.658K (7658) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 114.136ms PipelineXTask (index=3):(Active: 732.807us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 657.284us - CloseTime: 5.995us - GetBlockTime: 17.328us - OpenTime: 4.217us - PrepareTime: 59.717us - SinkTime: 583.460us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 715.876us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.302ms HASH_JOIN_SINK_OPERATOR (id=320): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.806us - BuildRows: 7.73K (7730) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 177.672us - BuildTableInsertTime: 365.319us - BuildTableTime: 377.769us - CloseTime: 0ns - ExecTime: 593.405us - InputRows: 7.729K (7729) - MemoryUsage: - BuildBlocks: 379.77 KB - BuildKeyArena: 276.00 KB - HashTable: 94.20 KB - PeakMemoryUsage: 745.96 KB - OpenTime: 10.964us - 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.57us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.973us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 588.00 KB - MemoryUsage: - Blocks: 392.00 KB - PeakMemoryUsage: 392.00 KB - OpenTime: 15.276us - ProjectionTime: 0ns - RowsProduced: 7.729K (7729) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 112.526ms Fragment 28: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 46.182ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 45.719ms - CloseTime: 73.60us - GetBlockTime: 151.73us - OpenTime: 240.444us - PrepareTime: 141.694us - SinkTime: 45.278ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.453ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 799.465us DATA_STREAM_SINK_OPERATOR (id=318,dst_id=318): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 7 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 236.51 KB - CloseTime: 27.170us - CompressTime: 0ns - ExecTime: 45.333ms - InputRows: 22.996K (22996) - LocalBytesSent: 755.95 KB - LocalSendTime: 45.65us - LocalSentRows: 15.387K (15387) - MemoryUsage: - PeakMemoryUsage: 1.53 MB - MergeBlockTime: 0ns - OpenTime: 32.968us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s556ms - RowsProduced: 22.996K (22996) - RpcAvgTime: 1s265ms - RpcCount: 2 - RpcMaxTime: 2s531ms - RpcMinTime: 2s531ms - RpcSumTime: 2s531ms - SerializeBatchTime: 1.526ms - SplitBlockDistributeByChannelTime: 28.198ms - SplitBlockHashComputeTime: 1.214ms - UncompressedRowBatchSize: 379.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=317. table name = QYWX_GROUPCHAT_INFO): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [18523] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 640ns - BlocksProduced: 6 - CloseTime: 40.961us - ExecTime: 73.323ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 301.701us - ProcessConjunctTime: 65.606us - ProjectionTime: 0ns - RowsProduced: 22.996K (22996) - RowsRead: 22.996K (22996) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 83.722us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 72.835ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [OWNER, CHAT_ID] - PerScannerRunningTime: [71.430ms, ] - PerScannerRowsRead: [23.00K, ] - PerScannerWaitTime: [83.722us, ] - BlockConvertTime: 0ns - BlockFetchTime: 71.352ms - MemoryUsage: - FreeBlocks: 1.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.68ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 929ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 2.898ms - ScannerCtxSchedTime: 80.918us - ScannerFilterTime: 9.160us - ScannerGetBlockTime: 71.414ms - ScannerInitTime: 121.246us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 459ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.985us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 124.169us - BlockInitTime: 190.650us - BlockLoadTime: 72.247ms - BlocksLoad: 7 - CachedPagesNum: 7 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 12 - FirstReadSeekTime: 386.846us - FirstReadTime: 71.970ms - IOTimer: 0ns - InvertedIndexFilterTime: 874ns - 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: 3.104us - OutputIndexResultColumnTimer: 2.18us - 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: 528.72ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 527.834ms - CloseTime: 64.716us - GetBlockTime: 332.844ms - OpenTime: 6.218us - PrepareTime: 147.754us - SinkTime: 193.304ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 74 - NumBlockedTimes: 76 - NumScheduleTimes: 78 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 527.369ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.249ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 118 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.02 MB - CloseTime: 21.887us - CompressTime: 0ns - ExecTime: 193.246ms - InputRows: 403.826K (403826) - LocalBytesSent: 6.81 MB - LocalSendTime: 345.152us - LocalSentRows: 67.342K (67342) - MemoryUsage: - PeakMemoryUsage: 18.95 MB - MergeBlockTime: 0ns - OpenTime: 85.810us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s9ms - RowsProduced: 403.826K (403826) - RpcAvgTime: 1s10ms - RpcCount: 90 - RpcMaxTime: 9s107ms - RpcMinTime: 9s90ms - RpcSumTime: 1m30s - SerializeBatchTime: 105.997ms - SplitBlockDistributeByChannelTime: 60.790ms - SplitBlockHashComputeTime: 13.656ms - UncompressedRowBatchSize: 34.41 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 25.654us - ExecTime: 329.474ms - InitProbeSideTime: 33.504ms - JoinFilterTimer: 52.606us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 11.194us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 108.801us - ProbeFindNextTime: 0ns - ProbeRows: 694.771K (694771) - ProbeTime: 319.267ms - ProbeWhenBuildSideOutputTime: 71.57ms - ProbeWhenProbeSideOutputTime: 25.261ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 184.452ms - ProjectionTime: 9.87ms - RowsProduced: 403.826K (403826) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s868ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 209 - BytesReceived: 8.90 MB - CloseTime: 12.501us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.797ms - ExecTime: 2.829ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.99 MB - MemoryUsage: - Blocks: 20.09 MB - PeakMemoryUsage: 19.19 MB - OpenTime: 16.405us - ProjectionTime: 0ns - RowsProduced: 694.771K (694771) - SendersBlockedTotalTimer(*): 1s270ms - WaitForDependencyTime: 0ns - WaitForData0: 4s391ms PipelineXTask (index=2):(Active: 557.768ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 557.518ms - CloseTime: 94.124us - GetBlockTime: 363.996ms - OpenTime: 4.560us - PrepareTime: 122.900us - SinkTime: 192.15ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 54 - NumBlockedTimes: 56 - NumScheduleTimes: 59 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 557.368ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.475ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 118 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.07 MB - CloseTime: 25.425us - CompressTime: 0ns - ExecTime: 191.977ms - InputRows: 404.893K (404893) - LocalBytesSent: 6.78 MB - LocalSendTime: 436.92us - LocalSentRows: 67.053K (67053) - MemoryUsage: - PeakMemoryUsage: 18.04 MB - MergeBlockTime: 0ns - OpenTime: 68.879us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s29ms - RowsProduced: 404.893K (404893) - RpcAvgTime: 1s11ms - RpcCount: 90 - RpcMaxTime: 9s113ms - RpcMinTime: 9s91ms - RpcSumTime: 1m31s - SerializeBatchTime: 109.346ms - SplitBlockDistributeByChannelTime: 57.304ms - SplitBlockHashComputeTime: 12.280ms - UncompressedRowBatchSize: 34.55 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 50.823us - ExecTime: 360.931ms - InitProbeSideTime: 31.696ms - JoinFilterTimer: 33.949us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 9.789us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 100.911us - ProbeFindNextTime: 0ns - ProbeRows: 696.517K (696517) - ProbeTime: 351.591ms - ProbeWhenBuildSideOutputTime: 68.803ms - ProbeWhenProbeSideOutputTime: 23.792ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 222.451ms - ProjectionTime: 8.325ms - RowsProduced: 404.893K (404893) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s884ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 210 - BytesReceived: 8.96 MB - CloseTime: 12.290us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.946ms - ExecTime: 2.578ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 51.32 MB - MemoryUsage: - Blocks: 19.71 MB - PeakMemoryUsage: 17.90 MB - OpenTime: 14.11us - ProjectionTime: 0ns - RowsProduced: 696.517K (696517) - SendersBlockedTotalTimer(*): 712.17ms - WaitForDependencyTime: 0ns - WaitForData0: 4s341ms PipelineXTask (index=4):(Active: 532.542ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 532.321ms - CloseTime: 74.268us - GetBlockTime: 341.329ms - OpenTime: 4.705us - PrepareTime: 110.941us - SinkTime: 189.396ms - GetBlockCounter: 165 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 61 - NumBlockedTimes: 63 - NumScheduleTimes: 65 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 532.75ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.683ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 116 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.03 MB - CloseTime: 14.441us - CompressTime: 0ns - ExecTime: 189.312ms - InputRows: 403.332K (403332) - LocalBytesSent: 6.71 MB - LocalSendTime: 375.465us - LocalSentRows: 66.412K (66412) - MemoryUsage: - PeakMemoryUsage: 17.66 MB - MergeBlockTime: 0ns - OpenTime: 51.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s12ms - RowsProduced: 403.332K (403332) - RpcAvgTime: 1s24ms - RpcCount: 88 - RpcMaxTime: 9s66ms - RpcMinTime: 8s854ms - RpcSumTime: 1m30s - SerializeBatchTime: 106.501ms - SplitBlockDistributeByChannelTime: 58.274ms - SplitBlockHashComputeTime: 12.664ms - UncompressedRowBatchSize: 34.46 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 164 - BuildOutputBlock: 0ns - CloseTime: 32.651us - ExecTime: 337.774ms - InitProbeSideTime: 32.345ms - JoinFilterTimer: 35.742us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 8.682us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 126.922us - ProbeFindNextTime: 0ns - ProbeRows: 694.151K (694151) - ProbeTime: 328.543ms - ProbeWhenBuildSideOutputTime: 69.726ms - ProbeWhenProbeSideOutputTime: 25.99ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 196.565ms - ProjectionTime: 8.171ms - RowsProduced: 403.332K (403332) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s943ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 205 - BytesReceived: 8.92 MB - CloseTime: 23.193us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.404ms - ExecTime: 2.933ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.08 MB - MemoryUsage: - Blocks: 19.91 MB - PeakMemoryUsage: 19.01 MB - OpenTime: 14.960us - ProjectionTime: 0ns - RowsProduced: 694.151K (694151) - SendersBlockedTotalTimer(*): 1s286ms - WaitForDependencyTime: 0ns - WaitForData0: 4s332ms PipelineXTask (index=6):(Active: 526.97ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 525.912ms - CloseTime: 54.484us - GetBlockTime: 335.242ms - OpenTime: 4.416us - PrepareTime: 111.442us - SinkTime: 189.18ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 64 - NumBlockedTimes: 66 - NumScheduleTimes: 67 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 523.564ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.334ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 118 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.04 MB - CloseTime: 20.504us - CompressTime: 0ns - ExecTime: 188.947ms - InputRows: 404.311K (404311) - LocalBytesSent: 6.81 MB - LocalSendTime: 389.650us - LocalSentRows: 67.411K (67411) - MemoryUsage: - PeakMemoryUsage: 18.06 MB - MergeBlockTime: 0ns - OpenTime: 57.133us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s15ms - RowsProduced: 404.311K (404311) - RpcAvgTime: 1s11ms - RpcCount: 90 - RpcMaxTime: 9s111ms - RpcMinTime: 9s97ms - RpcSumTime: 1m31s - SerializeBatchTime: 103.648ms - SplitBlockDistributeByChannelTime: 59.102ms - SplitBlockHashComputeTime: 13.635ms - UncompressedRowBatchSize: 34.45 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 22.141us - ExecTime: 331.742ms - InitProbeSideTime: 32.418ms - JoinFilterTimer: 35.635us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 12.442us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 96.821us - ProbeFindNextTime: 0ns - ProbeRows: 695.935K (695935) - ProbeTime: 322.208ms - ProbeWhenBuildSideOutputTime: 70.364ms - ProbeWhenProbeSideOutputTime: 26.329ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 188.401ms - ProjectionTime: 8.533ms - RowsProduced: 404.311K (404311) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s897ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 210 - BytesReceived: 8.94 MB - CloseTime: 8.368us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.973ms - ExecTime: 2.970ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.01 MB - MemoryUsage: - Blocks: 19.70 MB - PeakMemoryUsage: 18.34 MB - OpenTime: 10.808us - ProjectionTime: 0ns - RowsProduced: 695.935K (695935) - SendersBlockedTotalTimer(*): 969.164ms - WaitForDependencyTime: 0ns - WaitForData0: 4s375ms PipelineXTask (index=8):(Active: 678.819ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 678.646ms - CloseTime: 38.377us - GetBlockTime: 441.69ms - OpenTime: 4.631us - PrepareTime: 114.888us - SinkTime: 236.7ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 38 - NumBlockedTimes: 40 - NumScheduleTimes: 46 - NumYieldTimes: 5 - PendingFinishTimes: 1 - TaskCpuTime: 678.358ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.292ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 118 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.02 MB - CloseTime: 12.578us - CompressTime: 0ns - ExecTime: 235.779ms - InputRows: 404.677K (404677) - LocalBytesSent: 6.82 MB - LocalSendTime: 543.35us - LocalSentRows: 67.448K (67448) - MemoryUsage: - PeakMemoryUsage: 18.66 MB - MergeBlockTime: 0ns - OpenTime: 61.674us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s14ms - RowsProduced: 404.677K (404677) - RpcAvgTime: 980.85ms - RpcCount: 90 - RpcMaxTime: 8s829ms - RpcMinTime: 8s810ms - RpcSumTime: 1m28s - SerializeBatchTime: 117.918ms - SplitBlockDistributeByChannelTime: 82.988ms - SplitBlockHashComputeTime: 15.392ms - UncompressedRowBatchSize: 34.49 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 16.687us - ExecTime: 436.545ms - InitProbeSideTime: 42.780ms - JoinFilterTimer: 46.384us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 8.437us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 189.495us - ProbeFindNextTime: 0ns - ProbeRows: 695.844K (695844) - ProbeTime: 423.544ms - ProbeWhenBuildSideOutputTime: 93.938ms - ProbeWhenProbeSideOutputTime: 34.746ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 245.357ms - ProjectionTime: 11.568ms - RowsProduced: 404.677K (404677) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s119ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 209 - BytesReceived: 8.94 MB - CloseTime: 6.463us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.844ms - ExecTime: 3.827ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.06 MB - MemoryUsage: - Blocks: 19.94 MB - PeakMemoryUsage: 18.73 MB - OpenTime: 14.310us - ProjectionTime: 0ns - RowsProduced: 695.844K (695844) - SendersBlockedTotalTimer(*): 1s223ms - WaitForDependencyTime: 0ns - WaitForData0: 4s4ms PipelineXTask (index=10):(Active: 500.346ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 500.142ms - CloseTime: 60.463us - GetBlockTime: 315.207ms - OpenTime: 11.54us - PrepareTime: 113.510us - SinkTime: 183.230ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 75 - NumBlockedTimes: 77 - NumScheduleTimes: 79 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 497.380ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.879ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 118 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.08 MB - CloseTime: 22.607us - CompressTime: 0ns - ExecTime: 183.162ms - InputRows: 405.705K (405705) - LocalBytesSent: 6.84 MB - LocalSendTime: 325.318us - LocalSentRows: 67.711K (67711) - MemoryUsage: - PeakMemoryUsage: 18.12 MB - MergeBlockTime: 0ns - OpenTime: 53.735us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s4ms - RowsProduced: 405.705K (405705) - RpcAvgTime: 1s0ms - RpcCount: 90 - RpcMaxTime: 9s16ms - RpcMinTime: 9s1ms - RpcSumTime: 1m30s - SerializeBatchTime: 99.715ms - SplitBlockDistributeByChannelTime: 57.431ms - SplitBlockHashComputeTime: 13.726ms - UncompressedRowBatchSize: 34.57 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 29.507us - ExecTime: 311.845ms - InitProbeSideTime: 31.438ms - JoinFilterTimer: 37.27us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 17.933us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 110.128us - ProbeFindNextTime: 0ns - ProbeRows: 695.327K (695327) - ProbeTime: 302.195ms - ProbeWhenBuildSideOutputTime: 65.811ms - ProbeWhenProbeSideOutputTime: 22.104ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 178.79ms - ProjectionTime: 8.666ms - RowsProduced: 405.705K (405705) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s976ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 208 - BytesReceived: 8.99 MB - CloseTime: 5.596us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.957ms - ExecTime: 2.842ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 52.51 MB - MemoryUsage: - Blocks: 19.80 MB - PeakMemoryUsage: 18.89 MB - OpenTime: 14.88us - ProjectionTime: 0ns - RowsProduced: 695.327K (695327) - SendersBlockedTotalTimer(*): 1s337ms - WaitForDependencyTime: 0ns - WaitForData0: 4s336ms PipelineXTask (index=12):(Active: 546.893ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 546.696ms - CloseTime: 43.318us - GetBlockTime: 371.389ms - OpenTime: 6.120us - PrepareTime: 127.163us - SinkTime: 173.784ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 61 - NumBlockedTimes: 63 - NumScheduleTimes: 65 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 546.613ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.633ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 118 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 21.97 MB - CloseTime: 13.643us - CompressTime: 0ns - ExecTime: 173.712ms - InputRows: 403.806K (403806) - LocalBytesSent: 6.82 MB - LocalSendTime: 365.121us - LocalSentRows: 67.435K (67435) - MemoryUsage: - PeakMemoryUsage: 17.75 MB - MergeBlockTime: 0ns - OpenTime: 51.953us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s12ms - RowsProduced: 403.806K (403806) - RpcAvgTime: 1s5ms - RpcCount: 90 - RpcMaxTime: 9s59ms - RpcMinTime: 9s47ms - RpcSumTime: 1m30s - SerializeBatchTime: 93.142ms - SplitBlockDistributeByChannelTime: 56.614ms - SplitBlockHashComputeTime: 12.38ms - UncompressedRowBatchSize: 34.40 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 165 - BuildOutputBlock: 0ns - CloseTime: 21.12us - ExecTime: 368.271ms - InitProbeSideTime: 32.676ms - JoinFilterTimer: 33.202us - MemoryUsage: - PeakMemoryUsage: 468.00 KB - ProbeKeyArena: 468.00 KB - OpenTime: 12.73us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 106.163us - ProbeFindNextTime: 0ns - ProbeRows: 694.619K (694619) - ProbeTime: 358.748ms - ProbeWhenBuildSideOutputTime: 69.100ms - ProbeWhenProbeSideOutputTime: 24.485ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 227.788ms - ProjectionTime: 8.431ms - RowsProduced: 403.806K (403806) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s933ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 207 - BytesReceived: 8.97 MB - CloseTime: 5.707us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.169ms - ExecTime: 2.599ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 51.55 MB - MemoryUsage: - Blocks: 19.83 MB - PeakMemoryUsage: 18.47 MB - OpenTime: 20.587us - ProjectionTime: 0ns - RowsProduced: 694.619K (694619) - SendersBlockedTotalTimer(*): 1s17ms - WaitForDependencyTime: 0ns - WaitForData0: 4s329ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 242.30ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 241.935ms - CloseTime: 8.864us - GetBlockTime: 1.40ms - OpenTime: 2.397us - PrepareTime: 68.806us - SinkTime: 240.201ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 58 - NumBlockedTimes: 60 - NumScheduleTimes: 61 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 99.954ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.258ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 70.965us - BuildRows: 404.449K (404449) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 172.446ms - BuildTableInsertTime: 36.748ms - BuildTableTime: 36.755ms - CloseTime: 0ns - ExecTime: 240.160ms - InputRows: 404.448K (404448) - MemoryUsage: - BuildBlocks: 13.89 MB - BuildKeyArena: 13.89 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.32 MB - OpenTime: 18.831us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.206ms - RuntimeFilterComputeTime: 26.289ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 137 - BytesReceived: 3.66 MB - CloseTime: 6.625us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 111.806ms - ExecTime: 944.115us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.78 MB - MemoryUsage: - Blocks: 4.78 MB - PeakMemoryUsage: 1.81 MB - OpenTime: 13.686us - ProjectionTime: 0ns - RowsProduced: 404.448K (404448) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s280ms PipelineXTask (index=3):(Active: 334.486ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 334.385ms - CloseTime: 16.244us - GetBlockTime: 1.565ms - OpenTime: 1.985us - PrepareTime: 67.120us - SinkTime: 332.191ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 49 - NumBlockedTimes: 51 - NumScheduleTimes: 52 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 90.109ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 141.908ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 96.892us - BuildRows: 405.54K (405540) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 281.208ms - BuildTableInsertTime: 31.315ms - BuildTableTime: 31.323ms - CloseTime: 0ns - ExecTime: 332.148ms - InputRows: 405.539K (405539) - MemoryUsage: - BuildBlocks: 13.92 MB - BuildKeyArena: 13.93 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.40 MB - OpenTime: 27.476us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 45.145us - RuntimeFilterComputeTime: 16.132ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 137 - BytesReceived: 3.66 MB - CloseTime: 12.342us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.853ms - ExecTime: 1.446ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.38 MB - MemoryUsage: - Blocks: 5.77 MB - PeakMemoryUsage: 2.39 MB - OpenTime: 13.344us - ProjectionTime: 0ns - RowsProduced: 405.539K (405539) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s152ms PipelineXTask (index=5):(Active: 246.935ms, % non-child: 0.00%) - CoreChangeTimes: 38 - ExecuteTime: 246.854ms - CloseTime: 15.760us - GetBlockTime: 1.37ms - OpenTime: 2.123us - PrepareTime: 47.313us - SinkTime: 245.144ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 62 - NumBlockedTimes: 64 - NumScheduleTimes: 64 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.507ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.171ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 81.272us - BuildRows: 403.991K (403991) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 166.931ms - BuildTableInsertTime: 41.157ms - BuildTableTime: 41.175ms - CloseTime: 0ns - ExecTime: 245.82ms - InputRows: 403.99K (403990) - MemoryUsage: - BuildBlocks: 13.87 MB - BuildKeyArena: 13.88 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.28 MB - OpenTime: 12.879us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.52ms - RuntimeFilterComputeTime: 30.105ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 135 - BytesReceived: 3.64 MB - CloseTime: 11.917us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 153.897ms - ExecTime: 943.235us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.52 MB - MemoryUsage: - Blocks: 1.83 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.946us - ProjectionTime: 0ns - RowsProduced: 403.99K (403990) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s239ms PipelineXTask (index=7):(Active: 244.405ms, % non-child: 0.00%) - CoreChangeTimes: 35 - ExecuteTime: 244.318ms - CloseTime: 15.578us - GetBlockTime: 950.831us - OpenTime: 2.329us - PrepareTime: 54.354us - SinkTime: 242.781ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 60 - NumBlockedTimes: 62 - NumScheduleTimes: 63 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 87.901ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.866ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 83.688us - BuildRows: 404.992K (404992) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 177.628ms - BuildTableInsertTime: 35.355ms - BuildTableTime: 35.363ms - CloseTime: 0ns - ExecTime: 242.745ms - InputRows: 404.991K (404991) - MemoryUsage: - BuildBlocks: 13.90 MB - BuildKeyArena: 13.91 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.36 MB - OpenTime: 18.814us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 891.561us - RuntimeFilterComputeTime: 23.982ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 137 - BytesReceived: 3.65 MB - CloseTime: 11.611us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 219.936ms - ExecTime: 866.236us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.59 MB - MemoryUsage: - Blocks: 2.11 MB - PeakMemoryUsage: 288.00 KB - OpenTime: 19.934us - ProjectionTime: 0ns - RowsProduced: 404.991K (404991) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s260ms PipelineXTask (index=9):(Active: 212.876ms, % non-child: 0.00%) - CoreChangeTimes: 36 - ExecuteTime: 212.788ms - CloseTime: 9.26us - GetBlockTime: 1.85ms - OpenTime: 1.769us - PrepareTime: 65.218us - SinkTime: 211.40ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 68 - NumBlockedTimes: 70 - NumScheduleTimes: 70 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.213ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 275.679ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 97.224us - BuildRows: 405.326K (405326) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 152.544ms - BuildTableInsertTime: 32.44ms - BuildTableTime: 32.51ms - CloseTime: 0ns - ExecTime: 211.16ms - InputRows: 405.325K (405325) - MemoryUsage: - BuildBlocks: 13.92 MB - BuildKeyArena: 13.92 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.38 MB - OpenTime: 30.973us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.546ms - RuntimeFilterComputeTime: 19.204ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 137 - BytesReceived: 3.66 MB - CloseTime: 6.214us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 98.110ms - ExecTime: 989.606us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.06 MB - MemoryUsage: - Blocks: 2.83 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.671us - ProjectionTime: 0ns - RowsProduced: 405.325K (405325) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s406ms PipelineXTask (index=11):(Active: 185.283ms, % non-child: 0.00%) - CoreChangeTimes: 32 - ExecuteTime: 185.195ms - CloseTime: 15.148us - GetBlockTime: 1.108ms - OpenTime: 3.790us - PrepareTime: 56.291us - SinkTime: 183.400ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 62 - NumBlockedTimes: 64 - NumScheduleTimes: 64 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.113ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 371.894ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 100.328us - BuildRows: 406.369K (406369) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 108.558ms - BuildTableInsertTime: 38.959ms - BuildTableTime: 38.967ms - CloseTime: 0ns - ExecTime: 183.336ms - InputRows: 406.368K (406368) - MemoryUsage: - BuildBlocks: 13.95 MB - BuildKeyArena: 13.96 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.45 MB - OpenTime: 12.365us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.81ms - RuntimeFilterComputeTime: 29.514ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 138 - BytesReceived: 3.66 MB - CloseTime: 11.540us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 220.875ms - ExecTime: 1.6ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.50 MB - MemoryUsage: - Blocks: 3.23 MB - PeakMemoryUsage: 864.00 KB - OpenTime: 10.104us - ProjectionTime: 0ns - RowsProduced: 406.368K (406368) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s180ms PipelineXTask (index=13):(Active: 104.247ms, % non-child: 0.00%) - CoreChangeTimes: 38 - ExecuteTime: 104.162ms - CloseTime: 17.901us - GetBlockTime: 1.29ms - OpenTime: 3.68us - PrepareTime: 51.694us - SinkTime: 102.456ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 69 - NumBlockedTimes: 71 - NumScheduleTimes: 71 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.34ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 158.922ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 97.247us - BuildRows: 404.466K (404466) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 38.467ms - BuildTableInsertTime: 37.64ms - BuildTableTime: 37.71ms - CloseTime: 0ns - ExecTime: 102.419ms - InputRows: 404.465K (404465) - MemoryUsage: - BuildBlocks: 13.89 MB - BuildKeyArena: 13.89 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.32 MB - OpenTime: 14.566us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 934.917us - RuntimeFilterComputeTime: 22.158ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 138 - BytesReceived: 3.65 MB - CloseTime: 14.599us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.760ms - ExecTime: 941.608us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.27 MB - MemoryUsage: - Blocks: 1.13 MB - PeakMemoryUsage: 0.00 - OpenTime: 12.40us - ProjectionTime: 0ns - RowsProduced: 404.465K (404465) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s431ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 458.262ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 458.60ms - CloseTime: 49.414us - GetBlockTime: 326.681ms - OpenTime: 2.925us - PrepareTime: 131.59us - SinkTime: 128.992ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 105 - NumBlockedTimes: 107 - NumScheduleTimes: 109 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 453.247ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.38ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 109 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.41 MB - CloseTime: 15.578us - CompressTime: 0ns - ExecTime: 128.895ms - InputRows: 403.154K (403154) - LocalBytesSent: 33.89 MB - LocalSendTime: 1.570ms - LocalSentRows: 335.389K (335389) - MemoryUsage: - PeakMemoryUsage: 57.17 MB - MergeBlockTime: 0ns - OpenTime: 73.380us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.45ms - RowsProduced: 403.154K (403154) - RpcAvgTime: 14.342ms - RpcCount: 18 - RpcMaxTime: 132.94ms - RpcMinTime: 126.72ms - RpcSumTime: 258.167ms - SerializeBatchTime: 19.86ms - SplitBlockDistributeByChannelTime: 79.154ms - SplitBlockHashComputeTime: 13.569ms - UncompressedRowBatchSize: 6.93 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 165 - BuildOutputBlock: 0ns - CloseTime: 20.556us - ExecTime: 323.364ms - InitProbeSideTime: 32.290ms - JoinFilterTimer: 32.228us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 11.88us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 123.129us - ProbeFindNextTime: 0ns - ProbeRows: 694.444K (694444) - ProbeTime: 312.656ms - ProbeWhenBuildSideOutputTime: 66.767ms - ProbeWhenProbeSideOutputTime: 28.578ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 180.103ms - ProjectionTime: 9.564ms - RowsProduced: 403.154K (403154) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s407ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 288 - BytesReceived: 26.71 MB - CloseTime: 9.544us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 16.969ms - ExecTime: 2.678ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.98 MB - MemoryUsage: - Blocks: 20.45 MB - PeakMemoryUsage: 16.98 MB - OpenTime: 14.375us - ProjectionTime: 0ns - RowsProduced: 694.444K (694444) - SendersBlockedTotalTimer(*): 12s502ms - WaitForDependencyTime: 0ns - WaitForData0: 6s87ms PipelineXTask (index=2):(Active: 476.392ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 476.194ms - CloseTime: 53.75us - GetBlockTime: 348.597ms - OpenTime: 3.428us - PrepareTime: 115.393us - SinkTime: 125.121ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 105 - NumBlockedTimes: 107 - NumScheduleTimes: 109 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 455.688ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.913ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 110 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.40 MB - CloseTime: 19.916us - CompressTime: 0ns - ExecTime: 125.20ms - InputRows: 405.458K (405458) - LocalBytesSent: 34.18 MB - LocalSendTime: 1.545ms - LocalSentRows: 338.285K (338285) - MemoryUsage: - PeakMemoryUsage: 57.09 MB - MergeBlockTime: 0ns - OpenTime: 63.781us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.467ms - RowsProduced: 405.458K (405458) - RpcAvgTime: 16.553ms - RpcCount: 18 - RpcMaxTime: 156.399ms - RpcMinTime: 141.568ms - RpcSumTime: 297.967ms - SerializeBatchTime: 17.735ms - SplitBlockDistributeByChannelTime: 76.609ms - SplitBlockHashComputeTime: 14.658ms - UncompressedRowBatchSize: 6.87 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 21.489us - ExecTime: 345.281ms - InitProbeSideTime: 38.918ms - JoinFilterTimer: 34.750us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 11.292us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 136.808us - ProbeFindNextTime: 0ns - ProbeRows: 695.795K (695795) - ProbeTime: 321.729ms - ProbeWhenBuildSideOutputTime: 65.104ms - ProbeWhenProbeSideOutputTime: 26.344ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 186.298ms - ProjectionTime: 22.415ms - RowsProduced: 405.458K (405458) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s489ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 292 - BytesReceived: 26.72 MB - CloseTime: 7.876us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 17.505ms - ExecTime: 2.773ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.63 MB - MemoryUsage: - Blocks: 20.64 MB - PeakMemoryUsage: 17.63 MB - OpenTime: 13.201us - ProjectionTime: 0ns - RowsProduced: 695.795K (695795) - SendersBlockedTotalTimer(*): 13s642ms - WaitForDependencyTime: 0ns - WaitForData0: 6s51ms PipelineXTask (index=4):(Active: 540.67ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 539.823ms - CloseTime: 60.11us - GetBlockTime: 378.201ms - OpenTime: 3.457us - PrepareTime: 155.199us - SinkTime: 159.179ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 111 - NumBlockedTimes: 113 - NumScheduleTimes: 116 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 466.842ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.575ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 109 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.37 MB - CloseTime: 21.23us - CompressTime: 0ns - ExecTime: 159.128ms - InputRows: 403.757K (403757) - LocalBytesSent: 34.04 MB - LocalSendTime: 1.740ms - LocalSentRows: 336.938K (336938) - MemoryUsage: - PeakMemoryUsage: 57.10 MB - MergeBlockTime: 0ns - OpenTime: 92.609us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 43.506ms - RowsProduced: 403.757K (403757) - RpcAvgTime: 10.578ms - RpcCount: 17 - RpcMaxTime: 99.685ms - RpcMinTime: 80.145ms - RpcSumTime: 179.831ms - SerializeBatchTime: 19.939ms - SplitBlockDistributeByChannelTime: 107.913ms - SplitBlockHashComputeTime: 13.829ms - UncompressedRowBatchSize: 6.84 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 24.675us - ExecTime: 374.756ms - InitProbeSideTime: 46.517ms - JoinFilterTimer: 32.420us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 11.597us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 139.473us - ProbeFindNextTime: 0ns - ProbeRows: 694.15K (694150) - ProbeTime: 364.463ms - ProbeWhenBuildSideOutputTime: 78.454ms - ProbeWhenProbeSideOutputTime: 39.487ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 195.5ms - ProjectionTime: 9.181ms - RowsProduced: 403.757K (403757) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s411ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 290 - BytesReceived: 26.71 MB - CloseTime: 9.916us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 17.467ms - ExecTime: 2.871ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.57 MB - MemoryUsage: - Blocks: 20.89 MB - PeakMemoryUsage: 17.57 MB - OpenTime: 19.220us - ProjectionTime: 0ns - RowsProduced: 694.15K (694150) - SendersBlockedTotalTimer(*): 12s576ms - WaitForDependencyTime: 0ns - WaitForData0: 6s78ms PipelineXTask (index=6):(Active: 436.999ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 436.809ms - CloseTime: 32.61us - GetBlockTime: 309.146ms - OpenTime: 5.130us - PrepareTime: 134.575us - SinkTime: 125.341ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 106 - NumBlockedTimes: 108 - NumScheduleTimes: 110 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 422.191ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.959ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 109 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.38 MB - CloseTime: 12.906us - CompressTime: 0ns - ExecTime: 125.241ms - InputRows: 404.216K (404216) - LocalBytesSent: 34.07 MB - LocalSendTime: 1.631ms - LocalSentRows: 337.184K (337184) - MemoryUsage: - PeakMemoryUsage: 56.62 MB - MergeBlockTime: 0ns - OpenTime: 76.460us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.334ms - RowsProduced: 404.216K (404216) - RpcAvgTime: 12.154ms - RpcCount: 18 - RpcMaxTime: 110.660ms - RpcMinTime: 108.116ms - RpcSumTime: 218.777ms - SerializeBatchTime: 19.364ms - SplitBlockDistributeByChannelTime: 76.380ms - SplitBlockHashComputeTime: 13.577ms - UncompressedRowBatchSize: 6.86 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 11.464us - ExecTime: 305.979ms - InitProbeSideTime: 31.735ms - JoinFilterTimer: 29.884us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 9.690us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 151.600us - ProbeFindNextTime: 0ns - ProbeRows: 695.57K (695570) - ProbeTime: 295.866ms - ProbeWhenBuildSideOutputTime: 64.512ms - ProbeWhenProbeSideOutputTime: 24.476ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 170.562ms - ProjectionTime: 8.972ms - RowsProduced: 404.216K (404216) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s379ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 290 - BytesReceived: 26.73 MB - CloseTime: 5.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 18.133ms - ExecTime: 2.576ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.81 MB - MemoryUsage: - Blocks: 20.53 MB - PeakMemoryUsage: 17.81 MB - OpenTime: 19.978us - ProjectionTime: 0ns - RowsProduced: 695.57K (695570) - SendersBlockedTotalTimer(*): 14s229ms - WaitForDependencyTime: 0ns - WaitForData0: 6s181ms PipelineXTask (index=8):(Active: 423.748ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 423.536ms - CloseTime: 54.55us - GetBlockTime: 292.318ms - OpenTime: 3.887us - PrepareTime: 129.357us - SinkTime: 128.831ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 113 - NumBlockedTimes: 115 - NumScheduleTimes: 117 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 408.177ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.774ms DATA_STREAM_SINK_OPERATOR (id=316,dst_id=316): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 110 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.36 MB - CloseTime: 20.382us - CompressTime: 0ns - ExecTime: 128.757ms - InputRows: 403.141K (403141) - LocalBytesSent: 34.01 MB - LocalSendTime: 1.648ms - LocalSentRows: 336.591K (336591) - MemoryUsage: - PeakMemoryUsage: 55.66 MB - MergeBlockTime: 0ns - OpenTime: 74.853us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.336ms - RowsProduced: 403.141K (403141) - RpcAvgTime: 8.304ms - RpcCount: 18 - RpcMaxTime: 78.863ms - RpcMinTime: 70.626ms - RpcSumTime: 149.489ms - SerializeBatchTime: 19.256ms - SplitBlockDistributeByChannelTime: 79.73ms - SplitBlockHashComputeTime: 13.587ms - UncompressedRowBatchSize: 6.81 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=315): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 21.328us - ExecTime: 289.168ms - InitProbeSideTime: 29.363ms - JoinFilterTimer: 30.944us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 13.243us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 115.723us - ProbeFindNextTime: 0ns - ProbeRows: 695.258K (695258) - ProbeTime: 279.469ms - ProbeWhenBuildSideOutputTime: 59.923ms - ProbeWhenProbeSideOutputTime: 25.263ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 160.357ms - ProjectionTime: 8.630ms - RowsProduced: 403.141K (403141) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s397ms EXCHANGE_OPERATOR (id=314): - BlocksProduced: 290 - BytesReceived: 26.72 MB - CloseTime: 7.896us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 17.626ms - ExecTime: 2.645ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.92 MB - MemoryUsage: - Blocks: 20.48 MB - PeakMemoryUsage: 17.92 MB - OpenTime: 11.474us - ProjectionTime: 0ns - RowsProduced: 695.258K (695258) - SendersBlockedTotalTimer(*): 14s237ms - WaitForDependencyTime: 0ns - WaitForData0: 6s161ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 103.44ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 102.939ms - CloseTime: 16.856us - GetBlockTime: 1.266ms - OpenTime: 1.734us - PrepareTime: 65.720us - SinkTime: 100.827ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 89 - NumBlockedTimes: 91 - NumScheduleTimes: 91 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.159ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 54.761ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 126.346us - BuildRows: 403.84K (403840) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 42.685ms - BuildTableInsertTime: 29.997ms - BuildTableTime: 30.3ms - CloseTime: 0ns - ExecTime: 100.798ms - InputRows: 403.839K (403839) - MemoryUsage: - BuildBlocks: 13.86 MB - BuildKeyArena: 13.87 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.27 MB - OpenTime: 32.812us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.649ms - RuntimeFilterComputeTime: 24.803ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 162 - BytesReceived: 6.26 MB - CloseTime: 11.829us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.646ms - ExecTime: 1.126ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.86 MB - MemoryUsage: - Blocks: 1.13 MB - PeakMemoryUsage: 1.13 MB - OpenTime: 13.741us - ProjectionTime: 0ns - RowsProduced: 403.839K (403839) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s100ms PipelineXTask (index=3):(Active: 163.404ms, % non-child: 0.00%) - CoreChangeTimes: 37 - ExecuteTime: 163.313ms - CloseTime: 15.506us - GetBlockTime: 1.145ms - OpenTime: 1.694us - PrepareTime: 53.193us - SinkTime: 161.339ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 92 - NumBlockedTimes: 94 - NumScheduleTimes: 94 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.478ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 63.130ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 94.566us - BuildRows: 406.081K (406081) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.813ms - BuildTableInsertTime: 41.425ms - BuildTableTime: 41.431ms - CloseTime: 0ns - ExecTime: 161.290ms - InputRows: 406.08K (406080) - MemoryUsage: - BuildBlocks: 13.94 MB - BuildKeyArena: 13.95 MB - HashTable: 3.55 MB - PeakMemoryUsage: 31.44 MB - OpenTime: 20.15us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 42.918ms - RuntimeFilterComputeTime: 51.807ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 163 - BytesReceived: 6.28 MB - CloseTime: 11.452us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.964ms - ExecTime: 1.44ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.58 MB - MemoryUsage: - Blocks: 864.00 KB - PeakMemoryUsage: 864.00 KB - OpenTime: 10.650us - ProjectionTime: 0ns - RowsProduced: 406.08K (406080) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s102ms PipelineXTask (index=5):(Active: 113.506ms, % non-child: 0.00%) - CoreChangeTimes: 35 - ExecuteTime: 113.405ms - CloseTime: 14.756us - GetBlockTime: 1.93ms - OpenTime: 1.362us - PrepareTime: 62.268us - SinkTime: 111.394ms - GetBlockCounter: 102 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 92 - NumBlockedTimes: 94 - NumScheduleTimes: 94 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.326ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.745ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 108.694us - BuildRows: 404.403K (404403) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 32.53ms - BuildTableInsertTime: 37.715ms - BuildTableTime: 37.723ms - CloseTime: 0ns - ExecTime: 111.345ms - InputRows: 404.402K (404402) - MemoryUsage: - BuildBlocks: 13.88 MB - BuildKeyArena: 13.89 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.31 MB - OpenTime: 13.950us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.129ms - RuntimeFilterComputeTime: 37.17ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 165 - BytesReceived: 6.27 MB - CloseTime: 10.953us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.107ms - ExecTime: 981.343us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.91 MB - MemoryUsage: - Blocks: 864.00 KB - PeakMemoryUsage: 864.00 KB - OpenTime: 16.615us - ProjectionTime: 0ns - RowsProduced: 404.402K (404402) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s90ms PipelineXTask (index=7):(Active: 91.533ms, % non-child: 0.00%) - CoreChangeTimes: 28 - ExecuteTime: 91.446ms - CloseTime: 15.200us - GetBlockTime: 1.46ms - OpenTime: 2.58us - PrepareTime: 52.24us - SinkTime: 89.571ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 88 - NumBlockedTimes: 90 - NumScheduleTimes: 90 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.292ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.902ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 87.862us - BuildRows: 404.855K (404855) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 39.374ms - BuildTableInsertTime: 27.679ms - BuildTableTime: 27.685ms - CloseTime: 0ns - ExecTime: 89.537ms - InputRows: 404.854K (404854) - MemoryUsage: - BuildBlocks: 13.90 MB - BuildKeyArena: 13.91 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.35 MB - OpenTime: 19.828us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.937us - RuntimeFilterComputeTime: 21.303ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 163 - BytesReceived: 6.27 MB - CloseTime: 10.760us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.78ms - ExecTime: 951.748us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.46 MB - MemoryUsage: - Blocks: 1024.00 KB - PeakMemoryUsage: 1024.00 KB - OpenTime: 13.668us - ProjectionTime: 0ns - RowsProduced: 404.854K (404854) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s80ms PipelineXTask (index=9):(Active: 89.725ms, % non-child: 0.00%) - CoreChangeTimes: 27 - ExecuteTime: 89.650ms - CloseTime: 14.832us - GetBlockTime: 1.191ms - OpenTime: 1.627us - PrepareTime: 44.133us - SinkTime: 87.628ms - GetBlockCounter: 101 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 91 - NumBlockedTimes: 93 - NumScheduleTimes: 93 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.992ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.53ms HASH_JOIN_SINK_OPERATOR (id=315): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 99.804us - BuildRows: 403.808K (403808) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.24ms - BuildTableInsertTime: 28.805ms - BuildTableTime: 28.811ms - CloseTime: 0ns - ExecTime: 87.584ms - InputRows: 403.807K (403807) - MemoryUsage: - BuildBlocks: 13.86 MB - BuildKeyArena: 13.87 MB - HashTable: 3.54 MB - PeakMemoryUsage: 31.27 MB - OpenTime: 16.220us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.343ms - RuntimeFilterComputeTime: 31.412ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=312): - BlocksProduced: 163 - BytesReceived: 6.26 MB - CloseTime: 11.180us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.417ms - ExecTime: 1.108ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.52 MB - MemoryUsage: - Blocks: 736.00 KB - PeakMemoryUsage: 736.00 KB - OpenTime: 9.972us - ProjectionTime: 0ns - RowsProduced: 403.807K (403807) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s117ms Fragment 30: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 625.384ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 624.982ms - CloseTime: 60.290us - GetBlockTime: 2.35ms - OpenTime: 116.622us - PrepareTime: 214.277us - SinkTime: 608.649ms - GetBlockCounter: 518 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 18 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 497.361ms - WaitBfTime: 778.27ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.976ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 510 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 62.61 MB - CloseTime: 21.210us - CompressTime: 0ns - ExecTime: 608.587ms - InputRows: 2.098705M (2098705) - LocalBytesSent: 58.21 MB - LocalSendTime: 1.553ms - LocalSentRows: 875.004K (875004) - MemoryUsage: - PeakMemoryUsage: 91.09 MB - MergeBlockTime: 0ns - OpenTime: 67.945us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s958ms - RowsProduced: 2.098705M (2098705) - RpcAvgTime: 113.618ms - RpcCount: 293 - RpcMaxTime: 5s141ms - RpcMinTime: 4s534ms - RpcSumTime: 33s290ms - SerializeBatchTime: 277.664ms - SplitBlockDistributeByChannelTime: 246.739ms - SplitBlockHashComputeTime: 62.970ms - UncompressedRowBatchSize: 82.46 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - 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.4us - BlocksProduced: 518 - CloseTime: 34.872us - ExecTime: 251.232ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 199.920us - ProcessConjunctTime: 23.579us - ProjectionTime: 0ns - RowsProduced: 2.098705M (2098705) - RowsRead: 2.098705M (2098705) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 182.647ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 249.125ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [79.049ms, ] - PerScannerRowsRead: [2.10M, ] - PerScannerWaitTime: [182.647ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 77.68ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 922.523us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.633us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 70.307ms - ScannerCtxSchedTime: 182.622ms - ScannerFilterTime: 317.776us - ScannerGetBlockTime: 78.520ms - ScannerInitTime: 70.64us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.141us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.549us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 46 - BlockInitSeekTime: 528.242us - BlockInitTime: 624.233us - BlockLoadTime: 78.276ms - BlocksLoad: 520 - CachedPagesNum: 2.122K (2122) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.036K (1036) - FirstReadSeekTime: 624.357us - FirstReadTime: 76.64ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.786us - 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.855us - OutputIndexResultColumnTimer: 61.319us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 799.585ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 799.132ms - CloseTime: 53.690us - GetBlockTime: 2.951ms - OpenTime: 167.889us - PrepareTime: 204.234us - SinkTime: 794.416ms - GetBlockCounter: 513 - NumBlockedBySinkTimes: 7 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 24 - NumScheduleTimes: 28 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 534.565ms - WaitBfTime: 703.60ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.618ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 500 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 44.45 MB - CloseTime: 20.765us - CompressTime: 0ns - ExecTime: 794.264ms - InputRows: 2.080044M (2080044) - LocalBytesSent: 81.09 MB - LocalSendTime: 3.365ms - LocalSentRows: 1.214757M (1214757) - MemoryUsage: - PeakMemoryUsage: 123.79 MB - MergeBlockTime: 0ns - OpenTime: 64.270us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14s851ms - RowsProduced: 2.080044M (2080044) - RpcAvgTime: 300.862ms - RpcCount: 205 - RpcMaxTime: 13s40ms - RpcMinTime: 12s121ms - RpcSumTime: 1m1s - SerializeBatchTime: 235.598ms - SplitBlockDistributeByChannelTime: 386.313ms - SplitBlockHashComputeTime: 100.582ms - UncompressedRowBatchSize: 58.51 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 1s294ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 43.987ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 216.122ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - 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.383us - BlocksProduced: 513 - CloseTime: 29.322us - ExecTime: 169.638ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 245.960us - ProcessConjunctTime: 30.181us - ProjectionTime: 0ns - RowsProduced: 2.080044M (2080044) - RowsRead: 2.080044M (2080044) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 86.473ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 166.683ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 6 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4194304 VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [93.638ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [86.473ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 91.85ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.474ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 29.432us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 72.823ms - ScannerCtxSchedTime: 86.446ms - ScannerFilterTime: 373.253us - ScannerGetBlockTime: 93.53ms - ScannerInitTime: 91.91us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.70us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.811us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 18.696us - BlockInitTime: 119.964us - BlockLoadTime: 93.317ms - BlocksLoad: 515 - CachedPagesNum: 2.11K (2110) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.026K (1026) - FirstReadSeekTime: 1.904ms - FirstReadTime: 91.432ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.451us - 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: 108.714us - OutputIndexResultColumnTimer: 62.586us - 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=1):(Active: 770.75ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 769.649ms - CloseTime: 71.386us - GetBlockTime: 3.184ms - OpenTime: 90.151us - PrepareTime: 252.947us - SinkTime: 764.648ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 23 - NumScheduleTimes: 25 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 575.147ms - WaitBfTime: 703.222ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.354ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 505 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 44.58 MB - CloseTime: 23.212us - CompressTime: 0ns - ExecTime: 764.542ms - InputRows: 2.081635M (2081635) - LocalBytesSent: 81.02 MB - LocalSendTime: 3.790ms - LocalSentRows: 1.213637M (1213637) - MemoryUsage: - PeakMemoryUsage: 123.48 MB - MergeBlockTime: 0ns - OpenTime: 101.623us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14s919ms - RowsProduced: 2.081635M (2081635) - RpcAvgTime: 295.861ms - RpcCount: 209 - RpcMaxTime: 13s85ms - RpcMinTime: 12s142ms - RpcSumTime: 1m1s - SerializeBatchTime: 289.178ms - SplitBlockDistributeByChannelTime: 363.402ms - SplitBlockHashComputeTime: 72.582ms - UncompressedRowBatchSize: 58.69 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 1s294ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 43.987ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 216.122ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - 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: 1.614us - BlocksProduced: 514 - CloseTime: 43.136us - ExecTime: 175.401ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 185.638us - ProcessConjunctTime: 17.290us - ProjectionTime: 0ns - RowsProduced: 2.081635M (2081635) - RowsRead: 2.081635M (2081635) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 41.232ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 172.255ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 6 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4194304 VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [141.125ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [41.232ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 138.615ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 712.710us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 34.542us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 76.964ms - ScannerCtxSchedTime: 41.201ms - ScannerFilterTime: 420.179us - ScannerGetBlockTime: 140.474ms - ScannerInitTime: 46.550us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.115us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.8us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 15.287us - BlockInitTime: 104.552us - BlockLoadTime: 139.765ms - BlocksLoad: 516 - CachedPagesNum: 2.112K (2112) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.162ms - FirstReadTime: 137.875ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.112us - 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: 132.688us - OutputIndexResultColumnTimer: 60.606us - 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=2):(Active: 685.844ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 685.461ms - CloseTime: 103.357us - GetBlockTime: 3.85ms - OpenTime: 89.428us - PrepareTime: 177.376us - SinkTime: 680.500ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 7 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 25 - NumScheduleTimes: 27 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 542.901ms - WaitBfTime: 703.350ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 161.274ms DATA_STREAM_SINK_OPERATOR (id=314,dst_id=314): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 503 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 44.53 MB - CloseTime: 36.205us - CompressTime: 0ns - ExecTime: 680.391ms - InputRows: 2.081997M (2081997) - LocalBytesSent: 81.11 MB - LocalSendTime: 3.515ms - LocalSentRows: 1.215069M (1215069) - MemoryUsage: - PeakMemoryUsage: 124.03 MB - MergeBlockTime: 0ns - OpenTime: 62.813us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14s826ms - RowsProduced: 2.081997M (2081997) - RpcAvgTime: 307.807ms - RpcCount: 206 - RpcMaxTime: 13s29ms - RpcMinTime: 12s170ms - RpcSumTime: 1m3s - SerializeBatchTime: 225.415ms - SplitBlockDistributeByChannelTime: 349.685ms - SplitBlockHashComputeTime: 74.542ms - UncompressedRowBatchSize: 58.62 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 1s294ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 43.987ms - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 216.122ms - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - 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: 2.987us - BlocksProduced: 514 - CloseTime: 56.377us - ExecTime: 169.228ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 155.384us - ProcessConjunctTime: 18.246us - ProjectionTime: 0ns - RowsProduced: 2.081997M (2081997) - RowsRead: 2.081997M (2081997) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 88.666ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 166.166ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 94, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 95, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 6 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4194304 VScanner: - ReadColumns: [UNION_ID, EXTERNAL_USER_ID] - PerScannerRunningTime: [86.388ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [88.666ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 83.422ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 836.1us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 30.983us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 77.992ms - ScannerCtxSchedTime: 88.641ms - ScannerFilterTime: 466.838us - ScannerGetBlockTime: 85.675ms - ScannerInitTime: 43.15us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.434us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.88us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 28.897us - BlockInitTime: 134.250us - BlockLoadTime: 85.82ms - BlocksLoad: 516 - CachedPagesNum: 2.112K (2112) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.353ms - FirstReadTime: 82.936ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.828us - 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: 117.497us - OutputIndexResultColumnTimer: 67.908us - 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.87, port:9060)): PipelineXTask (index=0):(Active: 36.578ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.24ms - CloseTime: 92.592us - GetBlockTime: 196.266us - OpenTime: 261.42us - PrepareTime: 193.471us - SinkTime: 35.488ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.486ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 137.55us DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 31 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.36 MB - CloseTime: 27.902us - CompressTime: 0ns - ExecTime: 35.574ms - InputRows: 95.75K (95750) - LocalBytesSent: 1.37 MB - LocalSendTime: 102.725us - LocalSentRows: 39.925K (39925) - MemoryUsage: - PeakMemoryUsage: 4.08 MB - MergeBlockTime: 0ns - OpenTime: 68.583us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 309.232ms - RowsProduced: 95.75K (95750) - RpcAvgTime: 32.68ms - RpcCount: 14 - RpcMaxTime: 204.935ms - RpcMinTime: 34.109ms - RpcSumTime: 448.955ms - SerializeBatchTime: 24.651ms - SplitBlockDistributeByChannelTime: 4.989ms - SplitBlockHashComputeTime: 3.467ms - UncompressedRowBatchSize: 1.94 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 542ns - BlocksProduced: 28 - CloseTime: 59.21us - ExecTime: 38.170ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 335.363us - ProcessConjunctTime: 58.685us - ProjectionTime: 669.898us - RowsProduced: 95.75K (95750) - RowsRead: 95.75K (95750) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 328.944us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 36.904ms - 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: [33.811ms, ] - PerScannerRowsRead: [95.75K, ] - PerScannerWaitTime: [328.944us, ] - BlockConvertTime: 0ns - BlockFetchTime: 32.312ms - MemoryUsage: - FreeBlocks: 3.95 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 518.271us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.712us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.560ms - ScannerCtxSchedTime: 327.348us - ScannerFilterTime: 90.312us - ScannerGetBlockTime: 33.669ms - ScannerInitTime: 174.86us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.235us - BlockConditionsFilteredBloomFilterTime: 6.477us - BlockConditionsFilteredDictTime: 2.795us - BlockConditionsFilteredTime: 83.44us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 48.622us - BlockInitSeekCount: 37 - BlockInitSeekTime: 283.169us - BlockInitTime: 463.94us - BlockLoadTime: 33.538ms - BlocksLoad: 152 - CachedPagesNum: 354 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 294 - FirstReadSeekTime: 73.596us - FirstReadTime: 1.646ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.922us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 29.605ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 504.156us - OutputIndexResultColumnTimer: 12.817us - 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: 8.601us - TotalPagesNum: 354 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 967.681us PipelineXTask (index=1):(Active: 116.168ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 115.428ms - CloseTime: 57.691us - GetBlockTime: 621.490us - OpenTime: 520.534us - PrepareTime: 156.272us - SinkTime: 113.999ms - GetBlockCounter: 99 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 56.621ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.877ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 91 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.00 MB - CloseTime: 13.703us - CompressTime: 0ns - ExecTime: 114.30ms - InputRows: 343.85K (343850) - LocalBytesSent: 4.93 MB - LocalSendTime: 330.137us - LocalSentRows: 143.516K (143516) - MemoryUsage: - PeakMemoryUsage: 10.83 MB - MergeBlockTime: 0ns - OpenTime: 53.560us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s242ms - RowsProduced: 343.85K (343850) - RpcAvgTime: 167.495ms - RpcCount: 49 - RpcMaxTime: 1s317ms - RpcMinTime: 1s56ms - RpcSumTime: 8s207ms - SerializeBatchTime: 46.122ms - SplitBlockDistributeByChannelTime: 21.445ms - SplitBlockHashComputeTime: 21.356ms - UncompressedRowBatchSize: 6.95 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 378ns - BlocksProduced: 99 - CloseTime: 39.340us - ExecTime: 102.624ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 580.285us - ProcessConjunctTime: 44.874us - ProjectionTime: 3.470ms - RowsProduced: 343.85K (343850) - RowsRead: 343.85K (343850) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.462ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 97.877ms - 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.531ms, ] - PerScannerRowsRead: [343.85K, ] - PerScannerWaitTime: [2.462ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 59.796ms - MemoryUsage: - FreeBlocks: 6.52 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.81ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.926us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.706ms - ScannerCtxSchedTime: 2.458ms - ScannerFilterTime: 449.464us - ScannerGetBlockTime: 61.822ms - ScannerInitTime: 452.74us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.126us - BlockConditionsFilteredBloomFilterTime: 6.967us - BlockConditionsFilteredDictTime: 2.392us - BlockConditionsFilteredTime: 146.661us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 96.526us - BlockInitSeekCount: 26 - BlockInitSeekTime: 39.199us - BlockInitTime: 317.836us - BlockLoadTime: 61.229ms - BlocksLoad: 405 - CachedPagesNum: 1.059K (1059) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 804 - FirstReadSeekTime: 191.438us - FirstReadTime: 7.190ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.550us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 44.672ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.985ms - OutputIndexResultColumnTimer: 59.814us - 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: 30.431us - TotalPagesNum: 1.059K (1059) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.506ms PipelineXTask (index=2):(Active: 236.831ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 235.708ms - CloseTime: 79.102us - GetBlockTime: 963.65us - OpenTime: 903.380us - PrepareTime: 134.413us - SinkTime: 233.333ms - GetBlockCounter: 154 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 101.393ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.975ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 127 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.01 MB - CloseTime: 21.720us - CompressTime: 0ns - ExecTime: 233.329ms - InputRows: 480.081K (480081) - LocalBytesSent: 6.86 MB - LocalSendTime: 560.566us - LocalSentRows: 199.922K (199922) - MemoryUsage: - PeakMemoryUsage: 14.59 MB - MergeBlockTime: 0ns - OpenTime: 52.183us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s968ms - RowsProduced: 480.081K (480081) - RpcAvgTime: 187.989ms - RpcCount: 70 - RpcMaxTime: 2s70ms - RpcMinTime: 1s770ms - RpcSumTime: 13s159ms - SerializeBatchTime: 143.364ms - SplitBlockDistributeByChannelTime: 36.708ms - SplitBlockHashComputeTime: 20.533ms - UncompressedRowBatchSize: 9.72 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 405ns - BlocksProduced: 154 - CloseTime: 53.417us - ExecTime: 78.48ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 956.101us - ProcessConjunctTime: 73.654us - ProjectionTime: 4.69ms - RowsProduced: 480.081K (480081) - RowsRead: 480.081K (480081) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.805ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 72.25ms - 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: [44.363ms, ] - PerScannerRowsRead: [480.08K, ] - PerScannerWaitTime: [7.805ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 41.18ms - MemoryUsage: - FreeBlocks: 5.98 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 930.779us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.227us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.445ms - ScannerCtxSchedTime: 7.802ms - ScannerFilterTime: 405.481us - ScannerGetBlockTime: 43.756ms - ScannerInitTime: 807.44us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.847us - BlockConditionsFilteredBloomFilterTime: 8.998us - BlockConditionsFilteredDictTime: 3.405us - BlockConditionsFilteredTime: 229.142us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 163.410us - BlockInitSeekCount: 31 - BlockInitSeekTime: 37.901us - BlockInitTime: 419.20us - BlockLoadTime: 43.221ms - BlocksLoad: 410 - CachedPagesNum: 1.059K (1059) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 812 - FirstReadSeekTime: 201.281us - FirstReadTime: 5.570ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.929us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 29.195ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.883ms - OutputIndexResultColumnTimer: 56.588us - 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: 28.64us - TotalPagesNum: 1.059K (1059) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.855ms PipelineXTask (index=3):(Active: 195.784ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 195.189ms - CloseTime: 111.68us - GetBlockTime: 1.28ms - OpenTime: 321.628us - PrepareTime: 155.464us - SinkTime: 193.198ms - GetBlockCounter: 195 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 118.195ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.441ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 174 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.28 MB - CloseTime: 40.782us - CompressTime: 0ns - ExecTime: 193.214ms - InputRows: 659.979K (659979) - LocalBytesSent: 9.44 MB - LocalSendTime: 642.141us - LocalSentRows: 274.977K (274977) - MemoryUsage: - PeakMemoryUsage: 19.50 MB - MergeBlockTime: 0ns - OpenTime: 60.686us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s510ms - RowsProduced: 659.979K (659979) - RpcAvgTime: 178.461ms - RpcCount: 98 - RpcMaxTime: 2s718ms - RpcMinTime: 2s418ms - RpcSumTime: 17s489ms - SerializeBatchTime: 59.345ms - SplitBlockDistributeByChannelTime: 37.83ms - SplitBlockHashComputeTime: 87.43ms - UncompressedRowBatchSize: 13.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 380ns - BlocksProduced: 195 - CloseTime: 65.12us - ExecTime: 176.973ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 387.572us - ProcessConjunctTime: 72.990us - ProjectionTime: 49.627ms - RowsProduced: 659.979K (659979) - RowsRead: 659.979K (659979) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.551ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 125.893ms - 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: [68.957ms, ] - PerScannerRowsRead: [659.98K, ] - PerScannerWaitTime: [2.551ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 66.235ms - MemoryUsage: - FreeBlocks: 8.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 969.441us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.452us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.465ms - ScannerCtxSchedTime: 2.546ms - ScannerFilterTime: 353.975us - ScannerGetBlockTime: 68.428ms - ScannerInitTime: 214.189us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.305us - BlockConditionsFilteredBloomFilterTime: 8.493us - BlockConditionsFilteredDictTime: 2.911us - BlockConditionsFilteredTime: 156.45us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 90.691us - BlockInitSeekCount: 35 - BlockInitSeekTime: 50.994us - BlockInitTime: 369.984us - BlockLoadTime: 68.111ms - BlocksLoad: 345 - CachedPagesNum: 880 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 682 - FirstReadSeekTime: 157.289us - FirstReadTime: 4.581ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.815us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 54.829ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 3.574ms - OutputIndexResultColumnTimer: 46.373us - 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: 23.152us - TotalPagesNum: 880 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.555ms PipelineXTask (index=4):(Active: 148.296ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 147.839ms - CloseTime: 77.533us - GetBlockTime: 501.351us - OpenTime: 207.698us - PrepareTime: 165.707us - SinkTime: 146.934ms - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 40.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 171.921ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 67 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.94 MB - CloseTime: 15.905us - CompressTime: 0ns - ExecTime: 146.982ms - InputRows: 200.87K (200870) - LocalBytesSent: 2.87 MB - LocalSendTime: 201.820us - LocalSentRows: 83.525K (83525) - MemoryUsage: - PeakMemoryUsage: 7.17 MB - MergeBlockTime: 0ns - OpenTime: 55.848us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s30ms - RowsProduced: 200.87K (200870) - RpcAvgTime: 174.40ms - RpcCount: 35 - RpcMaxTime: 1s21ms - RpcMinTime: 653.392ms - RpcSumTime: 6s91ms - SerializeBatchTime: 114.556ms - SplitBlockDistributeByChannelTime: 20.36ms - SplitBlockHashComputeTime: 8.155ms - UncompressedRowBatchSize: 4.07 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 348ns - BlocksProduced: 60 - CloseTime: 58.227us - ExecTime: 47.892ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 274.708us - ProcessConjunctTime: 65.68us - ProjectionTime: 2.144ms - RowsProduced: 200.87K (200870) - RowsRead: 200.87K (200870) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 40.600us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 44.929ms - 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: [41.520ms, ] - PerScannerRowsRead: [200.87K, ] - PerScannerWaitTime: [40.600us, ] - BlockConvertTime: 0ns - BlockFetchTime: 41.293ms - MemoryUsage: - FreeBlocks: 8.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 671.465us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.389us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.846ms - ScannerCtxSchedTime: 39.71us - ScannerFilterTime: 69.289us - ScannerGetBlockTime: 41.420ms - ScannerInitTime: 105.362us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 937ns - BlockConditionsFilteredBloomFilterTime: 2.753us - BlockConditionsFilteredDictTime: 770ns - BlockConditionsFilteredTime: 39.839us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 23.730us - BlockInitSeekCount: 8 - BlockInitSeekTime: 25.176us - BlockInitTime: 106.179us - BlockLoadTime: 41.711ms - BlocksLoad: 61 - CachedPagesNum: 153 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 120 - FirstReadSeekTime: 45.822us - FirstReadTime: 812.126us - IOTimer: 0ns - InvertedIndexFilterTime: 3.455us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 38.804ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 907.553us - OutputIndexResultColumnTimer: 9.693us - 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.858us - TotalPagesNum: 153 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 662.182us Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 74.285ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 59.363ms - CloseTime: 78.954us - GetBlockTime: 182.390us - OpenTime: 14.639ms - PrepareTime: 194.211us - SinkTime: 44.454ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.559ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.155ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 999.11 KB - CloseTime: 20.799us - CompressTime: 0ns - ExecTime: 44.523ms - InputRows: 98.869K (98869) - LocalBytesSent: 1.98 MB - LocalSendTime: 88.481us - LocalSentRows: 57.623K (57623) - MemoryUsage: - PeakMemoryUsage: 4.38 MB - MergeBlockTime: 0ns - OpenTime: 58.665us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s698ms - RowsProduced: 98.869K (98869) - RpcAvgTime: 2s794ms - RpcCount: 13 - RpcMaxTime: 7s684ms - RpcMinTime: 6s647ms - RpcSumTime: 36s333ms - SerializeBatchTime: 31.982ms - SplitBlockDistributeByChannelTime: 7.347ms - SplitBlockHashComputeTime: 3.221ms - UncompressedRowBatchSize: 1.43 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 573ns - BlocksProduced: 28 - CloseTime: 54.257us - ExecTime: 134.154ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 14.717ms - ProcessConjunctTime: 66.234us - ProjectionTime: 391.220us - RowsProduced: 98.869K (98869) - RowsRead: 98.869K (98869) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 121.251ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 118.803ms - 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: [9.514ms, ] - PerScannerRowsRead: [98.87K, ] - PerScannerWaitTime: [121.251ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 9.211ms - MemoryUsage: - FreeBlocks: 3.92 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 423.978us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.534us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.888ms - ScannerCtxSchedTime: 121.249ms - ScannerFilterTime: 73.618us - ScannerGetBlockTime: 9.394ms - ScannerInitTime: 179.668us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 428ns - BlockConditionsFilteredBloomFilterTime: 960ns - BlockConditionsFilteredDictTime: 292ns - BlockConditionsFilteredTime: 22.325us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 15.410us - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.342us - BlockInitTime: 51.186us - BlockLoadTime: 9.501ms - BlocksLoad: 139 - CachedPagesNum: 360 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 276 - FirstReadSeekTime: 41.589us - FirstReadTime: 1.448ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.886us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.610ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 412.681us - OutputIndexResultColumnTimer: 11.854us - 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.711us - TotalPagesNum: 360 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 720.735us PipelineXTask (index=1):(Active: 88.148ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 87.583ms - CloseTime: 84.367us - GetBlockTime: 721.79us - OpenTime: 226.765us - PrepareTime: 244.470us - SinkTime: 86.329ms - GetBlockCounter: 95 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 56.974ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.293ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 89 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.51 MB - CloseTime: 22.745us - CompressTime: 0ns - ExecTime: 86.373ms - InputRows: 340.087K (340087) - LocalBytesSent: 6.80 MB - LocalSendTime: 575.800us - LocalSentRows: 197.97K (197970) - MemoryUsage: - PeakMemoryUsage: 13.78 MB - MergeBlockTime: 0ns - OpenTime: 56.721us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s571ms - RowsProduced: 340.087K (340087) - RpcAvgTime: 1s513ms - RpcCount: 35 - RpcMaxTime: 10s600ms - RpcMinTime: 10s590ms - RpcSumTime: 52s965ms - SerializeBatchTime: 28.860ms - SplitBlockDistributeByChannelTime: 40.782ms - SplitBlockHashComputeTime: 11.213ms - UncompressedRowBatchSize: 4.93 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 690ns - BlocksProduced: 95 - CloseTime: 57.678us - ExecTime: 401.470ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 381.404us - ProcessConjunctTime: 84.600us - ProjectionTime: 19.19ms - RowsProduced: 340.087K (340087) - RowsRead: 340.087K (340087) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 12.230ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 381.286ms - 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: [188.899ms, ] - PerScannerRowsRead: [340.09K, ] - PerScannerWaitTime: [12.230ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 187.103ms - MemoryUsage: - FreeBlocks: 7.50 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 82.731ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.206us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.924ms - ScannerCtxSchedTime: 12.223ms - ScannerFilterTime: 401.13us - ScannerGetBlockTime: 188.309ms - ScannerInitTime: 112.420us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 1.638us - BlockConditionsFilteredBloomFilterTime: 3.130us - BlockConditionsFilteredDictTime: 853ns - BlockConditionsFilteredTime: 80.688us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 59.772us - BlockInitSeekCount: 17 - BlockInitSeekTime: 27.633us - BlockInitTime: 171.865us - BlockLoadTime: 269.903ms - BlocksLoad: 367 - CachedPagesNum: 974 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 730 - FirstReadSeekTime: 158.616us - FirstReadTime: 4.974ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.441us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 259.352ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.714ms - OutputIndexResultColumnTimer: 59.713us - 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: 18.677us - TotalPagesNum: 974 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.552ms PipelineXTask (index=2):(Active: 156.523ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 145.776ms - CloseTime: 71.688us - GetBlockTime: 764.228us - OpenTime: 10.478ms - PrepareTime: 186.174us - SinkTime: 134.50ms - GetBlockCounter: 138 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 75.746ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.81ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 128 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.17 MB - CloseTime: 20.766us - CompressTime: 0ns - ExecTime: 134.91ms - InputRows: 500.734K (500734) - LocalBytesSent: 10.04 MB - LocalSendTime: 568.478us - LocalSentRows: 292.301K (292301) - MemoryUsage: - PeakMemoryUsage: 19.60 MB - MergeBlockTime: 0ns - OpenTime: 69.479us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s527ms - RowsProduced: 500.734K (500734) - RpcAvgTime: 1s135ms - RpcCount: 51 - RpcMaxTime: 11s665ms - RpcMinTime: 11s564ms - RpcSumTime: 57s929ms - SerializeBatchTime: 24.38ms - SplitBlockDistributeByChannelTime: 86.502ms - SplitBlockHashComputeTime: 16.403ms - UncompressedRowBatchSize: 7.23 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 600ns - BlocksProduced: 138 - CloseTime: 47.160us - ExecTime: 261.281ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 10.551ms - ProcessConjunctTime: 70.994us - ProjectionTime: 3.319ms - RowsProduced: 500.734K (500734) - RowsRead: 500.734K (500734) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 161.915ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 246.617ms - 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: [75.728ms, ] - PerScannerRowsRead: [500.73K, ] - PerScannerWaitTime: [161.915ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 73.820ms - MemoryUsage: - FreeBlocks: 6.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 543.815us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.796us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.712ms - ScannerCtxSchedTime: 161.909ms - ScannerFilterTime: 293.67us - ScannerGetBlockTime: 75.300ms - ScannerInitTime: 10.368ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 1.807us - BlockConditionsFilteredBloomFilterTime: 3.499us - BlockConditionsFilteredDictTime: 1.94us - BlockConditionsFilteredTime: 78.259us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 56.831us - BlockInitSeekCount: 25 - BlockInitSeekTime: 19.974us - BlockInitTime: 176.139us - BlockLoadTime: 74.952ms - BlocksLoad: 384 - CachedPagesNum: 1.004K (1004) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 762 - FirstReadSeekTime: 135.447us - FirstReadTime: 4.430ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.826us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 65.76ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.926ms - OutputIndexResultColumnTimer: 56.338us - 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: 13.745us - TotalPagesNum: 1.004K (1004) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.435ms PipelineXTask (index=3):(Active: 137.991ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 137.570ms - CloseTime: 69.458us - GetBlockTime: 1.104ms - OpenTime: 163.696us - PrepareTime: 173.564us - SinkTime: 135.752ms - GetBlockCounter: 210 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 94.939ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.280ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 173 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.77 MB - CloseTime: 20.89us - CompressTime: 0ns - ExecTime: 135.776ms - InputRows: 674.788K (674788) - LocalBytesSent: 13.52 MB - LocalSendTime: 10.938ms - LocalSentRows: 393.857K (393857) - MemoryUsage: - PeakMemoryUsage: 26.30 MB - MergeBlockTime: 0ns - OpenTime: 69.468us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s720ms - RowsProduced: 674.788K (674788) - RpcAvgTime: 842.550ms - RpcCount: 70 - RpcMaxTime: 11s811ms - RpcMinTime: 11s785ms - RpcSumTime: 58s978ms - SerializeBatchTime: 32.99ms - SplitBlockDistributeByChannelTime: 61.754ms - SplitBlockHashComputeTime: 22.768ms - UncompressedRowBatchSize: 9.75 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 636ns - BlocksProduced: 210 - CloseTime: 45.294us - ExecTime: 360.832ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 237.449us - ProcessConjunctTime: 48.260us - ProjectionTime: 22.200ms - RowsProduced: 674.788K (674788) - RowsRead: 674.788K (674788) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 46.536ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 337.218ms - 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: [73.967ms, ] - PerScannerRowsRead: [674.79K, ] - PerScannerWaitTime: [46.536ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 71.103ms - MemoryUsage: - FreeBlocks: 8.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 561.670us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.193us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 61.318ms - ScannerCtxSchedTime: 46.529ms - ScannerFilterTime: 489.611us - ScannerGetBlockTime: 73.217ms - ScannerInitTime: 94.757us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.261us - BlockConditionsFilteredBloomFilterTime: 6.95us - BlockConditionsFilteredDictTime: 2.31us - BlockConditionsFilteredTime: 126.946us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 89.288us - BlockInitSeekCount: 33 - BlockInitSeekTime: 39.544us - BlockInitTime: 268.663us - BlockLoadTime: 72.392ms - BlocksLoad: 382 - CachedPagesNum: 982 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 756 - FirstReadSeekTime: 212.543us - FirstReadTime: 5.405ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.326us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 58.560ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 3.547ms - OutputIndexResultColumnTimer: 51.38us - 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: 18.858us - TotalPagesNum: 982 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.173ms PipelineXTask (index=4):(Active: 213.722ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 213.191ms - CloseTime: 92.689us - GetBlockTime: 1.291ms - OpenTime: 237.469us - PrepareTime: 191.177us - SinkTime: 210.846ms - GetBlockCounter: 254 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 97.933ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.408ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 156 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.08 MB - CloseTime: 26.741us - CompressTime: 0ns - ExecTime: 210.834ms - InputRows: 597.567K (597567) - LocalBytesSent: 11.98 MB - LocalSendTime: 9.247ms - LocalSentRows: 349.008K (349008) - MemoryUsage: - PeakMemoryUsage: 23.40 MB - MergeBlockTime: 0ns - OpenTime: 61.20us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s685ms - RowsProduced: 597.567K (597567) - RpcAvgTime: 951.595ms - RpcCount: 62 - RpcMaxTime: 11s838ms - RpcMinTime: 11s774ms - RpcSumTime: 58s998ms - SerializeBatchTime: 37.350ms - SplitBlockDistributeByChannelTime: 122.917ms - SplitBlockHashComputeTime: 32.387ms - UncompressedRowBatchSize: 8.63 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 749ns - BlocksProduced: 254 - CloseTime: 61.105us - ExecTime: 290.439ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 329.767us - ProcessConjunctTime: 74.602us - ProjectionTime: 78.507ms - RowsProduced: 597.567K (597567) - RowsRead: 597.567K (597567) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 94.10ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 210.321ms - 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: [29.940ms, ] - PerScannerRowsRead: [597.57K, ] - PerScannerWaitTime: [94.010ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 28.432ms - MemoryUsage: - FreeBlocks: 10.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 7.424ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 16.237us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.918ms - ScannerCtxSchedTime: 94.11ms - ScannerFilterTime: 271.186us - ScannerGetBlockTime: 29.553ms - ScannerInitTime: 134.152us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.904us - BlockConditionsFilteredBloomFilterTime: 6.19us - BlockConditionsFilteredDictTime: 1.692us - BlockConditionsFilteredTime: 116.200us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 79.372us - BlockInitSeekCount: 25 - BlockInitSeekTime: 224.40us - BlockInitTime: 446.426us - BlockLoadTime: 36.15ms - BlocksLoad: 260 - CachedPagesNum: 678 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 128.29us - FirstReadTime: 9.921ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.590us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 20.315ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.346ms - OutputIndexResultColumnTimer: 33.173us - 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: 12.70us - TotalPagesNum: 678 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.191ms PipelineXTask (index=5):(Active: 122.931ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 122.494ms - CloseTime: 122.207us - GetBlockTime: 1.289ms - OpenTime: 119.253us - PrepareTime: 188.480us - SinkTime: 120.415ms - GetBlockCounter: 286 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 89.200ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.30ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 173 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.84 MB - CloseTime: 31.713us - CompressTime: 0ns - ExecTime: 120.445ms - InputRows: 674.15K (674150) - LocalBytesSent: 13.53 MB - LocalSendTime: 728.165us - LocalSentRows: 394.038K (394038) - MemoryUsage: - PeakMemoryUsage: 26.48 MB - MergeBlockTime: 0ns - OpenTime: 82.172us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s773ms - RowsProduced: 674.15K (674150) - RpcAvgTime: 850.350ms - RpcCount: 70 - RpcMaxTime: 11s916ms - RpcMinTime: 11s891ms - RpcSumTime: 59s524ms - SerializeBatchTime: 35.158ms - SplitBlockDistributeByChannelTime: 39.772ms - SplitBlockHashComputeTime: 37.490ms - UncompressedRowBatchSize: 9.72 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 557ns - BlocksProduced: 285 - CloseTime: 85.510us - ExecTime: 418.303ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 193.500us - ProcessConjunctTime: 43.410us - ProjectionTime: 132.271ms - RowsProduced: 674.15K (674150) - RowsRead: 674.15K (674150) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 97.296ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 284.488ms - 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: [40.163ms, ] - PerScannerRowsRead: [674.15K, ] - PerScannerWaitTime: [97.296ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 38.129ms - MemoryUsage: - FreeBlocks: 10.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 656.61us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.776us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.438ms - ScannerCtxSchedTime: 97.291ms - ScannerFilterTime: 404.303us - ScannerGetBlockTime: 39.601ms - ScannerInitTime: 59.637us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 8.66us - BlockConditionsFilteredBloomFilterTime: 5.642us - BlockConditionsFilteredDictTime: 1.400us - BlockConditionsFilteredTime: 101.435us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 64.890us - BlockInitSeekCount: 26 - BlockInitSeekTime: 319.650us - BlockInitTime: 526.57us - BlockLoadTime: 39.140ms - BlocksLoad: 291 - CachedPagesNum: 765 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 576 - FirstReadSeekTime: 152.734us - FirstReadTime: 4.312ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.681us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 27.138ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.110ms - OutputIndexResultColumnTimer: 55.481us - 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: 17.781us - TotalPagesNum: 765 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.887ms PipelineXTask (index=6):(Active: 122.806ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 122.312ms - CloseTime: 73.258us - GetBlockTime: 490.923us - OpenTime: 219.813us - PrepareTime: 192.165us - SinkTime: 121.372ms - GetBlockCounter: 56 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 39.667ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.521ms DATA_STREAM_SINK_OPERATOR (id=312,dst_id=312): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.99 MB - CloseTime: 21.133us - CompressTime: 0ns - ExecTime: 121.445ms - InputRows: 191.383K (191383) - LocalBytesSent: 3.83 MB - LocalSendTime: 263.382us - LocalSentRows: 111.664K (111664) - MemoryUsage: - PeakMemoryUsage: 8.02 MB - MergeBlockTime: 0ns - OpenTime: 76.316us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s636ms - RowsProduced: 191.383K (191383) - RpcAvgTime: 2s175ms - RpcCount: 20 - RpcMaxTime: 8s710ms - RpcMinTime: 8s690ms - RpcSumTime: 43s515ms - SerializeBatchTime: 30.573ms - SplitBlockDistributeByChannelTime: 80.244ms - SplitBlockHashComputeTime: 7.120ms - UncompressedRowBatchSize: 2.77 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 650ns - BlocksProduced: 56 - CloseTime: 48.386us - ExecTime: 437.164ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 287.498us - ProcessConjunctTime: 110.585us - ProjectionTime: 170.845ms - RowsProduced: 191.383K (191383) - RowsRead: 191.383K (191383) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 61.618ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 265.506ms - 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: [31.482ms, ] - PerScannerRowsRead: [191.38K, ] - PerScannerWaitTime: [61.618ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 31.112ms - MemoryUsage: - FreeBlocks: 7.89 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 861.670us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.364us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.397ms - ScannerCtxSchedTime: 61.616ms - ScannerFilterTime: 110.167us - ScannerGetBlockTime: 31.323ms - ScannerInitTime: 80.440us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 630ns - BlockConditionsFilteredBloomFilterTime: 1.548us - BlockConditionsFilteredDictTime: 536ns - BlockConditionsFilteredTime: 33.598us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 23.392us - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.104us - BlockInitTime: 85.35us - BlockLoadTime: 31.652ms - BlocksLoad: 57 - CachedPagesNum: 141 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 112 - FirstReadSeekTime: 46.867us - FirstReadTime: 957.518us - IOTimer: 0ns - InvertedIndexFilterTime: 2.840us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.430ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 23.181ms - OutputIndexResultColumnTimer: 11.257us - 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: 3.891us - TotalPagesNum: 141 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 717.441us Fragment 32: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.14ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.804ms - CloseTime: 49.930us - GetBlockTime: 1.168ms - OpenTime: 5.514us - PrepareTime: 148.784us - SinkTime: 560.439us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.951ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 563.515us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.808us - CompressTime: 0ns - ExecTime: 649.697us - InputRows: 756 - LocalBytesSent: 52.21 KB - LocalSendTime: 94.27us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 67.740us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.39ms - RowsProduced: 756 - RpcAvgTime: 2.172ms - RpcCount: 2 - RpcMaxTime: 2.245ms - RpcMinTime: 2.99ms - RpcSumTime: 4.345ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 101.301us - SplitBlockHashComputeTime: 56.389us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 17.560us - ExecTime: 1.149ms - InitProbeSideTime: 353.649us - JoinFilterTimer: 661ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 24.654us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.583us - ProbeFindNextTime: 0ns - ProbeRows: 11.224K (11224) - ProbeTime: 905.962us - ProbeWhenBuildSideOutputTime: 54.310us - ProbeWhenProbeSideOutputTime: 19.827us - ProbeWhenProcessHashTableTime: 98.250us - ProbeWhenSearchHashTableTime: 220.127us - ProjectionTime: 122.751us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s2ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 13 - BytesReceived: 131.96 KB - CloseTime: 4.869us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 300.31us - ExecTime: 67.870us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 19.687us - ProjectionTime: 0ns - RowsProduced: 11.224K (11224) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s628ms PipelineXTask (index=2):(Active: 1.660ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.411ms - CloseTime: 117.460us - GetBlockTime: 947.720us - OpenTime: 6.197us - PrepareTime: 120.749us - SinkTime: 383.383us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.531ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.371us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.677us - CompressTime: 0ns - ExecTime: 456.927us - InputRows: 738 - LocalBytesSent: 50.88 KB - LocalSendTime: 73.161us - LocalSentRows: 738 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 62.995us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.306ms - RowsProduced: 738 - RpcAvgTime: 1.821ms - RpcCount: 2 - RpcMaxTime: 2.358ms - RpcMinTime: 1.285ms - RpcSumTime: 3.643ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 101.226us - SplitBlockHashComputeTime: 37.389us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.867us - ExecTime: 902.890us - InitProbeSideTime: 323.771us - JoinFilterTimer: 577ns - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 13.330us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.865us - ProbeFindNextTime: 0ns - ProbeRows: 11.191K (11191) - ProbeTime: 724.204us - ProbeWhenBuildSideOutputTime: 43.464us - ProbeWhenProbeSideOutputTime: 15.491us - ProbeWhenProcessHashTableTime: 40.904us - ProbeWhenSearchHashTableTime: 186.504us - ProjectionTime: 103.730us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s2ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 13 - BytesReceived: 131.16 KB - CloseTime: 88.722us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 211.916us - ExecTime: 157.210us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 12.63us - ProjectionTime: 0ns - RowsProduced: 11.191K (11191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s629ms PipelineXTask (index=4):(Active: 2.573ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.376ms - CloseTime: 42.396us - GetBlockTime: 1.783ms - OpenTime: 3.940us - PrepareTime: 146.492us - SinkTime: 512.191us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.508ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 577.766us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.808us - CompressTime: 0ns - ExecTime: 582.514us - InputRows: 784 - LocalBytesSent: 54.29 KB - LocalSendTime: 87.513us - LocalSentRows: 784 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 55.278us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.103ms - RowsProduced: 784 - RpcAvgTime: 2.214ms - RpcCount: 2 - RpcMaxTime: 2.287ms - RpcMinTime: 2.140ms - RpcSumTime: 4.428ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 125.385us - SplitBlockHashComputeTime: 59.159us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.964us - ExecTime: 1.682ms - InitProbeSideTime: 604.361us - JoinFilterTimer: 884ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 15.37us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.701us - ProbeFindNextTime: 0ns - ProbeRows: 11.277K (11277) - ProbeTime: 1.372ms - ProbeWhenBuildSideOutputTime: 71.136us - ProbeWhenProbeSideOutputTime: 29.505us - ProbeWhenProcessHashTableTime: 56.691us - ProbeWhenSearchHashTableTime: 416.770us - ProjectionTime: 168.863us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s0ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 13 - BytesReceived: 132.47 KB - CloseTime: 7.277us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 196.231us - ExecTime: 114.925us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 30.36us - ProjectionTime: 0ns - RowsProduced: 11.277K (11277) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s629ms PipelineXTask (index=6):(Active: 1.596ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.401ms - CloseTime: 37.840us - GetBlockTime: 951.660us - OpenTime: 3.457us - PrepareTime: 148.797us - SinkTime: 410.448us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.377ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.777us - CompressTime: 0ns - ExecTime: 483.397us - InputRows: 776 - LocalBytesSent: 53.82 KB - LocalSendTime: 107.664us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 63.808us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.836ms - RowsProduced: 776 - RpcAvgTime: 1.957ms - RpcCount: 2 - RpcMaxTime: 2.10ms - RpcMinTime: 1.903ms - RpcSumTime: 3.914ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 69.119us - SplitBlockHashComputeTime: 33.965us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.246us - ExecTime: 906.744us - InitProbeSideTime: 312.324us - JoinFilterTimer: 451ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 26.282us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.51us - ProbeFindNextTime: 0ns - ProbeRows: 11.303K (11303) - ProbeTime: 712.146us - ProbeWhenBuildSideOutputTime: 43.525us - ProbeWhenProbeSideOutputTime: 18.797us - ProbeWhenProcessHashTableTime: 42.240us - ProbeWhenSearchHashTableTime: 201.699us - ProjectionTime: 99.148us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s0ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 13 - BytesReceived: 130.99 KB - CloseTime: 16.529us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 286.97us - ExecTime: 103.434us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 21.784us - ProjectionTime: 0ns - RowsProduced: 11.303K (11303) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s630ms PipelineXTask (index=8):(Active: 1.291ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.96ms - CloseTime: 39.474us - GetBlockTime: 787.109us - OpenTime: 4.36us - PrepareTime: 146.578us - SinkTime: 261.638us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.243ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 378.186us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.396us - CompressTime: 0ns - ExecTime: 349.533us - InputRows: 767 - LocalBytesSent: 52.97 KB - LocalSendTime: 55.244us - LocalSentRows: 767 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 73.800us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.9ms - RowsProduced: 767 - RpcAvgTime: 1.821ms - RpcCount: 2 - RpcMaxTime: 1.874ms - RpcMinTime: 1.768ms - RpcSumTime: 3.643ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 61.125us - SplitBlockHashComputeTime: 30.779us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.706us - ExecTime: 750.265us - InitProbeSideTime: 249.533us - JoinFilterTimer: 372ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 14.552us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.123us - ProbeFindNextTime: 0ns - ProbeRows: 11.3K (11300) - ProbeTime: 585.924us - ProbeWhenBuildSideOutputTime: 30.977us - ProbeWhenProbeSideOutputTime: 12.201us - ProbeWhenProcessHashTableTime: 56.311us - ProbeWhenSearchHashTableTime: 159.630us - ProjectionTime: 99.204us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s1ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 13 - BytesReceived: 133.63 KB - CloseTime: 7.826us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 223.770us - ExecTime: 77.930us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 116.00 KB - OpenTime: 18.715us - ProjectionTime: 0ns - RowsProduced: 11.3K (11300) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s630ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 293.130us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 190.589us - CloseTime: 11.296us - GetBlockTime: 8.808us - OpenTime: 2.332us - PrepareTime: 84.947us - SinkTime: 161.349us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 275.179us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 50.200us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.26us - BuildRows: 757 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 30.689us - BuildTableInsertTime: 44.448us - BuildTableTime: 46.435us - CloseTime: 0ns - ExecTime: 196.348us - InputRows: 756 - MemoryUsage: - BuildBlocks: 45.57 KB - BuildKeyArena: 24.00 KB - HashTable: 7.70 KB - PeakMemoryUsage: 73.26 KB - OpenTime: 35.321us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.354us - RuntimeFilterComputeTime: 41.590us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 22.65 KB - CloseTime: 8.574us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 64.639us - ExecTime: 26.433us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 1.85 KB - OpenTime: 9.755us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s30ms PipelineXTask (index=3):(Active: 304.428us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 236.319us - CloseTime: 5.982us - GetBlockTime: 11.767us - OpenTime: 1.539us - PrepareTime: 57.146us - SinkTime: 205.130us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 291.556us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.999us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.658us - BuildRows: 739 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.50us - BuildTableInsertTime: 73.740us - BuildTableTime: 78.449us - CloseTime: 0ns - ExecTime: 225.850us - InputRows: 738 - MemoryUsage: - BuildBlocks: 44.39 KB - BuildKeyArena: 24.00 KB - HashTable: 7.61 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 21.223us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.361us - RuntimeFilterComputeTime: 37.881us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 22.21 KB - CloseTime: 4.527us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 47.18us - ExecTime: 33.117us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 1.85 KB - OpenTime: 17.851us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s30ms PipelineXTask (index=5):(Active: 263.983us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 189.79us - CloseTime: 3.600us - GetBlockTime: 21.776us - OpenTime: 1.712us - PrepareTime: 64.908us - SinkTime: 146.647us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 252.852us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 257.239us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 984ns - BuildRows: 785 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.445us - BuildTableInsertTime: 38.154us - BuildTableTime: 40.23us - CloseTime: 0ns - ExecTime: 162.927us - InputRows: 784 - MemoryUsage: - BuildBlocks: 47.40 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 75.23 KB - OpenTime: 16.944us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.498us - RuntimeFilterComputeTime: 23.465us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 23.60 KB - CloseTime: 2.748us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 34.87us - ExecTime: 49.868us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 1.85 KB - OpenTime: 26.723us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s30ms PipelineXTask (index=7):(Active: 265.857us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 201.793us - CloseTime: 2.641us - GetBlockTime: 14.561us - OpenTime: 1.949us - PrepareTime: 54.700us - SinkTime: 153.969us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 255.106us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 383.543us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.599us - BuildRows: 777 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.272us - BuildTableInsertTime: 39.308us - BuildTableTime: 40.372us - CloseTime: 0ns - ExecTime: 177.598us - InputRows: 776 - MemoryUsage: - BuildBlocks: 47.00 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 74.79 KB - OpenTime: 24.391us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.125us - RuntimeFilterComputeTime: 22.192us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 1.918us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.394us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.00 KB - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 13.564us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s30ms PipelineXTask (index=9):(Active: 243.205us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 173.649us - CloseTime: 17.36us - GetBlockTime: 6.15us - OpenTime: 1.171us - PrepareTime: 47.888us - SinkTime: 156.105us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.531us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 836.541us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 629ns - BuildRows: 768 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.399us - BuildTableInsertTime: 33.755us - BuildTableTime: 35.595us - CloseTime: 0ns - ExecTime: 170.576us - InputRows: 767 - MemoryUsage: - BuildBlocks: 46.23 KB - BuildKeyArena: 24.00 KB - HashTable: 7.75 KB - PeakMemoryUsage: 73.97 KB - OpenTime: 14.774us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 61.237us - RuntimeFilterComputeTime: 17.726us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 23.12 KB - CloseTime: 16.87us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 71.952us - ExecTime: 35.104us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 1.85 KB - OpenTime: 13.645us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s31ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.221ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.951ms - CloseTime: 118.340us - GetBlockTime: 1.316ms - OpenTime: 4.516us - PrepareTime: 134.287us - SinkTime: 524.574us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.79ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 659.467us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.63 KB - CloseTime: 20.127us - CompressTime: 0ns - ExecTime: 605.996us - InputRows: 770 - LocalBytesSent: 0.00 - LocalSendTime: 21.687us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 65.137us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 637.805ms - RowsProduced: 770 - RpcAvgTime: 635.407ms - RpcCount: 10 - RpcMaxTime: 635.564ms - RpcMinTime: 635.246ms - RpcSumTime: 6s354ms - SerializeBatchTime: 79.959us - SplitBlockDistributeByChannelTime: 87.233us - SplitBlockHashComputeTime: 63.344us - UncompressedRowBatchSize: 56.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 55.333us - ExecTime: 1.295ms - InitProbeSideTime: 348.971us - JoinFilterTimer: 739ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 20.178us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.689us - ProbeFindNextTime: 0ns - ProbeRows: 11.302K (11302) - ProbeTime: 971.739us - ProbeWhenBuildSideOutputTime: 108.390us - ProbeWhenProbeSideOutputTime: 23.111us - ProbeWhenProcessHashTableTime: 108.692us - ProbeWhenSearchHashTableTime: 206.981us - ProjectionTime: 180.594us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s30ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 11 - BytesReceived: 77.25 KB - CloseTime: 37.755us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 107.509us - ExecTime: 117.182us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 290.00 KB - PeakMemoryUsage: 290.00 KB - OpenTime: 14.310us - ProjectionTime: 0ns - RowsProduced: 11.302K (11302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s602ms PipelineXTask (index=2):(Active: 1.981ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.698ms - CloseTime: 125.890us - GetBlockTime: 1.150ms - OpenTime: 4.194us - PrepareTime: 147.388us - SinkTime: 462.840us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.830ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 723.50us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.74 KB - CloseTime: 19.364us - CompressTime: 0ns - ExecTime: 526.933us - InputRows: 770 - LocalBytesSent: 0.00 - LocalSendTime: 15.115us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 48.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 637.712ms - RowsProduced: 770 - RpcAvgTime: 635.440ms - RpcCount: 10 - RpcMaxTime: 635.531ms - RpcMinTime: 635.355ms - RpcSumTime: 6s354ms - SerializeBatchTime: 58.720us - SplitBlockDistributeByChannelTime: 100.833us - SplitBlockHashComputeTime: 55.614us - UncompressedRowBatchSize: 56.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 52.323us - ExecTime: 1.137ms - InitProbeSideTime: 404.372us - JoinFilterTimer: 713ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 15.228us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.375us - ProbeFindNextTime: 0ns - ProbeRows: 11.264K (11264) - ProbeTime: 892.119us - ProbeWhenBuildSideOutputTime: 58.655us - ProbeWhenProbeSideOutputTime: 18.114us - ProbeWhenProcessHashTableTime: 56.773us - ProbeWhenSearchHashTableTime: 220.588us - ProjectionTime: 115.960us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s30ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 11 - BytesReceived: 77.92 KB - CloseTime: 49.814us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 136.959us - ExecTime: 125.215us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 290.00 KB - PeakMemoryUsage: 290.00 KB - OpenTime: 21.589us - ProjectionTime: 0ns - RowsProduced: 11.264K (11264) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s602ms PipelineXTask (index=4):(Active: 2.11ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.790ms - CloseTime: 42.435us - GetBlockTime: 1.166ms - OpenTime: 10.98us - PrepareTime: 162.489us - SinkTime: 528.979us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.951ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.76ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.999us - CompressTime: 0ns - ExecTime: 639.328us - InputRows: 785 - LocalBytesSent: 54.44 KB - LocalSendTime: 63.509us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 99.126us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 636.726ms - RowsProduced: 785 - RpcAvgTime: 635.573ms - RpcCount: 10 - RpcMaxTime: 635.712ms - RpcMinTime: 635.415ms - RpcSumTime: 6s355ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 119.94us - SplitBlockHashComputeTime: 58.418us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 18.64us - ExecTime: 1.111ms - InitProbeSideTime: 345.244us - JoinFilterTimer: 610ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 17.439us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.279us - ProbeFindNextTime: 0ns - ProbeRows: 11.219K (11219) - ProbeTime: 893.837us - ProbeWhenBuildSideOutputTime: 60.46us - ProbeWhenProbeSideOutputTime: 27.251us - ProbeWhenProcessHashTableTime: 111.384us - ProbeWhenSearchHashTableTime: 223.428us - ProjectionTime: 123.40us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s31ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 11 - BytesReceived: 78.50 KB - CloseTime: 6.977us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 94.320us - ExecTime: 83.579us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 290.00 KB - PeakMemoryUsage: 290.00 KB - OpenTime: 14.134us - ProjectionTime: 0ns - RowsProduced: 11.219K (11219) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s602ms PipelineXTask (index=6):(Active: 1.925ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.717ms - CloseTime: 62.119us - GetBlockTime: 1.83ms - OpenTime: 5.74us - PrepareTime: 135.38us - SinkTime: 542.23us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.808ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 873.206us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.47 KB - CloseTime: 11.440us - CompressTime: 0ns - ExecTime: 613.146us - InputRows: 765 - LocalBytesSent: 0.00 - LocalSendTime: 71.259us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 63.58us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 638.689ms - RowsProduced: 765 - RpcAvgTime: 635.619ms - RpcCount: 10 - RpcMaxTime: 635.724ms - RpcMinTime: 635.526ms - RpcSumTime: 6s356ms - SerializeBatchTime: 53.426us - SplitBlockDistributeByChannelTime: 90.486us - SplitBlockHashComputeTime: 40.839us - UncompressedRowBatchSize: 55.82 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 42.337us - ExecTime: 1.63ms - InitProbeSideTime: 321.5us - JoinFilterTimer: 537ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 31.635us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.437us - ProbeFindNextTime: 0ns - ProbeRows: 11.194K (11194) - ProbeTime: 805.739us - ProbeWhenBuildSideOutputTime: 53.669us - ProbeWhenProbeSideOutputTime: 20.294us - ProbeWhenProcessHashTableTime: 79.574us - ProbeWhenSearchHashTableTime: 188.514us - ProjectionTime: 121.580us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s30ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 11 - BytesReceived: 77.67 KB - CloseTime: 5.924us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 120.725us - ExecTime: 84.706us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 290.00 KB - PeakMemoryUsage: 290.00 KB - OpenTime: 10.773us - ProjectionTime: 0ns - RowsProduced: 11.194K (11194) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s602ms PipelineXTask (index=8):(Active: 2.55ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.817ms - CloseTime: 62.512us - GetBlockTime: 1.215ms - OpenTime: 4.625us - PrepareTime: 165.228us - SinkTime: 520.830us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.977ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.574ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.239us - CompressTime: 0ns - ExecTime: 617.908us - InputRows: 758 - LocalBytesSent: 52.18 KB - LocalSendTime: 55.514us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 88.43us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 638.84ms - RowsProduced: 758 - RpcAvgTime: 637.4ms - RpcCount: 10 - RpcMaxTime: 637.73ms - RpcMinTime: 636.941ms - RpcSumTime: 6s370ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 108.120us - SplitBlockHashComputeTime: 50.26us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 40.389us - ExecTime: 1.197ms - InitProbeSideTime: 359.775us - JoinFilterTimer: 567ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 13.842us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.666us - ProbeFindNextTime: 0ns - ProbeRows: 11.356K (11356) - ProbeTime: 876.511us - ProbeWhenBuildSideOutputTime: 53.10us - ProbeWhenProbeSideOutputTime: 17.714us - ProbeWhenProcessHashTableTime: 83.838us - ProbeWhenSearchHashTableTime: 219.384us - ProjectionTime: 181.55us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s30ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 11 - BytesReceived: 78.20 KB - CloseTime: 6.40us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 105.32us - ExecTime: 66.170us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 290.00 KB - PeakMemoryUsage: 290.00 KB - OpenTime: 13.593us - ProjectionTime: 0ns - RowsProduced: 11.356K (11356) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s602ms PipelineXTask (index=10):(Active: 1.675ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.528ms - CloseTime: 25.192us - GetBlockTime: 1.19ms - OpenTime: 4.794us - PrepareTime: 111.281us - SinkTime: 456.820us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.637ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.725ms DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.00 KB - CloseTime: 7.990us - CompressTime: 0ns - ExecTime: 513.527us - InputRows: 777 - LocalBytesSent: 0.00 - LocalSendTime: 17.239us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 81.34 KB - MergeBlockTime: 0ns - OpenTime: 51.973us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 638.204ms - RowsProduced: 777 - RpcAvgTime: 636.667ms - RpcCount: 10 - RpcMaxTime: 637.73ms - RpcMinTime: 635.244ms - RpcSumTime: 6s366ms - SerializeBatchTime: 78.27us - SplitBlockDistributeByChannelTime: 82.214us - SplitBlockHashComputeTime: 35.93us - UncompressedRowBatchSize: 56.61 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 10.279us - ExecTime: 973.682us - InitProbeSideTime: 352.411us - JoinFilterTimer: 473ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 15.566us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.812us - ProbeFindNextTime: 0ns - ProbeRows: 11.176K (11176) - ProbeTime: 808.12us - ProbeWhenBuildSideOutputTime: 54.98us - ProbeWhenProbeSideOutputTime: 18.997us - ProbeWhenProcessHashTableTime: 68.882us - ProbeWhenSearchHashTableTime: 210.813us - ProjectionTime: 93.903us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s31ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 11 - BytesReceived: 78.27 KB - CloseTime: 5.291us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 101.84us - ExecTime: 74.0us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 290.00 KB - PeakMemoryUsage: 290.00 KB - OpenTime: 17.552us - ProjectionTime: 0ns - RowsProduced: 11.176K (11176) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s601ms PipelineXTask (index=12):(Active: 1.849ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.606ms - CloseTime: 81.591us - GetBlockTime: 1.24ms - OpenTime: 4.526us - PrepareTime: 150.598us - SinkTime: 502.671us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 857.516us DATA_STREAM_SINK_OPERATOR (id=310,dst_id=310): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.18 KB - CloseTime: 23.85us - CompressTime: 0ns - ExecTime: 590.893us - InputRows: 754 - LocalBytesSent: 0.00 - LocalSendTime: 41.572us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 73.34 KB - MergeBlockTime: 0ns - OpenTime: 68.624us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 637.484ms - RowsProduced: 754 - RpcAvgTime: 636.635ms - RpcCount: 10 - RpcMaxTime: 636.702ms - RpcMinTime: 636.522ms - RpcSumTime: 6s366ms - SerializeBatchTime: 52.47us - SplitBlockDistributeByChannelTime: 112.363us - SplitBlockHashComputeTime: 38.363us - UncompressedRowBatchSize: 54.94 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=309): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 35.33us - ExecTime: 988.501us - InitProbeSideTime: 326.307us - JoinFilterTimer: 553ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 17.832us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.264us - ProbeFindNextTime: 0ns - ProbeRows: 11.312K (11312) - ProbeTime: 766.693us - ProbeWhenBuildSideOutputTime: 65.827us - ProbeWhenProbeSideOutputTime: 18.714us - ProbeWhenProcessHashTableTime: 58.737us - ProbeWhenSearchHashTableTime: 179.358us - ProjectionTime: 111.77us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s31ms EXCHANGE_OPERATOR (id=308): - BlocksProduced: 11 - BytesReceived: 79.60 KB - CloseTime: 9.889us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 195.329us - ExecTime: 104.998us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 290.00 KB - PeakMemoryUsage: 290.00 KB - OpenTime: 30.600us - ProjectionTime: 0ns - RowsProduced: 11.312K (11312) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s603ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 257.509us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 165.252us - CloseTime: 5.455us - GetBlockTime: 9.784us - OpenTime: 2.31us - PrepareTime: 70.948us - SinkTime: 136.483us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 236.663us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 584.228us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.14us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.611us - BuildTableInsertTime: 52.807us - BuildTableTime: 54.369us - CloseTime: 0ns - ExecTime: 175.681us - InputRows: 770 - MemoryUsage: - BuildBlocks: 46.63 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 74.39 KB - OpenTime: 39.606us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.682us - RuntimeFilterComputeTime: 19.186us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.294us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 64.37 KB - OpenTime: 11.874us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s62ms PipelineXTask (index=3):(Active: 254.495us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 193.376us - CloseTime: 4.843us - GetBlockTime: 7.757us - OpenTime: 4.929us - PrepareTime: 46.639us - SinkTime: 157.921us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 241.353us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.765ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 970ns - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.310us - BuildTableInsertTime: 59.261us - BuildTableTime: 61.271us - CloseTime: 0ns - ExecTime: 173.42us - InputRows: 770 - MemoryUsage: - BuildBlocks: 46.50 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 74.26 KB - OpenTime: 15.650us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.699us - RuntimeFilterComputeTime: 38.23us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 23.19 KB - CloseTime: 3.761us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 34.164us - ExecTime: 23.398us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 12.643us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s61ms PipelineXTask (index=5):(Active: 213.545us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 152.433us - CloseTime: 2.487us - GetBlockTime: 10.658us - OpenTime: 2.123us - PrepareTime: 51.292us - SinkTime: 117.813us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 203.81us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 550.46us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 908ns - BuildRows: 786 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.746us - BuildTableInsertTime: 41.882us - BuildTableTime: 42.918us - CloseTime: 0ns - ExecTime: 137.62us - InputRows: 785 - MemoryUsage: - BuildBlocks: 47.54 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 75.38 KB - OpenTime: 20.397us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 864ns - RuntimeFilterComputeTime: 19.570us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.30us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.00 KB - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 73.48 KB - OpenTime: 13.442us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s64ms PipelineXTask (index=7):(Active: 333.167us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 245.17us - CloseTime: 2.53us - GetBlockTime: 16.742us - OpenTime: 1.926us - PrepareTime: 79.104us - SinkTime: 198.660us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 322.263us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 509.670us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.693us - BuildRows: 766 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 78.670us - BuildTableInsertTime: 35.597us - BuildTableTime: 36.812us - CloseTime: 0ns - ExecTime: 222.490us - InputRows: 765 - MemoryUsage: - BuildBlocks: 46.33 KB - BuildKeyArena: 24.00 KB - HashTable: 7.74 KB - PeakMemoryUsage: 74.07 KB - OpenTime: 24.979us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.136us - RuntimeFilterComputeTime: 18.261us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 23.09 KB - CloseTime: 1.542us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 33.802us - ExecTime: 30.551us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.870us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s63ms PipelineXTask (index=9):(Active: 248.627us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 160.880us - CloseTime: 20.77us - GetBlockTime: 8.374us - OpenTime: 2.327us - PrepareTime: 60.476us - SinkTime: 130.146us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.586us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 393.276us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 599ns - BuildRows: 759 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.410us - BuildTableInsertTime: 32.503us - BuildTableTime: 35.75us - CloseTime: 0ns - ExecTime: 154.314us - InputRows: 758 - MemoryUsage: - BuildBlocks: 45.52 KB - BuildKeyArena: 24.00 KB - HashTable: 7.71 KB - PeakMemoryUsage: 73.22 KB - OpenTime: 24.896us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.77us - RuntimeFilterComputeTime: 28.908us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 18.835us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.826us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 64.00 KB - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 65.85 KB - OpenTime: 17.462us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s64ms PipelineXTask (index=11):(Active: 208.912us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 152.53us - CloseTime: 4.680us - GetBlockTime: 5.70us - OpenTime: 2.53us - PrepareTime: 45.492us - SinkTime: 131.238us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 198.392us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 944.170us HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 762ns - BuildRows: 778 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.807us - BuildTableInsertTime: 31.911us - BuildTableTime: 33.541us - CloseTime: 0ns - ExecTime: 145.822us - InputRows: 777 - MemoryUsage: - BuildBlocks: 46.98 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 74.78 KB - OpenTime: 14.866us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 32.273us - RuntimeFilterComputeTime: 19.626us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 23.50 KB - CloseTime: 3.574us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 50.473us - ExecTime: 18.744us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 10.331us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s64ms PipelineXTask (index=13):(Active: 208.504us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 145.606us - CloseTime: 2.901us - GetBlockTime: 8.470us - OpenTime: 2.271us - PrepareTime: 52.762us - SinkTime: 114.295us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 198.418us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.48ms HASH_JOIN_SINK_OPERATOR (id=309): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 999ns - BuildRows: 755 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.734us - BuildTableInsertTime: 37.161us - BuildTableTime: 38.374us - CloseTime: 0ns - ExecTime: 134.513us - InputRows: 754 - MemoryUsage: - BuildBlocks: 45.59 KB - BuildKeyArena: 24.00 KB - HashTable: 7.69 KB - PeakMemoryUsage: 73.27 KB - OpenTime: 20.811us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.574us - RuntimeFilterComputeTime: 20.442us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=303): - BlocksProduced: 2 - BytesReceived: 22.75 KB - CloseTime: 2.139us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 45.251us - ExecTime: 23.830us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 64.00 KB - PeakMemoryUsage: 1.85 KB - OpenTime: 14.175us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s64ms Fragment 33: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.599ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.474ms - CloseTime: 21.167us - GetBlockTime: 3.223ms - OpenTime: 2.704us - PrepareTime: 93.398us - SinkTime: 3.208ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.567ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 418.272us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 132.60 KB - CloseTime: 17.577us - CompressTime: 0ns - ExecTime: 3.282ms - InputRows: 16.956K (16956) - LocalBytesSent: 281.00 KB - LocalSendTime: 67.487us - LocalSentRows: 9.837K (9837) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 59.835us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s869ms - RowsProduced: 16.956K (16956) - RpcAvgTime: 4s852ms - RpcCount: 5 - RpcMaxTime: 4s852ms - RpcMinTime: 4s851ms - RpcSumTime: 24s260ms - SerializeBatchTime: 667.375us - SplitBlockDistributeByChannelTime: 1.33ms - SplitBlockHashComputeTime: 842.659us - UncompressedRowBatchSize: 213.37 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 808ns - DeserializeAndMergeTime: 0ns - ExecTime: 3.221ms - GetResultsTime: 1.703ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 253.477us - HashTableSize: 16.956K (16956) - InsertKeysToColumnTime: 1.141ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.51us - ProjectionTime: 1.468ms - RowsProduced: 16.956K (16956) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s183ms PipelineXTask (index=2):(Active: 4.474ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.325ms - CloseTime: 30.675us - GetBlockTime: 2.153ms - OpenTime: 4.157us - PrepareTime: 108.450us - SinkTime: 2.133ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.435ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 231.796us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 131.58 KB - CloseTime: 25.870us - CompressTime: 0ns - ExecTime: 2.238ms - InputRows: 16.94K (16940) - LocalBytesSent: 282.52 KB - LocalSendTime: 47.213us - LocalSentRows: 9.887K (9887) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 81.733us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s869ms - RowsProduced: 16.94K (16940) - RpcAvgTime: 4s851ms - RpcCount: 5 - RpcMaxTime: 4s851ms - RpcMinTime: 4s851ms - RpcSumTime: 24s258ms - SerializeBatchTime: 416.43us - SplitBlockDistributeByChannelTime: 759.879us - SplitBlockHashComputeTime: 523.259us - UncompressedRowBatchSize: 211.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 1.197us - DeserializeAndMergeTime: 0ns - ExecTime: 2.149ms - GetResultsTime: 1.105ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 134.927us - HashTableSize: 16.94K (16940) - InsertKeysToColumnTime: 734.832us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.534us - ProjectionTime: 1.4ms - RowsProduced: 16.94K (16940) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s185ms PipelineXTask (index=4):(Active: 3.901ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.783ms - CloseTime: 29.220us - GetBlockTime: 1.836ms - OpenTime: 2.379us - PrepareTime: 80.884us - SinkTime: 1.914ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.864ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 260.656us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 132.89 KB - CloseTime: 24.978us - CompressTime: 0ns - ExecTime: 1.993ms - InputRows: 16.932K (16932) - LocalBytesSent: 280.14 KB - LocalSendTime: 24.306us - LocalSentRows: 9.805K (9805) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 56.141us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s872ms - RowsProduced: 16.932K (16932) - RpcAvgTime: 4s851ms - RpcCount: 5 - RpcMaxTime: 4s852ms - RpcMinTime: 4s850ms - RpcSumTime: 24s258ms - SerializeBatchTime: 361.581us - SplitBlockDistributeByChannelTime: 741.475us - SplitBlockHashComputeTime: 460.465us - UncompressedRowBatchSize: 213.68 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 768ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.836ms - GetResultsTime: 994.930us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 156.330us - HashTableSize: 16.932K (16932) - InsertKeysToColumnTime: 614.580us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.946us - ProjectionTime: 803.639us - RowsProduced: 16.932K (16932) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s189ms PipelineXTask (index=6):(Active: 3.130ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.987ms - CloseTime: 17.41us - GetBlockTime: 1.478ms - OpenTime: 2.699us - PrepareTime: 118.21us - SinkTime: 1.485ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 272.756us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 131.54 KB - CloseTime: 14.546us - CompressTime: 0ns - ExecTime: 1.563ms - InputRows: 17.052K (17052) - LocalBytesSent: 285.52 KB - LocalSendTime: 38.227us - LocalSentRows: 9.996K (9996) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 66.93us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s872ms - RowsProduced: 17.052K (17052) - RpcAvgTime: 4s851ms - RpcCount: 5 - RpcMaxTime: 4s852ms - RpcMinTime: 4s851ms - RpcSumTime: 24s259ms - SerializeBatchTime: 268.523us - SplitBlockDistributeByChannelTime: 531.334us - SplitBlockHashComputeTime: 342.468us - UncompressedRowBatchSize: 211.54 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 577ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.481ms - GetResultsTime: 813.479us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 107.644us - HashTableSize: 17.052K (17052) - InsertKeysToColumnTime: 499.332us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.633us - ProjectionTime: 640.615us - RowsProduced: 17.052K (17052) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s188ms PipelineXTask (index=8):(Active: 5.348ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.170ms - CloseTime: 57.116us - GetBlockTime: 2.197ms - OpenTime: 3.102us - PrepareTime: 111.946us - SinkTime: 2.924ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.282ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 292.418us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 130.79 KB - CloseTime: 51.992us - CompressTime: 0ns - ExecTime: 3.58ms - InputRows: 16.999K (16999) - LocalBytesSent: 285.25 KB - LocalSendTime: 132.5us - LocalSentRows: 9.985K (9985) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 85.308us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s999ms - RowsProduced: 16.999K (16999) - RpcAvgTime: 4s997ms - RpcCount: 5 - RpcMaxTime: 4s998ms - RpcMinTime: 4s997ms - RpcSumTime: 24s989ms - SerializeBatchTime: 431.243us - SplitBlockDistributeByChannelTime: 1.244ms - SplitBlockHashComputeTime: 513.844us - UncompressedRowBatchSize: 210.32 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 1.47us - DeserializeAndMergeTime: 0ns - ExecTime: 2.187ms - GetResultsTime: 1.158ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 140.489us - HashTableSize: 16.999K (16999) - InsertKeysToColumnTime: 656.716us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.386us - ProjectionTime: 971.569us - RowsProduced: 16.999K (16999) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s28ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 16.24ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.934ms - CloseTime: 23.116us - GetBlockTime: 169.517us - OpenTime: 3.446us - PrepareTime: 56.610us - SinkTime: 15.645ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.948ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.454ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 8.40us - DeserializeAndMergeTime: 7.18ms - ExecTime: 15.672ms - ExprTime: 0ns - HashTableComputeTime: 8.432ms - HashTableEmplaceTime: 7.530ms - HashTableInputCount: 16.956K (16956) - InputRows: 16.956K (16956) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 15.609ms - OpenTime: 25.507us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 6 - BytesReceived: 643.21 KB - CloseTime: 12.823us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.81ms - ExecTime: 189.887us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.08 MB - MemoryUsage: - Blocks: 744.00 KB - PeakMemoryUsage: 744.86 KB - OpenTime: 15.952us - ProjectionTime: 0ns - RowsProduced: 16.956K (16956) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s165ms PipelineXTask (index=3):(Active: 14.874ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 14.784ms - CloseTime: 15.466us - GetBlockTime: 131.827us - OpenTime: 3.117us - PrepareTime: 66.306us - SinkTime: 14.568ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.837ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.420ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 4.910us - DeserializeAndMergeTime: 7.76ms - ExecTime: 14.586ms - ExprTime: 0ns - HashTableComputeTime: 7.230ms - HashTableEmplaceTime: 6.382ms - HashTableInputCount: 16.94K (16940) - InputRows: 16.94K (16940) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 14.531ms - OpenTime: 17.528us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 8 - BytesReceived: 609.64 KB - CloseTime: 8.994us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 466.987us - ExecTime: 146.301us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 988.00 KB - MemoryUsage: - Blocks: 744.00 KB - PeakMemoryUsage: 744.86 KB - OpenTime: 14.112us - ProjectionTime: 0ns - RowsProduced: 16.94K (16940) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s168ms PipelineXTask (index=5):(Active: 12.741ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.642ms - CloseTime: 15.134us - GetBlockTime: 106.971us - OpenTime: 2.388us - PrepareTime: 65.492us - SinkTime: 12.461ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.695ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.331ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 7.724us - DeserializeAndMergeTime: 5.44ms - ExecTime: 12.496ms - ExprTime: 0ns - HashTableComputeTime: 7.175ms - HashTableEmplaceTime: 6.503ms - HashTableInputCount: 16.932K (16932) - InputRows: 16.932K (16932) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 12.445ms - OpenTime: 31.167us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 6 - BytesReceived: 622.57 KB - CloseTime: 6.208us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 519.760us - ExecTime: 124.503us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 988.00 KB - MemoryUsage: - Blocks: 744.00 KB - PeakMemoryUsage: 744.86 KB - OpenTime: 18.747us - ProjectionTime: 0ns - RowsProduced: 16.932K (16932) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s172ms PipelineXTask (index=7):(Active: 16.818ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 16.722ms - CloseTime: 21.240us - GetBlockTime: 117.772us - OpenTime: 2.714us - PrepareTime: 66.920us - SinkTime: 16.497ms - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.765ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 577.889us AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 3.333us - DeserializeAndMergeTime: 8.147ms - ExecTime: 16.509ms - ExprTime: 0ns - HashTableComputeTime: 8.67ms - HashTableEmplaceTime: 7.175ms - HashTableInputCount: 17.052K (17052) - InputRows: 17.052K (17052) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 16.475ms - OpenTime: 13.819us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 9 - BytesReceived: 520.29 KB - CloseTime: 17.68us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 368.712us - ExecTime: 163.95us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 744.00 KB - PeakMemoryUsage: 744.86 KB - OpenTime: 37.541us - ProjectionTime: 0ns - RowsProduced: 17.052K (17052) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s171ms PipelineXTask (index=9):(Active: 13.704ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 13.627ms - CloseTime: 15.318us - GetBlockTime: 67.779us - OpenTime: 4.468us - PrepareTime: 51.107us - SinkTime: 13.495ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 574.328us AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 5.136us - DeserializeAndMergeTime: 5.905ms - ExecTime: 13.522ms - ExprTime: 0ns - HashTableComputeTime: 7.298ms - HashTableEmplaceTime: 6.624ms - 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.458ms - OpenTime: 24.712us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 7 - BytesReceived: 639.52 KB - CloseTime: 8.809us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 496.469us - ExecTime: 80.705us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1003.25 KB - MemoryUsage: - Blocks: 744.00 KB - PeakMemoryUsage: 712.86 KB - OpenTime: 9.867us - ProjectionTime: 0ns - RowsProduced: 16.999K (16999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s14ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 3.948ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.806ms - CloseTime: 38.385us - GetBlockTime: 1.556ms - OpenTime: 3.30us - PrepareTime: 94.427us - SinkTime: 2.212ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.900ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 183.493us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 182.41 KB - CloseTime: 33.920us - CompressTime: 0ns - ExecTime: 2.305ms - InputRows: 16.746K (16746) - LocalBytesSent: 198.78 KB - LocalSendTime: 73.434us - LocalSentRows: 6.96K (6960) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 61.891us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.347ms - RowsProduced: 16.746K (16746) - RpcAvgTime: 1.508ms - RpcCount: 7 - RpcMaxTime: 2.506ms - RpcMinTime: 782.490us - RpcSumTime: 10.558ms - SerializeBatchTime: 475.386us - SplitBlockDistributeByChannelTime: 580.193us - SplitBlockHashComputeTime: 460.434us - UncompressedRowBatchSize: 293.32 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 1.213us - DeserializeAndMergeTime: 0ns - ExecTime: 1.546ms - GetResultsTime: 843.661us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 93.926us - HashTableSize: 16.746K (16746) - InsertKeysToColumnTime: 505.664us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.756us - ProjectionTime: 665.239us - RowsProduced: 16.746K (16746) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 8s628ms PipelineXTask (index=2):(Active: 4.295ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.174ms - CloseTime: 15.394us - GetBlockTime: 1.863ms - OpenTime: 1.924us - PrepareTime: 99.168us - SinkTime: 2.281ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.274ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.504us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 182.04 KB - CloseTime: 12.806us - CompressTime: 0ns - ExecTime: 2.359ms - InputRows: 16.778K (16778) - LocalBytesSent: 200.44 KB - LocalSendTime: 43.618us - LocalSentRows: 7.018K (7018) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 68.901us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.716ms - RowsProduced: 16.778K (16778) - RpcAvgTime: 1.53ms - RpcCount: 7 - RpcMaxTime: 1.400ms - RpcMinTime: 796.397us - RpcSumTime: 7.376ms - SerializeBatchTime: 469.689us - SplitBlockDistributeByChannelTime: 696.765us - SplitBlockHashComputeTime: 401.972us - UncompressedRowBatchSize: 292.62 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 804ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.864ms - GetResultsTime: 1.73ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 106.431us - HashTableSize: 16.778K (16778) - InsertKeysToColumnTime: 603.872us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.806us - ProjectionTime: 741.717us - RowsProduced: 16.778K (16778) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 7s847ms PipelineXTask (index=4):(Active: 5.847ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.711ms - CloseTime: 22.646us - GetBlockTime: 2.553ms - OpenTime: 2.339us - PrepareTime: 107.62us - SinkTime: 3.112ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.817ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 194.558us DATA_STREAM_SINK_OPERATOR (id=308,dst_id=308): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 182.29 KB - CloseTime: 18.868us - CompressTime: 0ns - ExecTime: 3.207ms - InputRows: 16.715K (16715) - LocalBytesSent: 198.43 KB - LocalSendTime: 70.198us - LocalSentRows: 6.948K (6948) - MemoryUsage: - PeakMemoryUsage: 696.00 KB - MergeBlockTime: 0ns - OpenTime: 79.413us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.550ms - RowsProduced: 16.715K (16715) - RpcAvgTime: 914.224us - RpcCount: 7 - RpcMaxTime: 1.124ms - RpcMinTime: 771.551us - RpcSumTime: 6.399ms - SerializeBatchTime: 780.284us - SplitBlockDistributeByChannelTime: 801.341us - SplitBlockHashComputeTime: 746.225us - UncompressedRowBatchSize: 292.86 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=307): - BlocksProduced: 5 - CloseTime: 923ns - DeserializeAndMergeTime: 0ns - ExecTime: 2.548ms - GetResultsTime: 1.274ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 173.224us - HashTableSize: 16.715K (16715) - InsertKeysToColumnTime: 842.722us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.637us - ProjectionTime: 1.227ms - RowsProduced: 16.715K (16715) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 7s847ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 12.545ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.445ms - CloseTime: 19.903us - GetBlockTime: 82.702us - OpenTime: 2.34us - PrepareTime: 74.97us - SinkTime: 12.293ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.508ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.276ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 7.258us - DeserializeAndMergeTime: 5.369ms - ExecTime: 12.313ms - ExprTime: 0ns - HashTableComputeTime: 6.803ms - HashTableEmplaceTime: 6.85ms - HashTableInputCount: 16.746K (16746) - InputRows: 16.746K (16746) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 12.255ms - OpenTime: 17.991us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 8 - BytesReceived: 722.40 KB - CloseTime: 10.438us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 452.348us - ExecTime: 104.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 988.00 KB - MemoryUsage: - Blocks: 744.00 KB - PeakMemoryUsage: 744.43 KB - OpenTime: 18.820us - ProjectionTime: 0ns - RowsProduced: 16.746K (16746) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s615ms PipelineXTask (index=3):(Active: 12.763ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 12.694ms - CloseTime: 14.195us - GetBlockTime: 95.807us - OpenTime: 3.265us - PrepareTime: 47.634us - SinkTime: 12.522ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.443ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.824ms AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 3.708us - DeserializeAndMergeTime: 4.866ms - ExecTime: 12.535ms - ExprTime: 0ns - HashTableComputeTime: 7.491ms - HashTableEmplaceTime: 6.520ms - HashTableInputCount: 16.778K (16778) - InputRows: 16.778K (16778) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 12.489ms - OpenTime: 13.444us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 6 - BytesReceived: 483.76 KB - CloseTime: 8.531us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 367.397us - ExecTime: 114.374us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1020.00 KB - MemoryUsage: - Blocks: 744.00 KB - PeakMemoryUsage: 660.43 KB - OpenTime: 16.574us - ProjectionTime: 0ns - RowsProduced: 16.778K (16778) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s830ms PipelineXTask (index=5):(Active: 12.778ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 12.705ms - CloseTime: 12.141us - GetBlockTime: 60.242us - OpenTime: 2.550us - PrepareTime: 53.291us - SinkTime: 12.583ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.750ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 507.686us AGGREGATION_SINK_OPERATOR (id=307): - BuildTime: 0ns - CloseTime: 6.58us - DeserializeAndMergeTime: 5.729ms - ExecTime: 12.604ms - ExprTime: 0ns - HashTableComputeTime: 6.649ms - HashTableEmplaceTime: 5.822ms - HashTableInputCount: 16.715K (16715) - InputRows: 16.715K (16715) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.03 MB - SerializeKeyArena: 3.28 MB - MergeTime: 12.556ms - OpenTime: 18.662us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=306): - BlocksProduced: 6 - BytesReceived: 518.14 KB - CloseTime: 4.926us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 460.568us - ExecTime: 74.120us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.46 MB - MemoryUsage: - Blocks: 1.23 MB - PeakMemoryUsage: 1.23 MB - OpenTime: 14.670us - ProjectionTime: 0ns - RowsProduced: 16.715K (16715) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s834ms Fragment 34: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 671.950us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 247.127us - CloseTime: 50.739us - GetBlockTime: 34.286us - OpenTime: 93.342us - PrepareTime: 272.748us - SinkTime: 97.217us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 611.846us - WaitBfTime: 778.524ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.226ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.35us - CompressTime: 0ns - ExecTime: 165.416us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 9.919us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 58.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 344.994ms - RowsProduced: 0 - RpcAvgTime: 291.902ms - RpcCount: 5 - RpcMaxTime: 291.938ms - RpcMinTime: 291.876ms - RpcSumTime: 1s459ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 509ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.881us - DeserializeAndMergeTime: 0ns - ExecTime: 39.766us - ExprTime: 0ns - GetResultsTime: 7.979us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 151ns - HashTableSize: 0 - InsertKeysToColumnTime: 435ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.22us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.790us - SerializeKeyTime: 0ns - SerializeResultTime: 10.533us - 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: 1.941us - BlocksProduced: 0 - CloseTime: 33.569us - ExecTime: 169.714ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 193.309us - ProcessConjunctTime: 21.374us - ProjectionTime: 1.676us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 14.853ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 169.465ms - 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: [4.331us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [14.853ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 154.564ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 60ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 66.480ms - ScannerCtxSchedTime: 14.851ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 947ns - ScannerInitTime: 54.407us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 802ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.995us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 31 - BlockInitSeekTime: 23.679us - BlockInitTime: 128.567us - BlockLoadTime: 154.90ms - BlocksLoad: 410 - CachedPagesNum: 207 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 130.361ms - FirstReadSeekCount: 406 - FirstReadSeekTime: 74.827us - FirstReadTime: 22.156ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.208us - 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.7us - OutputIndexResultColumnTimer: 21.217us - 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=1):(Active: 1.140ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 552.407us - CloseTime: 69.171us - GetBlockTime: 90.609us - OpenTime: 265.580us - PrepareTime: 245.779us - SinkTime: 161.719us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.58ms - WaitBfTime: 777.330ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.389ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.900us - CompressTime: 0ns - ExecTime: 257.112us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 16.42us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 80.829us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 316.354ms - RowsProduced: 0 - RpcAvgTime: 282.23ms - RpcCount: 5 - RpcMaxTime: 282.69ms - RpcMinTime: 281.994ms - RpcSumTime: 1s410ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 573ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.407us - DeserializeAndMergeTime: 0ns - ExecTime: 50.865us - ExprTime: 0ns - GetResultsTime: 11.572us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 164ns - HashTableSize: 0 - InsertKeysToColumnTime: 633ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.948us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.889us - SerializeKeyTime: 0ns - SerializeResultTime: 19.269us - 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.604us - BlocksProduced: 0 - CloseTime: 41.446us - ExecTime: 186.747ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 330.591us - ProcessConjunctTime: 88.46us - ProjectionTime: 1.737us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.133ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 186.307ms - 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.440us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [3.133ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 183.112ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 178ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 63.697ms - ScannerCtxSchedTime: 3.131ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.726us - ScannerInitTime: 147.271us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.32us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.392us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 39.553us - BlockInitTime: 182.323us - BlockLoadTime: 182.484ms - BlocksLoad: 345 - CachedPagesNum: 174 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 128.355ms - FirstReadSeekCount: 341 - FirstReadSeekTime: 90.129us - FirstReadTime: 52.446ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.690us - 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: 76.715us - OutputIndexResultColumnTimer: 20.21us - 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=2):(Active: 450.185ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 437.800ms - CloseTime: 12.52ms - GetBlockTime: 414.673ms - OpenTime: 82.410us - PrepareTime: 242.970us - SinkTime: 22.698ms - GetBlockCounter: 76 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 9 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 190.996ms - WaitBfTime: 778.132ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 207.220ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 26 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.96 MB - CloseTime: 19.717us - CompressTime: 0ns - ExecTime: 22.768ms - InputRows: 68.425K (68425) - LocalBytesSent: 2.26 MB - LocalSendTime: 102.769us - LocalSentRows: 25.375K (25375) - MemoryUsage: - PeakMemoryUsage: 6.98 MB - MergeBlockTime: 0ns - OpenTime: 65.389us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 633.869ms - RowsProduced: 68.425K (68425) - RpcAvgTime: 219.929ms - RpcCount: 14 - RpcMaxTime: 651.745ms - RpcMinTime: 480.329ms - RpcSumTime: 3s79ms - SerializeBatchTime: 5.572ms - SplitBlockDistributeByChannelTime: 11.256ms - SplitBlockHashComputeTime: 2.444ms - UncompressedRowBatchSize: 3.54 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 17 - BuildConvertToPartitionedTime: 0ns - BuildTime: 389.363ms - CloseTime: 11.963ms - DeserializeAndMergeTime: 0ns - ExecTime: 425.704ms - ExprTime: 164.436us - GetResultsTime: 23.864ms - HashTableComputeTime: 142.861ms - HashTableEmplaceTime: 95.764ms - HashTableInputCount: 242.95K (242950) - HashTableIterateTime: 649.768us - HashTableSize: 68.425K (68425) - InsertKeysToColumnTime: 3.49ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 3.00 MB - PeakMemoryUsage: 10.81 MB - SerializeKeyArena: 7.81 MB - MergeTime: 0ns - OpenTime: 30.79us - ProjectionTime: 0ns - RowsProduced: 68.425K (68425) - SerializeDataTime: 19.606ms - SerializeKeyTime: 0ns - SerializeResultTime: 23.938ms - 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.23us - BlocksProduced: 60 - CloseTime: 63.377us - ExecTime: 170.169ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 152.357us - ProcessConjunctTime: 29.264us - ProjectionTime: 37.219ms - RowsProduced: 242.95K (242950) - RowsRead: 242.95K (242950) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.918ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 131.931ms - 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: [87.596ms, ] - PerScannerRowsRead: [242.95K, ] - PerScannerWaitTime: [7.918ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 87.326ms - MemoryUsage: - FreeBlocks: 10.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 856.641us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.789us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.809ms - ScannerCtxSchedTime: 7.916ms - ScannerFilterTime: 48.233us - ScannerGetBlockTime: 87.518ms - ScannerInitTime: 35.160us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 155ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.31us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 12.311us - BlockInitTime: 37.677us - BlockLoadTime: 88.38ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 11.740ms - FirstReadSeekCount: 60 - FirstReadSeekTime: 23.150us - FirstReadTime: 18.807ms - IOTimer: 0ns - InvertedIndexFilterTime: 387ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 56.988ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 32.113us - OutputIndexResultColumnTimer: 6.181us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.11ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 394.408us - CloseTime: 85.779us - GetBlockTime: 63.530us - OpenTime: 235.295us - PrepareTime: 285.213us - SinkTime: 71.168us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 915.918us - WaitBfTime: 717.265ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.759ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 11 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.137us - CompressTime: 0ns - ExecTime: 151.987us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 13.843us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 58.8us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s541ms - RowsProduced: 0 - RpcAvgTime: 4s525ms - RpcCount: 3 - RpcMaxTime: 4s525ms - RpcMinTime: 4s525ms - RpcSumTime: 13s575ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 288ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.308us - DeserializeAndMergeTime: 0ns - ExecTime: 43.735us - ExprTime: 0ns - GetResultsTime: 12.204us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 113ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.294us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.538us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.354us - SerializeKeyTime: 0ns - SerializeResultTime: 15.323us - 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.489us - BlocksProduced: 0 - CloseTime: 57.48us - ExecTime: 295.363ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 356.378us - ProcessConjunctTime: 82.732us - ProjectionTime: 1.405us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.753ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 294.903ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [4.088us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [3.753ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 291.82ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 145ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.851ms - ScannerCtxSchedTime: 3.750ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 979ns - ScannerInitTime: 103.969us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.468us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.137us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 29.393us - BlockInitTime: 157.222us - BlockLoadTime: 234.462ms - BlocksLoad: 384 - CachedPagesNum: 192 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 138.472ms - FirstReadSeekCount: 381 - FirstReadSeekTime: 140.272us - FirstReadTime: 16.114ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.71us - 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: 92.853us - OutputIndexResultColumnTimer: 26.507us - 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: 22.473ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 11.173ms - CloseTime: 54.674us - GetBlockTime: 73.367us - OpenTime: 10.974ms - PrepareTime: 259.296us - SinkTime: 95.121us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.149ms - WaitBfTime: 717.382ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.924ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 11 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.454us - CompressTime: 0ns - ExecTime: 172.239us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 18.666us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 63.238us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s491ms - RowsProduced: 0 - RpcAvgTime: 4s475ms - RpcCount: 3 - RpcMaxTime: 4s475ms - RpcMinTime: 4s475ms - RpcSumTime: 13s425ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 435ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.360us - DeserializeAndMergeTime: 0ns - ExecTime: 40.924us - ExprTime: 0ns - GetResultsTime: 12.766us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 158ns - HashTableSize: 0 - InsertKeysToColumnTime: 456ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 19.937us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.902us - SerializeKeyTime: 0ns - SerializeResultTime: 17.343us - 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: 2.277us - BlocksProduced: 0 - CloseTime: 35.252us - ExecTime: 218.296ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 11.61ms - ProcessConjunctTime: 85.426us - ProjectionTime: 1.680us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 13.859ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 207.145ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [6.197us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [13.859ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 193.209ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 181ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 90.429ms - ScannerCtxSchedTime: 13.844ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.197us - ScannerInitTime: 10.827ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.196us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.614us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 48.956us - BlockInitTime: 188.181us - BlockLoadTime: 192.391ms - BlocksLoad: 382 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 184.297ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 167.388us - FirstReadTime: 5.525ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.669us - 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: 99.41us - OutputIndexResultColumnTimer: 47.344us - 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=2):(Active: 696.933us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 319.707us - CloseTime: 49.31us - GetBlockTime: 59.775us - OpenTime: 118.251us - PrepareTime: 201.998us - SinkTime: 115.414us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 636.217us - WaitBfTime: 717.482ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.966ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 11 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.584us - CompressTime: 0ns - ExecTime: 182.3us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 19.312us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 54.323us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s399ms - RowsProduced: 0 - RpcAvgTime: 4s382ms - RpcCount: 3 - RpcMaxTime: 4s382ms - RpcMinTime: 4s382ms - RpcSumTime: 13s146ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 409ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.790us - DeserializeAndMergeTime: 0ns - ExecTime: 46.658us - ExprTime: 0ns - GetResultsTime: 14.557us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 180ns - HashTableSize: 0 - InsertKeysToColumnTime: 735ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.915us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.726us - SerializeKeyTime: 0ns - SerializeResultTime: 19.200us - 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: 2.463us - BlocksProduced: 0 - CloseTime: 29.84us - ExecTime: 213.611ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 177.294us - ProcessConjunctTime: 27.718us - ProjectionTime: 1.896us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.629ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 213.367ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [5.715us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [5.629ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 207.659ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 174ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 62.372ms - ScannerCtxSchedTime: 5.626ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.500us - ScannerInitTime: 69.147us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 3.877us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.834us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 259.175us - BlockInitTime: 365.113us - BlockLoadTime: 207.154ms - BlocksLoad: 260 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 201.688ms - FirstReadSeekCount: 257 - FirstReadSeekTime: 103.869us - FirstReadTime: 3.525ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.782us - 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: 118.785us - OutputIndexResultColumnTimer: 31.470us - 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=3):(Active: 54.30ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 26.955ms - CloseTime: 115.152us - GetBlockTime: 56.576us - OpenTime: 26.748ms - PrepareTime: 202.31us - SinkTime: 119.981us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 880.122us - WaitBfTime: 717.542ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.5ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 11 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.148us - CompressTime: 0ns - ExecTime: 194.963us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 31.127us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 50.481us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s315ms - RowsProduced: 0 - RpcAvgTime: 4s294ms - RpcCount: 3 - RpcMaxTime: 4s294ms - RpcMinTime: 4s294ms - RpcSumTime: 12s884ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 722ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.545us - DeserializeAndMergeTime: 0ns - ExecTime: 52.98us - ExprTime: 0ns - GetResultsTime: 13.299us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 134ns - HashTableSize: 0 - InsertKeysToColumnTime: 797ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 29.318us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.873us - SerializeKeyTime: 0ns - SerializeResultTime: 16.988us - 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: 1.644us - BlocksProduced: 0 - CloseTime: 69.862us - ExecTime: 157.875ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 26.814ms - ProcessConjunctTime: 39.583us - ProjectionTime: 1.973us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.663ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 130.954ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [7.066us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [3.663ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 127.213ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 163ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.293ms - ScannerCtxSchedTime: 3.661ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.814us - ScannerInitTime: 26.668ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.267us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.399us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 26 - BlockInitSeekTime: 285.497us - BlockInitTime: 393.761us - BlockLoadTime: 126.644ms - BlocksLoad: 291 - CachedPagesNum: 150 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 61.380ms - FirstReadSeekCount: 288 - FirstReadSeekTime: 78.199us - FirstReadTime: 63.502ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.468us - 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: 38.573us - OutputIndexResultColumnTimer: 20.230us - 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=4):(Active: 310.432ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 295.621ms - CloseTime: 14.479ms - GetBlockTime: 283.791ms - OpenTime: 129.32us - PrepareTime: 194.164us - SinkTime: 11.370ms - GetBlockCounter: 72 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 161.581ms - WaitBfTime: 717.644ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.181ms DATA_STREAM_SINK_OPERATOR (id=306,dst_id=306): - Partitioner: Crc32HashPartitioner(8) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.68 MB - CloseTime: 28.130us - CompressTime: 0ns - ExecTime: 11.443ms - InputRows: 66.693K (66693) - LocalBytesSent: 3.47 MB - LocalSendTime: 125.879us - LocalSentRows: 41.829K (41829) - MemoryUsage: - PeakMemoryUsage: 7.26 MB - MergeBlockTime: 0ns - OpenTime: 51.999us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s272ms - RowsProduced: 66.693K (66693) - RpcAvgTime: 2s891ms - RpcCount: 7 - RpcMaxTime: 7s270ms - RpcMinTime: 6s482ms - RpcSumTime: 20s238ms - SerializeBatchTime: 2.327ms - SplitBlockDistributeByChannelTime: 6.143ms - SplitBlockHashComputeTime: 1.341ms - UncompressedRowBatchSize: 2.01 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=305): - BlocksProduced: 17 - BuildConvertToPartitionedTime: 0ns - BuildTime: 269.364ms - CloseTime: 14.341ms - DeserializeAndMergeTime: 0ns - ExecTime: 297.301ms - ExprTime: 178.258us - GetResultsTime: 13.198ms - HashTableComputeTime: 147.675ms - HashTableEmplaceTime: 130.662ms - HashTableInputCount: 227.011K (227011) - HashTableIterateTime: 414.723us - HashTableSize: 66.693K (66693) - InsertKeysToColumnTime: 1.727ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 3.00 MB - PeakMemoryUsage: 10.81 MB - SerializeKeyArena: 7.81 MB - MergeTime: 0ns - OpenTime: 23.276us - ProjectionTime: 0ns - RowsProduced: 66.693K (66693) - SerializeDataTime: 10.803ms - SerializeKeyTime: 0ns - SerializeResultTime: 13.232ms - 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: 2.949us - BlocksProduced: 56 - CloseTime: 100.743us - ExecTime: 396.662ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 173.76us - ProcessConjunctTime: 39.32us - ProjectionTime: 114.588ms - RowsProduced: 227.011K (227011) - RowsRead: 227.011K (227011) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.331ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 281.71ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 92, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 93, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME] - PerScannerRunningTime: [155.411ms, ] - PerScannerRowsRead: [227.01K, ] - PerScannerWaitTime: [10.331ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 155.107ms - MemoryUsage: - FreeBlocks: 10.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.170ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.281us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.804ms - ScannerCtxSchedTime: 10.326ms - ScannerFilterTime: 53.711us - ScannerGetBlockTime: 155.320ms - ScannerInitTime: 54.99us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 451ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.610us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.427us - BlockInitTime: 52.830us - BlockLoadTime: 156.3ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 70.862ms - FirstReadSeekCount: 56 - FirstReadSeekTime: 38.771us - FirstReadTime: 823.304us - IOTimer: 0ns - InvertedIndexFilterTime: 746ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 83.645ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 39.986us - OutputIndexResultColumnTimer: 6.268us - 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 Fragment 35: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 1.247ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.68ms - CloseTime: 27.615us - GetBlockTime: 727.23us - OpenTime: 5.292us - PrepareTime: 140.908us - SinkTime: 295.437us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.210ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.336ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.11 KB - CloseTime: 13.281us - CompressTime: 0ns - ExecTime: 365.233us - InputRows: 770 - LocalBytesSent: 0.00 - LocalSendTime: 29.744us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 59.272us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.965ms - RowsProduced: 770 - RpcAvgTime: 19.256ms - RpcCount: 7 - RpcMaxTime: 19.520ms - RpcMinTime: 17.872ms - RpcSumTime: 134.794ms - SerializeBatchTime: 50.734us - SplitBlockDistributeByChannelTime: 41.183us - SplitBlockHashComputeTime: 33.103us - UncompressedRowBatchSize: 48.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.728us - ExecTime: 695.935us - InitProbeSideTime: 233.750us - JoinFilterTimer: 628ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 21.633us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.588us - ProbeFindNextTime: 0ns - ProbeRows: 8.896K (8896) - ProbeTime: 545.164us - ProbeWhenBuildSideOutputTime: 40.784us - ProbeWhenProbeSideOutputTime: 22.987us - ProbeWhenProcessHashTableTime: 12.273us - ProbeWhenSearchHashTableTime: 150.93us - ProjectionTime: 80.560us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 417.574ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 19 - BytesReceived: 95.69 KB - CloseTime: 4.718us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 172.296us - ExecTime: 74.126us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 178.50 KB - MemoryUsage: - Blocks: 381.50 KB - PeakMemoryUsage: 178.50 KB - OpenTime: 19.411us - ProjectionTime: 0ns - RowsProduced: 8.896K (8896) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s622ms PipelineXTask (index=2):(Active: 2.842ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.637ms - CloseTime: 33.585us - GetBlockTime: 1.715ms - OpenTime: 4.486us - PrepareTime: 161.960us - SinkTime: 845.725us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.797ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 225.405us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.01 KB - CloseTime: 14.697us - CompressTime: 0ns - ExecTime: 952.803us - InputRows: 765 - LocalBytesSent: 0.00 - LocalSendTime: 49.664us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 98.940us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.547ms - RowsProduced: 765 - RpcAvgTime: 19.430ms - RpcCount: 7 - RpcMaxTime: 19.558ms - RpcMinTime: 19.283ms - RpcSumTime: 136.10ms - SerializeBatchTime: 108.142us - SplitBlockDistributeByChannelTime: 103.562us - SplitBlockHashComputeTime: 92.733us - UncompressedRowBatchSize: 48.62 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.676us - ExecTime: 1.615ms - InitProbeSideTime: 430.660us - JoinFilterTimer: 1.550us - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 16.129us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.956us - ProbeFindNextTime: 0ns - ProbeRows: 8.896K (8896) - ProbeTime: 1.234ms - ProbeWhenBuildSideOutputTime: 111.889us - ProbeWhenProbeSideOutputTime: 57.134us - ProbeWhenProcessHashTableTime: 36.61us - ProbeWhenSearchHashTableTime: 320.407us - ProjectionTime: 219.148us - RowsProduced: 765 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 417.362ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 19 - BytesReceived: 102.93 KB - CloseTime: 4.135us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 188.830us - ExecTime: 120.194us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 130.50 KB - MemoryUsage: - Blocks: 371.50 KB - PeakMemoryUsage: 130.50 KB - OpenTime: 16.196us - ProjectionTime: 0ns - RowsProduced: 8.896K (8896) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s622ms PipelineXTask (index=4):(Active: 1.311ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.92ms - CloseTime: 29.331us - GetBlockTime: 739.399us - OpenTime: 5.810us - PrepareTime: 178.937us - SinkTime: 303.154us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.265ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.776ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.392us - CompressTime: 0ns - ExecTime: 416.297us - InputRows: 776 - LocalBytesSent: 47.00 KB - LocalSendTime: 46.811us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 101.986us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.157ms - RowsProduced: 776 - RpcAvgTime: 18.894ms - RpcCount: 7 - RpcMaxTime: 18.977ms - RpcMinTime: 18.835ms - RpcSumTime: 132.263ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 48.881us - SplitBlockHashComputeTime: 35.442us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 7.839us - ExecTime: 706.375us - InitProbeSideTime: 190.540us - JoinFilterTimer: 814ns - MemoryUsage: - PeakMemoryUsage: 32.00 KB - ProbeKeyArena: 32.00 KB - OpenTime: 23.47us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.754us - ProbeFindNextTime: 0ns - ProbeRows: 8.823K (8823) - ProbeTime: 511.961us - ProbeWhenBuildSideOutputTime: 40.503us - ProbeWhenProbeSideOutputTime: 21.888us - ProbeWhenProcessHashTableTime: 13.602us - ProbeWhenSearchHashTableTime: 155.359us - ProjectionTime: 114.940us - RowsProduced: 776 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 417.419ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 19 - BytesReceived: 100.10 KB - CloseTime: 4.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 158.297us - ExecTime: 76.74us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 159.50 KB - MemoryUsage: - Blocks: 377.50 KB - PeakMemoryUsage: 159.50 KB - OpenTime: 18.225us - ProjectionTime: 0ns - RowsProduced: 8.823K (8823) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s620ms PipelineXTask (index=6):(Active: 2.804ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.653ms - CloseTime: 30.425us - GetBlockTime: 1.817ms - OpenTime: 3.604us - PrepareTime: 111.621us - SinkTime: 745.123us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.764ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.996ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.42 KB - CloseTime: 12.344us - CompressTime: 0ns - ExecTime: 798.744us - InputRows: 777 - LocalBytesSent: 0.00 - LocalSendTime: 42.215us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 48.797us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.244ms - RowsProduced: 777 - RpcAvgTime: 20.0ms - RpcCount: 7 - RpcMaxTime: 20.381ms - RpcMinTime: 19.205ms - RpcSumTime: 140.6ms - SerializeBatchTime: 98.580us - SplitBlockDistributeByChannelTime: 136.48us - SplitBlockHashComputeTime: 106.125us - UncompressedRowBatchSize: 49.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.366us - ExecTime: 1.695ms - InitProbeSideTime: 532.825us - JoinFilterTimer: 2.68us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 14.13us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.654us - ProbeFindNextTime: 0ns - ProbeRows: 8.916K (8916) - ProbeTime: 1.339ms - ProbeWhenBuildSideOutputTime: 121.900us - ProbeWhenProbeSideOutputTime: 46.485us - ProbeWhenProcessHashTableTime: 24.66us - ProbeWhenSearchHashTableTime: 354.253us - ProjectionTime: 220.439us - RowsProduced: 777 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 417.480ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 19 - BytesReceived: 100.39 KB - CloseTime: 5.429us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 133.361us - ExecTime: 131.837us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.00 KB - MemoryUsage: - Blocks: 391.50 KB - PeakMemoryUsage: 145.00 KB - OpenTime: 14.229us - ProjectionTime: 0ns - RowsProduced: 8.916K (8916) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s620ms PipelineXTask (index=8):(Active: 1.937ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.754ms - CloseTime: 35.17us - GetBlockTime: 1.290ms - OpenTime: 4.390us - PrepareTime: 138.878us - SinkTime: 408.66us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.893ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 235.746us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.67 KB - CloseTime: 14.922us - CompressTime: 0ns - ExecTime: 469.362us - InputRows: 754 - LocalBytesSent: 0.00 - LocalSendTime: 21.810us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 51.646us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.236ms - RowsProduced: 754 - RpcAvgTime: 18.37ms - RpcCount: 7 - RpcMaxTime: 18.100ms - RpcMinTime: 17.942ms - RpcSumTime: 126.261ms - SerializeBatchTime: 54.834us - SplitBlockDistributeByChannelTime: 83.32us - SplitBlockHashComputeTime: 57.151us - UncompressedRowBatchSize: 47.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 12.789us - ExecTime: 1.230ms - InitProbeSideTime: 369.123us - JoinFilterTimer: 1.274us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 26.632us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.158us - ProbeFindNextTime: 0ns - ProbeRows: 9.018K (9018) - ProbeTime: 925.524us - ProbeWhenBuildSideOutputTime: 95.870us - ProbeWhenProbeSideOutputTime: 68.959us - ProbeWhenProcessHashTableTime: 14.360us - ProbeWhenSearchHashTableTime: 187.106us - ProjectionTime: 186.135us - RowsProduced: 754 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 417.654ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 19 - BytesReceived: 105.18 KB - CloseTime: 4.359us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 188.211us - ExecTime: 100.635us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 145.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 145.00 KB - OpenTime: 20.206us - ProjectionTime: 0ns - RowsProduced: 9.018K (9018) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s622ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 409.71us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 329.475us - CloseTime: 10.360us - GetBlockTime: 29.358us - OpenTime: 2.425us - PrepareTime: 61.677us - SinkTime: 257.604us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 388.26us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 239.720us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.808us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 35.536us - BuildTableInsertTime: 86.86us - BuildTableTime: 90.206us - CloseTime: 0ns - ExecTime: 283.598us - InputRows: 770 - MemoryUsage: - BuildBlocks: 39.73 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 67.49 KB - OpenTime: 27.582us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.141us - RuntimeFilterComputeTime: 56.646us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 2 - BytesReceived: 18.30 KB - CloseTime: 8.496us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 59.299us - ExecTime: 47.302us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.977us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s39ms PipelineXTask (index=3):(Active: 259.915us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 199.448us - CloseTime: 5.6us - GetBlockTime: 11.993us - OpenTime: 1.867us - PrepareTime: 49.998us - SinkTime: 166.871us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 248.608us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.706ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.818us - BuildRows: 766 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.868us - BuildTableInsertTime: 42.603us - BuildTableTime: 44.647us - CloseTime: 0ns - ExecTime: 183.314us - InputRows: 765 - MemoryUsage: - BuildBlocks: 39.61 KB - BuildKeyArena: 24.00 KB - HashTable: 7.74 KB - PeakMemoryUsage: 67.34 KB - OpenTime: 17.165us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.165us - RuntimeFilterComputeTime: 48.911us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.969us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.598us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 16.884us - ProjectionTime: 0ns - RowsProduced: 765 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s38ms PipelineXTask (index=5):(Active: 189.278us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 128.193us - CloseTime: 7.187us - GetBlockTime: 5.10us - OpenTime: 1.863us - PrepareTime: 48.580us - SinkTime: 109.183us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 177.229us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.786ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 970ns - BuildRows: 777 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.732us - BuildTableInsertTime: 35.525us - BuildTableTime: 37.274us - CloseTime: 0ns - ExecTime: 125.799us - InputRows: 776 - MemoryUsage: - BuildBlocks: 40.18 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 67.97 KB - OpenTime: 17.15us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.49us - RuntimeFilterComputeTime: 21.510us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.52us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.693us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.00 KB - OpenTime: 12.652us - ProjectionTime: 0ns - RowsProduced: 776 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s38ms PipelineXTask (index=7):(Active: 192.210us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 138.416us - CloseTime: 5.543us - GetBlockTime: 5.808us - OpenTime: 1.320us - PrepareTime: 43.399us - SinkTime: 118.697us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 181.219us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.856ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 668ns - BuildRows: 778 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 31.186us - BuildTableInsertTime: 43.936us - BuildTableTime: 45.151us - CloseTime: 0ns - ExecTime: 133.67us - InputRows: 777 - MemoryUsage: - BuildBlocks: 40.15 KB - BuildKeyArena: 24.00 KB - HashTable: 7.80 KB - PeakMemoryUsage: 67.95 KB - OpenTime: 14.656us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.658us - RuntimeFilterComputeTime: 18.949us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.517us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.424us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.00 KB - OpenTime: 10.511us - ProjectionTime: 0ns - RowsProduced: 777 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s38ms PipelineXTask (index=9):(Active: 228.163us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 171.281us - CloseTime: 6.344us - GetBlockTime: 9.235us - OpenTime: 1.639us - PrepareTime: 45.208us - SinkTime: 146.383us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 215.755us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.999ms HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 782ns - BuildRows: 755 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.142us - BuildTableInsertTime: 41.562us - BuildTableTime: 43.974us - CloseTime: 0ns - ExecTime: 157.585us - InputRows: 754 - MemoryUsage: - BuildBlocks: 38.96 KB - BuildKeyArena: 24.00 KB - HashTable: 7.69 KB - PeakMemoryUsage: 66.65 KB - OpenTime: 11.614us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 34.673us - RuntimeFilterComputeTime: 27.550us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.283us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.658us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 10.492us - ProjectionTime: 0ns - RowsProduced: 754 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s38ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.761ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.495ms - CloseTime: 66.20us - GetBlockTime: 1.76ms - OpenTime: 4.823us - PrepareTime: 187.565us - SinkTime: 340.268us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.685ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 494.546us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.897us - CompressTime: 0ns - ExecTime: 431.539us - InputRows: 770 - LocalBytesSent: 46.63 KB - LocalSendTime: 43.51us - LocalSentRows: 770 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 69.899us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 989.137ms - RowsProduced: 770 - RpcAvgTime: 986.957ms - RpcCount: 5 - RpcMaxTime: 987.71ms - RpcMinTime: 986.793ms - RpcSumTime: 4s934ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 77.518us - SplitBlockHashComputeTime: 46.502us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 24.910us - ExecTime: 1.21ms - InitProbeSideTime: 302.930us - JoinFilterTimer: 905ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 15.944us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.591us - ProbeFindNextTime: 0ns - ProbeRows: 8.917K (8917) - ProbeTime: 749.280us - ProbeWhenBuildSideOutputTime: 64.334us - ProbeWhenProbeSideOutputTime: 27.801us - ProbeWhenProcessHashTableTime: 17.436us - ProbeWhenSearchHashTableTime: 185.154us - ProjectionTime: 153.248us - RowsProduced: 770 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s312ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 17 - BytesReceived: 87.02 KB - CloseTime: 11.720us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 137.669us - ExecTime: 155.675us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 188.50 KB - MemoryUsage: - Blocks: 362.50 KB - PeakMemoryUsage: 188.50 KB - OpenTime: 62.446us - ProjectionTime: 0ns - RowsProduced: 8.917K (8917) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s731ms PipelineXTask (index=2):(Active: 1.737ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.539ms - CloseTime: 69.760us - GetBlockTime: 1.70ms - OpenTime: 4.646us - PrepareTime: 117.996us - SinkTime: 413.307us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.658ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.78ms DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.57 KB - CloseTime: 24.713us - CompressTime: 0ns - ExecTime: 487.176us - InputRows: 756 - LocalBytesSent: 0.00 - LocalSendTime: 35.388us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 53.21us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 988.237ms - RowsProduced: 756 - RpcAvgTime: 986.497ms - RpcCount: 5 - RpcMaxTime: 986.516ms - RpcMinTime: 986.478ms - RpcSumTime: 4s932ms - SerializeBatchTime: 76.773us - SplitBlockDistributeByChannelTime: 70.546us - SplitBlockHashComputeTime: 47.735us - UncompressedRowBatchSize: 47.81 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 24.342us - ExecTime: 1.8ms - InitProbeSideTime: 322.63us - JoinFilterTimer: 1.114us - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 17.654us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.39us - ProbeFindNextTime: 0ns - ProbeRows: 8.921K (8921) - ProbeTime: 746.291us - ProbeWhenBuildSideOutputTime: 70.501us - ProbeWhenProbeSideOutputTime: 27.505us - ProbeWhenProcessHashTableTime: 13.793us - ProbeWhenSearchHashTableTime: 151.613us - ProjectionTime: 148.469us - RowsProduced: 756 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s312ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 17 - BytesReceived: 80.45 KB - CloseTime: 15.532us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 123.482us - ExecTime: 120.525us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 203.00 KB - OpenTime: 15.835us - ProjectionTime: 0ns - RowsProduced: 8.921K (8921) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s731ms PipelineXTask (index=4):(Active: 2.395ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.174ms - CloseTime: 68.883us - GetBlockTime: 1.524ms - OpenTime: 11.77us - PrepareTime: 135.695us - SinkTime: 551.299us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.315ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 962.592us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.445us - CompressTime: 0ns - ExecTime: 623.101us - InputRows: 785 - LocalBytesSent: 47.54 KB - LocalSendTime: 89.505us - LocalSentRows: 785 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 54.922us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 987.248ms - RowsProduced: 785 - RpcAvgTime: 985.708ms - RpcCount: 5 - RpcMaxTime: 985.796ms - RpcMinTime: 985.634ms - RpcSumTime: 4s928ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 128.819us - SplitBlockHashComputeTime: 78.214us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 25.520us - ExecTime: 1.436ms - InitProbeSideTime: 449.631us - JoinFilterTimer: 1.72us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 16.774us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.630us - ProbeFindNextTime: 0ns - ProbeRows: 8.864K (8864) - ProbeTime: 1.107ms - ProbeWhenBuildSideOutputTime: 84.560us - ProbeWhenProbeSideOutputTime: 39.116us - ProbeWhenProcessHashTableTime: 24.558us - ProbeWhenSearchHashTableTime: 297.152us - ProjectionTime: 199.237us - RowsProduced: 785 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s312ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 17 - BytesReceived: 67.21 KB - CloseTime: 15.101us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 73.91us - ExecTime: 136.266us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 246.50 KB - MemoryUsage: - Blocks: 391.50 KB - PeakMemoryUsage: 246.50 KB - OpenTime: 17.877us - ProjectionTime: 0ns - RowsProduced: 8.864K (8864) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s731ms PipelineXTask (index=6):(Active: 1.413ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.216ms - CloseTime: 41.13us - GetBlockTime: 813.784us - OpenTime: 5.167us - PrepareTime: 145.725us - SinkTime: 342.165us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.364ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 513.442us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.13 KB - CloseTime: 11.664us - CompressTime: 0ns - ExecTime: 425.589us - InputRows: 738 - LocalBytesSent: 0.00 - LocalSendTime: 32.218us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 74.675us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 989.190ms - RowsProduced: 738 - RpcAvgTime: 987.5ms - RpcCount: 5 - RpcMaxTime: 987.81ms - RpcMinTime: 986.907ms - RpcSumTime: 4s935ms - SerializeBatchTime: 59.36us - SplitBlockDistributeByChannelTime: 70.153us - SplitBlockHashComputeTime: 32.522us - UncompressedRowBatchSize: 46.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 23.858us - ExecTime: 765.139us - InitProbeSideTime: 243.686us - JoinFilterTimer: 548ns - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 12.273us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.839us - ProbeFindNextTime: 0ns - ProbeRows: 8.72K (8720) - ProbeTime: 586.427us - ProbeWhenBuildSideOutputTime: 61.69us - ProbeWhenProbeSideOutputTime: 32.948us - ProbeWhenProcessHashTableTime: 12.426us - ProbeWhenSearchHashTableTime: 140.52us - ProjectionTime: 85.771us - RowsProduced: 738 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s311ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 17 - BytesReceived: 71.03 KB - CloseTime: 3.568us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 104.901us - ExecTime: 94.529us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 232.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 232.00 KB - OpenTime: 16.766us - ProjectionTime: 0ns - RowsProduced: 8.72K (8720) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s731ms PipelineXTask (index=8):(Active: 1.585ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.358ms - CloseTime: 86.739us - GetBlockTime: 949.357us - OpenTime: 5.523us - PrepareTime: 129.488us - SinkTime: 366.852us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.490ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 521.808us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.52 KB - CloseTime: 27.165us - CompressTime: 0ns - ExecTime: 457.118us - InputRows: 784 - LocalBytesSent: 0.00 - LocalSendTime: 32.43us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 72.34 KB - MergeBlockTime: 0ns - OpenTime: 65.741us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 988.957ms - RowsProduced: 784 - RpcAvgTime: 986.908ms - RpcCount: 5 - RpcMaxTime: 986.969ms - RpcMinTime: 986.817ms - RpcSumTime: 4s934ms - SerializeBatchTime: 60.245us - SplitBlockDistributeByChannelTime: 78.280us - SplitBlockHashComputeTime: 37.62us - UncompressedRowBatchSize: 49.72 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 21.661us - ExecTime: 905.266us - InitProbeSideTime: 295.47us - JoinFilterTimer: 782ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 19.846us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.521us - ProbeFindNextTime: 0ns - ProbeRows: 8.853K (8853) - ProbeTime: 686.835us - ProbeWhenBuildSideOutputTime: 53.596us - ProbeWhenProbeSideOutputTime: 44.401us - ProbeWhenProcessHashTableTime: 14.306us - ProbeWhenSearchHashTableTime: 154.463us - ProjectionTime: 110.134us - RowsProduced: 784 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s311ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 17 - BytesReceived: 68.15 KB - CloseTime: 33.592us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 75.110us - ExecTime: 121.923us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 217.50 KB - MemoryUsage: - Blocks: 391.50 KB - PeakMemoryUsage: 217.50 KB - OpenTime: 14.350us - ProjectionTime: 0ns - RowsProduced: 8.853K (8853) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s731ms PipelineXTask (index=10):(Active: 1.359ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.121ms - CloseTime: 75.643us - GetBlockTime: 799.906us - OpenTime: 5.430us - PrepareTime: 150.921us - SinkTime: 278.698us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.275ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 555.979us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.102us - CompressTime: 0ns - ExecTime: 389.512us - InputRows: 758 - LocalBytesSent: 45.52 KB - LocalSendTime: 30.541us - LocalSentRows: 758 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 90.463us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 971.326ms - RowsProduced: 758 - RpcAvgTime: 969.644ms - RpcCount: 5 - RpcMaxTime: 969.711ms - RpcMinTime: 969.565ms - RpcSumTime: 4s848ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 63.642us - SplitBlockHashComputeTime: 45.207us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 38.317us - ExecTime: 778.909us - InitProbeSideTime: 242.940us - JoinFilterTimer: 582ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 9.977us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.882us - ProbeFindNextTime: 0ns - ProbeRows: 8.856K (8856) - ProbeTime: 562.275us - ProbeWhenBuildSideOutputTime: 35.455us - ProbeWhenProbeSideOutputTime: 23.475us - ProbeWhenProcessHashTableTime: 12.610us - ProbeWhenSearchHashTableTime: 157.39us - ProjectionTime: 123.642us - RowsProduced: 758 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s329ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 17 - BytesReceived: 69.30 KB - CloseTime: 9.468us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 194.642us - ExecTime: 93.175us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 232.00 KB - MemoryUsage: - Blocks: 406.00 KB - PeakMemoryUsage: 232.00 KB - OpenTime: 23.651us - ProjectionTime: 0ns - RowsProduced: 8.856K (8856) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s731ms PipelineXTask (index=12):(Active: 1.749ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.596ms - CloseTime: 25.68us - GetBlockTime: 1.78ms - OpenTime: 5.644us - PrepareTime: 116.554us - SinkTime: 467.253us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.715ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 363.637us DATA_STREAM_SINK_OPERATOR (id=303,dst_id=303): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.04 KB - CloseTime: 8.844us - CompressTime: 0ns - ExecTime: 525.829us - InputRows: 767 - LocalBytesSent: 0.00 - LocalSendTime: 38.820us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 64.34 KB - MergeBlockTime: 0ns - OpenTime: 53.363us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 970.873ms - RowsProduced: 767 - RpcAvgTime: 969.248ms - RpcCount: 5 - RpcMaxTime: 969.299ms - RpcMinTime: 969.167ms - RpcSumTime: 4s846ms - SerializeBatchTime: 83.862us - SplitBlockDistributeByChannelTime: 85.908us - SplitBlockHashComputeTime: 54.363us - UncompressedRowBatchSize: 48.50 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=302): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.75us - ExecTime: 1.3ms - InitProbeSideTime: 336.631us - JoinFilterTimer: 1.85us - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 13.974us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.200us - ProbeFindNextTime: 0ns - ProbeRows: 8.903K (8903) - ProbeTime: 761.270us - ProbeWhenBuildSideOutputTime: 57.887us - ProbeWhenProbeSideOutputTime: 25.601us - ProbeWhenProcessHashTableTime: 18.319us - ProbeWhenSearchHashTableTime: 176.815us - ProjectionTime: 135.165us - RowsProduced: 767 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s329ms EXCHANGE_OPERATOR (id=301): - BlocksProduced: 17 - BytesReceived: 58.76 KB - CloseTime: 4.98us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 129.43us - ExecTime: 100.466us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 261.00 KB - MemoryUsage: - Blocks: 381.50 KB - PeakMemoryUsage: 261.00 KB - OpenTime: 13.498us - ProjectionTime: 0ns - RowsProduced: 8.903K (8903) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s731ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 295.716us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 227.154us - CloseTime: 8.910us - GetBlockTime: 14.744us - OpenTime: 2.430us - PrepareTime: 52.44us - SinkTime: 185.535us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 278.958us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 497.466us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.289us - BuildRows: 771 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.741us - BuildTableInsertTime: 55.66us - BuildTableTime: 60.89us - CloseTime: 0ns - ExecTime: 206.346us - InputRows: 770 - MemoryUsage: - BuildBlocks: 39.86 KB - BuildKeyArena: 24.00 KB - HashTable: 7.77 KB - PeakMemoryUsage: 67.62 KB - OpenTime: 22.361us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.445us - RuntimeFilterComputeTime: 43.126us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.485us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.601us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 10.988us - ProjectionTime: 0ns - RowsProduced: 770 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s42ms PipelineXTask (index=3):(Active: 214.235us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 145.756us - CloseTime: 2.443us - GetBlockTime: 14.572us - OpenTime: 1.826us - PrepareTime: 59.273us - SinkTime: 111.861us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 205.188us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 915.465us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 641ns - BuildRows: 757 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.917us - BuildTableInsertTime: 40.294us - BuildTableTime: 41.998us - CloseTime: 0ns - ExecTime: 131.979us - InputRows: 756 - MemoryUsage: - BuildBlocks: 38.92 KB - BuildKeyArena: 24.00 KB - HashTable: 7.70 KB - PeakMemoryUsage: 66.61 KB - OpenTime: 20.526us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.108us - RuntimeFilterComputeTime: 25.238us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.75us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.684us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 18.142us - ProjectionTime: 0ns - RowsProduced: 756 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s42ms PipelineXTask (index=5):(Active: 241.612us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 181.454us - CloseTime: 2.990us - GetBlockTime: 22.239us - OpenTime: 2.223us - PrepareTime: 49.559us - SinkTime: 136.228us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 230.544us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 681.92us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 666ns - BuildRows: 786 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 33.439us - BuildTableInsertTime: 53.952us - BuildTableTime: 55.874us - CloseTime: 0ns - ExecTime: 148.543us - InputRows: 785 - MemoryUsage: - BuildBlocks: 40.64 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 68.48 KB - OpenTime: 12.877us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 945ns - RuntimeFilterComputeTime: 25.100us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.605us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.74us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.00 KB - OpenTime: 18.900us - ProjectionTime: 0ns - RowsProduced: 785 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s43ms PipelineXTask (index=7):(Active: 1.482ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 210.269us - CloseTime: 1.147ms - GetBlockTime: 20.841us - OpenTime: 2.346us - PrepareTime: 116.504us - SinkTime: 159.617us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 326.277us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 328.937us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.117us - BuildRows: 739 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.882us - BuildTableInsertTime: 60.430us - BuildTableTime: 62.756us - CloseTime: 0ns - ExecTime: 186.515us - InputRows: 738 - MemoryUsage: - BuildBlocks: 37.91 KB - BuildKeyArena: 24.00 KB - HashTable: 7.61 KB - PeakMemoryUsage: 65.51 KB - OpenTime: 27.749us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.802us - RuntimeFilterComputeTime: 43.100us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 1.145ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.191ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 55.00 KB - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 55.00 KB - OpenTime: 26.650us - ProjectionTime: 0ns - RowsProduced: 738 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s43ms PipelineXTask (index=9):(Active: 256.172us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 193.496us - CloseTime: 5.433us - GetBlockTime: 9.56us - OpenTime: 1.970us - PrepareTime: 50.372us - SinkTime: 161.809us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 243.304us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 554.542us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.81us - BuildRows: 785 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 30.115us - BuildTableInsertTime: 43.270us - BuildTableTime: 53.17us - CloseTime: 0ns - ExecTime: 178.675us - InputRows: 784 - MemoryUsage: - BuildBlocks: 40.51 KB - BuildKeyArena: 24.00 KB - HashTable: 7.84 KB - PeakMemoryUsage: 68.34 KB - OpenTime: 17.458us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.295us - RuntimeFilterComputeTime: 26.887us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.733us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.878us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 63.00 KB - MemoryUsage: - Blocks: 63.00 KB - PeakMemoryUsage: 63.00 KB - OpenTime: 10.152us - ProjectionTime: 0ns - RowsProduced: 784 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s42ms PipelineXTask (index=11):(Active: 250.312us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 194.632us - CloseTime: 5.922us - GetBlockTime: 11.801us - OpenTime: 2.167us - PrepareTime: 42.756us - SinkTime: 159.639us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 236.899us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 270.338us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.760us - BuildRows: 759 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.449us - BuildTableInsertTime: 38.148us - BuildTableTime: 40.393us - CloseTime: 0ns - ExecTime: 170.712us - InputRows: 758 - MemoryUsage: - BuildBlocks: 38.86 KB - BuildKeyArena: 24.00 KB - HashTable: 7.71 KB - PeakMemoryUsage: 66.56 KB - OpenTime: 11.834us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.274us - RuntimeFilterComputeTime: 42.697us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 2 - BytesReceived: 18.21 KB - CloseTime: 4.660us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 84.804us - ExecTime: 29.420us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 315.00 B - OpenTime: 13.796us - ProjectionTime: 0ns - RowsProduced: 758 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s61ms PipelineXTask (index=13):(Active: 397.209us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 243.967us - CloseTime: 4.509us - GetBlockTime: 7.981us - OpenTime: 2.47us - PrepareTime: 141.377us - SinkTime: 216.968us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 384.811us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 317.830us HASH_JOIN_SINK_OPERATOR (id=302): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 842ns - BuildRows: 768 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.556us - BuildTableInsertTime: 59.512us - BuildTableTime: 61.897us - CloseTime: 0ns - ExecTime: 239.685us - InputRows: 767 - MemoryUsage: - BuildBlocks: 39.49 KB - BuildKeyArena: 24.00 KB - HashTable: 7.75 KB - PeakMemoryUsage: 67.23 KB - OpenTime: 23.147us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 53.242us - RuntimeFilterComputeTime: 51.311us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=296): - BlocksProduced: 2 - BytesReceived: 18.41 KB - CloseTime: 3.482us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 64.696us - ExecTime: 65.72us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 55.00 KB - PeakMemoryUsage: 315.00 B - OpenTime: 54.84us - ProjectionTime: 0ns - RowsProduced: 767 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s61ms Fragment 36: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.118ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.972ms - CloseTime: 17.683us - GetBlockTime: 838.87us - OpenTime: 4.865us - PrepareTime: 116.782us - SinkTime: 1.108ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.92ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 187.526us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 96.92 KB - CloseTime: 14.297us - CompressTime: 0ns - ExecTime: 1.189ms - InputRows: 8.985K (8985) - LocalBytesSent: 111.02 KB - LocalSendTime: 80.60us - LocalSentRows: 3.882K (3882) - MemoryUsage: - PeakMemoryUsage: 381.50 KB - MergeBlockTime: 0ns - OpenTime: 68.235us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 63.272ms - RowsProduced: 8.985K (8985) - RpcAvgTime: 60.431ms - RpcCount: 7 - RpcMaxTime: 60.680ms - RpcMinTime: 60.261ms - RpcSumTime: 423.23ms - SerializeBatchTime: 246.808us - SplitBlockDistributeByChannelTime: 290.280us - SplitBlockHashComputeTime: 194.247us - UncompressedRowBatchSize: 153.68 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 764ns - DeserializeAndMergeTime: 0ns - ExecTime: 848.616us - GetResultsTime: 469.813us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 71.117us - HashTableSize: 8.985K (8985) - InsertKeysToColumnTime: 287.628us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.997us - ProjectionTime: 346.734us - RowsProduced: 8.985K (8985) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s620ms PipelineXTask (index=2):(Active: 1.993ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.879ms - CloseTime: 21.164us - GetBlockTime: 850.509us - OpenTime: 2.352us - PrepareTime: 86.473us - SinkTime: 1.5ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.966ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 199.70us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 99.69 KB - CloseTime: 18.223us - CompressTime: 0ns - ExecTime: 1.80ms - InputRows: 9.002K (9002) - LocalBytesSent: 107.38 KB - LocalSendTime: 18.71us - LocalSentRows: 3.75K (3750) - MemoryUsage: - PeakMemoryUsage: 391.50 KB - MergeBlockTime: 0ns - OpenTime: 57.467us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 62.925ms - RowsProduced: 9.002K (9002) - RpcAvgTime: 60.867ms - RpcCount: 7 - RpcMaxTime: 61.36ms - RpcMinTime: 60.732ms - RpcSumTime: 426.72ms - SerializeBatchTime: 214.102us - SplitBlockDistributeByChannelTime: 316.71us - SplitBlockHashComputeTime: 188.419us - UncompressedRowBatchSize: 158.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 665ns - DeserializeAndMergeTime: 0ns - ExecTime: 859.32us - GetResultsTime: 461.289us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 65.417us - HashTableSize: 9.002K (9002) - InsertKeysToColumnTime: 298.290us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.709us - ProjectionTime: 373.249us - RowsProduced: 9.002K (9002) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s621ms PipelineXTask (index=4):(Active: 2.204ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.100ms - CloseTime: 13.221us - GetBlockTime: 968.349us - OpenTime: 1.968us - PrepareTime: 84.5us - SinkTime: 1.111ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.185ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 192.424us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 99.87 KB - CloseTime: 11.12us - CompressTime: 0ns - ExecTime: 1.178ms - InputRows: 8.9K (8900) - LocalBytesSent: 104.08 KB - LocalSendTime: 19.159us - LocalSentRows: 3.642K (3642) - MemoryUsage: - PeakMemoryUsage: 406.00 KB - MergeBlockTime: 0ns - OpenTime: 57.718us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 60.918ms - RowsProduced: 8.9K (8900) - RpcAvgTime: 59.722ms - RpcCount: 7 - RpcMaxTime: 59.903ms - RpcMinTime: 59.563ms - RpcSumTime: 418.60ms - SerializeBatchTime: 261.9us - SplitBlockDistributeByChannelTime: 319.313us - SplitBlockHashComputeTime: 215.545us - UncompressedRowBatchSize: 158.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 566ns - DeserializeAndMergeTime: 0ns - ExecTime: 972.526us - GetResultsTime: 478.713us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 53.807us - HashTableSize: 8.9K (8900) - InsertKeysToColumnTime: 321.992us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.995us - ProjectionTime: 465.269us - RowsProduced: 8.9K (8900) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s622ms PipelineXTask (index=6):(Active: 2.545ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.417ms - CloseTime: 25.640us - GetBlockTime: 1.114ms - OpenTime: 2.434us - PrepareTime: 95.639us - SinkTime: 1.281ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.512ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 221.556us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 101.01 KB - CloseTime: 21.483us - CompressTime: 0ns - ExecTime: 1.357ms - InputRows: 8.771K (8771) - LocalBytesSent: 99.21 KB - LocalSendTime: 30.260us - LocalSentRows: 3.467K (3467) - MemoryUsage: - PeakMemoryUsage: 362.50 KB - MergeBlockTime: 0ns - OpenTime: 56.9us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 63.204ms - RowsProduced: 8.771K (8771) - RpcAvgTime: 61.408ms - RpcCount: 7 - RpcMaxTime: 61.880ms - RpcMinTime: 61.170ms - RpcSumTime: 429.859ms - SerializeBatchTime: 314.410us - SplitBlockDistributeByChannelTime: 333.88us - SplitBlockHashComputeTime: 291.503us - UncompressedRowBatchSize: 159.68 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 1.108us - DeserializeAndMergeTime: 0ns - ExecTime: 1.122ms - GetResultsTime: 617.971us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 81.684us - HashTableSize: 8.771K (8771) - InsertKeysToColumnTime: 400.959us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.755us - ProjectionTime: 474.907us - RowsProduced: 8.771K (8771) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s628ms PipelineXTask (index=8):(Active: 2.495ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.380ms - CloseTime: 21.915us - GetBlockTime: 1.85ms - OpenTime: 1.882us - PrepareTime: 86.557us - SinkTime: 1.274ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.466ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 199.575us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 103.34 KB - CloseTime: 18.638us - CompressTime: 0ns - ExecTime: 1.344ms - InputRows: 8.762K (8762) - LocalBytesSent: 94.13 KB - LocalSendTime: 21.734us - LocalSentRows: 3.293K (3293) - MemoryUsage: - PeakMemoryUsage: 381.50 KB - MergeBlockTime: 0ns - OpenTime: 52.781us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 64.98ms - RowsProduced: 8.762K (8762) - RpcAvgTime: 61.621ms - RpcCount: 7 - RpcMaxTime: 61.798ms - RpcMinTime: 61.402ms - RpcSumTime: 431.350ms - SerializeBatchTime: 321.685us - SplitBlockDistributeByChannelTime: 363.751us - SplitBlockHashComputeTime: 271.900us - UncompressedRowBatchSize: 164.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 767ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.89ms - GetResultsTime: 587.216us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 93.724us - HashTableSize: 8.762K (8762) - InsertKeysToColumnTime: 362.534us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.152us - ProjectionTime: 480.131us - RowsProduced: 8.762K (8762) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s631ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 8.317ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 8.238ms - CloseTime: 9.633us - GetBlockTime: 155.575us - OpenTime: 2.345us - PrepareTime: 60.226us - SinkTime: 7.948ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.276ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.151ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 2.71us - DeserializeAndMergeTime: 3.696ms - ExecTime: 7.958ms - ExprTime: 0ns - HashTableComputeTime: 4.47ms - HashTableEmplaceTime: 3.362ms - HashTableInputCount: 13.695K (13695) - InputRows: 13.695K (13695) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 7.902ms - OpenTime: 17.689us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 19 - BytesReceived: 436.31 KB - CloseTime: 6.267us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 434.763us - ExecTime: 168.461us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 361.25 KB - MemoryUsage: - Blocks: 244.00 KB - PeakMemoryUsage: 183.00 KB - OpenTime: 20.596us - ProjectionTime: 0ns - RowsProduced: 13.695K (13695) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s476ms PipelineXTask (index=3):(Active: 17.993ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 17.929ms - CloseTime: 10.763us - GetBlockTime: 188.312us - OpenTime: 1.940us - PrepareTime: 46.109us - SinkTime: 17.607ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.987ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.306ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 4.280us - DeserializeAndMergeTime: 4.27ms - ExecTime: 17.626ms - ExprTime: 0ns - HashTableComputeTime: 13.260ms - HashTableEmplaceTime: 12.402ms - HashTableInputCount: 13.584K (13584) - InputRows: 13.584K (13584) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 17.554ms - OpenTime: 23.368us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 19 - BytesReceived: 433.16 KB - CloseTime: 5.702us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 451.719us - ExecTime: 189.87us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 361.25 KB - MemoryUsage: - Blocks: 244.00 KB - PeakMemoryUsage: 183.00 KB - OpenTime: 10.981us - ProjectionTime: 0ns - RowsProduced: 13.584K (13584) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s485ms PipelineXTask (index=5):(Active: 8.934ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 8.849ms - CloseTime: 18.88us - GetBlockTime: 123.880us - OpenTime: 1.897us - PrepareTime: 58.952us - SinkTime: 8.606ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.886ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.338ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 12.987us - DeserializeAndMergeTime: 4.267ms - ExecTime: 8.623ms - ExprTime: 0ns - HashTableComputeTime: 4.133ms - HashTableEmplaceTime: 3.418ms - HashTableInputCount: 13.44K (13440) - InputRows: 13.44K (13440) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 8.559ms - OpenTime: 13.799us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 19 - BytesReceived: 425.11 KB - CloseTime: 4.133us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 897.688us - ExecTime: 137.618us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 361.25 KB - MemoryUsage: - Blocks: 244.00 KB - PeakMemoryUsage: 183.00 KB - OpenTime: 22.513us - ProjectionTime: 0ns - RowsProduced: 13.44K (13440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s473ms PipelineXTask (index=7):(Active: 10.219ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 10.148ms - CloseTime: 17.475us - GetBlockTime: 192.816us - OpenTime: 2.148us - PrepareTime: 45.549us - SinkTime: 9.828ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.171ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 142.887ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 11.229us - DeserializeAndMergeTime: 4.710ms - ExecTime: 9.848ms - ExprTime: 0ns - HashTableComputeTime: 4.817ms - HashTableEmplaceTime: 3.974ms - HashTableInputCount: 13.14K (13140) - InputRows: 13.14K (13140) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 9.777ms - OpenTime: 16.718us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 19 - BytesReceived: 413.69 KB - CloseTime: 5.8us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 461.341us - ExecTime: 195.359us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 361.25 KB - MemoryUsage: - Blocks: 244.00 KB - PeakMemoryUsage: 183.00 KB - OpenTime: 11.536us - ProjectionTime: 0ns - RowsProduced: 13.14K (13140) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s475ms PipelineXTask (index=9):(Active: 9.287ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 9.218ms - CloseTime: 8.800us - GetBlockTime: 145.796us - OpenTime: 2.72us - PrepareTime: 52.189us - SinkTime: 8.955ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.247ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.743ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 2.808us - DeserializeAndMergeTime: 4.362ms - ExecTime: 8.968ms - ExprTime: 0ns - HashTableComputeTime: 4.331ms - HashTableEmplaceTime: 3.506ms - HashTableInputCount: 13.209K (13209) - InputRows: 13.209K (13209) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 8.917ms - OpenTime: 17.738us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 19 - BytesReceived: 419.03 KB - CloseTime: 4.754us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 484.171us - ExecTime: 158.677us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 361.25 KB - MemoryUsage: - Blocks: 244.00 KB - PeakMemoryUsage: 183.00 KB - OpenTime: 20.640us - ProjectionTime: 0ns - RowsProduced: 13.209K (13209) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s476ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.564ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.400ms - CloseTime: 42.634us - GetBlockTime: 1.23ms - OpenTime: 4.200us - PrepareTime: 110.614us - SinkTime: 1.330ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.493ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 978.255us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 76.61 KB - CloseTime: 35.13us - CompressTime: 0ns - ExecTime: 1.442ms - InputRows: 8.93K (8930) - LocalBytesSent: 139.92 KB - LocalSendTime: 90.163us - LocalSentRows: 4.884K (4884) - MemoryUsage: - PeakMemoryUsage: 406.00 KB - MergeBlockTime: 0ns - OpenTime: 77.670us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s167ms - RowsProduced: 8.93K (8930) - RpcAvgTime: 5s163ms - RpcCount: 5 - RpcMaxTime: 5s163ms - RpcMinTime: 5s163ms - RpcSumTime: 25s815ms - SerializeBatchTime: 395.542us - SplitBlockDistributeByChannelTime: 334.745us - SplitBlockHashComputeTime: 173.375us - UncompressedRowBatchSize: 121.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 1.588us - DeserializeAndMergeTime: 0ns - ExecTime: 1.30ms - GetResultsTime: 615.329us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 100.303us - HashTableSize: 8.93K (8930) - InsertKeysToColumnTime: 372.308us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.154us - ProjectionTime: 384.475us - RowsProduced: 8.93K (8930) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s728ms PipelineXTask (index=2):(Active: 2.146ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.3ms - CloseTime: 22.56us - GetBlockTime: 936.646us - OpenTime: 3.28us - PrepareTime: 97.888us - SinkTime: 1.2ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.101ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 719.124us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 73.09 KB - CloseTime: 17.611us - CompressTime: 0ns - ExecTime: 1.81ms - InputRows: 8.79K (8790) - LocalBytesSent: 141.55 KB - LocalSendTime: 30.457us - LocalSentRows: 4.946K (4946) - MemoryUsage: - PeakMemoryUsage: 371.50 KB - MergeBlockTime: 0ns - OpenTime: 63.283us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s167ms - RowsProduced: 8.79K (8790) - RpcAvgTime: 5s163ms - RpcCount: 5 - RpcMaxTime: 5s164ms - RpcMinTime: 5s163ms - RpcSumTime: 25s819ms - SerializeBatchTime: 172.872us - SplitBlockDistributeByChannelTime: 348.302us - SplitBlockHashComputeTime: 202.352us - UncompressedRowBatchSize: 115.74 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 1.20us - DeserializeAndMergeTime: 0ns - ExecTime: 940.260us - GetResultsTime: 555.492us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 86.255us - HashTableSize: 8.79K (8790) - InsertKeysToColumnTime: 294.663us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.989us - ProjectionTime: 350.669us - RowsProduced: 8.79K (8790) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s729ms PipelineXTask (index=4):(Active: 2.197ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.25ms - CloseTime: 38.536us - GetBlockTime: 869.378us - OpenTime: 3.207us - PrepareTime: 123.811us - SinkTime: 1.131ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.114ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 70.04 KB - CloseTime: 35.104us - CompressTime: 0ns - ExecTime: 1.241ms - InputRows: 8.795K (8795) - LocalBytesSent: 145.99 KB - LocalSendTime: 60.50us - LocalSentRows: 5.104K (5104) - MemoryUsage: - PeakMemoryUsage: 377.50 KB - MergeBlockTime: 0ns - OpenTime: 76.277us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s167ms - RowsProduced: 8.795K (8795) - RpcAvgTime: 5s163ms - RpcCount: 5 - RpcMaxTime: 5s163ms - RpcMinTime: 5s163ms - RpcSumTime: 25s815ms - SerializeBatchTime: 240.801us - SplitBlockDistributeByChannelTime: 326.475us - SplitBlockHashComputeTime: 202.238us - UncompressedRowBatchSize: 111.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 722ns - DeserializeAndMergeTime: 0ns - ExecTime: 878.454us - GetResultsTime: 494.479us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 86.909us - HashTableSize: 8.795K (8795) - InsertKeysToColumnTime: 276.459us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.746us - ProjectionTime: 353.931us - RowsProduced: 8.795K (8795) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s728ms PipelineXTask (index=6):(Active: 2.541ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.358ms - CloseTime: 15.652us - GetBlockTime: 1.194ms - OpenTime: 3.530us - PrepareTime: 157.481us - SinkTime: 1.134ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.517ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.149ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 76.70 KB - CloseTime: 12.296us - CompressTime: 0ns - ExecTime: 1.268ms - InputRows: 9.027K (9027) - LocalBytesSent: 142.40 KB - LocalSendTime: 32.837us - LocalSentRows: 4.974K (4974) - MemoryUsage: - PeakMemoryUsage: 406.00 KB - MergeBlockTime: 0ns - OpenTime: 124.1us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s167ms - RowsProduced: 9.027K (9027) - RpcAvgTime: 5s164ms - RpcCount: 5 - RpcMaxTime: 5s164ms - RpcMinTime: 5s164ms - RpcSumTime: 25s821ms - SerializeBatchTime: 162.718us - SplitBlockDistributeByChannelTime: 378.562us - SplitBlockHashComputeTime: 182.728us - UncompressedRowBatchSize: 121.92 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 1.68us - DeserializeAndMergeTime: 0ns - ExecTime: 1.197ms - GetResultsTime: 705.808us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 89.496us - HashTableSize: 9.027K (9027) - InsertKeysToColumnTime: 476.743us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.350us - ProjectionTime: 453.248us - RowsProduced: 9.027K (9027) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s728ms PipelineXTask (index=8):(Active: 2.519ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.367ms - CloseTime: 32.344us - GetBlockTime: 1.236ms - OpenTime: 3.306us - PrepareTime: 110.384us - SinkTime: 1.102ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.479ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.127ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 79.24 KB - CloseTime: 27.410us - CompressTime: 0ns - ExecTime: 1.196ms - InputRows: 8.867K (8867) - LocalBytesSent: 134.19 KB - LocalSendTime: 28.581us - LocalSentRows: 4.691K (4691) - MemoryUsage: - PeakMemoryUsage: 391.50 KB - MergeBlockTime: 0ns - OpenTime: 68.265us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s165ms - RowsProduced: 8.867K (8867) - RpcAvgTime: 5s164ms - RpcCount: 5 - RpcMaxTime: 5s164ms - RpcMinTime: 5s164ms - RpcSumTime: 25s821ms - SerializeBatchTime: 220.735us - SplitBlockDistributeByChannelTime: 329.817us - SplitBlockHashComputeTime: 235.800us - UncompressedRowBatchSize: 125.66 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 1.183us - DeserializeAndMergeTime: 0ns - ExecTime: 1.241ms - GetResultsTime: 722.337us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 73.264us - HashTableSize: 8.867K (8867) - InsertKeysToColumnTime: 518.140us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.522us - ProjectionTime: 492.207us - RowsProduced: 8.867K (8867) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s729ms PipelineXTask (index=10):(Active: 2.370ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.222ms - CloseTime: 28.43us - GetBlockTime: 1.115ms - OpenTime: 2.613us - PrepareTime: 111.277us - SinkTime: 1.80ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.333ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.100ms DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.92 KB - CloseTime: 20.462us - CompressTime: 0ns - ExecTime: 1.172ms - InputRows: 8.887K (8887) - LocalBytesSent: 153.50 KB - LocalSendTime: 26.538us - LocalSentRows: 5.367K (5367) - MemoryUsage: - PeakMemoryUsage: 406.00 KB - MergeBlockTime: 0ns - OpenTime: 73.249us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s168ms - RowsProduced: 8.887K (8887) - RpcAvgTime: 5s164ms - RpcCount: 5 - RpcMaxTime: 5s164ms - RpcMinTime: 5s164ms - RpcSumTime: 25s823ms - SerializeBatchTime: 181.728us - SplitBlockDistributeByChannelTime: 371.496us - SplitBlockHashComputeTime: 200.24us - UncompressedRowBatchSize: 106.02 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 1.243us - DeserializeAndMergeTime: 0ns - ExecTime: 1.117ms - GetResultsTime: 715.895us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 52.493us - HashTableSize: 8.887K (8887) - InsertKeysToColumnTime: 439.761us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.687us - ProjectionTime: 359.17us - RowsProduced: 8.887K (8887) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s729ms PipelineXTask (index=12):(Active: 2.76ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.955ms - CloseTime: 25.450us - GetBlockTime: 924.262us - OpenTime: 2.508us - PrepareTime: 87.689us - SinkTime: 1.8ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.44ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 721.287us DATA_STREAM_SINK_OPERATOR (id=301,dst_id=301): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 60.60 KB - CloseTime: 22.318us - CompressTime: 0ns - ExecTime: 1.90ms - InputRows: 8.867K (8867) - LocalBytesSent: 162.59 KB - LocalSendTime: 37.261us - LocalSentRows: 5.682K (5682) - MemoryUsage: - PeakMemoryUsage: 391.50 KB - MergeBlockTime: 0ns - OpenTime: 62.376us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s166ms - RowsProduced: 8.867K (8867) - RpcAvgTime: 5s164ms - RpcCount: 5 - RpcMaxTime: 5s164ms - RpcMinTime: 5s164ms - RpcSumTime: 25s821ms - SerializeBatchTime: 146.502us - SplitBlockDistributeByChannelTime: 348.1us - SplitBlockHashComputeTime: 195.471us - UncompressedRowBatchSize: 96.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=300): - BlocksProduced: 3 - CloseTime: 784ns - DeserializeAndMergeTime: 0ns - ExecTime: 928.27us - GetResultsTime: 512.547us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 64.764us - HashTableSize: 8.867K (8867) - InsertKeysToColumnTime: 308.761us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.497us - ProjectionTime: 391.467us - RowsProduced: 8.867K (8867) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s730ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 9.178ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 9.54ms - CloseTime: 13.456us - GetBlockTime: 152.511us - OpenTime: 4.958us - PrepareTime: 97.974us - SinkTime: 8.791ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.988ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 3.560us - DeserializeAndMergeTime: 4.417ms - ExecTime: 8.812ms - ExprTime: 0ns - HashTableComputeTime: 4.152ms - HashTableEmplaceTime: 3.472ms - HashTableInputCount: 13.491K (13491) - InputRows: 13.491K (13491) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 8.730ms - OpenTime: 24.230us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 17 - BytesReceived: 189.33 KB - CloseTime: 8.559us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 365.162us - ExecTime: 198.931us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 849.25 KB - MemoryUsage: - Blocks: 289.00 KB - PeakMemoryUsage: 289.00 KB - OpenTime: 59.315us - ProjectionTime: 0ns - RowsProduced: 13.491K (13491) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s661ms PipelineXTask (index=3):(Active: 153.224ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 153.130ms - CloseTime: 8.87us - GetBlockTime: 166.392us - OpenTime: 4.260us - PrepareTime: 74.45us - SinkTime: 152.838ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.930ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.932ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 3.166us - DeserializeAndMergeTime: 5.842ms - ExecTime: 152.850ms - ExprTime: 0ns - HashTableComputeTime: 146.644ms - HashTableEmplaceTime: 38.428ms - HashTableInputCount: 13.343K (13343) - InputRows: 13.343K (13343) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 152.781ms - OpenTime: 20.228us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 17 - BytesReceived: 196.88 KB - CloseTime: 3.927us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 247.904us - ExecTime: 182.965us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 849.25 KB - MemoryUsage: - Blocks: 289.00 KB - PeakMemoryUsage: 289.00 KB - OpenTime: 27.119us - ProjectionTime: 0ns - RowsProduced: 13.343K (13343) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s503ms PipelineXTask (index=5):(Active: 9.576ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 9.453ms - CloseTime: 11.66us - GetBlockTime: 136.861us - OpenTime: 2.877us - PrepareTime: 101.818us - SinkTime: 9.199ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.506ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.709ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 4.341us - DeserializeAndMergeTime: 4.503ms - ExecTime: 9.234ms - ExprTime: 0ns - HashTableComputeTime: 4.343ms - HashTableEmplaceTime: 3.713ms - HashTableInputCount: 13.251K (13251) - InputRows: 13.251K (13251) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 9.149ms - OpenTime: 37.628us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 17 - BytesReceived: 186.67 KB - CloseTime: 5.840us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 194.383us - ExecTime: 160.41us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 849.25 KB - MemoryUsage: - Blocks: 289.00 KB - PeakMemoryUsage: 289.00 KB - OpenTime: 30.980us - ProjectionTime: 0ns - RowsProduced: 13.251K (13251) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s626ms PipelineXTask (index=7):(Active: 12.51ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 11.963ms - CloseTime: 9.651us - GetBlockTime: 174.380us - OpenTime: 2.690us - PrepareTime: 69.234us - SinkTime: 11.669ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.601ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.507ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 3.10us - DeserializeAndMergeTime: 5.612ms - ExecTime: 11.681ms - ExprTime: 0ns - HashTableComputeTime: 5.728ms - HashTableEmplaceTime: 4.830ms - HashTableInputCount: 13.692K (13692) - InputRows: 13.692K (13692) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 11.626ms - OpenTime: 18.152us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 17 - BytesReceived: 194.88 KB - CloseTime: 5.815us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 248.757us - ExecTime: 168.429us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 849.25 KB - MemoryUsage: - Blocks: 244.00 KB - PeakMemoryUsage: 244.00 KB - OpenTime: 20.470us - ProjectionTime: 0ns - RowsProduced: 13.692K (13692) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s652ms PipelineXTask (index=9):(Active: 9.451ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 9.365ms - CloseTime: 10.3us - GetBlockTime: 129.870us - OpenTime: 2.744us - PrepareTime: 65.333us - SinkTime: 9.111ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.414ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.78ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 3.681us - DeserializeAndMergeTime: 4.626ms - ExecTime: 9.126ms - ExprTime: 0ns - HashTableComputeTime: 4.178ms - HashTableEmplaceTime: 3.495ms - HashTableInputCount: 13.265K (13265) - InputRows: 13.265K (13265) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 9.81ms - OpenTime: 17.607us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 17 - BytesReceived: 183.77 KB - CloseTime: 5.327us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 384.215us - ExecTime: 156.597us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 849.25 KB - MemoryUsage: - Blocks: 289.00 KB - PeakMemoryUsage: 289.00 KB - OpenTime: 33.591us - ProjectionTime: 0ns - RowsProduced: 13.265K (13265) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s624ms PipelineXTask (index=11):(Active: 11.40ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 10.948ms - CloseTime: 22.945us - GetBlockTime: 163.116us - OpenTime: 4.400us - PrepareTime: 58.392us - SinkTime: 10.651ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.979ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 56.718ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 16.703us - DeserializeAndMergeTime: 5.470ms - ExecTime: 10.679ms - ExprTime: 0ns - HashTableComputeTime: 4.816ms - HashTableEmplaceTime: 4.44ms - HashTableInputCount: 13.46K (13460) - InputRows: 13.46K (13460) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 10.615ms - OpenTime: 19.257us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 17 - BytesReceived: 181.87 KB - CloseTime: 4.861us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 198.99us - ExecTime: 172.33us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 849.25 KB - MemoryUsage: - Blocks: 289.00 KB - PeakMemoryUsage: 289.00 KB - OpenTime: 17.820us - ProjectionTime: 0ns - RowsProduced: 13.46K (13460) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s663ms PipelineXTask (index=13):(Active: 8.918ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 8.786ms - CloseTime: 6.461us - GetBlockTime: 152.627us - OpenTime: 3.133us - PrepareTime: 117.203us - SinkTime: 8.544ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.803ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.367ms AGGREGATION_SINK_OPERATOR (id=300): - BuildTime: 0ns - CloseTime: 2.124us - DeserializeAndMergeTime: 4.245ms - ExecTime: 8.575ms - ExprTime: 0ns - HashTableComputeTime: 4.21ms - HashTableEmplaceTime: 3.370ms - HashTableInputCount: 13.332K (13332) - InputRows: 13.332K (13332) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.52 MB - MergeTime: 8.500ms - OpenTime: 35.224us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=299): - BlocksProduced: 17 - BytesReceived: 193.48 KB - CloseTime: 3.565us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 218.100us - ExecTime: 172.288us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 849.25 KB - MemoryUsage: - Blocks: 289.00 KB - PeakMemoryUsage: 289.00 KB - OpenTime: 26.885us - ProjectionTime: 0ns - RowsProduced: 13.332K (13332) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s662ms Fragment 37: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 39.838ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 38.838ms - CloseTime: 446.376us - GetBlockTime: 37.538ms - OpenTime: 247.449us - PrepareTime: 297.777us - SinkTime: 1.28ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.995ms - WaitBfTime: 779.97ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.501ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 43.81 KB - CloseTime: 11.936us - CompressTime: 0ns - ExecTime: 1.94ms - InputRows: 2.01K (2010) - LocalBytesSent: 38.47 KB - LocalSendTime: 55.223us - LocalSentRows: 816 - MemoryUsage: - PeakMemoryUsage: 135.00 KB - MergeBlockTime: 0ns - OpenTime: 54.206us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 309.723ms - RowsProduced: 2.01K (2010) - RpcAvgTime: 275.772ms - RpcCount: 7 - RpcMaxTime: 275.932ms - RpcMinTime: 275.620ms - RpcSumTime: 1s930ms - SerializeBatchTime: 173.288us - SplitBlockDistributeByChannelTime: 313.564us - SplitBlockHashComputeTime: 78.550us - UncompressedRowBatchSize: 58.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 37.80ms - CloseTime: 367.292us - DeserializeAndMergeTime: 0ns - ExecTime: 37.911ms - ExprTime: 3.672us - GetResultsTime: 414.266us - HashTableComputeTime: 36.457ms - HashTableEmplaceTime: 803.801us - HashTableInputCount: 2.189K (2189) - HashTableIterateTime: 15.208us - HashTableSize: 2.01K (2010) - InsertKeysToColumnTime: 149.722us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 679.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 30.101us - ProjectionTime: 0ns - RowsProduced: 2.01K (2010) - SerializeDataTime: 216.484us - SerializeKeyTime: 0ns - SerializeResultTime: 420.881us - 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: 2.845us - BlocksProduced: 1 - CloseTime: 63.19us - ExecTime: 198.939ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 353.751us - ProcessConjunctTime: 85.94us - ProjectionTime: 32.355ms - RowsProduced: 2.189K (2189) - RowsRead: 2.189K (2189) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 18.200ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 166.96ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [107.130ms, ] - PerScannerRowsRead: [2.19K, ] - PerScannerWaitTime: [18.200ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 84.399ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.455ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 42ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 51.847ms - ScannerCtxSchedTime: 18.198ms - ScannerFilterTime: 20.211ms - ScannerGetBlockTime: 86.832ms - ScannerInitTime: 132.371us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.125us - BlockConditionsFilteredBloomFilterTime: 7.316us - BlockConditionsFilteredDictTime: 2.410us - BlockConditionsFilteredTime: 97.987us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 54.817us - BlockInitSeekCount: 37 - BlockInitSeekTime: 275.894us - BlockInitTime: 501.273us - BlockLoadTime: 88.333ms - BlocksLoad: 152 - CachedPagesNum: 364 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.424ms - FirstReadSeekCount: 147 - FirstReadSeekTime: 67.551us - FirstReadTime: 61.538ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.779us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 18.96ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 361.616us - OutputIndexResultColumnTimer: 20.828us - 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: 10.685us - TotalPagesNum: 364 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.147ms PipelineXTask (index=1):(Active: 37.529ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 35.843ms - CloseTime: 1.319ms - GetBlockTime: 34.316ms - OpenTime: 99.994us - PrepareTime: 260.157us - SinkTime: 1.378ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.844ms - WaitBfTime: 778.814ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 305.511ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 166.67 KB - CloseTime: 23.367us - CompressTime: 0ns - ExecTime: 1.455ms - InputRows: 7.765K (7765) - LocalBytesSent: 163.19 KB - LocalSendTime: 42.953us - LocalSentRows: 3.27K (3270) - MemoryUsage: - PeakMemoryUsage: 540.00 KB - MergeBlockTime: 0ns - OpenTime: 54.870us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 272.132ms - RowsProduced: 7.765K (7765) - RpcAvgTime: 270.257ms - RpcCount: 7 - RpcMaxTime: 270.803ms - RpcMinTime: 269.661ms - RpcSumTime: 1s891ms - SerializeBatchTime: 307.119us - SplitBlockDistributeByChannelTime: 491.255us - SplitBlockHashComputeTime: 170.580us - UncompressedRowBatchSize: 228.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 2 - BuildConvertToPartitionedTime: 0ns - BuildTime: 16.140ms - CloseTime: 1.197ms - DeserializeAndMergeTime: 0ns - ExecTime: 35.427ms - ExprTime: 8.278us - GetResultsTime: 18.32ms - HashTableComputeTime: 14.337ms - HashTableEmplaceTime: 2.609ms - HashTableInputCount: 9.627K (9627) - HashTableIterateTime: 42.781us - HashTableSize: 7.765K (7765) - InsertKeysToColumnTime: 296.988us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 0ns - OpenTime: 25.668us - ProjectionTime: 0ns - RowsProduced: 7.765K (7765) - SerializeDataTime: 17.641ms - SerializeKeyTime: 0ns - SerializeResultTime: 18.39ms - 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: 1.325us - BlocksProduced: 3 - CloseTime: 91.750us - ExecTime: 352.57ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 170.358us - ProcessConjunctTime: 23.323us - ProjectionTime: 11.707ms - RowsProduced: 9.627K (9627) - RowsRead: 9.627K (9627) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 100.868ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 339.921ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [231.913ms, ] - PerScannerRowsRead: [9.63K, ] - PerScannerWaitTime: [100.868ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 229.134ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.75ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 374ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 135.205ms - ScannerCtxSchedTime: 100.856ms - ScannerFilterTime: 347.269us - ScannerGetBlockTime: 231.377ms - ScannerInitTime: 57.200us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.305us - BlockConditionsFilteredBloomFilterTime: 3.605us - BlockConditionsFilteredDictTime: 989ns - BlockConditionsFilteredTime: 98.313us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 74.117us - BlockInitSeekCount: 26 - BlockInitSeekTime: 24.329us - BlockInitTime: 208.105us - BlockLoadTime: 231.126ms - BlocksLoad: 405 - CachedPagesNum: 1.106K (1106) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 21.458ms - FirstReadSeekCount: 402 - FirstReadSeekTime: 112.283us - FirstReadTime: 121.566ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.818us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 48.222ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 14.277ms - OutputIndexResultColumnTimer: 45.773us - 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: 29.881us - TotalPagesNum: 1.106K (1106) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 22.556ms PipelineXTask (index=2):(Active: 35.736ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 23.262ms - CloseTime: 1.103ms - GetBlockTime: 9.786ms - OpenTime: 11.103ms - PrepareTime: 256.126us - SinkTime: 2.290ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.984ms - WaitBfTime: 779.105ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 305.606ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 241.43 KB - CloseTime: 9.482us - CompressTime: 0ns - ExecTime: 2.356ms - InputRows: 10.935K (10935) - LocalBytesSent: 233.21 KB - LocalSendTime: 23.165us - LocalSentRows: 4.598K (4598) - MemoryUsage: - PeakMemoryUsage: 732.00 KB - MergeBlockTime: 0ns - OpenTime: 57.834us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 266.767ms - RowsProduced: 10.935K (10935) - RpcAvgTime: 265.163ms - RpcCount: 7 - RpcMaxTime: 265.730ms - RpcMinTime: 264.543ms - RpcSumTime: 1s856ms - SerializeBatchTime: 456.259us - SplitBlockDistributeByChannelTime: 1.119ms - SplitBlockHashComputeTime: 233.591us - UncompressedRowBatchSize: 329.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 3 - BuildConvertToPartitionedTime: 0ns - BuildTime: 8.310ms - CloseTime: 1.43ms - DeserializeAndMergeTime: 0ns - ExecTime: 10.684ms - ExprTime: 15.836us - GetResultsTime: 1.261ms - HashTableComputeTime: 4.417ms - HashTableEmplaceTime: 3.682ms - HashTableInputCount: 14.276K (14276) - HashTableIterateTime: 61.927us - HashTableSize: 10.935K (10935) - InsertKeysToColumnTime: 351.741us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 2.14 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 26.549us - ProjectionTime: 0ns - RowsProduced: 10.935K (10935) - SerializeDataTime: 740.235us - SerializeKeyTime: 0ns - SerializeResultTime: 1.270ms - 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: 2.507us - BlocksProduced: 6 - CloseTime: 48.33us - ExecTime: 334.306ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 11.194ms - ProcessConjunctTime: 70.552us - ProjectionTime: 13.750ms - RowsProduced: 14.276K (14276) - RowsRead: 14.276K (14276) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.872ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 309.83ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [274.282ms, ] - PerScannerRowsRead: [14.28K, ] - PerScannerWaitTime: [17.872ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 270.193ms - MemoryUsage: - FreeBlocks: 584.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.584ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.46us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 163.587ms - ScannerCtxSchedTime: 17.866ms - ScannerFilterTime: 393.654us - ScannerGetBlockTime: 273.700ms - ScannerInitTime: 10.997ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.822us - BlockConditionsFilteredBloomFilterTime: 8.114us - BlockConditionsFilteredDictTime: 2.943us - BlockConditionsFilteredTime: 185.325us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 131.457us - BlockInitSeekCount: 31 - BlockInitSeekTime: 36.96us - BlockInitTime: 377.710us - BlockLoadTime: 273.580ms - BlocksLoad: 410 - CachedPagesNum: 1.141K (1141) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 72.696ms - FirstReadSeekCount: 406 - FirstReadSeekTime: 129.247us - FirstReadTime: 73.17ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.542us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 109.474ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 11.18ms - OutputIndexResultColumnTimer: 54.610us - 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: 23.650us - TotalPagesNum: 1.141K (1141) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.828ms PipelineXTask (index=3):(Active: 26.327ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 23.910ms - CloseTime: 2.67ms - GetBlockTime: 19.690ms - OpenTime: 116.310us - PrepareTime: 225.658us - SinkTime: 3.995ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.236ms - WaitBfTime: 778.604ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 114.143ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 400.66 KB - CloseTime: 19.850us - CompressTime: 0ns - ExecTime: 4.67ms - InputRows: 15.568K (15568) - LocalBytesSent: 358.95 KB - LocalSendTime: 44.868us - LocalSentRows: 6.494K (6494) - MemoryUsage: - PeakMemoryUsage: 1.43 MB - MergeBlockTime: 0ns - OpenTime: 54.600us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 264.607ms - RowsProduced: 15.568K (15568) - RpcAvgTime: 264.222ms - RpcCount: 7 - RpcMaxTime: 265.70ms - RpcMinTime: 262.586ms - RpcSumTime: 1s849ms - SerializeBatchTime: 732.849us - SplitBlockDistributeByChannelTime: 1.979ms - SplitBlockHashComputeTime: 391.491us - UncompressedRowBatchSize: 530.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 4 - BuildConvertToPartitionedTime: 0ns - BuildTime: 16.841ms - CloseTime: 1.972ms - DeserializeAndMergeTime: 0ns - ExecTime: 21.472ms - ExprTime: 26.384us - GetResultsTime: 2.560ms - HashTableComputeTime: 8.563ms - HashTableEmplaceTime: 7.184ms - HashTableInputCount: 25.632K (25632) - HashTableIterateTime: 90.135us - HashTableSize: 15.568K (15568) - InsertKeysToColumnTime: 498.470us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 2.52 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 30.542us - ProjectionTime: 0ns - RowsProduced: 15.568K (15568) - SerializeDataTime: 1.803ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.572ms - 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: 2.106us - BlocksProduced: 8 - CloseTime: 69.338us - ExecTime: 513.280ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 172.831us - ProcessConjunctTime: 29.547us - ProjectionTime: 13.679ms - RowsProduced: 25.632K (25632) - RowsRead: 25.632K (25632) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 157.424ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 499.113ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [283.551ms, ] - PerScannerRowsRead: [25.63K, ] - PerScannerWaitTime: [157.424ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 268.722ms - MemoryUsage: - FreeBlocks: 860.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 12.185ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.355us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 135.516ms - ScannerCtxSchedTime: 157.418ms - ScannerFilterTime: 336.752us - ScannerGetBlockTime: 283.59ms - ScannerInitTime: 67.133us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.562us - BlockConditionsFilteredBloomFilterTime: 7.352us - BlockConditionsFilteredDictTime: 2.521us - BlockConditionsFilteredTime: 206.772us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 136.800us - BlockInitSeekCount: 35 - BlockInitSeekTime: 38.906us - BlockInitTime: 383.847us - BlockLoadTime: 293.709ms - BlocksLoad: 345 - CachedPagesNum: 937 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 40.898ms - FirstReadSeekCount: 341 - FirstReadSeekTime: 116.835us - FirstReadTime: 53.365ms - IOTimer: 0ns - InvertedIndexFilterTime: 19.907us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 180.796ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.580ms - OutputIndexResultColumnTimer: 38.734us - 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: 22.248us - TotalPagesNum: 937 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 14.114ms PipelineXTask (index=4):(Active: 64.730ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 62.217ms - CloseTime: 2.175ms - GetBlockTime: 58.564ms - OpenTime: 83.997us - PrepareTime: 245.78us - SinkTime: 3.508ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 22.365ms - WaitBfTime: 778.718ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.109ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 473.18 KB - CloseTime: 33.775us - CompressTime: 0ns - ExecTime: 3.585ms - InputRows: 15.161K (15161) - LocalBytesSent: 410.51 KB - LocalSendTime: 38.972us - LocalSentRows: 6.314K (6314) - MemoryUsage: - PeakMemoryUsage: 1.43 MB - MergeBlockTime: 0ns - OpenTime: 46.238us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 315.884ms - RowsProduced: 15.161K (15161) - RpcAvgTime: 281.939ms - RpcCount: 7 - RpcMaxTime: 282.226ms - RpcMinTime: 281.680ms - RpcSumTime: 1s973ms - SerializeBatchTime: 669.467us - SplitBlockDistributeByChannelTime: 1.726ms - SplitBlockHashComputeTime: 380.425us - UncompressedRowBatchSize: 598.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 4 - BuildConvertToPartitionedTime: 0ns - BuildTime: 55.148ms - CloseTime: 2.71ms - DeserializeAndMergeTime: 0ns - ExecTime: 60.494ms - ExprTime: 36.948us - GetResultsTime: 3.199ms - HashTableComputeTime: 32.117ms - HashTableEmplaceTime: 30.604ms - HashTableInputCount: 34.203K (34203) - HashTableIterateTime: 145.163us - HashTableSize: 15.161K (15161) - InsertKeysToColumnTime: 754.160us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 2.52 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 23.81us - ProjectionTime: 0ns - RowsProduced: 15.161K (15161) - SerializeDataTime: 2.104ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.209ms - 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: 3.471us - BlocksProduced: 9 - CloseTime: 65.590us - ExecTime: 145.695ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 145.410us - ProcessConjunctTime: 23.949us - ProjectionTime: 8.588ms - RowsProduced: 34.203K (34203) - RowsRead: 34.203K (34203) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.101ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 136.725ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [106.471ms, ] - PerScannerRowsRead: [34.20K, ] - PerScannerWaitTime: [17.101ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 106.200ms - MemoryUsage: - FreeBlocks: 2.43 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 934.677us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 655ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.16ms - ScannerCtxSchedTime: 17.100ms - ScannerFilterTime: 74.336us - ScannerGetBlockTime: 106.355ms - ScannerInitTime: 39.217us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 268ns - BlockConditionsFilteredBloomFilterTime: 924ns - BlockConditionsFilteredDictTime: 305ns - BlockConditionsFilteredTime: 12.910us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.862us - BlockInitSeekCount: 8 - BlockInitSeekTime: 21.414us - BlockInitTime: 52.719us - BlockLoadTime: 106.962ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 15.372ms - FirstReadSeekCount: 60 - FirstReadSeekTime: 24.538us - FirstReadTime: 6.98ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.47us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 84.227ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 171.285us - OutputIndexResultColumnTimer: 8.468us - 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: 3.890us - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 513.446us Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 3.334ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.425ms - CloseTime: 325.123us - GetBlockTime: 1.458ms - OpenTime: 265.754us - PrepareTime: 307.113us - SinkTime: 669.107us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.996ms - WaitBfTime: 713.970ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.586ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.43 KB - CloseTime: 19.164us - CompressTime: 0ns - ExecTime: 760.310us - InputRows: 2.0K (2000) - LocalBytesSent: 54.99 KB - LocalSendTime: 42.908us - LocalSentRows: 1.164K (1164) - MemoryUsage: - PeakMemoryUsage: 135.00 KB - MergeBlockTime: 0ns - OpenTime: 73.16us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s305ms - RowsProduced: 2.0K (2000) - RpcAvgTime: 4s278ms - RpcCount: 5 - RpcMaxTime: 4s279ms - RpcMinTime: 4s277ms - RpcSumTime: 21s391ms - SerializeBatchTime: 83.507us - SplitBlockDistributeByChannelTime: 281.170us - SplitBlockHashComputeTime: 49.432us - UncompressedRowBatchSize: 40.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.160ms - CloseTime: 210.194us - DeserializeAndMergeTime: 0ns - ExecTime: 1.648ms - ExprTime: 3.359us - GetResultsTime: 236.831us - HashTableComputeTime: 697.377us - HashTableEmplaceTime: 541.775us - HashTableInputCount: 2.162K (2162) - HashTableIterateTime: 9.553us - HashTableSize: 2.0K (2000) - InsertKeysToColumnTime: 89.560us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 679.98 KB - SerializeKeyArena: 584.00 KB - MergeTime: 0ns - OpenTime: 25.397us - ProjectionTime: 0ns - RowsProduced: 2.0K (2000) - SerializeDataTime: 112.431us - SerializeKeyTime: 0ns - SerializeResultTime: 245.950us - 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.591us - BlocksProduced: 1 - CloseTime: 90.317us - ExecTime: 154.557ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 349.196us - ProcessConjunctTime: 86.322us - ProjectionTime: 13.164ms - RowsProduced: 2.162K (2162) - RowsRead: 2.162K (2162) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.881ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 140.860ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [118.244ms, ] - PerScannerRowsRead: [2.16K, ] - PerScannerWaitTime: [5.881ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 117.184ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.304ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 138ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 69.879ms - ScannerCtxSchedTime: 5.879ms - ScannerFilterTime: 220.564us - ScannerGetBlockTime: 117.733ms - ScannerInitTime: 132.163us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 653ns - BlockConditionsFilteredBloomFilterTime: 1.753us - BlockConditionsFilteredDictTime: 419ns - BlockConditionsFilteredTime: 39.676us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 29.792us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.990us - BlockInitTime: 147.407us - BlockLoadTime: 118.99ms - BlocksLoad: 139 - CachedPagesNum: 369 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 7.548ms - FirstReadSeekCount: 138 - FirstReadSeekTime: 111.191us - FirstReadTime: 25.847ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.678us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 80.630ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 627.686us - OutputIndexResultColumnTimer: 28.796us - 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: 10.777us - TotalPagesNum: 369 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.412ms PipelineXTask (index=1):(Active: 22.387ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.653ms - CloseTime: 1.306ms - GetBlockTime: 19.136ms - OpenTime: 152.954us - PrepareTime: 264.658us - SinkTime: 1.299ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.542ms - WaitBfTime: 716.775ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.345ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 114.50 KB - CloseTime: 25.713us - CompressTime: 0ns - ExecTime: 1.380ms - InputRows: 7.473K (7473) - LocalBytesSent: 218.76 KB - LocalSendTime: 57.521us - LocalSentRows: 4.391K (4391) - MemoryUsage: - PeakMemoryUsage: 540.00 KB - MergeBlockTime: 0ns - OpenTime: 56.764us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s166ms - RowsProduced: 7.473K (7473) - RpcAvgTime: 5s141ms - RpcCount: 5 - RpcMaxTime: 5s144ms - RpcMinTime: 5s139ms - RpcSumTime: 25s707ms - SerializeBatchTime: 231.36us - SplitBlockDistributeByChannelTime: 514.551us - SplitBlockHashComputeTime: 152.632us - UncompressedRowBatchSize: 156.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 2 - BuildConvertToPartitionedTime: 0ns - BuildTime: 5.490ms - CloseTime: 1.24ms - DeserializeAndMergeTime: 0ns - ExecTime: 7.536ms - ExprTime: 9.151us - GetResultsTime: 963.83us - HashTableComputeTime: 3.264ms - HashTableEmplaceTime: 2.798ms - HashTableInputCount: 9.263K (9263) - HashTableIterateTime: 39.411us - HashTableSize: 7.473K (7473) - InsertKeysToColumnTime: 290.914us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.13 MB - SerializeKeyArena: 776.00 KB - MergeTime: 0ns - OpenTime: 32.256us - ProjectionTime: 0ns - RowsProduced: 7.473K (7473) - SerializeDataTime: 577.838us - SerializeKeyTime: 0ns - SerializeResultTime: 969.629us - 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: 4.779us - BlocksProduced: 3 - CloseTime: 248.880us - ExecTime: 410.513ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 222.33us - ProcessConjunctTime: 49.71us - ProjectionTime: 20.718ms - RowsProduced: 9.263K (9263) - RowsRead: 9.263K (9263) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 83.528ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 376.616ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [223.072ms, ] - PerScannerRowsRead: [9.26K, ] - PerScannerWaitTime: [83.528ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 220.857ms - MemoryUsage: - FreeBlocks: 308.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 783.464us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 416ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 139.367ms - ScannerCtxSchedTime: 83.524ms - ScannerFilterTime: 381.179us - ScannerGetBlockTime: 222.474ms - ScannerInitTime: 77.213us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 826ns - BlockConditionsFilteredBloomFilterTime: 1.565us - BlockConditionsFilteredDictTime: 733ns - BlockConditionsFilteredTime: 68.199us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 54.292us - BlockInitSeekCount: 17 - BlockInitSeekTime: 19.583us - BlockInitTime: 140.38us - BlockLoadTime: 222.11ms - BlocksLoad: 367 - CachedPagesNum: 1.01K (1010) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 21.556ms - FirstReadSeekCount: 365 - FirstReadSeekTime: 135.570us - FirstReadTime: 111.718ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.783us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 81.96ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.404ms - OutputIndexResultColumnTimer: 63.939us - 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: 24.644us - TotalPagesNum: 1.01K (1010) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.133ms PipelineXTask (index=2):(Active: 30.699ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 28.648ms - CloseTime: 1.470ms - GetBlockTime: 25.95ms - OpenTime: 294.463us - PrepareTime: 273.496us - SinkTime: 3.166ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 16.195ms - WaitBfTime: 712.553ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 146.740ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 174.54 KB - CloseTime: 14.134us - CompressTime: 0ns - ExecTime: 3.251ms - InputRows: 10.892K (10892) - LocalBytesSent: 323.10 KB - LocalSendTime: 77.685us - LocalSentRows: 6.317K (6317) - MemoryUsage: - PeakMemoryUsage: 732.00 KB - MergeBlockTime: 0ns - OpenTime: 73.445us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s328ms - RowsProduced: 10.892K (10892) - RpcAvgTime: 5s303ms - RpcCount: 5 - RpcMaxTime: 5s308ms - RpcMinTime: 5s299ms - RpcSumTime: 26s515ms - SerializeBatchTime: 670.999us - SplitBlockDistributeByChannelTime: 1.229ms - SplitBlockHashComputeTime: 479.445us - UncompressedRowBatchSize: 238.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 3 - BuildConvertToPartitionedTime: 0ns - BuildTime: 22.541ms - CloseTime: 1.363ms - DeserializeAndMergeTime: 0ns - ExecTime: 26.249ms - ExprTime: 21.437us - GetResultsTime: 2.265ms - HashTableComputeTime: 5.150ms - HashTableEmplaceTime: 4.426ms - HashTableInputCount: 14.311K (14311) - HashTableIterateTime: 133.876us - HashTableSize: 10.892K (10892) - InsertKeysToColumnTime: 674.870us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 2.14 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 23.579us - ProjectionTime: 0ns - RowsProduced: 10.892K (10892) - SerializeDataTime: 1.388ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.282ms - 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: 7.229us - BlocksProduced: 6 - CloseTime: 88.414us - ExecTime: 459.64ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 354.698us - ProcessConjunctTime: 87.301us - ProjectionTime: 21.346ms - RowsProduced: 14.311K (14311) - RowsRead: 14.311K (14311) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 55.968ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 436.958ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [345.574ms, ] - PerScannerRowsRead: [14.31K, ] - PerScannerWaitTime: [55.968ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 341.159ms - MemoryUsage: - FreeBlocks: 488.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.366ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 741ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 184.261ms - ScannerCtxSchedTime: 55.961ms - ScannerFilterTime: 542.168us - ScannerGetBlockTime: 344.806ms - ScannerInitTime: 166.217us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.138us - BlockConditionsFilteredBloomFilterTime: 6.262us - BlockConditionsFilteredDictTime: 2.386us - BlockConditionsFilteredTime: 186.409us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 146.44us - BlockInitSeekCount: 25 - BlockInitSeekTime: 40.339us - BlockInitTime: 378.764us - BlockLoadTime: 344.321ms - BlocksLoad: 384 - CachedPagesNum: 1.064K (1064) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 94.447ms - FirstReadSeekCount: 381 - FirstReadSeekTime: 147.984us - FirstReadTime: 115.807ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.37us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 123.835ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.270ms - OutputIndexResultColumnTimer: 67.462us - 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: 24.699us - TotalPagesNum: 1.064K (1064) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.372ms PipelineXTask (index=3):(Active: 30.88ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.519ms - CloseTime: 3.145ms - GetBlockTime: 20.670ms - OpenTime: 166.215us - PrepareTime: 247.172us - SinkTime: 5.560ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.903ms - WaitBfTime: 712.837ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.547ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 280.47 KB - CloseTime: 22.43us - CompressTime: 0ns - ExecTime: 5.632ms - InputRows: 16.152K (16152) - LocalBytesSent: 515.84 KB - LocalSendTime: 71.438us - LocalSentRows: 9.396K (9396) - MemoryUsage: - PeakMemoryUsage: 1.43 MB - MergeBlockTime: 0ns - OpenTime: 53.912us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s259ms - RowsProduced: 16.152K (16152) - RpcAvgTime: 5s228ms - RpcCount: 5 - RpcMaxTime: 5s233ms - RpcMinTime: 5s224ms - RpcSumTime: 26s141ms - SerializeBatchTime: 711.169us - SplitBlockDistributeByChannelTime: 2.914ms - SplitBlockHashComputeTime: 626.964us - UncompressedRowBatchSize: 376.34 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 4 - BuildConvertToPartitionedTime: 0ns - BuildTime: 16.352ms - CloseTime: 3.15ms - DeserializeAndMergeTime: 0ns - ExecTime: 23.405ms - ExprTime: 33.333us - GetResultsTime: 3.928ms - HashTableComputeTime: 8.416ms - HashTableEmplaceTime: 7.240ms - HashTableInputCount: 24.947K (24947) - HashTableIterateTime: 188.918us - HashTableSize: 16.152K (16152) - InsertKeysToColumnTime: 956.743us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 2.52 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 27.643us - ProjectionTime: 0ns - RowsProduced: 16.152K (16152) - SerializeDataTime: 2.594ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.944ms - 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: 1.890us - BlocksProduced: 9 - CloseTime: 101.846us - ExecTime: 490.168ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 223.919us - ProcessConjunctTime: 37.530us - ProjectionTime: 20.158ms - RowsProduced: 24.947K (24947) - RowsRead: 24.947K (24947) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.908ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 469.305ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [398.489ms, ] - PerScannerRowsRead: [24.95K, ] - PerScannerWaitTime: [9.908ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 379.849ms - MemoryUsage: - FreeBlocks: 892.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 836.804us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.379us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 193.263ms - ScannerCtxSchedTime: 9.901ms - ScannerFilterTime: 13.492ms - ScannerGetBlockTime: 384.775ms - ScannerInitTime: 93.305us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.418us - BlockConditionsFilteredBloomFilterTime: 6.418us - BlockConditionsFilteredDictTime: 1.531us - BlockConditionsFilteredTime: 169.134us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 113.851us - BlockInitSeekCount: 33 - BlockInitSeekTime: 43.608us - BlockInitTime: 343.872us - BlockLoadTime: 383.457ms - BlocksLoad: 382 - CachedPagesNum: 1.05K (1050) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 93.450ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 236.764us - FirstReadTime: 64.199ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.908us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 212.17ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.390ms - OutputIndexResultColumnTimer: 98.167us - 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: 32.911us - TotalPagesNum: 1.05K (1050) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 7.69ms PipelineXTask (index=4):(Active: 71.374ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 67.718ms - CloseTime: 3.267ms - GetBlockTime: 57.450ms - OpenTime: 158.176us - PrepareTime: 221.274us - SinkTime: 9.924ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 57.318ms - WaitBfTime: 712.996ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.899ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 585.65 KB - CloseTime: 13.952us - CompressTime: 0ns - ExecTime: 9.978ms - InputRows: 28.256K (28256) - LocalBytesSent: 1.03 MB - LocalSendTime: 51.406us - LocalSentRows: 16.629K (16629) - MemoryUsage: - PeakMemoryUsage: 2.86 MB - MergeBlockTime: 0ns - OpenTime: 46.999us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s217ms - RowsProduced: 28.256K (28256) - RpcAvgTime: 5s174ms - RpcCount: 5 - RpcMaxTime: 5s197ms - RpcMinTime: 5s151ms - RpcSumTime: 25s874ms - SerializeBatchTime: 1.163ms - SplitBlockDistributeByChannelTime: 6.211ms - SplitBlockHashComputeTime: 1.33ms - UncompressedRowBatchSize: 747.64 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 7 - BuildConvertToPartitionedTime: 0ns - BuildTime: 48.475ms - CloseTime: 3.169ms - DeserializeAndMergeTime: 0ns - ExecTime: 60.275ms - ExprTime: 60.125us - GetResultsTime: 8.461ms - HashTableComputeTime: 16.664ms - HashTableEmplaceTime: 14.147ms - HashTableInputCount: 58.864K (58864) - HashTableIterateTime: 324.90us - HashTableSize: 28.256K (28256) - InsertKeysToColumnTime: 1.380ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 4.53 MB - SerializeKeyArena: 3.78 MB - MergeTime: 0ns - OpenTime: 26.640us - ProjectionTime: 0ns - RowsProduced: 28.256K (28256) - SerializeDataTime: 6.306ms - SerializeKeyTime: 0ns - SerializeResultTime: 8.487ms - 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: 2.393us - BlocksProduced: 17 - CloseTime: 79.382us - ExecTime: 357.871ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 227.874us - ProcessConjunctTime: 48.719us - ProjectionTime: 46.636ms - RowsProduced: 58.864K (58864) - RowsRead: 58.864K (58864) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 138.505ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 310.541ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [121.442ms, ] - PerScannerRowsRead: [58.86K, ] - PerScannerWaitTime: [138.505ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 118.41ms - MemoryUsage: - FreeBlocks: 2.37 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 839.124us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.811us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 122.624ms - ScannerCtxSchedTime: 138.499ms - ScannerFilterTime: 333.342us - ScannerGetBlockTime: 120.925ms - ScannerInitTime: 80.453us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.711us - BlockConditionsFilteredBloomFilterTime: 8.453us - BlockConditionsFilteredDictTime: 1.363us - BlockConditionsFilteredTime: 96.277us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 58.703us - BlockInitSeekCount: 25 - BlockInitSeekTime: 536.284us - BlockInitTime: 776.755us - BlockLoadTime: 120.247ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 31.906ms - FirstReadSeekCount: 257 - FirstReadSeekTime: 116.117us - FirstReadTime: 32.199ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.82us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 49.306ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.117ms - OutputIndexResultColumnTimer: 56.548us - 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: 16.89us - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.237ms PipelineXTask (index=5):(Active: 106.637ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 102.181ms - CloseTime: 3.720ms - GetBlockTime: 92.955ms - OpenTime: 448.425us - PrepareTime: 274.612us - SinkTime: 8.526ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 61.30ms - WaitBfTime: 710.145ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.453ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 623.22 KB - CloseTime: 20.486us - CompressTime: 0ns - ExecTime: 8.607ms - InputRows: 29.71K (29710) - LocalBytesSent: 1.07 MB - LocalSendTime: 87.908us - LocalSentRows: 17.265K (17265) - MemoryUsage: - PeakMemoryUsage: 2.86 MB - MergeBlockTime: 0ns - OpenTime: 74.324us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s324ms - RowsProduced: 29.71K (29710) - RpcAvgTime: 5s290ms - RpcCount: 5 - RpcMaxTime: 5s306ms - RpcMinTime: 5s268ms - RpcSumTime: 26s451ms - SerializeBatchTime: 1.114ms - SplitBlockDistributeByChannelTime: 4.824ms - SplitBlockHashComputeTime: 1.128ms - UncompressedRowBatchSize: 796.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 83.313ms - CloseTime: 3.596ms - DeserializeAndMergeTime: 0ns - ExecTime: 96.111ms - ExprTime: 61.27us - GetResultsTime: 8.976ms - HashTableComputeTime: 30.199ms - HashTableEmplaceTime: 27.297ms - HashTableInputCount: 61.88K (61880) - HashTableIterateTime: 333.193us - HashTableSize: 29.71K (29710) - InsertKeysToColumnTime: 1.505ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 5.28 MB - SerializeKeyArena: 3.78 MB - MergeTime: 0ns - OpenTime: 38.962us - ProjectionTime: 0ns - RowsProduced: 29.71K (29710) - SerializeDataTime: 6.892ms - SerializeKeyTime: 0ns - SerializeResultTime: 9.20ms - 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: 4.488us - BlocksProduced: 19 - CloseTime: 97.620us - ExecTime: 394.496ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 508.520us - ProcessConjunctTime: 155.714us - ProjectionTime: 19.674ms - RowsProduced: 61.88K (61880) - RowsRead: 61.88K (61880) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.147ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 373.715ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [277.590ms, ] - PerScannerRowsRead: [61.88K, ] - PerScannerWaitTime: [11.147ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 275.251ms - MemoryUsage: - FreeBlocks: 2.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.683ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.94us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 132.488ms - ScannerCtxSchedTime: 11.139ms - ScannerFilterTime: 310.16us - ScannerGetBlockTime: 277.106ms - ScannerInitTime: 232.0us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 2.88us - BlockConditionsFilteredBloomFilterTime: 4.192us - BlockConditionsFilteredDictTime: 1.108us - BlockConditionsFilteredTime: 121.36us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 92.584us - BlockInitSeekCount: 26 - BlockInitSeekTime: 305.581us - BlockInitTime: 527.487us - BlockLoadTime: 277.417ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 51.618ms - FirstReadSeekCount: 288 - FirstReadSeekTime: 136.998us - FirstReadTime: 41.987ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.664us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 122.787ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.341ms - OutputIndexResultColumnTimer: 55.640us - 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: 14.827us - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.579ms PipelineXTask (index=6):(Active: 45.367ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 43.77ms - CloseTime: 1.913ms - GetBlockTime: 39.704ms - OpenTime: 104.786us - PrepareTime: 263.244us - SinkTime: 3.216ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 19.77ms - WaitBfTime: 713.144ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.992ms DATA_STREAM_SINK_OPERATOR (id=299,dst_id=299): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 317.37 KB - CloseTime: 15.785us - CompressTime: 0ns - ExecTime: 3.312ms - InputRows: 14.98K (14980) - LocalBytesSent: 563.43 KB - LocalSendTime: 36.101us - LocalSentRows: 8.725K (8725) - MemoryUsage: - PeakMemoryUsage: 1.43 MB - MergeBlockTime: 0ns - OpenTime: 83.327us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s307ms - RowsProduced: 14.98K (14980) - RpcAvgTime: 4s288ms - RpcCount: 5 - RpcMaxTime: 4s293ms - RpcMinTime: 4s280ms - RpcSumTime: 21s444ms - SerializeBatchTime: 561.33us - SplitBlockDistributeByChannelTime: 1.639ms - SplitBlockHashComputeTime: 383.197us - UncompressedRowBatchSize: 406.10 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=298): - BlocksProduced: 4 - BuildConvertToPartitionedTime: 0ns - BuildTime: 37.101ms - CloseTime: 1.829ms - DeserializeAndMergeTime: 0ns - ExecTime: 41.390ms - ExprTime: 16.631us - GetResultsTime: 2.369ms - HashTableComputeTime: 30.911ms - HashTableEmplaceTime: 29.660ms - HashTableInputCount: 32.145K (32145) - HashTableIterateTime: 122.200us - HashTableSize: 14.98K (14980) - InsertKeysToColumnTime: 427.627us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 767.98 KB - PeakMemoryUsage: 2.52 MB - SerializeKeyArena: 1.77 MB - MergeTime: 0ns - OpenTime: 30.250us - ProjectionTime: 0ns - RowsProduced: 14.98K (14980) - SerializeDataTime: 1.600ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.379ms - 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: 1.776us - BlocksProduced: 9 - CloseTime: 63.696us - ExecTime: 122.857ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 168.568us - ProcessConjunctTime: 27.134us - ProjectionTime: 7.5ms - RowsProduced: 32.145K (32145) - RowsRead: 32.145K (32145) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.629ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 115.442ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 90, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 91, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, USER_BLOCKING_TIME, EXTERNAL_BLOCKING_TIME] - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [96.917ms, ] - PerScannerRowsRead: [32.15K, ] - PerScannerWaitTime: [6.629ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 96.642ms - MemoryUsage: - FreeBlocks: 2.30 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.149ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 427ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.575ms - ScannerCtxSchedTime: 6.627ms - ScannerFilterTime: 58.176us - ScannerGetBlockTime: 96.818ms - ScannerInitTime: 51.972us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 315ns - BlockConditionsFilteredBloomFilterTime: 1.201us - BlockConditionsFilteredDictTime: 435ns - BlockConditionsFilteredTime: 17.795us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 11.240us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.283us - BlockInitTime: 55.177us - BlockLoadTime: 97.582ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 21.283ms - FirstReadSeekCount: 56 - FirstReadSeekTime: 29.240us - FirstReadTime: 4.690ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.160us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 70.471ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 159.199us - OutputIndexResultColumnTimer: 10.998us - 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: 2.905us - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 424.805us Fragment 38: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.263ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.956ms - CloseTime: 122.623us - GetBlockTime: 1.83ms - OpenTime: 27.617us - PrepareTime: 149.557us - SinkTime: 794.650us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.128ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.527ms DATA_STREAM_SINK_OPERATOR (id=296,dst_id=296): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.22 KB - CloseTime: 33.526us - CompressTime: 0ns - ExecTime: 894.281us - InputRows: 4.603K (4603) - LocalBytesSent: 197.84 KB - LocalSendTime: 55.356us - LocalSentRows: 3.833K (3833) - MemoryUsage: - PeakMemoryUsage: 346.19 KB - MergeBlockTime: 0ns - OpenTime: 68.396us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s271ms - RowsProduced: 4.603K (4603) - RpcAvgTime: 5s251ms - RpcCount: 5 - RpcMaxTime: 5s251ms - RpcMinTime: 5s251ms - RpcSumTime: 26s256ms - SerializeBatchTime: 59.407us - SplitBlockDistributeByChannelTime: 338.679us - SplitBlockHashComputeTime: 100.511us - UncompressedRowBatchSize: 41.54 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=295): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 64.796us - ExecTime: 1.127ms - InitProbeSideTime: 246.601us - JoinFilterTimer: 402ns - MemoryUsage: - PeakMemoryUsage: 76.00 KB - ProbeKeyArena: 76.00 KB - OpenTime: 14.843us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.978us - ProbeFindNextTime: 0ns - ProbeRows: 5.521K (5521) - ProbeTime: 878.747us - ProbeWhenBuildSideOutputTime: 178.639us - ProbeWhenProbeSideOutputTime: 44.833us - ProbeWhenProcessHashTableTime: 56.322us - ProbeWhenSearchHashTableTime: 278.606us - ProjectionTime: 143.317us - RowsProduced: 4.603K (4603) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=294): - BlocksProduced: 3 - BytesReceived: 33.39 KB - CloseTime: 18.609us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 106.596us - ExecTime: 62.992us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 108.00 KB - MemoryUsage: - Blocks: 108.00 KB - PeakMemoryUsage: 108.00 KB - OpenTime: 22.893us - ProjectionTime: 0ns - RowsProduced: 5.521K (5521) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s218ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 724.716us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 611.889us - CloseTime: 15.539us - GetBlockTime: 24.904us - OpenTime: 4.886us - PrepareTime: 87.245us - SinkTime: 559.774us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 701.214us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.561ms HASH_JOIN_SINK_OPERATOR (id=295): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.756us - BuildRows: 4.604K (4604) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 106.135us - BuildTableInsertTime: 207.222us - BuildTableTime: 212.145us - CloseTime: 0ns - ExecTime: 604.161us - InputRows: 4.603K (4603) - MemoryUsage: - BuildBlocks: 215.10 KB - BuildKeyArena: 112.00 KB - HashTable: 54.48 KB - PeakMemoryUsage: 377.58 KB - OpenTime: 44.847us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 74.132us - RuntimeFilterComputeTime: 131.995us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=286): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 13.351us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.542us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 357.00 KB - MemoryUsage: - Blocks: 357.00 KB - PeakMemoryUsage: 357.00 KB - OpenTime: 16.355us - ProjectionTime: 0ns - RowsProduced: 4.603K (4603) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 211.957ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.169ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.989ms - CloseTime: 18.195us - GetBlockTime: 888.366us - OpenTime: 6.30us - PrepareTime: 149.976us - SinkTime: 1.67ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.143ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 984.517us DATA_STREAM_SINK_OPERATOR (id=296,dst_id=296): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.47 KB - CloseTime: 6.740us - CompressTime: 0ns - ExecTime: 1.131ms - InputRows: 4.597K (4597) - LocalBytesSent: 158.91 KB - LocalSendTime: 59.834us - LocalSentRows: 3.072K (3072) - MemoryUsage: - PeakMemoryUsage: 346.19 KB - MergeBlockTime: 0ns - OpenTime: 58.894us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.369ms - RowsProduced: 4.597K (4597) - RpcAvgTime: 7.197ms - RpcCount: 7 - RpcMaxTime: 19.966ms - RpcMinTime: 2.32ms - RpcSumTime: 50.381ms - SerializeBatchTime: 78.279us - SplitBlockDistributeByChannelTime: 470.912us - SplitBlockHashComputeTime: 101.167us - UncompressedRowBatchSize: 81.93 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=295): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 7.208us - ExecTime: 883.576us - InitProbeSideTime: 247.76us - JoinFilterTimer: 394ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 22.870us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.564us - ProbeFindNextTime: 0ns - ProbeRows: 5.499K (5499) - ProbeTime: 710.839us - ProbeWhenBuildSideOutputTime: 150.937us - ProbeWhenProbeSideOutputTime: 46.945us - ProbeWhenProcessHashTableTime: 52.212us - ProbeWhenSearchHashTableTime: 137.923us - ProjectionTime: 121.249us - RowsProduced: 4.597K (4597) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s81ms EXCHANGE_OPERATOR (id=294): - BlocksProduced: 3 - BytesReceived: 37.85 KB - CloseTime: 2.816us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 92.797us - ExecTime: 35.455us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 108.00 KB - MemoryUsage: - Blocks: 216.00 KB - PeakMemoryUsage: 108.00 KB - OpenTime: 15.445us - ProjectionTime: 0ns - RowsProduced: 5.499K (5499) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 955.618ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.206ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.134ms - CloseTime: 12.120us - GetBlockTime: 64.520us - OpenTime: 1.881us - PrepareTime: 53.651us - SinkTime: 1.31ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.183ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 240.717us HASH_JOIN_SINK_OPERATOR (id=295): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.353us - BuildRows: 4.598K (4598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 121.840us - BuildTableInsertTime: 312.871us - BuildTableTime: 319.77us - CloseTime: 0ns - ExecTime: 1.50ms - InputRows: 4.597K (4597) - MemoryUsage: - BuildBlocks: 214.80 KB - BuildKeyArena: 112.00 KB - HashTable: 54.46 KB - PeakMemoryUsage: 377.25 KB - OpenTime: 21.270us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 148.757us - RuntimeFilterComputeTime: 351.527us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=286): - BlocksProduced: 4 - BytesReceived: 87.25 KB - CloseTime: 9.823us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 139.772us - ExecTime: 73.656us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.966us - ProjectionTime: 0ns - RowsProduced: 4.597K (4597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s36ms Fragment 39: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 7.412ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 6.904ms - CloseTime: 130.614us - GetBlockTime: 6.5ms - OpenTime: 124.834us - PrepareTime: 244.175us - SinkTime: 658.823us - GetBlockCounter: 76 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.264ms - WaitBfTime: 776.509ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 220.470ms DATA_STREAM_SINK_OPERATOR (id=294,dst_id=294): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 33.34 KB - CloseTime: 17.143us - CompressTime: 0ns - ExecTime: 704.176us - InputRows: 5.116K (5116) - LocalBytesSent: 73.74 KB - LocalSendTime: 9.443us - LocalSentRows: 2.554K (2554) - MemoryUsage: - PeakMemoryUsage: 216.00 KB - MergeBlockTime: 0ns - OpenTime: 33.204us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 338.667ms - RowsProduced: 5.116K (5116) - RpcAvgTime: 286.151ms - RpcCount: 1 - RpcMaxTime: 286.151ms - RpcMinTime: 286.151ms - RpcSumTime: 286.151ms - SerializeBatchTime: 56.584us - SplitBlockDistributeByChannelTime: 313.825us - SplitBlockHashComputeTime: 142.762us - UncompressedRowBatchSize: 77.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=293): - BlocksProduced: 14 - BuildOutputBlock: 0ns - CloseTime: 13.600us - ExecTime: 5.476ms - InitProbeSideTime: 2.818ms - JoinFilterTimer: 3.981us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 12.773us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.21us - ProbeFindNextTime: 0ns - ProbeRows: 234.141K (234141) - ProbeTime: 4.620ms - ProbeWhenBuildSideOutputTime: 25.434us - ProbeWhenProbeSideOutputTime: 140.458us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.232ms - ProjectionTime: 671.279us - RowsProduced: 5.116K (5116) - WaitForDependency[HASH_JOIN_OPERATOR_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=[null() : �] - TabletIds: [21091] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.213us - BlocksProduced: 75 - CloseTime: 93.847us - ExecTime: 161.0ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 207.373us - ProcessConjunctTime: 42.371us - ProjectionTime: 0ns - RowsProduced: 234.141K (234141) - RowsRead: 234.141K (234141) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 81.476ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 160.230ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 88, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 89, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [USER_ID, AVG_REPLY_TIME, STAT_DATE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=7, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [124.417ms, 39.455ms, 91.060ms, ] - PerScannerRowsRead: [37, 13, 234.09K, ] - PerScannerWaitTime: [7.153ms, 8.723ms, 65.599ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 253.760ms - MemoryUsage: - FreeBlocks: 5.38 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 14.134ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.684us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 165.217ms - ScannerCtxSchedTime: 81.471ms - ScannerFilterTime: 118.591us - ScannerGetBlockTime: 254.691ms - ScannerInitTime: 49.330us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 6.604us - BlockConditionsFilteredBloomFilterTime: 8.176us - BlockConditionsFilteredDictTime: 3.395us - BlockConditionsFilteredTime: 1.235ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 1.153ms - BlockInitSeekCount: 34 - BlockInitSeekTime: 533.160us - BlockInitTime: 2.44ms - BlockLoadTime: 267.441ms - BlocksLoad: 993 - CachedPagesNum: 665 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 87.479ms - FirstReadSeekCount: 1.978K (1978) - FirstReadSeekTime: 585.947us - FirstReadTime: 133.911ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.11us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.231ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 6.963ms - OutputIndexResultColumnTimer: 76.707us - RawRowsRead: 4.011884M (4011884) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 1.835008M (1835008) - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.866974M (1866974) - RowsShortCircuitPredInput: 3.049972M (3049972) - RowsStatsFiltered: 1.835008M (1835008) - RowsVectorPredFiltered: 961.912K (961912) - RowsVectorPredInput: 4.011884M (4011884) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 24.170ms - TotalPagesNum: 665 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 5.319ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 181.84us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 99.222us - CloseTime: 23.517us - GetBlockTime: 6.771us - OpenTime: 1.455us - PrepareTime: 53.594us - SinkTime: 73.363us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.773us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 224.864us HASH_JOIN_SINK_OPERATOR (id=293): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 971ns - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.116us - BuildTableInsertTime: 32.482us - BuildTableTime: 38.727us - CloseTime: 0ns - ExecTime: 81.359us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 8.850us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=291): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 20.773us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.624us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 3.25 KB - OpenTime: 20.107us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 795.174ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 10.364ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.456ms - CloseTime: 219.278us - GetBlockTime: 8.144ms - OpenTime: 394.946us - PrepareTime: 267.821us - SinkTime: 716.787us - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.124ms - WaitBfTime: 723.440ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 50.726ms DATA_STREAM_SINK_OPERATOR (id=294,dst_id=294): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 37.79 KB - CloseTime: 19.216us - CompressTime: 0ns - ExecTime: 771.273us - InputRows: 5.904K (5904) - LocalBytesSent: 85.44 KB - LocalSendTime: 13.798us - LocalSentRows: 2.959K (2959) - MemoryUsage: - PeakMemoryUsage: 216.00 KB - MergeBlockTime: 0ns - OpenTime: 41.952us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s315ms - RowsProduced: 5.904K (5904) - RpcAvgTime: 5s292ms - RpcCount: 1 - RpcMaxTime: 5s292ms - RpcMinTime: 5s292ms - RpcSumTime: 5s292ms - SerializeBatchTime: 69.418us - SplitBlockDistributeByChannelTime: 295.787us - SplitBlockHashComputeTime: 171.988us - UncompressedRowBatchSize: 88.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=293): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 37.79us - ExecTime: 7.269ms - InitProbeSideTime: 3.684ms - JoinFilterTimer: 8.233us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 17.284us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.853us - ProbeFindNextTime: 0ns - ProbeRows: 270.792K (270792) - ProbeTime: 6.137ms - ProbeWhenBuildSideOutputTime: 41.639us - ProbeWhenProbeSideOutputTime: 217.763us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.634ms - ProjectionTime: 834.458us - RowsProduced: 5.904K (5904) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 284.766ms 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=[null() : �] - TabletIds: [21089] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.280us - BlocksProduced: 90 - CloseTime: 156.43us - ExecTime: 132.104ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 490.191us - ProcessConjunctTime: 147.638us - ProjectionTime: 0ns - RowsProduced: 270.792K (270792) - RowsRead: 270.792K (270792) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 41.646ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 130.648ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 88, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 89, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [USER_ID, AVG_REPLY_TIME, STAT_DATE] - ShortCircuitPredicates: NullPredicate(not_null), column_id=7, opposite=false - PreEvaluatePredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=13, opposite=false - PerScannerRunningTime: [178.030ms, 64.256ms, 84.722ms, ] - PerScannerRowsRead: [49, 6.78K, 263.97K, ] - PerScannerWaitTime: [8.583ms, 14.566ms, 18.496ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 325.355ms - MemoryUsage: - FreeBlocks: 6.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 52.123ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.954us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 185.390ms - ScannerCtxSchedTime: 41.637ms - ScannerFilterTime: 160.559us - ScannerGetBlockTime: 326.727ms - ScannerInitTime: 179.350us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 16.160us - BlockConditionsFilteredBloomFilterTime: 10.540us - BlockConditionsFilteredDictTime: 4.749us - BlockConditionsFilteredTime: 14.349ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 14.221ms - BlockInitSeekCount: 36 - BlockInitSeekTime: 563.423us - BlockInitTime: 15.189ms - BlockLoadTime: 377.122ms - BlocksLoad: 988 - CachedPagesNum: 675 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 201.562ms - FirstReadSeekCount: 1.968K (1968) - FirstReadSeekTime: 618.532us - FirstReadTime: 129.128ms - IOTimer: 0ns - InvertedIndexFilterTime: 26.410us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.777ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 6.882ms - OutputIndexResultColumnTimer: 86.182us - RawRowsRead: 3.991294M (3991294) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 1.785856M (1785856) - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 1.812077M (1812077) - RowsShortCircuitPredInput: 2.997579M (2997579) - RowsStatsFiltered: 1.785856M (1785856) - RowsVectorPredFiltered: 993.715K (993715) - RowsVectorPredInput: 3.991294M (3991294) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 8.492ms - TotalPagesNum: 675 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 5.727ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 148.800us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 79.387us - CloseTime: 14.220us - GetBlockTime: 9.0us - OpenTime: 3.374us - PrepareTime: 47.250us - SinkTime: 52.771us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.217us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.822ms HASH_JOIN_SINK_OPERATOR (id=293): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.374us - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.857us - BuildTableInsertTime: 17.910us - BuildTableTime: 22.483us - CloseTime: 0ns - ExecTime: 66.15us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 13.962us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=291): - BlocksProduced: 2 - BytesReceived: 1.21 KB - CloseTime: 12.147us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.689us - ExecTime: 31.636us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.709us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms Fragment 40: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 361.665us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 178.493us - CloseTime: 41.233us - GetBlockTime: 52.127us - OpenTime: 2.437us - PrepareTime: 134.41us - SinkTime: 101.623us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 312.535us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.460ms DATA_STREAM_SINK_OPERATOR (id=291,dst_id=291): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.38 KB - CloseTime: 19.664us - CompressTime: 0ns - ExecTime: 165.55us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 23.535us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 3.25 KB - MergeBlockTime: 4.247us - OpenTime: 44.326us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 293.308ms - RowsProduced: 109 - RpcAvgTime: 283.860ms - RpcCount: 1 - RpcMaxTime: 283.860ms - RpcMinTime: 283.860ms - RpcSumTime: 283.860ms - SerializeBatchTime: 15.244us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.49 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=290): - BlocksProduced: 0 - BuildTime: 40.432us - CloseTime: 997ns - ExecTime: 74.169us - HashTableComputeTime: 15.758us - HashTableEmplaceTime: 9.164us - HashTableInputCount: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 30.917us - ProjectionTime: 0ns - RowsProduced: 109 EXCHANGE_OPERATOR (id=289): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 14.138us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.704us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 2.75 KB - OpenTime: 19.553us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 794.383ms Fragment 41: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 573.743us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 209.510us - CloseTime: 61.508us - GetBlockTime: 106.497us - OpenTime: 60.393us - PrepareTime: 234.646us - SinkTime: 14.75us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 499.791us - WaitBfTime: 778.307ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.550ms DATA_STREAM_SINK_OPERATOR (id=289,dst_id=289): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 36.529us - CompressTime: 0ns - ExecTime: 76.914us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 7.157us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.906us - 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=288): - BlocksProduced: 0 - BuildTime: 48.277us - CloseTime: 508ns - ExecTime: 68.788us - HashTableComputeTime: 22.327us - HashTableEmplaceTime: 12.198us - HashTableInputCount: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 17.523us - ProjectionTime: 0ns - RowsProduced: 109 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=[null() : �] - TabletIds: [15070] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.686us - BlocksProduced: 1 - CloseTime: 20.300us - ExecTime: 13.822ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 147.414us - ProcessConjunctTime: 10.670us - ProjectionTime: 0ns - RowsProduced: 109 - RowsRead: 109 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 13.374ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 13.600ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 88, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 89, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [USER_ID] - PerScannerRunningTime: [14.857us, ] - PerScannerRowsRead: [109, ] - PerScannerWaitTime: [13.374ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.530us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 143.765us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 181ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 222.409us - ScannerCtxSchedTime: 13.373ms - ScannerFilterTime: 659ns - ScannerGetBlockTime: 13.100us - ScannerInitTime: 27.338us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 180ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.305us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 6 - BlockInitSeekTime: 15.886us - BlockInitTime: 48.211us - BlockLoadTime: 62.497us - BlocksLoad: 2 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 166ns - FirstReadTime: 4.27us - IOTimer: 0ns - InvertedIndexFilterTime: 304ns - 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: 113ns - OutputIndexResultColumnTimer: 87ns - 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 42: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 203.378ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 203.239ms - CloseTime: 36.148us - GetBlockTime: 104.383ms - OpenTime: 4.785us - PrepareTime: 91.213us - SinkTime: 98.787ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 3.526ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.493ms DATA_STREAM_SINK_OPERATOR (id=286,dst_id=286): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 87.15 KB - CloseTime: 15.896us - CompressTime: 0ns - ExecTime: 98.829ms - InputRows: 9.2K (9200) - LocalBytesSent: 215.10 KB - LocalSendTime: 28.359us - LocalSentRows: 4.603K (4603) - MemoryUsage: - PeakMemoryUsage: 693.00 KB - MergeBlockTime: 0ns - OpenTime: 29.215us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s824ms - RowsProduced: 9.2K (9200) - RpcAvgTime: 3s404ms - RpcCount: 2 - RpcMaxTime: 6s809ms - RpcMinTime: 6s809ms - RpcSumTime: 6s809ms - SerializeBatchTime: 102.181us - SplitBlockDistributeByChannelTime: 98.76ms - SplitBlockHashComputeTime: 375.461us - UncompressedRowBatchSize: 222.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns CROSS_JOIN_OPERATOR (id=285): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 5.232us - ExecTime: 104.370ms - JoinFilterTimer: 674ns - LoopGenerateJoin: 103.173ms - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.542us - ProbeRows: 80 - ProbeTime: 0ns - ProjectionTime: 517.429us - RowsProduced: 9.2K (9200) - WaitForDependency[CROSS_JOIN_OPERATOR_DEPENDENCY]Time: 7.535ms EXCHANGE_OPERATOR (id=284): - BlocksProduced: 2 - BytesReceived: 1.61 KB - CloseTime: 11.70us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.369us - ExecTime: 38.873us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 3.25 KB - PeakMemoryUsage: 0.00 - OpenTime: 19.239us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4.84ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 100.626us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.589us - CloseTime: 14.175us - GetBlockTime: 4.662us - OpenTime: 2.486us - PrepareTime: 39.695us - SinkTime: 14.62us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.582us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 881.501us CROSS_JOIN_SINK_OPERATOR (id=285): - JoinType: RIGHT_OUTER_JOIN - BuildRows: 115 - CloseTime: 0ns - ExecTime: 12.943us - InputRows: 115 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 240ns - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[CROSS_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=279): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.824us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.360us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1024.00 B - MemoryUsage: - Blocks: 1024.00 B - PeakMemoryUsage: 32.00 KB - OpenTime: 17.495us - ProjectionTime: 0ns - RowsProduced: 115 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12.84ms Fragment 43: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 255.65us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 155.163us - CloseTime: 25.230us - GetBlockTime: 60.0us - OpenTime: 1.157us - PrepareTime: 67.514us - SinkTime: 73.117us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 220.920us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 169.240us DATA_STREAM_SINK_OPERATOR (id=284,dst_id=284): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.58 KB - CloseTime: 18.90us - CompressTime: 0ns - ExecTime: 127.282us - InputRows: 80 - LocalBytesSent: 0.00 - LocalSendTime: 0ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 4.25 KB - MergeBlockTime: 3.548us - OpenTime: 36.370us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.248ms - RowsProduced: 80 - RpcAvgTime: 863.797us - RpcCount: 1 - RpcMaxTime: 863.797us - RpcMinTime: 863.797us - RpcSumTime: 863.797us - SerializeBatchTime: 27.455us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.66 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=283): - BlocksProduced: 1 - CloseTime: 1.967us - DeserializeAndMergeTime: 0ns - ExecTime: 69.522us - GetResultsTime: 24.594us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.479us - HashTableSize: 80 - InsertKeysToColumnTime: 6.231us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.354us - ProjectionTime: 26.114us - RowsProduced: 80 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1.784ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 249.673us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 114.202us - CloseTime: 17.71us - GetBlockTime: 6.900us - OpenTime: 1.897us - PrepareTime: 111.907us - SinkTime: 81.432us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 224.848us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 347.753us AGGREGATION_SINK_OPERATOR (id=283): - BuildTime: 0ns - CloseTime: 5.752us - DeserializeAndMergeTime: 5.475us - ExecTime: 145.324us - ExprTime: 0ns - HashTableComputeTime: 62.997us - HashTableEmplaceTime: 58.894us - HashTableInputCount: 80 - InputRows: 80 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 75.817us - OpenTime: 58.283us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=282): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.610us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.174us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.38 KB - MemoryUsage: - Blocks: 9.38 KB - PeakMemoryUsage: 11.75 KB - OpenTime: 19.279us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1.438ms Fragment 44: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 901.74us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 443.734us - CloseTime: 62.100us - GetBlockTime: 249.81us - OpenTime: 160.170us - PrepareTime: 229.225us - SinkTime: 14.900us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 830.814us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.684us DATA_STREAM_SINK_OPERATOR (id=282,dst_id=282): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.905us - CompressTime: 0ns - ExecTime: 48.605us - InputRows: 80 - LocalBytesSent: 3.19 KB - LocalSendTime: 9.236us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.76us - 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: 163.135us - CloseTime: 18.202us - DeserializeAndMergeTime: 0ns - ExecTime: 287.661us - ExprTime: 107.488us - GetResultsTime: 38.764us - HashTableComputeTime: 45.717us - HashTableEmplaceTime: 41.368us - HashTableInputCount: 80 - HashTableIterateTime: 696ns - HashTableSize: 80 - InsertKeysToColumnTime: 5.795us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 1.28 MB - SerializeKeyArena: 1.27 MB - MergeTime: 0ns - OpenTime: 56.847us - ProjectionTime: 0ns - RowsProduced: 80 - SerializeDataTime: 10.666us - SerializeKeyTime: 0ns - SerializeResultTime: 40.794us - 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: 561ns - BlocksProduced: 1 - CloseTime: 32.200us - ExecTime: 1.274ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 242.136us - ProcessConjunctTime: 63.300us - ProjectionTime: 11.582us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 308.536us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 953.895us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID, USER_NAME, DATA_TYPE] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [92.894us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [308.536us, ] - BlockConvertTime: 0ns - BlockFetchTime: 31.360us - MemoryUsage: - FreeBlocks: 144.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 393.14us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 64ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 643.116us - ScannerCtxSchedTime: 305.674us - ScannerFilterTime: 1.804us - ScannerGetBlockTime: 78.587us - ScannerInitTime: 78.802us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 474ns - BlockConditionsFilteredBloomFilterTime: 2.476us - BlockConditionsFilteredDictTime: 6.66us - BlockConditionsFilteredTime: 24.600us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.144us - BlockInitSeekCount: 6 - BlockInitSeekTime: 20.106us - BlockInitTime: 90.26us - BlockLoadTime: 263.598us - BlocksLoad: 2 - CachedPagesNum: 8 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 6.954us - FirstReadTime: 11.690us - IOTimer: 0ns - InvertedIndexFilterTime: 2.427us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 35.633us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 42.379us - OutputIndexResultColumnTimer: 385ns - 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: 140ns - TotalPagesNum: 8 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 6.342us Fragment 45: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.640ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 722.706us - CloseTime: 131.121us - GetBlockTime: 62.388us - OpenTime: 610.178us - PrepareTime: 165.407us - SinkTime: 18.74us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.381ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.141ms DATA_STREAM_SINK_OPERATOR (id=279,dst_id=279): - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.859us - CompressTime: 0ns - ExecTime: 70.459us - InputRows: 115 - LocalBytesSent: 920.00 B - LocalSendTime: 10.692us - LocalSentRows: 115 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 36.125us - 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: 527ns - BlocksProduced: 1 - CloseTime: 111.369us - ExecTime: 9.740ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 689.701us - ProcessConjunctTime: 204.550us - ProjectionTime: 0ns - RowsProduced: 115 - RowsRead: 115 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.117ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 8.877ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [DATEKEY] - PerScannerRunningTime: [26.440us, ] - PerScannerRowsRead: [115, ] - PerScannerWaitTime: [8.117ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.760us - MemoryUsage: - FreeBlocks: 64.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 706.684us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 110ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 873.563us - ScannerCtxSchedTime: 8.114ms - ScannerFilterTime: 2.577us - ScannerGetBlockTime: 22.203us - ScannerInitTime: 253.637us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 197ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.353us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 940 - BlockInitSeekTime: 128.872us - BlockInitTime: 360.60us - BlockLoadTime: 373.845us - BlocksLoad: 2 - CachedPagesNum: 1 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 194ns - FirstReadTime: 1.562us - IOTimer: 0ns - InvertedIndexFilterTime: 348ns - 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: 202ns - OutputIndexResultColumnTimer: 225ns - 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: 237.689us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 84.10us - CloseTime: 29.397us - GetBlockTime: 29.665us - OpenTime: 1.474us - PrepareTime: 113.864us - SinkTime: 31.803us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 198.48us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 782.558us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 154.00 B - CloseTime: 23.497us - CompressTime: 0ns - ExecTime: 106.786us - InputRows: 1 - LocalBytesSent: 33.00 B - LocalSendTime: 7.900us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 560ns - OpenTime: 51.579us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s322ms - RowsProduced: 1 - RpcAvgTime: 3s303ms - RpcCount: 1 - RpcMaxTime: 3s303ms - RpcMinTime: 3s303ms - RpcSumTime: 3s303ms - SerializeBatchTime: 2.563us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 122.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.337us - DeserializeAndMergeTime: 0ns - ExecTime: 44.355us - GetResultsTime: 9.675us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 303ns - HashTableSize: 1 - InsertKeysToColumnTime: 4.799us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.346us - ProjectionTime: 17.75us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 335.936ms PipelineXTask (index=2):(Active: 1.797ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.650ms - CloseTime: 29.779us - GetBlockTime: 27.978us - OpenTime: 856ns - PrepareTime: 107.873us - SinkTime: 1.598ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 228.606us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 720.969us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 276.00 B - CloseTime: 25.464us - CompressTime: 0ns - ExecTime: 1.685ms - InputRows: 3 - LocalBytesSent: 94.00 B - LocalSendTime: 12.208us - LocalSentRows: 3 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.171us - OpenTime: 61.843us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s322ms - RowsProduced: 3 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 3.28us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 244.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.306us - DeserializeAndMergeTime: 0ns - ExecTime: 36.953us - GetResultsTime: 9.913us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 439ns - HashTableSize: 3 - InsertKeysToColumnTime: 5.445us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.278us - ProjectionTime: 12.179us - RowsProduced: 3 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 335.944ms PipelineXTask (index=4):(Active: 229.4us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 64.800us - CloseTime: 42.980us - GetBlockTime: 24.974us - OpenTime: 1.276us - PrepareTime: 112.698us - SinkTime: 27.62us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 179.58us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.297ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 154.00 B - CloseTime: 37.37us - CompressTime: 0ns - ExecTime: 117.609us - InputRows: 1 - LocalBytesSent: 33.00 B - LocalSendTime: 5.82us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 1.269us - OpenTime: 53.525us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s322ms - RowsProduced: 1 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 2.295us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 122.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.216us - DeserializeAndMergeTime: 0ns - ExecTime: 34.686us - GetResultsTime: 8.119us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 572ns - HashTableSize: 1 - InsertKeysToColumnTime: 4.63us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.386us - ProjectionTime: 13.420us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 334.310ms PipelineXTask (index=6):(Active: 274.828us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 120.374us - CloseTime: 9.900us - GetBlockTime: 40.354us - OpenTime: 1.840us - PrepareTime: 135.712us - SinkTime: 56.868us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 255.668us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 306.878us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 208.00 B - CloseTime: 8.124us - CompressTime: 0ns - ExecTime: 119.302us - InputRows: 2 - LocalBytesSent: 60.00 B - LocalSendTime: 8.665us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.971us - OpenTime: 54.813us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s323ms - RowsProduced: 2 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 3.715us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 176.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 880ns - DeserializeAndMergeTime: 0ns - ExecTime: 61.547us - GetResultsTime: 5.402us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 300ns - HashTableSize: 2 - InsertKeysToColumnTime: 2.259us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 20.823us - ProjectionTime: 26.675us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 336.137ms PipelineXTask (index=8):(Active: 143.5us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 47.723us - CloseTime: 25.6us - GetBlockTime: 13.460us - OpenTime: 483ns - PrepareTime: 64.210us - SinkTime: 21.220us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 111.885us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.753ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.37us - CompressTime: 0ns - ExecTime: 81.100us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 733ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 38.337us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s323ms - RowsProduced: 0 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 0 - CloseTime: 856ns - DeserializeAndMergeTime: 0ns - ExecTime: 21.326us - GetResultsTime: 2.182us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 43ns - HashTableSize: 0 - InsertKeysToColumnTime: 296ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.933us - ProjectionTime: 7.376us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 333.792ms PipelineXTask (index=10):(Active: 192.786us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 111.469us - CloseTime: 10.613us - GetBlockTime: 51.200us - OpenTime: 1.471us - PrepareTime: 63.857us - SinkTime: 44.327us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 175.396us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.226ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 220.00 B - CloseTime: 8.472us - CompressTime: 0ns - ExecTime: 87.662us - InputRows: 2 - LocalBytesSent: 66.00 B - LocalSendTime: 8.85us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.908us - OpenTime: 35.365us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s325ms - RowsProduced: 2 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 4.464us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 188.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 850ns - DeserializeAndMergeTime: 0ns - ExecTime: 60.976us - GetResultsTime: 8.277us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 677ns - HashTableSize: 2 - InsertKeysToColumnTime: 2.299us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.490us - ProjectionTime: 35.319us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 333.879ms PipelineXTask (index=12):(Active: 174.278us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 76.231us - CloseTime: 11.202us - GetBlockTime: 30.158us - OpenTime: 815ns - PrepareTime: 79.929us - SinkTime: 31.866us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 156.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.328ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 266.00 B - CloseTime: 8.475us - CompressTime: 0ns - ExecTime: 84.714us - InputRows: 3 - LocalBytesSent: 89.00 B - LocalSendTime: 4.299us - LocalSentRows: 3 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.223us - OpenTime: 44.593us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s323ms - RowsProduced: 3 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 3.157us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 234.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.57us - DeserializeAndMergeTime: 0ns - ExecTime: 41.545us - GetResultsTime: 8.519us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 575ns - HashTableSize: 3 - InsertKeysToColumnTime: 1.591us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.802us - ProjectionTime: 17.216us - RowsProduced: 3 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 334.172ms PipelineXTask (index=14):(Active: 154.892us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 62.260us - CloseTime: 12.785us - GetBlockTime: 25.725us - OpenTime: 1.37us - PrepareTime: 73.743us - SinkTime: 22.592us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 136.108us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.373ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 212.00 B - CloseTime: 10.658us - CompressTime: 0ns - ExecTime: 65.447us - InputRows: 2 - LocalBytesSent: 62.00 B - LocalSendTime: 4.117us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.320us - OpenTime: 32.509us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s323ms - RowsProduced: 2 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 1.770us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 180.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 607ns - DeserializeAndMergeTime: 0ns - ExecTime: 34.187us - GetResultsTime: 11.553us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 320ns - HashTableSize: 2 - InsertKeysToColumnTime: 6.397us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.47us - ProjectionTime: 10.980us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 334.163ms PipelineXTask (index=16):(Active: 155.633us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 76.599us - CloseTime: 12.267us - GetBlockTime: 25.831us - OpenTime: 574ns - PrepareTime: 61.289us - SinkTime: 35.419us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 137.380us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.592ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 154.00 B - CloseTime: 10.252us - CompressTime: 0ns - ExecTime: 76.432us - InputRows: 1 - LocalBytesSent: 33.00 B - LocalSendTime: 3.900us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 741ns - OpenTime: 30.951us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s323ms - RowsProduced: 1 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 1.872us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 122.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 846ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.784us - GetResultsTime: 9.868us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 196ns - HashTableSize: 1 - InsertKeysToColumnTime: 7.300us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.324us - ProjectionTime: 12.226us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 333.842ms PipelineXTask (index=18):(Active: 171.71us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 88.898us - CloseTime: 10.880us - GetBlockTime: 41.189us - OpenTime: 1.763us - PrepareTime: 63.886us - SinkTime: 30.553us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 153.475us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.995ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 206.00 B - CloseTime: 8.909us - CompressTime: 0ns - ExecTime: 78.220us - InputRows: 2 - LocalBytesSent: 59.00 B - LocalSendTime: 4.209us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 740ns - OpenTime: 39.80us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s324ms - RowsProduced: 2 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 2.91us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 174.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 623ns - DeserializeAndMergeTime: 0ns - ExecTime: 46.551us - GetResultsTime: 23.976us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 257ns - HashTableSize: 2 - InsertKeysToColumnTime: 10.40us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.119us - ProjectionTime: 12.790us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 332.232ms PipelineXTask (index=20):(Active: 136.635us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 54.834us - CloseTime: 11.135us - GetBlockTime: 16.198us - OpenTime: 407ns - PrepareTime: 65.98us - SinkTime: 23.583us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 119.816us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.47ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 220.00 B - CloseTime: 8.896us - CompressTime: 0ns - ExecTime: 73.35us - InputRows: 2 - LocalBytesSent: 66.00 B - LocalSendTime: 3.875us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 2.238us - OpenTime: 40.734us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s324ms - RowsProduced: 2 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 1.830us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 188.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 610ns - DeserializeAndMergeTime: 0ns - ExecTime: 24.28us - GetResultsTime: 3.385us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 193ns - HashTableSize: 2 - InsertKeysToColumnTime: 1.365us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.267us - ProjectionTime: 10.423us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 332.229ms PipelineXTask (index=22):(Active: 162.984us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 71.877us - CloseTime: 10.802us - GetBlockTime: 19.990us - OpenTime: 503ns - PrepareTime: 74.320us - SinkTime: 38.80us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 145.426us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.128ms DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 154.00 B - CloseTime: 8.763us - CompressTime: 0ns - ExecTime: 85.19us - InputRows: 1 - LocalBytesSent: 33.00 B - LocalSendTime: 5.922us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 805ns - OpenTime: 38.449us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s324ms - RowsProduced: 1 - RpcAvgTime: 3s304ms - RpcCount: 1 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 3s304ms - SerializeBatchTime: 8.62us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 122.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 690ns - DeserializeAndMergeTime: 0ns - ExecTime: 35.514us - GetResultsTime: 8.624us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 495ns - HashTableSize: 1 - InsertKeysToColumnTime: 5.389us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.911us - ProjectionTime: 8.860us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 332.232ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 219.592us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 77.771us - CloseTime: 10.366us - GetBlockTime: 8.406us - OpenTime: 3.430us - PrepareTime: 121.405us - SinkTime: 50.311us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 201.761us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.533ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 569ns - DeserializeAndMergeTime: 1.104us - ExecTime: 123.637us - ExprTime: 0ns - HashTableComputeTime: 35.63us - HashTableEmplaceTime: 17.471us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 46.296us - OpenTime: 72.589us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.693us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.553us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 448.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 3.13 KB - OpenTime: 20.168us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 326.624ms PipelineXTask (index=3):(Active: 257.595us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 119.665us - CloseTime: 6.56us - GetBlockTime: 16.386us - OpenTime: 2.847us - PrepareTime: 122.325us - SinkTime: 71.745us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 241.882us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.878ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 548ns - DeserializeAndMergeTime: 4.433us - ExecTime: 93.598us - ExprTime: 0ns - HashTableComputeTime: 44.82us - HashTableEmplaceTime: 28.348us - HashTableInputCount: 4 - InputRows: 4 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 61.58us - OpenTime: 22.790us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 4.737us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 56.315us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 960.00 B - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.45 KB - OpenTime: 38.844us - ProjectionTime: 0ns - RowsProduced: 4 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 331.265ms PipelineXTask (index=5):(Active: 182.587us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 64.659us - CloseTime: 5.300us - GetBlockTime: 6.379us - OpenTime: 4.575us - PrepareTime: 98.354us - SinkTime: 32.413us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 166.756us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.838ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 407ns - DeserializeAndMergeTime: 782ns - ExecTime: 57.371us - ExprTime: 0ns - HashTableComputeTime: 24.54us - HashTableEmplaceTime: 16.407us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 28.391us - OpenTime: 24.911us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.450us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.147us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 448.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.70 KB - OpenTime: 28.940us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 331.618ms PipelineXTask (index=7):(Active: 176.379us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 81.840us - CloseTime: 6.456us - GetBlockTime: 19.718us - OpenTime: 2.893us - PrepareTime: 76.641us - SinkTime: 40.25us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 161.57us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.547ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 413ns - DeserializeAndMergeTime: 1.31us - ExecTime: 73.387us - ExprTime: 0ns - HashTableComputeTime: 30.28us - HashTableEmplaceTime: 21.754us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 34.992us - OpenTime: 33.249us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 5.359us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.340us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 B - MemoryUsage: - Blocks: 896.00 B - PeakMemoryUsage: 3.33 KB - OpenTime: 19.749us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 326.697ms PipelineXTask (index=9):(Active: 118.523us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.441us - CloseTime: 3.481us - GetBlockTime: 1.494us - OpenTime: 3.109us - PrepareTime: 78.549us - SinkTime: 2.31us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.240us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.129ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 307ns - DeserializeAndMergeTime: 0ns - ExecTime: 15.867us - 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.671us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.626us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.76us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.94 KB - OpenTime: 32.14us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 333.807ms PipelineXTask (index=11):(Active: 224.488us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 122.799us - CloseTime: 13.29us - GetBlockTime: 16.948us - OpenTime: 2.160us - PrepareTime: 81.886us - SinkTime: 76.192us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 203.198us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.0ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 926ns - DeserializeAndMergeTime: 2.46us - ExecTime: 94.631us - ExprTime: 0ns - HashTableComputeTime: 57.659us - HashTableEmplaceTime: 35.702us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 67.567us - OpenTime: 18.968us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 10.113us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.381us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.45 KB - OpenTime: 20.256us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 330.795ms PipelineXTask (index=13):(Active: 150.932us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 72.268us - CloseTime: 3.63us - GetBlockTime: 12.423us - OpenTime: 2.160us - PrepareTime: 68.704us - SinkTime: 36.391us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 140.68us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.897ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 447ns - DeserializeAndMergeTime: 1.775us - ExecTime: 54.681us - ExprTime: 0ns - HashTableComputeTime: 25.251us - HashTableEmplaceTime: 18.98us - HashTableInputCount: 4 - InputRows: 4 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 31.892us - OpenTime: 18.354us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 2.111us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 49.674us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1024.00 B - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.45 KB - OpenTime: 36.347us - ProjectionTime: 0ns - RowsProduced: 4 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 333.260ms PipelineXTask (index=15):(Active: 167.919us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 78.899us - CloseTime: 2.488us - GetBlockTime: 9.102us - OpenTime: 2.95us - PrepareTime: 80.146us - SinkTime: 45.216us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 157.892us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.904ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 350ns - DeserializeAndMergeTime: 1.624us - ExecTime: 74.85us - ExprTime: 0ns - HashTableComputeTime: 28.242us - HashTableEmplaceTime: 18.155us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 40.369us - OpenTime: 29.353us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 1.727us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.240us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.45 KB - OpenTime: 17.615us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 333.267ms PipelineXTask (index=17):(Active: 128.224us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 51.94us - CloseTime: 12.21us - GetBlockTime: 4.936us - OpenTime: 2.783us - PrepareTime: 56.889us - SinkTime: 26.661us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.878us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.111ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 273ns - DeserializeAndMergeTime: 527ns - ExecTime: 48.359us - ExprTime: 0ns - HashTableComputeTime: 18.662us - HashTableEmplaceTime: 12.910us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 22.402us - OpenTime: 21.619us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.114us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.746us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 448.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.70 KB - OpenTime: 17.40us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 333.783ms PipelineXTask (index=19):(Active: 140.793us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 71.540us - CloseTime: 4.708us - GetBlockTime: 9.297us - OpenTime: 2.529us - PrepareTime: 57.284us - SinkTime: 38.172us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 128.259us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.344ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 338ns - DeserializeAndMergeTime: 1.402us - ExecTime: 55.558us - ExprTime: 0ns - HashTableComputeTime: 26.657us - HashTableEmplaceTime: 20.287us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 34.220us - OpenTime: 17.234us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 3.845us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.686us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.45 KB - OpenTime: 19.341us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 333.670ms PipelineXTask (index=21):(Active: 170.385us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 59.476us - CloseTime: 3.479us - GetBlockTime: 2.749us - OpenTime: 2.926us - PrepareTime: 100.150us - SinkTime: 30.667us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 160.711us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.221ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 176ns - DeserializeAndMergeTime: 1.62us - ExecTime: 83.317us - ExprTime: 0ns - HashTableComputeTime: 22.971us - HashTableEmplaceTime: 14.948us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 28.108us - OpenTime: 52.486us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.834us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.672us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 512.00 B - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.71 KB - OpenTime: 12.129us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 333.814ms PipelineXTask (index=23):(Active: 118.611us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 52.676us - CloseTime: 5.731us - GetBlockTime: 6.886us - OpenTime: 2.669us - PrepareTime: 52.823us - SinkTime: 27.830us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.130us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.165ms AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 647ns - DeserializeAndMergeTime: 433ns - ExecTime: 45.749us - ExprTime: 0ns - HashTableComputeTime: 20.940us - HashTableEmplaceTime: 13.489us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 24.364us - OpenTime: 17.372us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.573us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.221us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 448.00 B - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.70 KB - OpenTime: 19.616us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 330.886ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 247.616us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 139.788us - CloseTime: 29.300us - GetBlockTime: 49.916us - OpenTime: 968ns - PrepareTime: 71.776us - SinkTime: 73.190us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 211.139us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 307.658us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 142.00 B - CloseTime: 25.713us - CompressTime: 0ns - ExecTime: 139.290us - InputRows: 1 - LocalBytesSent: 27.00 B - LocalSendTime: 4.409us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 1.563us - OpenTime: 40.835us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.957ms - RowsProduced: 1 - RpcAvgTime: 157.379ms - RpcCount: 1 - RpcMaxTime: 157.379ms - RpcMinTime: 157.379ms - RpcSumTime: 157.379ms - SerializeBatchTime: 5.588us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 110.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.266us - DeserializeAndMergeTime: 0ns - ExecTime: 57.76us - GetResultsTime: 8.156us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 296ns - HashTableSize: 1 - InsertKeysToColumnTime: 2.728us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.521us - ProjectionTime: 33.374us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s639ms PipelineXTask (index=2):(Active: 287.258us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 173.961us - CloseTime: 7.989us - GetBlockTime: 47.856us - OpenTime: 392ns - PrepareTime: 100.681us - SinkTime: 113.101us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 273.266us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 248.821us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 146.00 B - CloseTime: 6.603us - CompressTime: 0ns - ExecTime: 176.741us - InputRows: 1 - LocalBytesSent: 29.00 B - LocalSendTime: 12.987us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 1.780us - OpenTime: 57.942us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.926ms - RowsProduced: 1 - RpcAvgTime: 157.413ms - RpcCount: 1 - RpcMaxTime: 157.413ms - RpcMinTime: 157.413ms - RpcSumTime: 157.413ms - SerializeBatchTime: 5.451us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 114.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 450ns - DeserializeAndMergeTime: 0ns - ExecTime: 65.176us - GetResultsTime: 7.429us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 284ns - HashTableSize: 1 - InsertKeysToColumnTime: 2.847us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 17.592us - ProjectionTime: 32.146us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s639ms PipelineXTask (index=4):(Active: 315.693us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 210.903us - CloseTime: 13.734us - GetBlockTime: 107.430us - OpenTime: 1.88us - PrepareTime: 85.764us - SinkTime: 83.764us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 294.699us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 566.157us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 144.00 B - CloseTime: 10.532us - CompressTime: 0ns - ExecTime: 145.251us - InputRows: 1 - LocalBytesSent: 28.00 B - LocalSendTime: 11.740us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 3.240us - OpenTime: 51.971us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.789ms - RowsProduced: 1 - RpcAvgTime: 157.195ms - RpcCount: 1 - RpcMaxTime: 157.195ms - RpcMinTime: 157.195ms - RpcSumTime: 157.195ms - SerializeBatchTime: 7.763us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 112.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.39us - DeserializeAndMergeTime: 0ns - ExecTime: 116.68us - GetResultsTime: 38.967us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 407ns - HashTableSize: 1 - InsertKeysToColumnTime: 27.713us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.168us - ProjectionTime: 56.133us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s638ms PipelineXTask (index=6):(Active: 214.856us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 92.981us - CloseTime: 9.197us - GetBlockTime: 31.187us - OpenTime: 1.28us - PrepareTime: 106.808us - SinkTime: 50.116us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 200.217us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 197.587us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 332.00 B - CloseTime: 7.663us - CompressTime: 0ns - ExecTime: 126.263us - InputRows: 4 - LocalBytesSent: 122.00 B - LocalSendTime: 3.976us - LocalSentRows: 4 - MemoryUsage: - PeakMemoryUsage: 448.00 B - MergeBlockTime: 1.232us - OpenTime: 68.808us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.931ms - RowsProduced: 4 - RpcAvgTime: 157.336ms - RpcCount: 1 - RpcMaxTime: 157.336ms - RpcMinTime: 157.336ms - RpcSumTime: 157.336ms - SerializeBatchTime: 3.827us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 300.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 564ns - DeserializeAndMergeTime: 0ns - ExecTime: 36.635us - GetResultsTime: 6.575us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 219ns - HashTableSize: 4 - InsertKeysToColumnTime: 2.314us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.515us - ProjectionTime: 17.69us - RowsProduced: 4 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s639ms PipelineXTask (index=8):(Active: 180.598us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 101.213us - CloseTime: 7.816us - GetBlockTime: 34.537us - OpenTime: 550ns - PrepareTime: 66.613us - SinkTime: 53.910us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 167.50us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 248.767us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 200.00 B - CloseTime: 6.435us - CompressTime: 0ns - ExecTime: 94.336us - InputRows: 2 - LocalBytesSent: 56.00 B - LocalSendTime: 5.375us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.325us - OpenTime: 34.725us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.986ms - RowsProduced: 2 - RpcAvgTime: 157.351ms - RpcCount: 1 - RpcMaxTime: 157.351ms - RpcMinTime: 157.351ms - RpcSumTime: 157.351ms - SerializeBatchTime: 5.666us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 168.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 478ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.705us - GetResultsTime: 7.983us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 314ns - HashTableSize: 2 - InsertKeysToColumnTime: 2.870us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.447us - ProjectionTime: 19.117us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s639ms PipelineXTask (index=10):(Active: 151.159us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 75.813us - CloseTime: 8.171us - GetBlockTime: 34.142us - OpenTime: 387ns - PrepareTime: 62.948us - SinkTime: 30.660us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 138.85us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 621.981us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 154.00 B - CloseTime: 7.18us - CompressTime: 0ns - ExecTime: 71.668us - InputRows: 1 - LocalBytesSent: 33.00 B - LocalSendTime: 4.121us - LocalSentRows: 1 - MemoryUsage: - PeakMemoryUsage: 320.00 B - MergeBlockTime: 1.298us - OpenTime: 34.296us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.884ms - RowsProduced: 1 - RpcAvgTime: 157.296ms - RpcCount: 1 - RpcMaxTime: 157.296ms - RpcMinTime: 157.296ms - RpcSumTime: 157.296ms - SerializeBatchTime: 3.516us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 122.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 445ns - DeserializeAndMergeTime: 0ns - ExecTime: 42.936us - GetResultsTime: 3.695us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 282ns - HashTableSize: 1 - InsertKeysToColumnTime: 1.457us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.0us - ProjectionTime: 26.147us - RowsProduced: 1 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s638ms PipelineXTask (index=12):(Active: 178.317us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 90.783us - CloseTime: 17.731us - GetBlockTime: 40.838us - OpenTime: 257ns - PrepareTime: 65.692us - SinkTime: 39.786us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 155.883us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 568.379us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 210.00 B - CloseTime: 14.22us - CompressTime: 0ns - ExecTime: 87.876us - InputRows: 2 - LocalBytesSent: 61.00 B - LocalSendTime: 9.241us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.527us - OpenTime: 34.520us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.790ms - RowsProduced: 2 - RpcAvgTime: 157.341ms - RpcCount: 1 - RpcMaxTime: 157.341ms - RpcMinTime: 157.341ms - RpcSumTime: 157.341ms - SerializeBatchTime: 3.410us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 178.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.75us - DeserializeAndMergeTime: 0ns - ExecTime: 50.945us - GetResultsTime: 7.869us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 453ns - HashTableSize: 2 - InsertKeysToColumnTime: 4.180us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.677us - ProjectionTime: 28.753us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s638ms PipelineXTask (index=14):(Active: 185.95us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 72.891us - CloseTime: 22.179us - GetBlockTime: 18.434us - OpenTime: 416ns - PrepareTime: 85.740us - SinkTime: 44.562us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 158.857us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 555.189us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 266.00 B - CloseTime: 19.381us - CompressTime: 0ns - ExecTime: 119.771us - InputRows: 3 - LocalBytesSent: 89.00 B - LocalSendTime: 21.365us - LocalSentRows: 3 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.259us - OpenTime: 56.46us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.939ms - RowsProduced: 3 - RpcAvgTime: 157.335ms - RpcCount: 1 - RpcMaxTime: 157.335ms - RpcMinTime: 157.335ms - RpcSumTime: 157.335ms - SerializeBatchTime: 2.458us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 234.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 819ns - DeserializeAndMergeTime: 0ns - ExecTime: 26.183us - GetResultsTime: 3.590us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 239ns - HashTableSize: 3 - InsertKeysToColumnTime: 1.247us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.334us - ProjectionTime: 11.782us - RowsProduced: 3 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s638ms PipelineXTask (index=16):(Active: 184.410us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 68.211us - CloseTime: 35.797us - GetBlockTime: 23.610us - OpenTime: 233ns - PrepareTime: 76.322us - SinkTime: 24.290us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 133.226us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 598.559us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 220.00 B - CloseTime: 16.217us - CompressTime: 0ns - ExecTime: 89.375us - InputRows: 2 - LocalBytesSent: 66.00 B - LocalSendTime: 2.226us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 673ns - OpenTime: 49.60us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.851ms - RowsProduced: 2 - RpcAvgTime: 157.259ms - RpcCount: 1 - RpcMaxTime: 157.259ms - RpcMinTime: 157.259ms - RpcSumTime: 157.259ms - SerializeBatchTime: 2.205us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 188.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 1.345us - DeserializeAndMergeTime: 0ns - ExecTime: 33.439us - GetResultsTime: 9.918us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 251ns - HashTableSize: 2 - InsertKeysToColumnTime: 7.916us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.762us - ProjectionTime: 10.284us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s638ms PipelineXTask (index=18):(Active: 238.981us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 148.851us - CloseTime: 6.867us - GetBlockTime: 44.115us - OpenTime: 392ns - PrepareTime: 78.914us - SinkTime: 92.354us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 205.448us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 536.944us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 342.00 B - CloseTime: 5.832us - CompressTime: 0ns - ExecTime: 136.808us - InputRows: 4 - LocalBytesSent: 127.00 B - LocalSendTime: 6.951us - LocalSentRows: 4 - MemoryUsage: - PeakMemoryUsage: 448.00 B - MergeBlockTime: 1.766us - OpenTime: 39.197us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.916ms - RowsProduced: 4 - RpcAvgTime: 157.393ms - RpcCount: 1 - RpcMaxTime: 157.393ms - RpcMinTime: 157.393ms - RpcSumTime: 157.393ms - SerializeBatchTime: 17.146us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 310.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 409ns - DeserializeAndMergeTime: 0ns - ExecTime: 53.183us - GetResultsTime: 9.767us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 200ns - HashTableSize: 4 - InsertKeysToColumnTime: 4.803us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.574us - ProjectionTime: 23.590us - RowsProduced: 4 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s638ms PipelineXTask (index=20):(Active: 209.326us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 134.857us - CloseTime: 9.857us - GetBlockTime: 57.337us - OpenTime: 1.185us - PrepareTime: 59.813us - SinkTime: 61.274us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 193.982us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.934us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 206.00 B - CloseTime: 8.511us - CompressTime: 0ns - ExecTime: 102.109us - InputRows: 2 - LocalBytesSent: 59.00 B - LocalSendTime: 7.67us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 1.760us - OpenTime: 33.120us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 158.963ms - RowsProduced: 2 - RpcAvgTime: 157.415ms - RpcCount: 1 - RpcMaxTime: 157.415ms - RpcMinTime: 157.415ms - RpcSumTime: 157.415ms - SerializeBatchTime: 4.633us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 174.00 B - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 1 - CloseTime: 575ns - DeserializeAndMergeTime: 0ns - ExecTime: 63.117us - GetResultsTime: 15.6us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 362ns - HashTableSize: 2 - InsertKeysToColumnTime: 9.147us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.264us - ProjectionTime: 32.176us - RowsProduced: 2 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s639ms PipelineXTask (index=22):(Active: 191.3us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 96.881us - CloseTime: 25.168us - GetBlockTime: 28.893us - OpenTime: 333ns - PrepareTime: 64.761us - SinkTime: 54.138us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 161.14us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 581.146us DATA_STREAM_SINK_OPERATOR (id=277,dst_id=277): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.743us - CompressTime: 0ns - ExecTime: 107.326us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 2.447us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 34.976us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 159.992ms - RowsProduced: 0 - RpcAvgTime: 159.78ms - RpcCount: 1 - RpcMaxTime: 159.78ms - RpcMinTime: 159.78ms - RpcSumTime: 159.78ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=276): - BlocksProduced: 0 - CloseTime: 1.594us - DeserializeAndMergeTime: 0ns - ExecTime: 37.111us - GetResultsTime: 6.628us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 33ns - HashTableSize: 0 - InsertKeysToColumnTime: 834ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.285us - ProjectionTime: 10.503us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s744ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 169.29us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 86.102us - CloseTime: 21.662us - GetBlockTime: 12.152us - OpenTime: 2.622us - PrepareTime: 54.65us - SinkTime: 50.960us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 139.155us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 216.524us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.226us - DeserializeAndMergeTime: 884ns - ExecTime: 70.726us - ExprTime: 0ns - HashTableComputeTime: 26.966us - HashTableEmplaceTime: 12.722us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 45.778us - OpenTime: 18.977us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 131.00 B - CloseTime: 18.56us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.985us - ExecTime: 42.171us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 16.33us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=3):(Active: 123.10us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.617us - CloseTime: 6.376us - GetBlockTime: 8.929us - OpenTime: 2.680us - PrepareTime: 52.125us - SinkTime: 28.817us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.378us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 242.940us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 706ns - DeserializeAndMergeTime: 945ns - ExecTime: 50.518us - ExprTime: 0ns - HashTableComputeTime: 19.905us - HashTableEmplaceTime: 14.33us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 25.18us - OpenTime: 21.357us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 133.00 B - CloseTime: 4.587us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.636us - ExecTime: 26.248us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 13.784us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=5):(Active: 115.206us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.390us - CloseTime: 3.190us - GetBlockTime: 5.514us - OpenTime: 2.372us - PrepareTime: 56.698us - SinkTime: 26.841us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 286.527us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 441ns - DeserializeAndMergeTime: 486ns - ExecTime: 49.204us - ExprTime: 0ns - HashTableComputeTime: 21.877us - HashTableEmplaceTime: 18.415us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 24.137us - OpenTime: 22.209us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 132.00 B - CloseTime: 2.86us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.696us - ExecTime: 26.606us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 19.497us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=7):(Active: 217.396us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 155.413us - CloseTime: 4.168us - GetBlockTime: 37.11us - OpenTime: 2.494us - PrepareTime: 50.579us - SinkTime: 78.160us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 201.598us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 399.488us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 618ns - DeserializeAndMergeTime: 3.204us - ExecTime: 90.573us - ExprTime: 0ns - HashTableComputeTime: 53.97us - HashTableEmplaceTime: 33.562us - HashTableInputCount: 4 - InputRows: 4 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 70.654us - OpenTime: 13.450us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 6 - BytesReceived: 445.00 B - CloseTime: 2.700us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 52.448us - ExecTime: 51.624us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 15.101us - ProjectionTime: 0ns - RowsProduced: 4 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=9):(Active: 151.47us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 89.329us - CloseTime: 6.144us - GetBlockTime: 14.47us - OpenTime: 1.995us - PrepareTime: 48.594us - SinkTime: 47.467us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 135.76us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 322.645us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 786ns - DeserializeAndMergeTime: 944ns - ExecTime: 66.47us - ExprTime: 0ns - HashTableComputeTime: 37.96us - HashTableEmplaceTime: 23.950us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 43.169us - OpenTime: 18.413us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 4 - BytesReceived: 264.00 B - CloseTime: 4.534us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 33.86us - ExecTime: 32.989us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 16.117us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=11):(Active: 146.478us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 87.898us - CloseTime: 3.709us - GetBlockTime: 6.270us - OpenTime: 2.57us - PrepareTime: 48.223us - SinkTime: 61.902us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 135.679us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 321.687us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 558ns - DeserializeAndMergeTime: 396ns - ExecTime: 76.489us - ExprTime: 0ns - HashTableComputeTime: 53.480us - HashTableEmplaceTime: 30.781us - HashTableInputCount: 1 - InputRows: 1 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 24.00 B - PeakMemoryUsage: 528.02 KB - SerializeKeyArena: 528.00 KB - MergeTime: 58.321us - OpenTime: 14.495us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 137.00 B - CloseTime: 2.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.585us - ExecTime: 24.603us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 16.770us - ProjectionTime: 0ns - RowsProduced: 1 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=13):(Active: 123.163us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 62.995us - CloseTime: 4.164us - GetBlockTime: 10.682us - OpenTime: 1.890us - PrepareTime: 49.280us - SinkTime: 31.536us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.599us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 333.862us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 788ns - DeserializeAndMergeTime: 1.161us - ExecTime: 47.562us - ExprTime: 0ns - HashTableComputeTime: 23.56us - HashTableEmplaceTime: 15.76us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 27.923us - OpenTime: 15.641us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 2 - BytesReceived: 176.00 B - CloseTime: 2.622us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.956us - ExecTime: 32.644us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 20.942us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=15):(Active: 211.304us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 122.520us - CloseTime: 5.701us - GetBlockTime: 21.567us - OpenTime: 2.556us - PrepareTime: 76.803us - SinkTime: 65.765us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 195.860us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 367.163us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 779ns - DeserializeAndMergeTime: 2.896us - ExecTime: 88.689us - ExprTime: 0ns - HashTableComputeTime: 39.161us - HashTableEmplaceTime: 18.990us - HashTableInputCount: 3 - InputRows: 3 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 60.114us - OpenTime: 23.312us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 4 - BytesReceived: 308.00 B - CloseTime: 4.280us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 24.406us - ExecTime: 41.733us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 18.219us - ProjectionTime: 0ns - RowsProduced: 3 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=17):(Active: 174.920us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 111.851us - CloseTime: 10.223us - GetBlockTime: 24.672us - OpenTime: 2.832us - PrepareTime: 46.238us - SinkTime: 43.749us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.877us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 213.952us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 1.203us - DeserializeAndMergeTime: 1.491us - ExecTime: 58.258us - ExprTime: 0ns - HashTableComputeTime: 27.123us - HashTableEmplaceTime: 16.815us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 36.378us - OpenTime: 14.958us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 4 - BytesReceived: 274.00 B - CloseTime: 7.434us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.601us - ExecTime: 46.168us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 17.148us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=19):(Active: 260.946us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 196.316us - CloseTime: 6.503us - GetBlockTime: 49.76us - OpenTime: 2.5us - PrepareTime: 51.883us - SinkTime: 90.834us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 238.270us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 682.954us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 782ns - DeserializeAndMergeTime: 6.658us - ExecTime: 107.229us - ExprTime: 0ns - HashTableComputeTime: 53.374us - HashTableEmplaceTime: 26.764us - HashTableInputCount: 6 - InputRows: 6 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 168.00 B - PeakMemoryUsage: 528.16 KB - SerializeKeyArena: 528.00 KB - MergeTime: 80.325us - OpenTime: 18.439us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 10 - BytesReceived: 730.00 B - CloseTime: 4.820us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 61.31us - ExecTime: 65.431us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 512.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 16.650us - ProjectionTime: 0ns - RowsProduced: 6 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s638ms PipelineXTask (index=21):(Active: 165.653us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 106.882us - CloseTime: 7.296us - GetBlockTime: 16.948us - OpenTime: 2.886us - PrepareTime: 44.797us - SinkTime: 62.746us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.612us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.731us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 806ns - DeserializeAndMergeTime: 1.451us - ExecTime: 73.640us - ExprTime: 0ns - HashTableComputeTime: 32.49us - HashTableEmplaceTime: 18.251us - HashTableInputCount: 2 - InputRows: 2 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 72.00 B - PeakMemoryUsage: 528.07 KB - SerializeKeyArena: 528.00 KB - MergeTime: 40.841us - OpenTime: 11.240us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 4 - BytesReceived: 267.00 B - CloseTime: 5.350us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 17.127us - ExecTime: 35.984us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 448.00 B - PeakMemoryUsage: 2.94 KB - OpenTime: 16.97us - ProjectionTime: 0ns - RowsProduced: 2 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s639ms PipelineXTask (index=23):(Active: 168.741us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 86.815us - CloseTime: 12.892us - GetBlockTime: 4.560us - OpenTime: 2.275us - PrepareTime: 63.141us - SinkTime: 55.176us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 143.424us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.513us AGGREGATION_SINK_OPERATOR (id=276): - BuildTime: 0ns - CloseTime: 895ns - DeserializeAndMergeTime: 0ns - ExecTime: 88.401us - 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: 32.777us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=275): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.179us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.516us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 2.94 KB - OpenTime: 13.266us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s744ms Fragment 47: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 627.828us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 386.792us - CloseTime: 21.271us - GetBlockTime: 73.676us - OpenTime: 7.298us - PrepareTime: 205.331us - SinkTime: 261.844us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 595.178us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.509ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.387us - CompressTime: 0ns - ExecTime: 368.732us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 53.357us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 95.877us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 33.943ms - RowsProduced: 0 - RpcAvgTime: 21.352ms - RpcCount: 12 - RpcMaxTime: 21.520ms - RpcMinTime: 21.150ms - RpcSumTime: 256.234ms - 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 STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 532ns - DeserializeAndMergeTime: 0ns - ExecTime: 35.101us - ExprTime: 0ns - GetResultsTime: 4.908us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 111ns - HashTableSize: 0 - InsertKeysToColumnTime: 340ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.840us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 836ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.320us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.936us - ExecTime: 48.643us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.819us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.501us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 20.49us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 25.742us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 1.66 KB - OpenTime: 839ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 108.571ms PipelineXTask (index=5):(Active: 524.688us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 334.894us - CloseTime: 18.471us - GetBlockTime: 36.958us - OpenTime: 3.302us - PrepareTime: 163.240us - SinkTime: 276.513us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 499.368us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 618.660us DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.495us - CompressTime: 0ns - ExecTime: 371.825us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 43.432us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 85.277us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.202ms - RowsProduced: 0 - RpcAvgTime: 23.384ms - RpcCount: 12 - RpcMaxTime: 23.563ms - RpcMinTime: 23.190ms - RpcSumTime: 280.614ms - 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 STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 896ns - DeserializeAndMergeTime: 0ns - ExecTime: 44.882us - ExprTime: 0ns - GetResultsTime: 17.604us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 51ns - HashTableSize: 0 - InsertKeysToColumnTime: 8.126us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.641us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.450us - SerializeKeyTime: 0ns - SerializeResultTime: 20.899us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.313us - ExecTime: 29.36us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.61us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.563us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.715us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.875us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.306us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.374ms PipelineXTask (index=10):(Active: 507.507us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 269.330us - CloseTime: 19.838us - GetBlockTime: 22.814us - OpenTime: 5.213us - PrepareTime: 208.496us - SinkTime: 225.672us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 481.774us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.341ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.426us - CompressTime: 0ns - ExecTime: 338.152us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 34.577us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 101.344us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.25ms - RowsProduced: 0 - RpcAvgTime: 22.238ms - RpcCount: 12 - RpcMaxTime: 22.452ms - RpcMinTime: 22.19ms - RpcSumTime: 266.864ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 346ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 649ns - DeserializeAndMergeTime: 0ns - ExecTime: 53.528us - ExprTime: 0ns - GetResultsTime: 4.488us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 49ns - HashTableSize: 0 - InsertKeysToColumnTime: 447ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 44.505us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 632ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.43us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.317us - ExecTime: 35.242us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.904us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.197us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.100us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.649us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 715ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.819ms PipelineXTask (index=15):(Active: 572.722us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 349.766us - CloseTime: 22.542us - GetBlockTime: 30.328us - OpenTime: 4.832us - PrepareTime: 191.113us - SinkTime: 294.691us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 543.424us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.750ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.828us - CompressTime: 0ns - ExecTime: 409.395us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 49.941us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 105.646us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.106ms - RowsProduced: 0 - RpcAvgTime: 23.258ms - RpcCount: 12 - RpcMaxTime: 23.485ms - RpcMinTime: 23.83ms - RpcSumTime: 279.96ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 693ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 570ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.268us - ExprTime: 0ns - GetResultsTime: 5.763us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 149ns - HashTableSize: 0 - InsertKeysToColumnTime: 584ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.793us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.125us - SerializeKeyTime: 0ns - SerializeResultTime: 7.874us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 9.549us - ExecTime: 43.571us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.644us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.685us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.893us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.92us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 843ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.666ms PipelineXTask (index=20):(Active: 609.397us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 331.673us - CloseTime: 19.665us - GetBlockTime: 28.434us - OpenTime: 3.322us - PrepareTime: 250.566us - SinkTime: 284.662us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 583.638us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.282ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.290us - CompressTime: 0ns - ExecTime: 419.532us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 41.608us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 125.240us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.567ms - RowsProduced: 0 - RpcAvgTime: 22.816ms - RpcCount: 12 - RpcMaxTime: 22.996ms - RpcMinTime: 22.615ms - RpcSumTime: 273.796ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 297ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 670ns - DeserializeAndMergeTime: 0ns - ExecTime: 34.887us - ExprTime: 0ns - GetResultsTime: 4.142us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 104ns - HashTableSize: 0 - InsertKeysToColumnTime: 478ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.603us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 603ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.114us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.938us - ExecTime: 41.437us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.5us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.777us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.165us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.834us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 804ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.658ms PipelineXTask (index=25):(Active: 500.687us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 272.425us - CloseTime: 29.232us - GetBlockTime: 24.50us - OpenTime: 3.330us - PrepareTime: 191.348us - SinkTime: 231.668us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 465.704us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.672ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.764us - CompressTime: 0ns - ExecTime: 348.520us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 30.836us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 100.136us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.651ms - RowsProduced: 0 - RpcAvgTime: 21.139ms - RpcCount: 12 - RpcMaxTime: 21.345ms - RpcMinTime: 20.953ms - RpcSumTime: 253.677ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 317ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.21us - DeserializeAndMergeTime: 0ns - ExecTime: 33.738us - ExprTime: 0ns - GetResultsTime: 4.675us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 40ns - HashTableSize: 0 - InsertKeysToColumnTime: 254ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.703us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 786ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.500us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.58us - ExecTime: 39.181us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.440us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.471us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.540us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.590us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 731ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.734ms PipelineXTask (index=30):(Active: 592.509us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 386.29us - CloseTime: 18.986us - GetBlockTime: 29.394us - OpenTime: 4.532us - PrepareTime: 178.759us - SinkTime: 335.724us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 567.273us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 769.646us DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.440us - CompressTime: 0ns - ExecTime: 440.758us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 45.664us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 95.202us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.528ms - RowsProduced: 0 - RpcAvgTime: 22.769ms - RpcCount: 12 - RpcMaxTime: 23.3ms - RpcMinTime: 22.564ms - RpcSumTime: 273.237ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 313ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 671ns - DeserializeAndMergeTime: 0ns - ExecTime: 30.223us - ExprTime: 0ns - GetResultsTime: 4.170us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 52ns - HashTableSize: 0 - InsertKeysToColumnTime: 370ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.705us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 733ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.242us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.788us - ExecTime: 36.855us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.66us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.157us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.70us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.658us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 767ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.776ms PipelineXTask (index=35):(Active: 551.370us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 336.682us - CloseTime: 28.765us - GetBlockTime: 26.518us - OpenTime: 3.876us - PrepareTime: 177.478us - SinkTime: 291.695us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 516.442us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.740ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.871us - CompressTime: 0ns - ExecTime: 400.403us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 52.11us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 99.189us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 34.670ms - RowsProduced: 0 - RpcAvgTime: 21.979ms - RpcCount: 12 - RpcMaxTime: 22.227ms - RpcMinTime: 21.783ms - RpcSumTime: 263.748ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 329ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.35us - DeserializeAndMergeTime: 0ns - ExecTime: 32.877us - ExprTime: 0ns - GetResultsTime: 5.287us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 153ns - HashTableSize: 0 - InsertKeysToColumnTime: 540ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.7us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 929ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.35us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.694us - ExecTime: 34.316us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.415us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.889us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.660us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.645us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 770ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.633ms PipelineXTask (index=40):(Active: 498.852us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 270.929us - CloseTime: 23.40us - GetBlockTime: 20.454us - OpenTime: 3.369us - PrepareTime: 196.806us - SinkTime: 231.18us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 469.343us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.764ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.471us - CompressTime: 0ns - ExecTime: 350.899us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 34.869us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 107.797us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.118ms - RowsProduced: 0 - RpcAvgTime: 22.348ms - RpcCount: 12 - RpcMaxTime: 22.522ms - RpcMinTime: 22.123ms - RpcSumTime: 268.179ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 430ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.268us - DeserializeAndMergeTime: 0ns - ExecTime: 29.746us - ExprTime: 0ns - GetResultsTime: 4.262us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 128ns - HashTableSize: 0 - InsertKeysToColumnTime: 325ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.146us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 552ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.977us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.750us - ExecTime: 26.263us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.287us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.499us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.238us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.633us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 749ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.645ms PipelineXTask (index=45):(Active: 519.265us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 278.544us - CloseTime: 29.93us - GetBlockTime: 35.103us - OpenTime: 3.446us - PrepareTime: 204.145us - SinkTime: 225.825us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 484.917us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.668ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.438us - CompressTime: 0ns - ExecTime: 353.638us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 34.479us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 112.564us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.612ms - RowsProduced: 0 - RpcAvgTime: 21.114ms - RpcCount: 12 - RpcMaxTime: 21.318ms - RpcMinTime: 20.910ms - RpcSumTime: 253.379ms - 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 STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.284us - DeserializeAndMergeTime: 0ns - ExecTime: 43.524us - ExprTime: 0ns - GetResultsTime: 4.374us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 119ns - HashTableSize: 0 - InsertKeysToColumnTime: 197ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.152us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 805ns - SerializeKeyTime: 0ns - SerializeResultTime: 17.419us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.452us - ExecTime: 33.105us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.846us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.660us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.87us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.575us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 784ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.713ms PipelineXTask (index=50):(Active: 634.388us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 364.175us - CloseTime: 26.880us - GetBlockTime: 32.996us - OpenTime: 5.447us - PrepareTime: 232.279us - SinkTime: 300.467us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 597.109us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.19ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.818us - CompressTime: 0ns - ExecTime: 415.946us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 42.392us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 102.141us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 35.83ms - RowsProduced: 0 - RpcAvgTime: 22.291ms - RpcCount: 12 - RpcMaxTime: 22.549ms - RpcMinTime: 22.26ms - RpcSumTime: 267.500ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 456ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.912us - DeserializeAndMergeTime: 0ns - ExecTime: 33.500us - ExprTime: 0ns - GetResultsTime: 5.879us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 109ns - HashTableSize: 0 - InsertKeysToColumnTime: 659ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.649us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.158us - SerializeKeyTime: 0ns - SerializeResultTime: 8.60us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.799us - ExecTime: 68.220us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 40.894us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.278us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.113us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.643us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 852ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.814ms PipelineXTask (index=55):(Active: 520.819us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 283.239us - CloseTime: 53.366us - GetBlockTime: 21.562us - OpenTime: 6.149us - PrepareTime: 173.469us - SinkTime: 238.859us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 460.256us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.855ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.215us - CompressTime: 0ns - ExecTime: 355.920us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 31.728us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 98.227us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 34.403ms - RowsProduced: 0 - RpcAvgTime: 21.751ms - RpcCount: 12 - RpcMaxTime: 21.919ms - RpcMinTime: 21.613ms - RpcSumTime: 261.17ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 254ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.544us - DeserializeAndMergeTime: 0ns - ExecTime: 37.607us - ExprTime: 0ns - GetResultsTime: 4.319us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 56ns - HashTableSize: 0 - InsertKeysToColumnTime: 207ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.119us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 900ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.583us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 21.700us - ExecTime: 46.268us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.137us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.337us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.561us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.771us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.44us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 109.814ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 447.267us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 389.595us - CloseTime: 6.109us - GetBlockTime: 226.233us - OpenTime: 3.602us - PrepareTime: 41.169us - SinkTime: 7.760us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 412.220us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.765ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.508us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.199us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.382us - ExecTime: 109.755us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.744us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.289us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 88.182us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 85.596us - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 120.00 KB - OpenTime: 520ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 102.606ms PipelineXTask (index=6):(Active: 117.359us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 53.846us - CloseTime: 6.156us - GetBlockTime: 21.251us - OpenTime: 6.520us - PrepareTime: 46.46us - SinkTime: 6.18us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.322us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.966ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.724us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.205us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.284us - ExecTime: 33.12us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.837us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.936us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.224us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.404us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 479ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.116ms PipelineXTask (index=11):(Active: 105.803us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.674us - CloseTime: 5.96us - GetBlockTime: 27.551us - OpenTime: 2.598us - PrepareTime: 44.520us - SinkTime: 7.819us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.191us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.76ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.463us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.185us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.882us - ExecTime: 47.11us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.736us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.2us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.585us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.713us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 525ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.92ms PipelineXTask (index=16):(Active: 88.18us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.907us - CloseTime: 2.800us - GetBlockTime: 12.944us - OpenTime: 2.322us - PrepareTime: 39.362us - SinkTime: 1.770us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.421us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.135ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 2.620us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.165us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.515us - ExecTime: 19.907us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 7.528us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.807us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.573us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.95us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 552ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.65ms PipelineXTask (index=21):(Active: 88.655us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.849us - CloseTime: 3.263us - GetBlockTime: 12.440us - OpenTime: 6.286us - PrepareTime: 41.587us - SinkTime: 3.612us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.639us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 410.288us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.464us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.143us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.56us - ExecTime: 27.589us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.665us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.360us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.485us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.435us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 563ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 105.993ms PipelineXTask (index=26):(Active: 129.38us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 64.138us - CloseTime: 6.208us - GetBlockTime: 24.390us - OpenTime: 4.707us - PrepareTime: 49.962us - SinkTime: 18.753us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.883us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 148.404us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 30.703us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 12.485us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.95us - ExecTime: 36.962us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.640us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.428us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 14.87us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.725us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 635ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.112ms PipelineXTask (index=31):(Active: 82.659us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.278us - CloseTime: 2.493us - GetBlockTime: 13.325us - OpenTime: 2.558us - PrepareTime: 37.903us - SinkTime: 3.604us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.272us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 223.128us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.443us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.129us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.431us - ExecTime: 22.238us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.541us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.714us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.137us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.30us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 524ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.104ms PipelineXTask (index=36):(Active: 94.251us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.106us - CloseTime: 3.910us - GetBlockTime: 13.470us - OpenTime: 3.427us - PrepareTime: 44.965us - SinkTime: 3.201us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.811us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.950ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 3.853us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.19us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.470us - ExecTime: 28.343us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.514us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.854us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.127us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.417us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 481ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.110ms PipelineXTask (index=41):(Active: 91.279us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.42us - CloseTime: 2.923us - GetBlockTime: 10.600us - OpenTime: 5.423us - PrepareTime: 43.208us - SinkTime: 3.890us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.468us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.385ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.952us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.523us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.902us - ExecTime: 21.478us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.294us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.425us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.270us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.45us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 490ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 105.46ms PipelineXTask (index=46):(Active: 117.101us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.75us - CloseTime: 4.433us - GetBlockTime: 25.598us - OpenTime: 2.953us - PrepareTime: 49.276us - SinkTime: 15.548us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.101us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.863ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.285us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.143us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.982us - ExecTime: 36.82us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.875us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.109us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.381us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.291us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 488ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 105.937ms PipelineXTask (index=51):(Active: 87.197us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.285us - CloseTime: 4.509us - GetBlockTime: 17.624us - OpenTime: 3.170us - PrepareTime: 39.970us - SinkTime: 3.837us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.790us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.424ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.564us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.197us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.980us - ExecTime: 27.175us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.793us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.181us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.674us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.624us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 596ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.100ms PipelineXTask (index=56):(Active: 93.484us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.827us - CloseTime: 2.874us - GetBlockTime: 11.429us - OpenTime: 1.859us - PrepareTime: 55.341us - SinkTime: 3.158us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.159us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 328.226us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.642us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 11.668us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.839us - ExecTime: 24.29us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.947us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.597us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.610us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.484us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.792us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 106.28ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 870.958us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 377.780us - CloseTime: 61.400us - GetBlockTime: 53.415us - OpenTime: 274.786us - PrepareTime: 149.925us - SinkTime: 30.67us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 800.787us - WaitBfTime: 2.572ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.73ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 30.462us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.63us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 23.865us - BlocksProduced: 0 - CloseTime: 58.717us - ExecTime: 9.32ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 354.913us - ProcessConjunctTime: 185.98us - ProjectionTime: 2.697us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.815ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 8.563ms - 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: [9.527us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [7.815ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 632.417us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 137ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 752.682us - ScannerCtxSchedTime: 7.813ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 993ns - ScannerInitTime: 42.366us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 626ns - BlockConditionsFilteredBloomFilterTime: 2.82us - BlockConditionsFilteredDictTime: 215.172us - BlockConditionsFilteredTime: 246.868us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 19.438us - BlockInitSeekCount: 8 - BlockInitSeekTime: 7.931us - BlockInitTime: 282.181us - BlockLoadTime: 332.685us - BlocksLoad: 1 - CachedPagesNum: 3 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 501ns - IOTimer: 0ns - InvertedIndexFilterTime: 2.266us - 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: 245.246K (245246) - RowsDictFiltered: 245.246K (245246) - 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 PipelineXTask (index=7):(Active: 8.373ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.122ms - CloseTime: 41.770us - GetBlockTime: 36.782us - OpenTime: 4.60ms - PrepareTime: 142.406us - SinkTime: 10.22us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 803.755us - WaitBfTime: 2.724ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.166ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.234us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.482us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 32.78us - BlocksProduced: 0 - CloseTime: 38.828us - ExecTime: 37.359ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 4.133ms - ProcessConjunctTime: 201.671us - ProjectionTime: 3.322us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 31.891ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 33.147ms - 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: [20.812us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [31.891ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.83ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 72ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 1.249ms - ScannerCtxSchedTime: 31.889ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.264us - ScannerInitTime: 3.807ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.222us - BlockConditionsFilteredBloomFilterTime: 2.677us - BlockConditionsFilteredDictTime: 459.805us - BlockConditionsFilteredTime: 509.331us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 33.153us - BlockInitSeekCount: 9 - BlockInitSeekTime: 18.595us - BlockInitTime: 577.170us - BlockLoadTime: 657.885us - BlocksLoad: 1 - CachedPagesNum: 3 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 1.298us - IOTimer: 0ns - InvertedIndexFilterTime: 2.888us - 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: 341.69K (341690) - RowsDictFiltered: 341.69K (341690) - 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 PipelineXTask (index=12):(Active: 742.3us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 282.775us - CloseTime: 61.797us - GetBlockTime: 22.498us - OpenTime: 242.302us - PrepareTime: 148.819us - SinkTime: 2.565us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 673.339us - WaitBfTime: 3.293ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.269ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 3.212us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.36us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 25.962us - BlocksProduced: 0 - CloseTime: 60.660us - ExecTime: 10.134ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 323.253us - ProcessConjunctTime: 158.647us - ProjectionTime: 3.600us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.513ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 9.724ms - 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: [12.728us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.513ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.62ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 45ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 1.210ms - ScannerCtxSchedTime: 8.511ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.389us - ScannerInitTime: 36.561us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.240us - BlockConditionsFilteredBloomFilterTime: 2.717us - BlockConditionsFilteredDictTime: 495.185us - BlockConditionsFilteredTime: 543.542us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 32.508us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.693us - BlockInitTime: 591.852us - BlockLoadTime: 665.939us - BlocksLoad: 1 - CachedPagesNum: 3 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 1.45us - IOTimer: 0ns - InvertedIndexFilterTime: 2.762us - 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: 343.677K (343677) - RowsDictFiltered: 343.677K (343677) - 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 PipelineXTask (index=17):(Active: 908.294us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 378.140us - CloseTime: 45.218us - GetBlockTime: 31.342us - OpenTime: 305.827us - PrepareTime: 171.839us - SinkTime: 22.660us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 855.62us - WaitBfTime: 2.618ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 910.431us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 22.419us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 915ns - 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: [15313] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 28.711us - BlocksProduced: 0 - CloseTime: 42.375us - ExecTime: 18.138ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 390.327us - ProcessConjunctTime: 187.518us - ProjectionTime: 2.268us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 538.596K (538596) - filter id = -1 input: 538.602K (538602) - ScannerWorkerWaitTime: 8.473ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 17.672ms - 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: [9.288us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.473ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 9.109ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 54ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.185ms - ScannerCtxSchedTime: 8.472ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.402us - ScannerInitTime: 55.343us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 538602, filtered = 538596] - BitmapIndexFilterTimer: 604ns - BlockConditionsFilteredBloomFilterTime: 1.469us - BlockConditionsFilteredDictTime: 81.893us - BlockConditionsFilteredTime: 112.650us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 19.406us - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.9us - BlockInitTime: 144.138us - BlockLoadTime: 8.809ms - BlocksLoad: 93 - CachedPagesNum: 57 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 18.150us - FirstReadSeekCount: 276 - FirstReadSeekTime: 65.651us - FirstReadTime: 6.45ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.684us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 80.42us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 26.169us - OutputIndexResultColumnTimer: 167ns - RawRowsRead: 372.571K (372571) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 269.298K (269298) - RowsShortCircuitPredInput: 269.301K (269301) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 103.27K (103270) - RowsVectorPredInput: 372.571K (372571) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 83.741us - ShortPredEvalTime: 833.955us - TotalPagesNum: 57 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.59ms PipelineXTask (index=22):(Active: 871.443us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 361.983us - CloseTime: 68.158us - GetBlockTime: 44.210us - OpenTime: 272.983us - PrepareTime: 161.15us - SinkTime: 21.140us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 794.535us - WaitBfTime: 3.327ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.881ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.772us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 929ns - 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: [15315] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 27.755us - BlocksProduced: 0 - CloseTime: 64.769us - ExecTime: 42.89ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 365.64us - ProcessConjunctTime: 166.379us - ProjectionTime: 3.363us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 548.032K (548032) - filter id = -1 input: 548.04K (548040) - ScannerWorkerWaitTime: 9.394ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 41.612ms - 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: [14.600us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [9.394ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 32.79ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 66ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.757ms - ScannerCtxSchedTime: 9.391ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.737us - ScannerInitTime: 51.171us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 548040, filtered = 548032] - BitmapIndexFilterTimer: 1.24us - BlockConditionsFilteredBloomFilterTime: 2.583us - BlockConditionsFilteredDictTime: 161.576us - BlockConditionsFilteredTime: 212.675us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 33.962us - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.641us - BlockInitTime: 256.530us - BlockLoadTime: 31.669ms - BlocksLoad: 95 - CachedPagesNum: 63 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 45.91us - FirstReadSeekCount: 282 - FirstReadSeekTime: 63.69us - FirstReadTime: 27.73ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.520us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 483.459us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 60.573us - OutputIndexResultColumnTimer: 461ns - RawRowsRead: 379.18K (379180) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 274.016K (274016) - RowsShortCircuitPredInput: 274.02K (274020) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 105.16K (105160) - RowsVectorPredInput: 379.18K (379180) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 489.608us - ShortPredEvalTime: 1.371ms - TotalPagesNum: 63 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.543ms PipelineXTask (index=27):(Active: 8.352ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.85ms - CloseTime: 69.340us - GetBlockTime: 23.71us - OpenTime: 4.37ms - PrepareTime: 153.573us - SinkTime: 8.552us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 854.148us - WaitBfTime: 2.712ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 769.910us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.31us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 975ns - 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: [15331] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 26.356us - BlocksProduced: 0 - CloseTime: 67.744us - ExecTime: 74.889ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 4.121ms - ProcessConjunctTime: 201.556us - ProjectionTime: 2.257us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 343.946K (343946) - filter id = -1 input: 348.792K (348792) - ScannerWorkerWaitTime: 30.371ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 70.674ms - 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: [12.090us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [30.371ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 40.172ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 84ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.437ms - ScannerCtxSchedTime: 30.370ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.454us - ScannerInitTime: 3.788ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 348792, filtered = 343946] - BitmapIndexFilterTimer: 664ns - BlockConditionsFilteredBloomFilterTime: 1.852us - BlockConditionsFilteredDictTime: 21.785us - BlockConditionsFilteredTime: 53.483us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 18.98us - BlockInitSeekCount: 20 - BlockInitSeekTime: 14.801us - BlockInitTime: 98.260us - BlockLoadTime: 39.885ms - BlocksLoad: 71 - CachedPagesNum: 149 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 883.855us - FirstReadSeekCount: 210 - FirstReadSeekTime: 39.912us - FirstReadTime: 33.710ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.926us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.46ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 251.902us - OutputIndexResultColumnTimer: 8.192us - RawRowsRead: 280.538K (280538) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 171.973K (171973) - RowsShortCircuitPredInput: 174.396K (174396) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 106.142K (106142) - RowsVectorPredInput: 280.538K (280538) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.199ms - ShortPredEvalTime: 498.405us - TotalPagesNum: 149 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 684.348us PipelineXTask (index=32):(Active: 824.674us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 335.230us - CloseTime: 72.575us - GetBlockTime: 45.985us - OpenTime: 248.838us - PrepareTime: 160.486us - SinkTime: 21.700us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 743.579us - WaitBfTime: 3.901ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.943ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 32.143us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 10.833us - 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: [15317] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 28.175us - BlocksProduced: 0 - CloseTime: 68.746us - ExecTime: 85.879ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 327.309us - ProcessConjunctTime: 164.578us - ProjectionTime: 2.620us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 424.052K (424052) - filter id = -1 input: 442.474K (442474) - ScannerWorkerWaitTime: 14.411ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 85.436ms - 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: [11.184us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [14.411ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 70.879ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 136ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.1ms - ScannerCtxSchedTime: 14.409ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.496us - ScannerInitTime: 40.672us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 442474, filtered = 424052] - BitmapIndexFilterTimer: 1.221us - BlockConditionsFilteredBloomFilterTime: 2.726us - BlockConditionsFilteredDictTime: 57.726us - BlockConditionsFilteredTime: 109.431us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 33.94us - BlockInitSeekCount: 8 - BlockInitSeekTime: 8.825us - BlockInitTime: 166.452us - BlockLoadTime: 70.493ms - BlocksLoad: 84 - CachedPagesNum: 179 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.528ms - FirstReadSeekCount: 249 - FirstReadSeekTime: 54.61us - FirstReadTime: 31.989ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.564us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 32.679ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 644.404us - OutputIndexResultColumnTimer: 8.562us - RawRowsRead: 334.289K (334289) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 212.026K (212026) - RowsShortCircuitPredInput: 221.237K (221237) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 113.052K (113052) - RowsVectorPredInput: 334.289K (334289) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 32.850ms - ShortPredEvalTime: 1.570ms - TotalPagesNum: 179 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.24ms PipelineXTask (index=37):(Active: 796.476us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 331.822us - CloseTime: 56.141us - GetBlockTime: 25.777us - OpenTime: 252.437us - PrepareTime: 149.198us - SinkTime: 35.31us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 731.973us - WaitBfTime: 4.720ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.28ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 34.965us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 812ns - 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: [15319] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 26.708us - BlocksProduced: 0 - CloseTime: 54.237us - ExecTime: 100.689ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 332.313us - ProcessConjunctTime: 169.496us - ProjectionTime: 3.132us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 422.978K (422978) - filter id = -1 input: 441.95K (441950) - ScannerWorkerWaitTime: 17.877ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.274ms - 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: [15.207us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [17.877ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 82.226ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 77ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.664ms - ScannerCtxSchedTime: 17.875ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.415us - ScannerInitTime: 40.245us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 441950, filtered = 422978] - BitmapIndexFilterTimer: 982ns - BlockConditionsFilteredBloomFilterTime: 2.569us - BlockConditionsFilteredDictTime: 105.945us - BlockConditionsFilteredTime: 151.806us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 27.751us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.880us - BlockInitTime: 197.644us - BlockLoadTime: 81.817ms - BlocksLoad: 85 - CachedPagesNum: 181 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.138ms - FirstReadSeekCount: 252 - FirstReadSeekTime: 69.18us - FirstReadTime: 13.838ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.972us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.705ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 905.382us - OutputIndexResultColumnTimer: 14.848us - RawRowsRead: 338.501K (338501) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 211.489K (211489) - RowsShortCircuitPredInput: 220.975K (220975) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 117.526K (117526) - RowsVectorPredInput: 338.501K (338501) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.942ms - ShortPredEvalTime: 38.137ms - TotalPagesNum: 181 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.588ms PipelineXTask (index=42):(Active: 934.408us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 395.651us - CloseTime: 50.994us - GetBlockTime: 35.197us - OpenTime: 336.958us - PrepareTime: 144.811us - SinkTime: 8.885us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 876.813us - WaitBfTime: 2.604ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.126ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.625us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 887ns - 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: [15325] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 30.530us - BlocksProduced: 0 - CloseTime: 47.496us - ExecTime: 81.118ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 409.750us - ProcessConjunctTime: 207.408us - ProjectionTime: 3.551us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 429.096K (429096) - filter id = -1 input: 447.346K (447346) - ScannerWorkerWaitTime: 8.46ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 80.622ms - 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: [17.157us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.046ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 72.399ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 62ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.544ms - ScannerCtxSchedTime: 8.43ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.190us - ScannerInitTime: 62.172us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 447346, filtered = 429096] - BitmapIndexFilterTimer: 1.100us - BlockConditionsFilteredBloomFilterTime: 2.843us - BlockConditionsFilteredDictTime: 68.450us - BlockConditionsFilteredTime: 120.898us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 32.527us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.239us - BlockInitTime: 174.828us - BlockLoadTime: 71.932ms - BlocksLoad: 86 - CachedPagesNum: 181 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.974ms - FirstReadSeekCount: 255 - FirstReadSeekTime: 58.975us - FirstReadTime: 60.490ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.374us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.235ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 828.826us - OutputIndexResultColumnTimer: 14.82us - RawRowsRead: 341.787K (341787) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 214.548K (214548) - RowsShortCircuitPredInput: 223.673K (223673) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 118.114K (118114) - RowsVectorPredInput: 341.787K (341787) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.462ms - ShortPredEvalTime: 2.439ms - TotalPagesNum: 181 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.575ms PipelineXTask (index=47):(Active: 857.179us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 336.793us - CloseTime: 66.826us - GetBlockTime: 17.920us - OpenTime: 282.549us - PrepareTime: 164.291us - SinkTime: 20.308us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 783.503us - WaitBfTime: 4.433ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.439ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 21.764us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.444us - 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: [15349] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 26.591us - BlocksProduced: 0 - CloseTime: 63.673us - ExecTime: 97.221ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 378.583us - ProcessConjunctTime: 178.49us - ProjectionTime: 2.1us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 480.7K (480700) - filter id = -1 input: 537.618K (537618) - ScannerWorkerWaitTime: 17.226ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 96.759ms - 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: [9.055us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [17.226ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 79.373ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 144ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.515ms - ScannerCtxSchedTime: 17.222ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.738us - ScannerInitTime: 57.790us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 537618, filtered = 480700] - BitmapIndexFilterTimer: 1.192us - BlockConditionsFilteredBloomFilterTime: 2.872us - BlockConditionsFilteredDictTime: 55.366us - BlockConditionsFilteredTime: 114.425us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 38.426us - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.244us - BlockInitTime: 168.976us - BlockLoadTime: 78.909ms - BlocksLoad: 106 - CachedPagesNum: 223 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 14.551ms - FirstReadSeekCount: 315 - FirstReadSeekTime: 66.326us - FirstReadTime: 11.264ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.148us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 46.670ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.515ms - OutputIndexResultColumnTimer: 17.286us - RawRowsRead: 423.736K (423736) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 240.35K (240350) - RowsShortCircuitPredInput: 268.809K (268809) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 154.927K (154927) - RowsVectorPredInput: 423.736K (423736) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 46.953ms - ShortPredEvalTime: 2.109ms - TotalPagesNum: 223 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.240ms PipelineXTask (index=52):(Active: 803.296us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 314.5us - CloseTime: 72.219us - GetBlockTime: 21.630us - OpenTime: 254.173us - PrepareTime: 144.406us - SinkTime: 10.145us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 723.525us - WaitBfTime: 3.233ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.322ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.768us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 967ns - 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: [15351] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 25.446us - BlocksProduced: 0 - CloseTime: 70.951us - ExecTime: 58.71ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 334.812us - ProcessConjunctTime: 167.325us - ProjectionTime: 2.880us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 475.356K (475356) - filter id = -1 input: 531.844K (531844) - ScannerWorkerWaitTime: 8.540ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 57.641ms - 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: [13.783us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.540ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 48.976ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 66ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.810ms - ScannerCtxSchedTime: 8.537ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.711us - ScannerInitTime: 39.320us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 531844, filtered = 475356] - BitmapIndexFilterTimer: 802ns - BlockConditionsFilteredBloomFilterTime: 1.965us - BlockConditionsFilteredDictTime: 49.764us - BlockConditionsFilteredTime: 89.782us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 27.79us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.617us - BlockInitTime: 129.712us - BlockLoadTime: 48.624ms - BlocksLoad: 104 - CachedPagesNum: 221 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.719ms - FirstReadSeekCount: 309 - FirstReadSeekTime: 50.808us - FirstReadTime: 10.218ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.994us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 30.519ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.283ms - OutputIndexResultColumnTimer: 11.253us - RawRowsRead: 416.268K (416268) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 237.678K (237678) - RowsShortCircuitPredInput: 265.922K (265922) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 150.346K (150346) - RowsVectorPredInput: 416.268K (416268) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 30.733ms - ShortPredEvalTime: 1.706ms - TotalPagesNum: 221 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.45ms PipelineXTask (index=57):(Active: 861.805us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 361.255us - CloseTime: 69.368us - GetBlockTime: 41.265us - OpenTime: 274.965us - PrepareTime: 149.450us - SinkTime: 25.140us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 783.725us - WaitBfTime: 3.714ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.446us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 24.914us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 874ns - 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: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 27.551us - BlocksProduced: 0 - CloseTime: 66.725us - ExecTime: 25.536ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 350.754us - ProcessConjunctTime: 165.501us - ProjectionTime: 1.705us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 466.274K (466274) - filter id = -1 input: 493.996K (493996) - ScannerWorkerWaitTime: 13.847ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 25.77ms - 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.034us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [13.847ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.138ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 103ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.796ms - ScannerCtxSchedTime: 13.845ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.449us - ScannerInitTime: 42.213us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 493996, filtered = 466274] - BitmapIndexFilterTimer: 535ns - BlockConditionsFilteredBloomFilterTime: 1.350us - BlockConditionsFilteredDictTime: 20.729us - BlockConditionsFilteredTime: 54.611us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 23.942us - BlockInitSeekCount: 7 - BlockInitSeekTime: 6.46us - BlockInitTime: 79.346us - BlockLoadTime: 10.921ms - BlocksLoad: 100 - CachedPagesNum: 211 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.4ms - FirstReadSeekCount: 297 - FirstReadSeekTime: 29.606us - FirstReadTime: 5.895ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.813us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.314ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 396.616us - OutputIndexResultColumnTimer: 6.575us - RawRowsRead: 399.553K (399553) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 233.137K (233137) - RowsShortCircuitPredInput: 246.998K (246998) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 152.555K (152555) - RowsVectorPredInput: 399.553K (399553) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.410ms - ShortPredEvalTime: 1.54ms - TotalPagesNum: 211 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 683.280us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 243.735us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 174.475us - CloseTime: 9.361us - GetBlockTime: 13.517us - OpenTime: 1.844us - PrepareTime: 53.792us - SinkTime: 144.351us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.663us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.99ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 959ns - BuildRows: 5.621K (5621) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 32.557us - BuildTableInsertTime: 54.481us - BuildTableTime: 66.837us - CloseTime: 0ns - ExecTime: 150.908us - InputRows: 5.62K (5620) - MemoryUsage: - BuildBlocks: 49.39 KB - BuildKeyArena: 0.00 - HashTable: 53.96 KB - PeakMemoryUsage: 103.35 KB - OpenTime: 7.438us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=265): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 7.983us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.833us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 54.00 KB - MemoryUsage: - Blocks: 54.00 KB - PeakMemoryUsage: 72.00 KB - OpenTime: 17.488us - ProjectionTime: 0ns - RowsProduced: 5.62K (5620) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 61.714ms PipelineXTask (index=8):(Active: 83.785us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.99us - CloseTime: 4.777us - GetBlockTime: 0ns - OpenTime: 1.578us - PrepareTime: 51.809us - SinkTime: 10.892us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.501us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.884us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.232us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.599us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.875ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.423us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.623us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.507us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 95.449us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.878us - CloseTime: 10.644us - GetBlockTime: 0ns - OpenTime: 1.608us - PrepareTime: 42.754us - SinkTime: 18.182us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.523us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.346ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.118us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.256us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.758ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.516us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.929us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.805us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 159.913us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.890us - CloseTime: 10.643us - GetBlockTime: 0ns - OpenTime: 1.600us - PrepareTime: 115.415us - SinkTime: 13.734us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 144.78us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.381ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 85.224us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 71.490us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.824ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.906us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.103us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.411us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 97.260us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.776us - CloseTime: 10.279us - GetBlockTime: 0ns - OpenTime: 2.244us - PrepareTime: 46.690us - SinkTime: 10.208us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 76.917us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.423ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 20.345us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.419us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.741ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.2us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.687us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.931us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 73.165us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.129us - CloseTime: 5.710us - GetBlockTime: 0ns - OpenTime: 1.346us - PrepareTime: 44.772us - SinkTime: 6.803us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.410us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.339us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.194us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.658us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.855ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.217us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.923us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 69.861us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.894us - CloseTime: 5.407us - GetBlockTime: 0ns - OpenTime: 1.743us - PrepareTime: 39.472us - SinkTime: 6.915us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 59.808us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.357ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.435us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.830us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.782ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.386us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.653us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.640us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 80.873us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.877us - CloseTime: 8.548us - GetBlockTime: 0ns - OpenTime: 1.944us - PrepareTime: 43.161us - SinkTime: 10.277us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.187us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.665ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.445us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.467us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 62.829ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.319us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.961us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.951us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=43):(Active: 86.18us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.992us - CloseTime: 11.12us - GetBlockTime: 0ns - OpenTime: 1.406us - PrepareTime: 38.60us - SinkTime: 16.686us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.776us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.228ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 21.890us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.865us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.775ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.422us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.588us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.570us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=48):(Active: 94.179us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.850us - CloseTime: 7.463us - GetBlockTime: 0ns - OpenTime: 1.429us - PrepareTime: 60.112us - SinkTime: 9.451us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.77us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.835ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.812us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.626us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.688ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.521us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.232us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.993us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 95.278us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.516us - CloseTime: 8.507us - GetBlockTime: 0ns - OpenTime: 2.337us - PrepareTime: 49.604us - SinkTime: 12.625us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.206ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 18.688us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.509us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.797ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.654us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.33us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=58):(Active: 95.490us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.3us - CloseTime: 16.96us - GetBlockTime: 0ns - OpenTime: 1.508us - PrepareTime: 47.678us - SinkTime: 13.950us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.697us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.536ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.880us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.162us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 63.689ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.650us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.241us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.951us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=4):(Active: 178.846us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 112.452us - CloseTime: 7.832us - GetBlockTime: 6.79us - OpenTime: 1.302us - PrepareTime: 53.737us - SinkTime: 93.441us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 166.402us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.97ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 777ns - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.370us - BuildTableInsertTime: 27.397us - BuildTableTime: 31.659us - CloseTime: 0ns - ExecTime: 105.566us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 12.848us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.804us - RuntimeFilterComputeTime: 16.742us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=270): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.541us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.816us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 15.920us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1.526ms PipelineXTask (index=9):(Active: 117.798us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.486us - CloseTime: 5.744us - GetBlockTime: 0ns - OpenTime: 1.943us - PrepareTime: 73.967us - SinkTime: 20.860us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.566us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.385us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.492us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.842us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.652ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.479us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.425us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.453us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 87.91us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.523us - CloseTime: 6.835us - GetBlockTime: 0ns - OpenTime: 1.400us - PrepareTime: 44.975us - SinkTime: 19.399us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.875us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 888.808us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.799us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.653us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.191ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.169us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.868us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.58us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 100.760us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.229us - CloseTime: 4.885us - GetBlockTime: 0ns - OpenTime: 1.348us - PrepareTime: 68.622us - SinkTime: 11.904us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.821us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.564us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.45us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.174us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.589ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.855us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.785us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 116.614us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 54.226us - CloseTime: 8.360us - GetBlockTime: 0ns - OpenTime: 1.134us - PrepareTime: 49.448us - SinkTime: 39.111us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.317us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 914.212us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 50.169us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.580us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.461ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.347us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.50us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.97us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 128.342us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.654us - CloseTime: 7.903us - GetBlockTime: 0ns - OpenTime: 2.358us - PrepareTime: 69.605us - SinkTime: 21.672us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.663us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.732us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.984us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.786us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.574ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.145us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.764us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.775us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 101.422us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.548us - CloseTime: 6.348us - GetBlockTime: 0ns - OpenTime: 2.206us - PrepareTime: 58.110us - SinkTime: 16.4us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.799us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.509ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.588us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.742us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.459ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.639us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.86us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.529us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=39):(Active: 98.619us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.250us - CloseTime: 14.706us - GetBlockTime: 0ns - OpenTime: 1.524us - PrepareTime: 45.623us - SinkTime: 18.464us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.62us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.908ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.677us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.743us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.592ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.962us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.215us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.530us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 90.987us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 28.40us - CloseTime: 6.93us - GetBlockTime: 0ns - OpenTime: 1.124us - PrepareTime: 52.810us - SinkTime: 18.571us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.909us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 148.856us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.554us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.125us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.540ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.910us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.825us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.450us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=49):(Active: 118.306us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.259us - CloseTime: 9.704us - GetBlockTime: 0ns - OpenTime: 2.735us - PrepareTime: 53.623us - SinkTime: 27.813us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.435us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.53ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.298us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.19us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.392ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.546us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.893us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.562us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 113.918us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 46.37us - CloseTime: 16.128us - GetBlockTime: 0ns - OpenTime: 1.740us - PrepareTime: 44.644us - SinkTime: 24.10us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.942us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 315.968us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.546us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.768us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.430ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.380us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.470us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.288us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=59):(Active: 113.844us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.555us - CloseTime: 17.4us - GetBlockTime: 0ns - OpenTime: 1.438us - PrepareTime: 62.260us - SinkTime: 18.647us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.477us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.302ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85c8 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.510us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.15us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.456ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 15.358us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.205us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.222us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 972.840us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 706.694us - CloseTime: 51.814us - GetBlockTime: 202.546us - OpenTime: 9.216us - PrepareTime: 194.458us - SinkTime: 418.84us - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 904.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.333ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 644.00 B - CloseTime: 20.989us - CompressTime: 0ns - ExecTime: 540.806us - InputRows: 12 - LocalBytesSent: 198.00 B - LocalSendTime: 72.405us - LocalSentRows: 5 - MemoryUsage: - PeakMemoryUsage: 4.88 KB - MergeBlockTime: 0ns - OpenTime: 102.26us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s254ms - RowsProduced: 12 - RpcAvgTime: 3s235ms - RpcCount: 12 - RpcMaxTime: 3s239ms - RpcMinTime: 3s228ms - RpcSumTime: 38s827ms - SerializeBatchTime: 13.785us - SplitBlockDistributeByChannelTime: 20.596us - SplitBlockHashComputeTime: 5.604us - UncompressedRowBatchSize: 548.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 39.74us - CloseTime: 6.31us - DeserializeAndMergeTime: 0ns - ExecTime: 108.859us - ExprTime: 2.472us - GetResultsTime: 24.379us - HashTableComputeTime: 29.122us - HashTableEmplaceTime: 21.395us - HashTableInputCount: 12 - HashTableIterateTime: 1.244us - HashTableSize: 12 - InsertKeysToColumnTime: 6.996us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 28.312us - ProjectionTime: 0ns - RowsProduced: 12 - SerializeDataTime: 7.662us - SerializeKeyTime: 0ns - SerializeResultTime: 28.540us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 18.137us - ExecTime: 111.999us - InitProbeSideTime: 8.977us - JoinFilterTimer: 78ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.87us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 741ns - ProbeFindNextTime: 0ns - ProbeRows: 12 - ProbeTime: 37.752us - ProbeWhenBuildSideOutputTime: 2.240us - ProbeWhenProbeSideOutputTime: 5.452us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.114us - ProjectionTime: 33.674us - RowsProduced: 12 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 29.156us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 2.49 KB - OpenTime: 2.918us - ProjectionTime: 0ns - RowsProduced: 12 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.255ms PipelineXTask (index=5):(Active: 800.292us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 504.77us - CloseTime: 64.453us - GetBlockTime: 130.816us - OpenTime: 7.702us - PrepareTime: 202.620us - SinkTime: 314.599us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 726.308us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.60ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 530.00 B - CloseTime: 27.606us - CompressTime: 0ns - ExecTime: 447.653us - InputRows: 8 - LocalBytesSent: 86.00 B - LocalSendTime: 47.686us - LocalSentRows: 2 - MemoryUsage: - PeakMemoryUsage: 3.13 KB - MergeBlockTime: 0ns - OpenTime: 106.327us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s299ms - RowsProduced: 8 - RpcAvgTime: 3s280ms - RpcCount: 12 - RpcMaxTime: 3s280ms - RpcMinTime: 3s279ms - RpcSumTime: 39s363ms - SerializeBatchTime: 10.360us - SplitBlockDistributeByChannelTime: 12.158us - SplitBlockHashComputeTime: 4.663us - UncompressedRowBatchSize: 450.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.73us - CloseTime: 7.754us - DeserializeAndMergeTime: 0ns - ExecTime: 103.88us - ExprTime: 1.337us - GetResultsTime: 15.816us - HashTableComputeTime: 35.510us - HashTableEmplaceTime: 26.277us - HashTableInputCount: 8 - HashTableIterateTime: 997ns - HashTableSize: 8 - InsertKeysToColumnTime: 5.246us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 32.388us - ProjectionTime: 0ns - RowsProduced: 8 - SerializeDataTime: 4.762us - SerializeKeyTime: 0ns - SerializeResultTime: 19.604us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 19.353us - ExecTime: 95.40us - InitProbeSideTime: 11.427us - JoinFilterTimer: 88ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.435us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 601ns - ProbeFindNextTime: 0ns - ProbeRows: 8 - ProbeTime: 35.314us - ProbeWhenBuildSideOutputTime: 1.73us - ProbeWhenProbeSideOutputTime: 3.238us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 183ns - ProjectionTime: 15.151us - RowsProduced: 8 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 3.384us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 832.00 B - OpenTime: 797ns - ProjectionTime: 0ns - RowsProduced: 8 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 325.474ms PipelineXTask (index=10):(Active: 971.824us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 675.767us - CloseTime: 56.711us - GetBlockTime: 140.490us - OpenTime: 9.153us - PrepareTime: 224.140us - SinkTime: 488.675us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 904.982us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.664ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 309.00 B - CloseTime: 25.799us - CompressTime: 0ns - ExecTime: 633.331us - InputRows: 10 - LocalBytesSent: 291.00 B - LocalSendTime: 89.752us - LocalSentRows: 7 - MemoryUsage: - PeakMemoryUsage: 3.19 KB - MergeBlockTime: 0ns - OpenTime: 119.335us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s324ms - RowsProduced: 10 - RpcAvgTime: 3s303ms - RpcCount: 12 - RpcMaxTime: 3s305ms - RpcMinTime: 3s303ms - RpcSumTime: 39s645ms - SerializeBatchTime: 8.512us - SplitBlockDistributeByChannelTime: 19.191us - SplitBlockHashComputeTime: 6.33us - UncompressedRowBatchSize: 261.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 26.970us - CloseTime: 7.39us - DeserializeAndMergeTime: 0ns - ExecTime: 102.848us - ExprTime: 1.145us - GetResultsTime: 25.836us - HashTableComputeTime: 22.207us - HashTableEmplaceTime: 14.480us - HashTableInputCount: 10 - HashTableIterateTime: 1.15us - HashTableSize: 10 - InsertKeysToColumnTime: 6.997us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 32.84us - ProjectionTime: 0ns - RowsProduced: 10 - SerializeDataTime: 7.941us - SerializeKeyTime: 0ns - SerializeResultTime: 30.797us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 17.505us - ExecTime: 91.148us - InitProbeSideTime: 8.190us - JoinFilterTimer: 86ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.381us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 554ns - ProbeFindNextTime: 0ns - ProbeRows: 10 - ProbeTime: 35.195us - ProbeWhenBuildSideOutputTime: 1.716us - ProbeWhenProbeSideOutputTime: 3.152us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 363ns - ProjectionTime: 17.625us - RowsProduced: 10 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 4.849us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 1024.00 B - OpenTime: 721ns - ProjectionTime: 0ns - RowsProduced: 10 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 324.515ms PipelineXTask (index=15):(Active: 963.373us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 696.114us - CloseTime: 46.290us - GetBlockTime: 198.244us - OpenTime: 6.852us - PrepareTime: 208.554us - SinkTime: 424.5us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 903.535us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.740ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 447.00 B - CloseTime: 19.127us - CompressTime: 0ns - ExecTime: 550.712us - InputRows: 9 - LocalBytesSent: 172.00 B - LocalSendTime: 66.403us - LocalSentRows: 4 - MemoryUsage: - PeakMemoryUsage: 3.19 KB - MergeBlockTime: 0ns - OpenTime: 108.372us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s323ms - RowsProduced: 9 - RpcAvgTime: 3s305ms - RpcCount: 12 - RpcMaxTime: 3s305ms - RpcMinTime: 3s305ms - RpcSumTime: 39s662ms - SerializeBatchTime: 12.114us - SplitBlockDistributeByChannelTime: 24.697us - SplitBlockHashComputeTime: 5.244us - UncompressedRowBatchSize: 383.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 51.888us - CloseTime: 5.365us - DeserializeAndMergeTime: 0ns - ExecTime: 113.792us - ExprTime: 2.312us - GetResultsTime: 22.303us - HashTableComputeTime: 43.210us - HashTableEmplaceTime: 33.393us - HashTableInputCount: 10 - HashTableIterateTime: 1.19us - HashTableSize: 9 - InsertKeysToColumnTime: 6.680us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 23.674us - ProjectionTime: 0ns - RowsProduced: 9 - SerializeDataTime: 6.273us - SerializeKeyTime: 0ns - SerializeResultTime: 26.661us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 16.252us - ExecTime: 119.860us - InitProbeSideTime: 10.98us - JoinFilterTimer: 239ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.327us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 657ns - ProbeFindNextTime: 0ns - ProbeRows: 10 - ProbeTime: 49.434us - ProbeWhenBuildSideOutputTime: 2.708us - ProbeWhenProbeSideOutputTime: 2.716us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.314us - ProjectionTime: 33.614us - RowsProduced: 10 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 8.296us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 896.00 B - OpenTime: 738ns - ProjectionTime: 0ns - RowsProduced: 10 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 325.249ms PipelineXTask (index=20):(Active: 909.893us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 593.799us - CloseTime: 44.710us - GetBlockTime: 166.336us - OpenTime: 15.323us - PrepareTime: 248.331us - SinkTime: 378.465us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 854.727us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 522.26us DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 349.00 B - CloseTime: 15.566us - CompressTime: 0ns - ExecTime: 538.95us - InputRows: 8 - LocalBytesSent: 162.00 B - LocalSendTime: 72.427us - LocalSentRows: 4 - MemoryUsage: - PeakMemoryUsage: 2.75 KB - MergeBlockTime: 0ns - OpenTime: 144.561us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s254ms - RowsProduced: 8 - RpcAvgTime: 3s236ms - RpcCount: 12 - RpcMaxTime: 3s239ms - RpcMinTime: 3s228ms - RpcSumTime: 38s838ms - SerializeBatchTime: 9.133us - SplitBlockDistributeByChannelTime: 13.391us - SplitBlockHashComputeTime: 4.222us - UncompressedRowBatchSize: 301.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 38.919us - CloseTime: 5.947us - DeserializeAndMergeTime: 0ns - ExecTime: 108.859us - ExprTime: 1.656us - GetResultsTime: 28.969us - HashTableComputeTime: 30.250us - HashTableEmplaceTime: 21.204us - HashTableInputCount: 9 - HashTableIterateTime: 1.76us - HashTableSize: 8 - InsertKeysToColumnTime: 4.852us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 360.00 B - PeakMemoryUsage: 528.35 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 26.73us - ProjectionTime: 0ns - RowsProduced: 8 - SerializeDataTime: 5.163us - SerializeKeyTime: 0ns - SerializeResultTime: 32.721us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 16.481us - ExecTime: 114.773us - InitProbeSideTime: 10.367us - JoinFilterTimer: 51ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 23.44us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 848ns - ProbeFindNextTime: 0ns - ProbeRows: 9 - ProbeTime: 40.997us - ProbeWhenBuildSideOutputTime: 1.584us - ProbeWhenProbeSideOutputTime: 2.103us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.240us - ProjectionTime: 28.508us - RowsProduced: 9 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 4.923us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 896.00 B - OpenTime: 780ns - ProjectionTime: 0ns - RowsProduced: 9 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 326.137ms PipelineXTask (index=25):(Active: 729.531us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 481.248us - CloseTime: 32.9us - GetBlockTime: 53.81us - OpenTime: 5.860us - PrepareTime: 204.678us - SinkTime: 395.167us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 689.35us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.4ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.827us - CompressTime: 0ns - ExecTime: 520.213us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 73.906us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 105.979us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s325ms - RowsProduced: 0 - RpcAvgTime: 3s304ms - RpcCount: 12 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 39s658ms - 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 STREAMING_AGGREGATION_OPERATOR (id=274): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.100us - DeserializeAndMergeTime: 0ns - ExecTime: 40.187us - ExprTime: 0ns - GetResultsTime: 5.861us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 137ns - HashTableSize: 0 - InsertKeysToColumnTime: 647ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.103us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.242us - SerializeKeyTime: 0ns - SerializeResultTime: 9.324us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.908us - ExecTime: 43.769us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.148us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.843us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.915us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 15.983us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 283.00 B - OpenTime: 754ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.611ms PipelineXTask (index=30):(Active: 561.955us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 317.502us - CloseTime: 36.346us - GetBlockTime: 36.230us - OpenTime: 5.122us - PrepareTime: 197.97us - SinkTime: 253.586us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 513.284us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.245ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.96us - CompressTime: 0ns - ExecTime: 389.408us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 49.621us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 111.989us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s314ms - RowsProduced: 0 - RpcAvgTime: 3s295ms - RpcCount: 12 - RpcMaxTime: 3s295ms - RpcMinTime: 3s294ms - RpcSumTime: 39s540ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 424ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.429us - DeserializeAndMergeTime: 0ns - ExecTime: 46.508us - ExprTime: 0ns - GetResultsTime: 8.153us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 133ns - HashTableSize: 0 - InsertKeysToColumnTime: 966ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.37us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.255us - SerializeKeyTime: 0ns - SerializeResultTime: 15.139us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.649us - ExecTime: 39.39us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.243us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.473us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.647us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.624us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 712ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 325.138ms PipelineXTask (index=35):(Active: 617.548us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 332.804us - CloseTime: 29.869us - GetBlockTime: 53.0us - OpenTime: 5.10us - PrepareTime: 244.330us - SinkTime: 249.40us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 580.668us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.639ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.514us - CompressTime: 0ns - ExecTime: 405.257us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 41.510us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 140.434us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s318ms - RowsProduced: 0 - RpcAvgTime: 3s305ms - RpcCount: 12 - RpcMaxTime: 3s305ms - RpcMinTime: 3s304ms - RpcSumTime: 39s661ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 510ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 883ns - DeserializeAndMergeTime: 0ns - ExecTime: 62.684us - ExprTime: 0ns - GetResultsTime: 16.438us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 143ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.656us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 39.351us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.467us - SerializeKeyTime: 0ns - SerializeResultTime: 19.416us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.363us - ExecTime: 43.858us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.803us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.308us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.253us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.759us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 530ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 326.120ms PipelineXTask (index=40):(Active: 633.188us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 352.503us - CloseTime: 40.830us - GetBlockTime: 26.629us - OpenTime: 7.317us - PrepareTime: 211.896us - SinkTime: 297.436us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 572.406us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.794ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.796us - CompressTime: 0ns - ExecTime: 428.241us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 42.915us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 111.470us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s299ms - RowsProduced: 0 - RpcAvgTime: 3s272ms - RpcCount: 12 - RpcMaxTime: 3s280ms - RpcMinTime: 3s238ms - RpcSumTime: 39s269ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 385ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.623us - DeserializeAndMergeTime: 0ns - ExecTime: 33.890us - ExprTime: 0ns - GetResultsTime: 4.338us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 198ns - HashTableSize: 0 - InsertKeysToColumnTime: 413ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.38us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 683ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.603us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 11.89us - ExecTime: 42.236us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.326us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.718us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.849us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.626us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 676ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 324.437ms PipelineXTask (index=45):(Active: 22.431ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.154ms - CloseTime: 52.812us - GetBlockTime: 30.462us - OpenTime: 21.775us - PrepareTime: 180.216us - SinkTime: 22.76ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 635.479us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.91ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 30.465us - CompressTime: 0ns - ExecTime: 22.196ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 47.678us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 90.514us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s414ms - RowsProduced: 0 - RpcAvgTime: 3s290ms - RpcCount: 12 - RpcMaxTime: 3s418ms - RpcMinTime: 3s273ms - RpcSumTime: 39s483ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 434ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.532us - DeserializeAndMergeTime: 0ns - ExecTime: 32.38us - ExprTime: 0ns - GetResultsTime: 4.775us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 112ns - HashTableSize: 0 - InsertKeysToColumnTime: 503ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.654us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.59us - SerializeKeyTime: 0ns - SerializeResultTime: 6.855us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 10.410us - ExecTime: 42.448us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.253us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.920us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.493us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 4.580us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.327us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 326.238ms PipelineXTask (index=50):(Active: 621.359us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 303.948us - CloseTime: 29.565us - GetBlockTime: 33.2us - OpenTime: 5.356us - PrepareTime: 276.361us - SinkTime: 242.228us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 583.291us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.461ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.602us - CompressTime: 0ns - ExecTime: 444.440us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 30.277us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 189.56us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s325ms - RowsProduced: 0 - RpcAvgTime: 3s304ms - RpcCount: 12 - RpcMaxTime: 3s304ms - RpcMinTime: 3s304ms - RpcSumTime: 39s658ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 593ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.173us - DeserializeAndMergeTime: 0ns - ExecTime: 39.980us - ExprTime: 0ns - GetResultsTime: 4.881us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 153ns - HashTableSize: 0 - InsertKeysToColumnTime: 558ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 29.446us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.25us - SerializeKeyTime: 0ns - SerializeResultTime: 7.80us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.807us - ExecTime: 43.96us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.39us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 9.679us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.495us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.85us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 844ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 326.209ms PipelineXTask (index=55):(Active: 547.983us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 291.68us - CloseTime: 44.365us - GetBlockTime: 30.166us - OpenTime: 23.246us - PrepareTime: 183.257us - SinkTime: 216.668us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 495.835us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.745ms DATA_STREAM_SINK_OPERATOR (id=275,dst_id=275): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.653us - CompressTime: 0ns - ExecTime: 344.522us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 33.45us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 103.700us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s316ms - RowsProduced: 0 - RpcAvgTime: 3s302ms - RpcCount: 12 - RpcMaxTime: 3s302ms - RpcMinTime: 3s301ms - RpcSumTime: 39s624ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 436ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.20us - DeserializeAndMergeTime: 0ns - ExecTime: 33.633us - ExprTime: 0ns - GetResultsTime: 4.977us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 38ns - HashTableSize: 0 - InsertKeysToColumnTime: 351ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.478us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.333us - SerializeKeyTime: 0ns - SerializeResultTime: 7.28us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=273): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 10.887us - ExecTime: 43.619us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.560us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.714us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.160us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.62us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 753ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 325.22ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 740.887us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 664.184us - CloseTime: 15.820us - GetBlockTime: 443.352us - OpenTime: 10.204us - PrepareTime: 45.189us - SinkTime: 93.23us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 705.655us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.738ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 91.794us - InputRows: 49 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.82us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 13.877us - ExecTime: 327.18us - InitProbeSideTime: 34.876us - JoinFilterTimer: 438ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 8.501us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.804us - ProbeFindNextTime: 0ns - ProbeRows: 49 - ProbeTime: 144.843us - ProbeWhenBuildSideOutputTime: 212ns - ProbeWhenProbeSideOutputTime: 22.729us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.581us - ProjectionTime: 129.153us - RowsProduced: 49 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 90.321us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 360.00 KB - OpenTime: 500ns - ProjectionTime: 0ns - RowsProduced: 49 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 301.649ms PipelineXTask (index=6):(Active: 236.349us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 166.622us - CloseTime: 2.701us - GetBlockTime: 104.29us - OpenTime: 3.979us - PrepareTime: 57.157us - SinkTime: 3.147us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 219.994us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.298ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.8us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.142us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.780us - ExecTime: 45.992us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.485us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.570us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 29.664us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 56.362us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 120.00 KB - OpenTime: 3.44us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 313.787ms PipelineXTask (index=11):(Active: 99.179us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.180us - CloseTime: 6.330us - GetBlockTime: 20.887us - OpenTime: 3.610us - PrepareTime: 36.259us - SinkTime: 9.452us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.45us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.671ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.187us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.112us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.15us - ExecTime: 34.339us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.580us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.455us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.406us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.292us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 455ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 322.219ms PipelineXTask (index=16):(Active: 123.452us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 62.616us - CloseTime: 4.35us - GetBlockTime: 20.101us - OpenTime: 6.677us - PrepareTime: 43.862us - SinkTime: 12.530us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.674us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.835ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.266us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1000ns - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.616us - ExecTime: 31.996us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.953us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.571us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.107us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.82us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 445ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 321.610ms PipelineXTask (index=21):(Active: 125.179us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 66.891us - CloseTime: 5.71us - GetBlockTime: 19.563us - OpenTime: 4.47us - PrepareTime: 43.78us - SinkTime: 6.39us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.536us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.276ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.502us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.89us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.367us - ExecTime: 32.212us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.643us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.606us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.826us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.137us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 478ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 321.528ms PipelineXTask (index=26):(Active: 109.392us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.428us - CloseTime: 4.649us - GetBlockTime: 21.593us - OpenTime: 2.850us - PrepareTime: 52.500us - SinkTime: 3.495us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.918us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.127ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.275us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.217us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.634us - ExecTime: 33.743us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.590us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.843us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.469us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.285us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 451ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.382ms PipelineXTask (index=31):(Active: 89.12us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.930us - CloseTime: 2.372us - GetBlockTime: 9.563us - OpenTime: 4.129us - PrepareTime: 49.926us - SinkTime: 1.994us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.308us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 589.567us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 2.909us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.155us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.532us - ExecTime: 22.473us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.419us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.249us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 3.903us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.756us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.170us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.327ms PipelineXTask (index=36):(Active: 114.697us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 56.54us - CloseTime: 4.636us - GetBlockTime: 23.314us - OpenTime: 7.187us - PrepareTime: 41.616us - SinkTime: 9.269us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.239us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.479ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.728us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.38us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.992us - ExecTime: 41.421us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.616us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.238us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.73us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.461us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 436ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.579ms PipelineXTask (index=41):(Active: 114.114us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 52.810us - CloseTime: 4.144us - GetBlockTime: 20.547us - OpenTime: 3.733us - PrepareTime: 47.7us - SinkTime: 5.460us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.908us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.266ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.966us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.149us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.460us - ExecTime: 33.606us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.591us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.931us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.869us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.80us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 460ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 321.587ms PipelineXTask (index=46):(Active: 123.530us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 41.908us - CloseTime: 4.56us - GetBlockTime: 17.713us - OpenTime: 3.781us - PrepareTime: 68.534us - SinkTime: 5.149us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 113.327us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.780ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.59us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.107us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.551us - ExecTime: 53.614us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 35.405us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.720us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.33us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.408us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.869us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.374ms PipelineXTask (index=51):(Active: 108.222us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 52.595us - CloseTime: 3.610us - GetBlockTime: 14.637us - OpenTime: 2.333us - PrepareTime: 44.436us - SinkTime: 19.193us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.546us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.180ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.859us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.144us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 2.453us - ExecTime: 23.713us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.511us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.164us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.203us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.341us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 499ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.361ms PipelineXTask (index=56):(Active: 92.376us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.412us - CloseTime: 2.508us - GetBlockTime: 8.786us - OpenTime: 3.145us - PrepareTime: 52.428us - SinkTime: 4.685us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.633us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 650.202us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.640us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.130us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=272): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 1.693us - ExecTime: 17.177us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.476us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 1.911us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 3.667us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 3.146us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.564us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 323.255ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 25.794ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 12.791ms - CloseTime: 168.953us - GetBlockTime: 65.403us - OpenTime: 12.660ms - PrepareTime: 162.461us - SinkTime: 28.893us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.739ms - WaitBfTime: 3.994ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.995ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 27.644us - InputRows: 10 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 872ns - 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, 15333, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 54.509us - BlocksProduced: 1 - CloseTime: 166.194us - ExecTime: 139.598ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 12.743ms - ProcessConjunctTime: 12.407ms - ProjectionTime: 41.12us - RowsProduced: 10 - RowsRead: 10 - RuntimeFilterInfo: - filter id = -1 filtered: 516.12K (516120) - filter id = -1 input: 532.56K (532560) - ScannerWorkerWaitTime: 360.792ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 126.581ms - 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.417us, 7.892us, 4.686ms, ] - PerScannerRowsRead: [0, 0, 10, ] - PerScannerWaitTime: [119.537ms, 120.051ms, 121.202ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.218ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 16.727ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 317ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.553ms - ScannerCtxSchedTime: 360.787ms - ScannerFilterTime: 10.475us - ScannerGetBlockTime: 4.662ms - ScannerInitTime: 162.529us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 441628, filtered = 430338] - BitmapIndexFilterTimer: 2.336us - BlockConditionsFilteredBloomFilterTime: 6.340us - BlockConditionsFilteredDictTime: 189.101us - BlockConditionsFilteredTime: 289.373us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 49.855us - BlockInitSeekCount: 33 - BlockInitSeekTime: 28.574us - BlockInitTime: 399.301us - BlockLoadTime: 20.531ms - BlocksLoad: 94 - CachedPagesNum: 223 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.960ms - FirstReadSeekCount: 270 - FirstReadSeekTime: 65.739us - FirstReadTime: 4.346ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.483us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.422ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 329.763us - OutputIndexResultColumnTimer: 5.774us - RawRowsRead: 359.453K (359453) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 245.206K (245206) - RowsDictFiltered: 245.206K (245206) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 215.169K (215169) - RowsShortCircuitPredInput: 220.814K (220814) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 138.639K (138639) - RowsVectorPredInput: 359.453K (359453) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.447ms - ShortPredEvalTime: 9.703ms - TotalPagesNum: 223 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 697.428us PipelineXTask (index=7):(Active: 1.585ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 667.272us - CloseTime: 165.765us - GetBlockTime: 38.892us - OpenTime: 577.481us - PrepareTime: 163.911us - SinkTime: 22.998us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.408ms - WaitBfTime: 15.812ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.708ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.10us - InputRows: 8 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 998ns - 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, 15335, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 40.867us - BlocksProduced: 1 - CloseTime: 164.294us - ExecTime: 127.923ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 663.317us - ProcessConjunctTime: 333.146us - ProjectionTime: 27.406us - RowsProduced: 8 - RowsRead: 8 - RuntimeFilterInfo: - filter id = -1 filtered: 523.03K (523030) - filter id = -1 input: 539.258K (539258) - ScannerWorkerWaitTime: 377.401ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 127.29ms - 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: [9.121us, 7.878us, 4.040ms, ] - PerScannerRowsRead: [0, 0, 8, ] - PerScannerWaitTime: [125.317ms, 126.005ms, 126.077ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.631ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 8.144ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 144ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.506ms - ScannerCtxSchedTime: 377.398ms - ScannerFilterTime: 6.575us - ScannerGetBlockTime: 4.22ms - ScannerInitTime: 160.117us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 449212, filtered = 438338] - BitmapIndexFilterTimer: 7.61us - BlockConditionsFilteredBloomFilterTime: 6.313us - BlockConditionsFilteredDictTime: 286.272us - BlockConditionsFilteredTime: 377.921us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 53.114us - BlockInitSeekCount: 49 - BlockInitSeekTime: 33.361us - BlockInitTime: 500.617us - BlockLoadTime: 11.257ms - BlocksLoad: 96 - CachedPagesNum: 219 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.845ms - FirstReadSeekCount: 276 - FirstReadSeekTime: 58.82us - FirstReadTime: 4.139ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.997us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.438ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 313.849us - OutputIndexResultColumnTimer: 5.450us - RawRowsRead: 365.075K (365075) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 259.643K (259643) - RowsDictFiltered: 259.643K (259643) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 219.169K (219169) - RowsShortCircuitPredInput: 224.606K (224606) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 140.469K (140469) - RowsVectorPredInput: 365.075K (365075) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.527ms - ShortPredEvalTime: 591.108us - TotalPagesNum: 219 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 720.836us PipelineXTask (index=12):(Active: 2.84ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 916.616us - CloseTime: 241.262us - GetBlockTime: 127.261us - OpenTime: 726.346us - PrepareTime: 185.947us - SinkTime: 13.53us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.825ms - WaitBfTime: 14.954ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.655ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.170us - InputRows: 10 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.321us - 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, 15321, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 66.871us - BlocksProduced: 1 - CloseTime: 238.684us - ExecTime: 158.524ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 826.765us - ProcessConjunctTime: 433.971us - ProjectionTime: 37.933us - RowsProduced: 10 - RowsRead: 10 - RuntimeFilterInfo: - filter id = -1 filtered: 914.854K (914854) - filter id = -1 input: 955.596K (955596) - ScannerWorkerWaitTime: 356.848ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.295ms - 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.850us, 9.697us, 41.739ms, ] - PerScannerRowsRead: [0, 0, 10, ] - PerScannerWaitTime: [118.584ms, 119.065ms, 119.199ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 41.336ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 17.769ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 440ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.833ms - ScannerCtxSchedTime: 356.843ms - ScannerFilterTime: 8.223us - ScannerGetBlockTime: 41.722ms - ScannerInitTime: 186.458us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 522324, filtered = 499512] - BitmapIndexFilterTimer: 2.778us - BlockConditionsFilteredBloomFilterTime: 8.619us - BlockConditionsFilteredDictTime: 210.416us - BlockConditionsFilteredTime: 346.130us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 85.98us - BlockInitSeekCount: 34 - BlockInitSeekTime: 32.528us - BlockInitTime: 468.635us - BlockLoadTime: 58.435ms - BlocksLoad: 105 - CachedPagesNum: 249 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 41.276ms - FirstReadSeekCount: 303 - FirstReadSeekTime: 73.12us - FirstReadTime: 9.533ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.328us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.956ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 680.181us - OutputIndexResultColumnTimer: 8.841us - RawRowsRead: 403.157K (403157) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 242.615K (242615) - RowsDictFiltered: 242.615K (242615) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 249.756K (249756) - RowsShortCircuitPredInput: 261.162K (261162) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 141.995K (141995) - RowsVectorPredInput: 403.157K (403157) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.86ms - ShortPredEvalTime: 1.483ms - TotalPagesNum: 249 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.18ms PipelineXTask (index=17):(Active: 1.417ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 635.716us - CloseTime: 131.934us - GetBlockTime: 87.254us - OpenTime: 486.220us - PrepareTime: 150.792us - SinkTime: 18.599us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.270ms - WaitBfTime: 18.676ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.433ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.739us - InputRows: 12 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.22us - 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, 15323, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 40.728us - BlocksProduced: 1 - CloseTime: 128.697us - ExecTime: 136.341ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 572.320us - ProcessConjunctTime: 281.800us - ProjectionTime: 38.122us - RowsProduced: 12 - RowsRead: 12 - RuntimeFilterInfo: - filter id = -1 filtered: 589.38K (589380) - filter id = -1 input: 618.584K (618584) - ScannerWorkerWaitTime: 394.200ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 135.514ms - 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.349us, 8.303us, 4.313ms, ] - PerScannerRowsRead: [0, 0, 12, ] - PerScannerWaitTime: [130.989ms, 131.451ms, 131.758ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.848ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.109ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 295ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.705ms - ScannerCtxSchedTime: 394.197ms - ScannerFilterTime: 9.110us - ScannerGetBlockTime: 4.291ms - ScannerInitTime: 135.181us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 528192, filtered = 504278] - BitmapIndexFilterTimer: 2.270us - BlockConditionsFilteredBloomFilterTime: 6.242us - BlockConditionsFilteredDictTime: 189.566us - BlockConditionsFilteredTime: 278.495us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.446us - BlockInitSeekCount: 34 - BlockInitSeekTime: 26.707us - BlockInitTime: 390.985us - BlockLoadTime: 14.514ms - BlocksLoad: 107 - CachedPagesNum: 252 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.95ms - FirstReadSeekCount: 328 - FirstReadSeekTime: 88.284us - FirstReadTime: 6.800ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.67us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.100ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 472.425us - OutputIndexResultColumnTimer: 6.353us - RawRowsRead: 409.829K (409829) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 240.805K (240805) - RowsDictFiltered: 240.805K (240805) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 252.139K (252139) - RowsShortCircuitPredInput: 264.096K (264096) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 145.733K (145733) - RowsVectorPredInput: 409.829K (409829) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.111ms - ShortPredEvalTime: 1.222ms - TotalPagesNum: 252 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 751.588us PipelineXTask (index=22):(Active: 1.365ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 588.649us - CloseTime: 97.520us - GetBlockTime: 56.725us - OpenTime: 489.783us - PrepareTime: 177.447us - SinkTime: 10.607us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.255ms - WaitBfTime: 18.44ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.316ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 10.752us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 949ns - 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, 15347] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 43.681us - BlocksProduced: 0 - CloseTime: 95.351us - ExecTime: 196.492ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 586.701us - ProcessConjunctTime: 312.714us - ProjectionTime: 4.621us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 478.89K (478890) - filter id = -1 input: 536.07K (536070) - ScannerWorkerWaitTime: 256.928ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 195.749ms - 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.674us, 14.532us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [128.186ms, 128.742ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 68.994ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 228ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.740ms - ScannerCtxSchedTime: 256.925ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.275us - ScannerInitTime: 88.576us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 536070, filtered = 478890] - BitmapIndexFilterTimer: 1.252us - BlockConditionsFilteredBloomFilterTime: 3.81us - BlockConditionsFilteredDictTime: 328.68us - BlockConditionsFilteredTime: 394.176us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 46.884us - BlockInitSeekCount: 30 - BlockInitSeekTime: 23.790us - BlockInitTime: 470.796us - BlockLoadTime: 68.468ms - BlocksLoad: 106 - CachedPagesNum: 227 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.272ms - FirstReadSeekCount: 312 - FirstReadSeekTime: 44.959us - FirstReadTime: 59.235ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.233us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.581ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 905.658us - OutputIndexResultColumnTimer: 7.165us - RawRowsRead: 419.351K (419351) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 342.317K (342317) - RowsDictFiltered: 342.317K (342317) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 239.445K (239445) - RowsShortCircuitPredInput: 268.035K (268035) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 151.316K (151316) - RowsVectorPredInput: 419.351K (419351) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.727ms - ShortPredEvalTime: 1.372ms - TotalPagesNum: 227 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 847.78us PipelineXTask (index=27):(Active: 1.394ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 608.144us - CloseTime: 122.572us - GetBlockTime: 75.943us - OpenTime: 465.407us - PrepareTime: 187.870us - SinkTime: 35.789us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.259ms - WaitBfTime: 15.381ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.762ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 37.783us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.448us - 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, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 43.583us - BlocksProduced: 0 - CloseTime: 118.949us - ExecTime: 298.971ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 564.416us - ProcessConjunctTime: 303.17us - ProjectionTime: 3.106us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 481.34K (481340) - filter id = -1 input: 538.65K (538650) - ScannerWorkerWaitTime: 248.125ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 298.210ms - 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.978us, 9.274us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [123.736ms, 124.389ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 181.964ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 217ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.923ms - ScannerCtxSchedTime: 248.122ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.824us - ScannerInitTime: 91.518us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 538650, filtered = 481340] - BitmapIndexFilterTimer: 1.168us - BlockConditionsFilteredBloomFilterTime: 7.34us - BlockConditionsFilteredDictTime: 259.58us - BlockConditionsFilteredTime: 330.614us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.731us - BlockInitSeekCount: 17 - BlockInitSeekTime: 28.274us - BlockInitTime: 407.391us - BlockLoadTime: 181.417ms - BlocksLoad: 107 - CachedPagesNum: 226 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.978ms - FirstReadSeekCount: 315 - FirstReadSeekTime: 61.416us - FirstReadTime: 32.921ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.318us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.205ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.460ms - OutputIndexResultColumnTimer: 9.656us - RawRowsRead: 423.306K (423306) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 341.854K (341854) - RowsDictFiltered: 341.854K (341854) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 240.67K (240670) - RowsShortCircuitPredInput: 269.325K (269325) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 153.981K (153981) - RowsVectorPredInput: 423.306K (423306) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.476ms - ShortPredEvalTime: 64.961ms - TotalPagesNum: 226 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.2ms PipelineXTask (index=32):(Active: 1.406ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 587.968us - CloseTime: 124.40us - GetBlockTime: 43.288us - OpenTime: 507.811us - PrepareTime: 176.465us - SinkTime: 6.484us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.271ms - WaitBfTime: 15.982ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.89ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.798us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 907ns - 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, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 41.820us - BlocksProduced: 0 - CloseTime: 122.406us - ExecTime: 150.332ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 609.946us - ProcessConjunctTime: 354.430us - ProjectionTime: 4.709us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 485.092K (485092) - filter id = -1 input: 541.408K (541408) - ScannerWorkerWaitTime: 252.901ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 149.553ms - 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: [9.782us, 12.544us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [126.008ms, 126.892ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 24.677ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 234ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.761ms - ScannerCtxSchedTime: 252.899ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.181us - ScannerInitTime: 84.803us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 541408, filtered = 485092] - BitmapIndexFilterTimer: 1.516us - BlockConditionsFilteredBloomFilterTime: 4.8us - BlockConditionsFilteredDictTime: 350.239us - BlockConditionsFilteredTime: 426.475us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.882us - BlockInitSeekCount: 13 - BlockInitSeekTime: 18.658us - BlockInitTime: 508.225us - BlockLoadTime: 24.49ms - BlocksLoad: 108 - CachedPagesNum: 232 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.966ms - FirstReadSeekCount: 318 - FirstReadSeekTime: 61.217us - FirstReadTime: 11.113ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.723us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.664ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 1.493ms - OutputIndexResultColumnTimer: 12.366us - RawRowsRead: 428.098K (428098) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 344.296K (344296) - RowsDictFiltered: 344.296K (344296) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 242.546K (242546) - RowsShortCircuitPredInput: 270.704K (270704) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 157.394K (157394) - RowsVectorPredInput: 428.098K (428098) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.930ms - ShortPredEvalTime: 1.863ms - TotalPagesNum: 232 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.177ms PipelineXTask (index=37):(Active: 98.313ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 49.62ms - CloseTime: 135.251us - GetBlockTime: 91.845us - OpenTime: 48.917ms - PrepareTime: 187.324us - SinkTime: 14.33us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.532ms - WaitBfTime: 14.464ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.870ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.13us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.354us - 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, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 59.195us - BlocksProduced: 0 - CloseTime: 131.125us - ExecTime: 274.51ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 49.19ms - ProcessConjunctTime: 32.6ms - ProjectionTime: 3.819us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.54956M (1549560) - filter id = -1 input: 1.576648M (1576648) - ScannerWorkerWaitTime: 351.638ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 224.795ms - 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: [9.758us, 12.536us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [175.062ms, 176.576ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 54.633ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 129ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.836ms - ScannerCtxSchedTime: 351.634ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.699us - ScannerInitTime: 16.820ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1032008, filtered = 1004922] - BitmapIndexFilterTimer: 1.220us - BlockConditionsFilteredBloomFilterTime: 3.572us - BlockConditionsFilteredDictTime: 188.690us - BlockConditionsFilteredTime: 277.557us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 60.220us - BlockInitSeekCount: 15 - BlockInitSeekTime: 16.309us - BlockInitTime: 350.574us - BlockLoadTime: 53.938ms - BlocksLoad: 192 - CachedPagesNum: 264 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.885ms - FirstReadSeekCount: 570 - FirstReadSeekTime: 115.44us - FirstReadTime: 42.717ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.610us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.621ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 879.698us - OutputIndexResultColumnTimer: 14.782us - RawRowsRead: 767.593K (767593) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 502.461K (502461) - RowsShortCircuitPredInput: 516.004K (516004) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 251.589K (251589) - RowsVectorPredInput: 767.593K (767593) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.889ms - ShortPredEvalTime: 2.60ms - TotalPagesNum: 264 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.819ms PipelineXTask (index=42):(Active: 53.328ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 26.572ms - CloseTime: 119.878us - GetBlockTime: 85.489us - OpenTime: 26.431ms - PrepareTime: 193.112us - SinkTime: 13.757us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.324ms - WaitBfTime: 16.254ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.795ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.476us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 887ns - 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, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 47.659us - BlocksProduced: 0 - CloseTime: 117.67us - ExecTime: 218.970ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 26.508ms - ProcessConjunctTime: 26.235ms - ProjectionTime: 4.116us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 457.052K (457052) - filter id = -1 input: 484.048K (484048) - ScannerWorkerWaitTime: 261.190ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 192.257ms - 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: [11.890us, 8.365us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [130.292ms, 130.897ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 64.732ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 145ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.38ms - ScannerCtxSchedTime: 261.186ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.649us - ScannerInitTime: 113.940us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 484048, filtered = 457052] - BitmapIndexFilterTimer: 1.596us - BlockConditionsFilteredBloomFilterTime: 3.978us - BlockConditionsFilteredDictTime: 231.313us - BlockConditionsFilteredTime: 312.934us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 50.297us - BlockInitSeekCount: 28 - BlockInitSeekTime: 37.597us - BlockInitTime: 421.688us - BlockLoadTime: 64.179ms - BlocksLoad: 98 - CachedPagesNum: 209 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.204ms - FirstReadSeekCount: 288 - FirstReadSeekTime: 40.231us - FirstReadTime: 57.632ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.825us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.882ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 543.101us - OutputIndexResultColumnTimer: 9.340us - RawRowsRead: 390.111K (390111) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 379.302K (379302) - RowsDictFiltered: 379.302K (379302) - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 228.526K (228526) - RowsShortCircuitPredInput: 242.024K (242024) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 148.087K (148087) - RowsVectorPredInput: 390.111K (390111) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.28ms - ShortPredEvalTime: 1.90ms - TotalPagesNum: 209 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 710.937us PipelineXTask (index=47):(Active: 1.335ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 571.173us - CloseTime: 81.533us - GetBlockTime: 30.910us - OpenTime: 502.751us - PrepareTime: 167.386us - SinkTime: 5.850us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.241ms - WaitBfTime: 18.48ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.183ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.454us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 952ns - 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: [15311, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 42.191us - BlocksProduced: 0 - CloseTime: 80.165us - ExecTime: 157.297ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 590.382us - ProcessConjunctTime: 338.981us - ProjectionTime: 3.742us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.527492M (1527492) - filter id = -1 input: 1.554166M (1554166) - ScannerWorkerWaitTime: 259.242ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.592ms - 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: [9.687us, 6.727us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [128.902ms, 130.339ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 35.562ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 208ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.11ms - ScannerCtxSchedTime: 259.239ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.596us - ScannerInitTime: 94.66us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1018666, filtered = 991998] - BitmapIndexFilterTimer: 1.346us - BlockConditionsFilteredBloomFilterTime: 3.481us - BlockConditionsFilteredDictTime: 165.800us - BlockConditionsFilteredTime: 243.185us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 54.541us - BlockInitSeekCount: 8 - BlockInitSeekTime: 17.716us - BlockInitTime: 317.950us - BlockLoadTime: 34.901ms - BlocksLoad: 190 - CachedPagesNum: 266 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.449ms - FirstReadSeekCount: 564 - FirstReadSeekTime: 89.496us - FirstReadTime: 25.50ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.227us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.161ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 636.72us - OutputIndexResultColumnTimer: 7.15us - RawRowsRead: 759.906K (759906) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 495.999K (495999) - RowsShortCircuitPredInput: 509.333K (509333) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 250.573K (250573) - RowsVectorPredInput: 759.906K (759906) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.319ms - ShortPredEvalTime: 2.299ms - TotalPagesNum: 266 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.744ms PipelineXTask (index=52):(Active: 1.295ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 550.8us - CloseTime: 95.300us - GetBlockTime: 53.683us - OpenTime: 464.443us - PrepareTime: 175.206us - SinkTime: 3.105us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.188ms - WaitBfTime: 16.326ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.930ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 6.988us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.374us - 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: [15327, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 42.174us - BlocksProduced: 0 - CloseTime: 92.881us - ExecTime: 134.916ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 564.262us - ProcessConjunctTime: 310.780us - ProjectionTime: 5.745us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.163894M (1163894) - filter id = -1 input: 1.202558M (1202558) - ScannerWorkerWaitTime: 254.631ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.200ms - 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.311us, 8.640us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [126.983ms, 127.647ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 17.578ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 180ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.634ms - ScannerCtxSchedTime: 254.627ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.881us - ScannerInitTime: 84.20us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 845488, filtered = 812462] - BitmapIndexFilterTimer: 1.356us - BlockConditionsFilteredBloomFilterTime: 3.287us - BlockConditionsFilteredDictTime: 55.274us - BlockConditionsFilteredTime: 124.681us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 38.107us - BlockInitSeekCount: 16 - BlockInitSeekTime: 17.822us - BlockInitTime: 193.279us - BlockLoadTime: 17.140ms - BlocksLoad: 170 - CachedPagesNum: 361 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.539ms - FirstReadSeekCount: 504 - FirstReadSeekTime: 68.755us - FirstReadTime: 7.801ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.175us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.543ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 598.273us - OutputIndexResultColumnTimer: 9.261us - RawRowsRead: 681.79K (681790) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 406.231K (406231) - RowsShortCircuitPredInput: 422.744K (422744) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 259.046K (259046) - RowsVectorPredInput: 681.79K (681790) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.725ms - ShortPredEvalTime: 1.376ms - TotalPagesNum: 361 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.195ms PipelineXTask (index=57):(Active: 62.930ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 31.366ms - CloseTime: 157.670us - GetBlockTime: 84.170us - OpenTime: 31.206ms - PrepareTime: 188.16us - SinkTime: 35.907us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.712ms - WaitBfTime: 14.82ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.138ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 34.750us - InputRows: 9 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.4us - 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: [15329, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 58.668us - BlocksProduced: 1 - CloseTime: 154.322us - ExecTime: 261.97ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 31.306ms - ProcessConjunctTime: 30.967ms - ProjectionTime: 34.558us - RowsProduced: 9 - RowsRead: 9 - RuntimeFilterInfo: - filter id = -1 filtered: 526.164K (526164) - filter id = -1 input: 542.448K (542448) - ScannerWorkerWaitTime: 286.640ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 229.517ms - 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: [16.262us, 76.874ms, ] - PerScannerRowsRead: [0, 9, ] - PerScannerWaitTime: [143.292ms, 143.348ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.370ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 86.946ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 282ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.186ms - ScannerCtxSchedTime: 286.633ms - ScannerFilterTime: 8.538us - ScannerGetBlockTime: 76.851ms - ScannerInitTime: 150.21us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 451730, filtered = 440634] - BitmapIndexFilterTimer: 1.750us - BlockConditionsFilteredBloomFilterTime: 21.85us - BlockConditionsFilteredDictTime: 45.454us - BlockConditionsFilteredTime: 154.479us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 58.637us - BlockInitSeekCount: 27 - BlockInitSeekTime: 24.646us - BlockInitTime: 252.862us - BlockLoadTime: 162.966ms - BlocksLoad: 95 - CachedPagesNum: 218 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.464ms - FirstReadSeekCount: 295 - FirstReadSeekTime: 72.33ms - FirstReadTime: 78.167ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.930us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 78.801ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 515.295us - OutputIndexResultColumnTimer: 10.392us - RawRowsRead: 366.774K (366774) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 220.317K (220317) - RowsShortCircuitPredInput: 225.865K (225865) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 140.909K (140909) - RowsVectorPredInput: 366.774K (366774) - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 78.929ms - ShortPredEvalTime: 826.168us - TotalPagesNum: 218 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 923.148us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 240.960us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 178.453us - CloseTime: 9.327us - GetBlockTime: 15.51us - OpenTime: 2.993us - PrepareTime: 45.843us - SinkTime: 131.267us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.824us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.161ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 2.509us - BuildRows: 5.621K (5621) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 33.593us - BuildTableInsertTime: 39.80us - BuildTableTime: 47.691us - CloseTime: 0ns - ExecTime: 139.442us - InputRows: 5.62K (5620) - MemoryUsage: - BuildBlocks: 49.39 KB - BuildKeyArena: 0.00 - HashTable: 53.96 KB - PeakMemoryUsage: 103.35 KB - OpenTime: 9.249us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=265): - BlocksProduced: 4 - BytesReceived: 32.00 KB - CloseTime: 8.170us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 18.704ms - ExecTime: 38.389us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 36.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.577us - ProjectionTime: 0ns - RowsProduced: 5.62K (5620) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 129.665ms PipelineXTask (index=8):(Active: 122.354us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.477us - CloseTime: 27.23us - GetBlockTime: 0ns - OpenTime: 2.128us - PrepareTime: 60.928us - SinkTime: 13.473us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.70us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.130ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.841us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.820us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 136.439ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 24.784us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.156us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.660us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 105.662us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.311us - CloseTime: 8.362us - GetBlockTime: 0ns - OpenTime: 2.597us - PrepareTime: 57.65us - SinkTime: 8.330us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.3us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.999ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.558us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.396us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 136.403ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.744us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.418us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.740us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 105.93us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.413us - CloseTime: 7.149us - GetBlockTime: 0ns - OpenTime: 2.803us - PrepareTime: 59.88us - SinkTime: 9.634us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.209us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 849.724us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.624us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.102us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 137.641ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.42us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.445us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 35.746us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 99.979us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.844us - CloseTime: 4.667us - GetBlockTime: 0ns - OpenTime: 2.308us - PrepareTime: 62.528us - SinkTime: 6.776us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.862us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.795ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.111us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.448us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 135.665ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.411us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.861us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.724us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 93.191us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.385us - CloseTime: 6.283us - GetBlockTime: 0ns - OpenTime: 2.153us - PrepareTime: 59.938us - SinkTime: 5.988us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.423us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.116ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.577us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.841us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 136.470ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.235us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.671us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.699us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 100.802us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.511us - CloseTime: 8.172us - GetBlockTime: 0ns - OpenTime: 1.864us - PrepareTime: 63.997us - SinkTime: 9.818us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.672us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.172ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 23.726us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.259us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 136.435ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.389us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.12us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 33.788us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=38):(Active: 84.36us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.510us - CloseTime: 5.457us - GetBlockTime: 0ns - OpenTime: 2.707us - PrepareTime: 49.273us - SinkTime: 6.105us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 72.818us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 722.12us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.151us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.80us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 137.716ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.915us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.624us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.890us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=43):(Active: 72.0us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.840us - CloseTime: 4.234us - GetBlockTime: 0ns - OpenTime: 2.505us - PrepareTime: 35.780us - SinkTime: 5.776us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 60.974us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.764ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 11.751us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.33us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 135.702ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.50us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.844us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.143us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=48):(Active: 106.157us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.660us - CloseTime: 5.686us - GetBlockTime: 0ns - OpenTime: 3.80us - PrepareTime: 61.872us - SinkTime: 13.80us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.420us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 348.124us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.169us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.195us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 137.593ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.549us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.60us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.829us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=53):(Active: 84.367us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 24.15us - CloseTime: 9.218us - GetBlockTime: 0ns - OpenTime: 2.270us - PrepareTime: 44.121us - SinkTime: 8.285us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.883us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 540.379us HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.903us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.961us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 137.429ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.937us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.241us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.429us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=58):(Active: 108.88us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 35.875us - CloseTime: 7.432us - GetBlockTime: 0ns - OpenTime: 2.149us - PrepareTime: 58.125us - SinkTime: 12.356us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.742us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.926ms HASH_JOIN_SINK_OPERATOR (id=273): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.822us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.779us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 136.312ms EXCHANGE_OPERATOR (id=265): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.344us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.4us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.855us - 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: 10.749ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 10.624ms - CloseTime: 15.100us - GetBlockTime: 11.28us - OpenTime: 3.775us - PrepareTime: 101.761us - SinkTime: 10.584ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 367.27us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.730ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.501us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.969us - BuildTableInsertTime: 10.419ms - BuildTableTime: 10.426ms - CloseTime: 0ns - ExecTime: 10.618ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 35.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.295us - RuntimeFilterComputeTime: 28.581us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=270): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 11.423us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 13.145us - ExecTime: 33.543us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.316us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2.570ms PipelineXTask (index=9):(Active: 116.563us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 44.384us - CloseTime: 18.605us - GetBlockTime: 0ns - OpenTime: 2.243us - PrepareTime: 46.588us - SinkTime: 21.140us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.420us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 627.228us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.701us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.933us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.355ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.634us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.898us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.315us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 1.970ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 55.947us - CloseTime: 1.853ms - GetBlockTime: 0ns - OpenTime: 1.843us - PrepareTime: 53.493us - SinkTime: 18.542us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.818us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.707ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.256us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.918us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 13.280ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.852ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.868ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.599us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 129.155us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.506us - CloseTime: 10.560us - GetBlockTime: 0ns - OpenTime: 2.194us - PrepareTime: 62.414us - SinkTime: 28.7us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.323us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.842ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 56.214us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.793us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.534ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.506us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.751us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.276us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 1.523ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 58.349us - CloseTime: 1.407ms - GetBlockTime: 0ns - OpenTime: 3.283us - PrepareTime: 49.290us - SinkTime: 35.946us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.845us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 357.778us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.768us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.8us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.532ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.405ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.421ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.436us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 152.373us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 74.737us - CloseTime: 11.129us - GetBlockTime: 0ns - OpenTime: 2.683us - PrepareTime: 58.849us - SinkTime: 50.771us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 133.322us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.221ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 72.573us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.654us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 13.372ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.193us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.911us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.634us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 102.979us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 38.310us - CloseTime: 8.757us - GetBlockTime: 0ns - OpenTime: 2.157us - PrepareTime: 48.891us - SinkTime: 21.214us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.279us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 636.502us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.271us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.691us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.377ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.972us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.715us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.777us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=39):(Active: 98.549us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.215us - CloseTime: 7.362us - GetBlockTime: 0ns - OpenTime: 2.63us - PrepareTime: 48.720us - SinkTime: 18.623us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.324us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 486.485us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.10us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.805us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.627ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.489us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.888us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.358us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=44):(Active: 112.672us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 54.378us - CloseTime: 7.478us - GetBlockTime: 0ns - OpenTime: 2.812us - PrepareTime: 42.566us - SinkTime: 34.65us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.196us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.911ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 44.678us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.53us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.512ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.500us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.89us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.633us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=49):(Active: 111.504us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.168us - CloseTime: 10.637us - GetBlockTime: 0ns - OpenTime: 1.620us - PrepareTime: 45.852us - SinkTime: 29.557us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.803us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.169ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.552us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.898us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.491ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.862us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.248us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.682us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=54):(Active: 97.123us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 34.359us - CloseTime: 6.943us - GetBlockTime: 0ns - OpenTime: 1.566us - PrepareTime: 49.646us - SinkTime: 18.329us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.462us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 672.231us HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.831us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.987us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 14.344ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.840us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.444us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.927us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=59):(Active: 149.528us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 74.205us - CloseTime: 21.496us - GetBlockTime: 0ns - OpenTime: 2.966us - PrepareTime: 45.202us - SinkTime: 40.433us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.20us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.793ms HASH_JOIN_SINK_OPERATOR (id=272): - JoinType: LEFT_SEMI_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85d4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 50.910us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.407us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 13.66ms EXCHANGE_OPERATOR (id=270): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 18.449us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.482us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.11us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 48: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 372.768us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 212.113us - CloseTime: 33.697us - GetBlockTime: 40.30us - OpenTime: 2.20us - PrepareTime: 119.383us - SinkTime: 147.223us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 329.726us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 580.902us DATA_STREAM_SINK_OPERATOR (id=270,dst_id=270): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 15.618us - CompressTime: 0ns - ExecTime: 208.197us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 9.762us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 3.559us - OpenTime: 46.30us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.264ms - RowsProduced: 80 - RpcAvgTime: 540.900us - RpcCount: 1 - RpcMaxTime: 540.900us - RpcMinTime: 540.900us - RpcSumTime: 540.900us - SerializeBatchTime: 15.179us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=269): - BlocksProduced: 0 - BuildTime: 30.32us - CloseTime: 1.115us - ExecTime: 55.773us - HashTableComputeTime: 15.67us - HashTableEmplaceTime: 8.661us - HashTableInputCount: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 22.337us - ProjectionTime: 0ns - RowsProduced: 80 EXCHANGE_OPERATOR (id=268): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 11.88us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.270us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 1.63 KB - OpenTime: 13.77us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1.363ms Fragment 49: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 544.849us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 215.263us - CloseTime: 44.5us - GetBlockTime: 93.662us - OpenTime: 88.130us - PrepareTime: 191.296us - SinkTime: 13.726us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 492.562us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 564.63us DATA_STREAM_SINK_OPERATOR (id=268,dst_id=268): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.285us - CompressTime: 0ns - ExecTime: 56.85us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 7.740us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 25.615us - 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.184us - CloseTime: 384ns - ExecTime: 74.761us - HashTableComputeTime: 14.932us - HashTableEmplaceTime: 8.566us - HashTableInputCount: 80 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 39.330us - 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: 376ns - BlocksProduced: 1 - CloseTime: 23.594us - ExecTime: 1.134ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.258us - ProcessConjunctTime: 28.636us - ProjectionTime: 3.605us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 673.369us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 902.543us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [22.968us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [673.369us, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.622us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 168.484us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 176ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 238.686us - ScannerCtxSchedTime: 671.172us - ScannerFilterTime: 908ns - ScannerGetBlockTime: 17.38us - ScannerInitTime: 33.347us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 240ns - BlockConditionsFilteredBloomFilterTime: 908ns - BlockConditionsFilteredDictTime: 2.174us - BlockConditionsFilteredTime: 11.305us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 4.294us - BlockInitSeekCount: 6 - BlockInitSeekTime: 11.427us - BlockInitTime: 37.989us - BlockLoadTime: 90.764us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.651us - FirstReadTime: 19.846us - IOTimer: 0ns - InvertedIndexFilterTime: 1.429us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.525us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.921us - OutputIndexResultColumnTimer: 272ns - 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: 57ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.6us Fragment 50: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 40.533ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.315ms - CloseTime: 41.91us - GetBlockTime: 42.629us - OpenTime: 20.27ms - PrepareTime: 141.912us - SinkTime: 219.144us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 698.672us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.22ms DATA_STREAM_SINK_OPERATOR (id=265,dst_id=265): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 63.95 KB - CloseTime: 9.251us - CompressTime: 0ns - ExecTime: 266.777us - InputRows: 5.62K (5620) - LocalBytesSent: 49.39 KB - LocalSendTime: 24.683us - LocalSentRows: 5.62K (5620) - MemoryUsage: - PeakMemoryUsage: 36.00 KB - MergeBlockTime: 16.351us - OpenTime: 39.473us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 75.270ms - RowsProduced: 5.62K (5620) - RpcAvgTime: 16.823ms - RpcCount: 2 - RpcMaxTime: 33.646ms - RpcMinTime: 33.646ms - RpcSumTime: 33.646ms - SerializeBatchTime: 50.590us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 105.18 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 226ns - BlocksProduced: 2 - CloseTime: 29.304us - ExecTime: 60.584ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 20.102ms - ProcessConjunctTime: 21.564us - ProjectionTime: 63.288us - RowsProduced: 5.62K (5620) - RowsRead: 5.62K (5620) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 40.91ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 40.347ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [PRODUCT_ID] - PerScannerRunningTime: [43.166us, ] - PerScannerRowsRead: [5.62K, ] - PerScannerWaitTime: [40.091ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 25.963us - MemoryUsage: - FreeBlocks: 108.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 93.225us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 251ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 252.982us - ScannerCtxSchedTime: 40.90ms - ScannerFilterTime: 2.248us - ScannerGetBlockTime: 38.208us - ScannerInitTime: 19.980ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 189ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.159us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 8.731us - BlockInitTime: 26.870us - BlockLoadTime: 68.532us - BlocksLoad: 3 - CachedPagesNum: 1 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2 - FirstReadSeekTime: 480ns - FirstReadTime: 31.685us - IOTimer: 0ns - InvertedIndexFilterTime: 326ns - 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: 238ns - OutputIndexResultColumnTimer: 211ns - 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: 338.405us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 238.366us - CloseTime: 11.917us - GetBlockTime: 99.691us - OpenTime: 1.787us - PrepareTime: 79.189us - SinkTime: 116.363us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 297.458us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 832.104us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.21 KB - CloseTime: 10.287us - CompressTime: 0ns - ExecTime: 172.908us - InputRows: 107 - LocalBytesSent: 4.26 KB - LocalSendTime: 38.759us - LocalSentRows: 107 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 4.227us - OpenTime: 47.64us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 107 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 19.422us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 9.15 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 583ns - DeserializeAndMergeTime: 0ns - ExecTime: 110.731us - GetResultsTime: 35.705us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.897us - HashTableSize: 107 - InsertKeysToColumnTime: 16.827us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.757us - ProjectionTime: 53.372us - RowsProduced: 107 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.57ms PipelineXTask (index=2):(Active: 259.283us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 158.856us - CloseTime: 13.980us - GetBlockTime: 60.635us - OpenTime: 857ns - PrepareTime: 80.158us - SinkTime: 82.878us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 238.258us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 949.636us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.09 KB - CloseTime: 11.982us - CompressTime: 0ns - ExecTime: 127.707us - InputRows: 121 - LocalBytesSent: 4.80 KB - LocalSendTime: 33.816us - LocalSentRows: 121 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 7.661us - OpenTime: 33.392us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 121 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 10.202us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.28 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 595ns - DeserializeAndMergeTime: 0ns - ExecTime: 67.405us - GetResultsTime: 16.626us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 982ns - HashTableSize: 121 - InsertKeysToColumnTime: 9.696us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.598us - ProjectionTime: 28.273us - RowsProduced: 121 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.112ms PipelineXTask (index=4):(Active: 211.67us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 133.125us - CloseTime: 10.510us - GetBlockTime: 62.125us - OpenTime: 637ns - PrepareTime: 60.938us - SinkTime: 55.528us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 192.988us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 843.233us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.75 KB - CloseTime: 8.727us - CompressTime: 0ns - ExecTime: 93.998us - InputRows: 135 - LocalBytesSent: 5.40 KB - LocalSendTime: 14.808us - LocalSentRows: 135 - MemoryUsage: - PeakMemoryUsage: 10.75 KB - MergeBlockTime: 4.924us - OpenTime: 30.266us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 135 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 10.732us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 11.53 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 777ns - DeserializeAndMergeTime: 0ns - ExecTime: 70.567us - GetResultsTime: 23.591us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.590us - HashTableSize: 135 - InsertKeysToColumnTime: 14.403us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.16us - ProjectionTime: 33.108us - RowsProduced: 135 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.340ms PipelineXTask (index=6):(Active: 279.873us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 176.682us - CloseTime: 10.787us - GetBlockTime: 68.936us - OpenTime: 1.21us - PrepareTime: 85.920us - SinkTime: 88.239us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 261.182us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 912.491us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.42 KB - CloseTime: 8.490us - CompressTime: 0ns - ExecTime: 139.544us - InputRows: 128 - LocalBytesSent: 5.06 KB - LocalSendTime: 14.313us - LocalSentRows: 128 - MemoryUsage: - PeakMemoryUsage: 9.75 KB - MergeBlockTime: 4.541us - OpenTime: 43.301us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 128 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 17.400us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.81 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.71us - DeserializeAndMergeTime: 0ns - ExecTime: 78.85us - GetResultsTime: 26.600us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.731us - HashTableSize: 128 - InsertKeysToColumnTime: 10.85us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.159us - ProjectionTime: 33.493us - RowsProduced: 128 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.12ms PipelineXTask (index=8):(Active: 213.656us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 140.83us - CloseTime: 10.478us - GetBlockTime: 64.570us - OpenTime: 615ns - PrepareTime: 56.806us - SinkTime: 57.887us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 195.347us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.241ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.21 KB - CloseTime: 8.346us - CompressTime: 0ns - ExecTime: 99.493us - InputRows: 124 - LocalBytesSent: 4.93 KB - LocalSendTime: 15.98us - LocalSentRows: 124 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 7.325us - OpenTime: 33.848us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s425ms - RowsProduced: 124 - RpcAvgTime: 2s400ms - RpcCount: 1 - RpcMaxTime: 2s400ms - RpcMinTime: 2s400ms - RpcSumTime: 2s400ms - SerializeBatchTime: 9.567us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.55 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 781ns - DeserializeAndMergeTime: 0ns - ExecTime: 72.911us - GetResultsTime: 32.667us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.334us - HashTableSize: 124 - InsertKeysToColumnTime: 13.547us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.126us - ProjectionTime: 26.431us - RowsProduced: 124 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.62ms PipelineXTask (index=10):(Active: 214.541us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 119.750us - CloseTime: 18.20us - GetBlockTime: 44.364us - OpenTime: 806ns - PrepareTime: 69.949us - SinkTime: 55.859us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 188.673us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 901.646us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.81 KB - CloseTime: 15.856us - CompressTime: 0ns - ExecTime: 109.742us - InputRows: 116 - LocalBytesSent: 4.62 KB - LocalSendTime: 11.614us - LocalSentRows: 116 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 2.509us - OpenTime: 38.664us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s425ms - RowsProduced: 116 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 13.770us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 9.89 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 960ns - DeserializeAndMergeTime: 0ns - ExecTime: 54.888us - GetResultsTime: 20.723us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.676us - HashTableSize: 116 - InsertKeysToColumnTime: 12.405us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.399us - ProjectionTime: 18.294us - RowsProduced: 116 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.143ms PipelineXTask (index=12):(Active: 448.908us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 326.201us - CloseTime: 38.663us - GetBlockTime: 56.763us - OpenTime: 625ns - PrepareTime: 77.272us - SinkTime: 250.456us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 232.927us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 963.160us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.28 KB - CloseTime: 32.438us - CompressTime: 0ns - ExecTime: 322.560us - InputRows: 128 - LocalBytesSent: 5.08 KB - LocalSendTime: 19.361us - LocalSentRows: 128 - MemoryUsage: - PeakMemoryUsage: 9.75 KB - MergeBlockTime: 6.487us - OpenTime: 40.383us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s425ms - RowsProduced: 128 - RpcAvgTime: 2s412ms - RpcCount: 1 - RpcMaxTime: 2s412ms - RpcMinTime: 2s412ms - RpcSumTime: 2s412ms - SerializeBatchTime: 191.191us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.86 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.486us - DeserializeAndMergeTime: 0ns - ExecTime: 65.137us - GetResultsTime: 23.152us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.4us - HashTableSize: 128 - InsertKeysToColumnTime: 7.871us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.539us - ProjectionTime: 27.767us - RowsProduced: 128 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.221ms PipelineXTask (index=14):(Active: 284.179us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 187.697us - CloseTime: 22.890us - GetBlockTime: 80.680us - OpenTime: 883ns - PrepareTime: 67.1us - SinkTime: 87.995us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 253.352us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 663.777us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.43 KB - CloseTime: 19.463us - CompressTime: 0ns - ExecTime: 136.252us - InputRows: 109 - LocalBytesSent: 4.28 KB - LocalSendTime: 14.102us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 14.69us - OpenTime: 29.847us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s425ms - RowsProduced: 109 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 12.897us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 9.20 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 940ns - DeserializeAndMergeTime: 0ns - ExecTime: 87.437us - GetResultsTime: 30.893us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.790us - HashTableSize: 109 - InsertKeysToColumnTime: 14.281us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.17us - ProjectionTime: 36.723us - RowsProduced: 109 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 248.341ms PipelineXTask (index=16):(Active: 252.614us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 152.604us - CloseTime: 23.720us - GetBlockTime: 59.12us - OpenTime: 2.280us - PrepareTime: 68.898us - SinkTime: 66.366us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 218.451us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.672ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.88 KB - CloseTime: 19.335us - CompressTime: 0ns - ExecTime: 129.742us - InputRows: 118 - LocalBytesSent: 4.70 KB - LocalSendTime: 17.926us - LocalSentRows: 118 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 7.941us - OpenTime: 44.415us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s425ms - RowsProduced: 118 - RpcAvgTime: 2s404ms - RpcCount: 1 - RpcMaxTime: 2s404ms - RpcMinTime: 2s404ms - RpcSumTime: 2s404ms - SerializeBatchTime: 16.169us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.05 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.328us - DeserializeAndMergeTime: 0ns - ExecTime: 71.250us - GetResultsTime: 26.503us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.182us - HashTableSize: 118 - InsertKeysToColumnTime: 9.266us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.260us - ProjectionTime: 23.198us - RowsProduced: 118 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 246.646ms PipelineXTask (index=18):(Active: 258.577us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 160.184us - CloseTime: 10.788us - GetBlockTime: 65.711us - OpenTime: 1.90us - PrepareTime: 67.258us - SinkTime: 78.363us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 226.994us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 793.601us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.53 KB - CloseTime: 9.40us - CompressTime: 0ns - ExecTime: 127.166us - InputRows: 130 - LocalBytesSent: 5.20 KB - LocalSendTime: 16.314us - LocalSentRows: 130 - MemoryUsage: - PeakMemoryUsage: 10.75 KB - MergeBlockTime: 3.628us - OpenTime: 40.214us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 130 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 22.155us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 11.11 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 605ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.957us - GetResultsTime: 25.347us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.177us - HashTableSize: 130 - InsertKeysToColumnTime: 12.501us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.236us - ProjectionTime: 31.453us - RowsProduced: 130 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 247.750ms PipelineXTask (index=20):(Active: 295.95us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 176.408us - CloseTime: 24.63us - GetBlockTime: 52.867us - OpenTime: 920ns - PrepareTime: 56.228us - SinkTime: 92.113us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 264.309us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 958.199us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.65 KB - CloseTime: 19.940us - CompressTime: 0ns - ExecTime: 141.59us - InputRows: 112 - LocalBytesSent: 4.46 KB - LocalSendTime: 33.563us - LocalSentRows: 112 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 5.574us - OpenTime: 29.449us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 112 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 20.929us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 9.55 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.408us - DeserializeAndMergeTime: 0ns - ExecTime: 61.211us - GetResultsTime: 19.281us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 974ns - HashTableSize: 112 - InsertKeysToColumnTime: 9.230us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.347us - ProjectionTime: 24.923us - RowsProduced: 112 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 247.724ms PipelineXTask (index=22):(Active: 210.336us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 134.515us - CloseTime: 12.660us - GetBlockTime: 54.821us - OpenTime: 563ns - PrepareTime: 57.677us - SinkTime: 61.833us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 190.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.149ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.64 KB - CloseTime: 10.191us - CompressTime: 0ns - ExecTime: 101.543us - InputRows: 113 - LocalBytesSent: 4.50 KB - LocalSendTime: 12.978us - LocalSentRows: 113 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 9.289us - OpenTime: 29.980us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 113 - RpcAvgTime: 2s401ms - RpcCount: 1 - RpcMaxTime: 2s401ms - RpcMinTime: 2s401ms - RpcSumTime: 2s401ms - SerializeBatchTime: 8.988us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 9.65 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.15us - DeserializeAndMergeTime: 0ns - ExecTime: 65.528us - GetResultsTime: 29.41us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.104us - HashTableSize: 113 - InsertKeysToColumnTime: 16.767us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.66us - ProjectionTime: 20.379us - RowsProduced: 113 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 247.711ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 265.230us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 173.236us - CloseTime: 8.269us - GetBlockTime: 15.115us - OpenTime: 2.927us - PrepareTime: 74.877us - SinkTime: 128.825us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 247.476us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.452ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 560ns - DeserializeAndMergeTime: 2.638us - ExecTime: 147.8us - ExprTime: 0ns - HashTableComputeTime: 100.674us - HashTableEmplaceTime: 47.483us - HashTableInputCount: 197 - InputRows: 197 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 406.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 121.382us - OpenTime: 18.235us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 6.689us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.539us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 35.525us - ProjectionTime: 0ns - RowsProduced: 197 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.710ms PipelineXTask (index=3):(Active: 250.983us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 186.706us - CloseTime: 11.429us - GetBlockTime: 24.597us - OpenTime: 3.80us - PrepareTime: 44.898us - SinkTime: 126.720us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 227.749us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.591ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 5.255us - DeserializeAndMergeTime: 3.457us - ExecTime: 143.979us - ExprTime: 0ns - HashTableComputeTime: 100.399us - HashTableEmplaceTime: 73.197us - HashTableInputCount: 217 - InputRows: 217 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 120.241us - OpenTime: 12.669us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 5.353us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.935us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 14.861us - ProjectionTime: 0ns - RowsProduced: 217 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.637ms PipelineXTask (index=5):(Active: 374.948us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 276.362us - CloseTime: 14.481us - GetBlockTime: 28.301us - OpenTime: 3.166us - PrepareTime: 74.687us - SinkTime: 200.447us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 347.257us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.878ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.645us - DeserializeAndMergeTime: 4.443us - ExecTime: 238.906us - ExprTime: 0ns - HashTableComputeTime: 166.250us - HashTableEmplaceTime: 112.52us - HashTableInputCount: 252 - InputRows: 252 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 186.824us - OpenTime: 38.668us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 11.60us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 51.509us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 15.809us - ProjectionTime: 0ns - RowsProduced: 252 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.481ms PipelineXTask (index=7):(Active: 241.404us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 186.889us - CloseTime: 6.50us - GetBlockTime: 24.583us - OpenTime: 2.777us - PrepareTime: 40.859us - SinkTime: 123.489us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 224.777us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.699ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 787ns - DeserializeAndMergeTime: 3.700us - ExecTime: 133.772us - ExprTime: 0ns - HashTableComputeTime: 101.505us - HashTableEmplaceTime: 69.161us - HashTableInputCount: 222 - InputRows: 222 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 116.964us - OpenTime: 10.633us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 4.424us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.920us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 18.451us - ProjectionTime: 0ns - RowsProduced: 222 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.601ms PipelineXTask (index=9):(Active: 211.865us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 142.215us - CloseTime: 6.127us - GetBlockTime: 11.964us - OpenTime: 2.930us - PrepareTime: 55.345us - SinkTime: 93.963us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 196.125us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.863ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 491ns - DeserializeAndMergeTime: 3.652us - ExecTime: 106.860us - ExprTime: 0ns - HashTableComputeTime: 76.634us - HashTableEmplaceTime: 56.777us - HashTableInputCount: 208 - InputRows: 208 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 88.475us - OpenTime: 13.495us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 4.811us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.415us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 26.464us - ProjectionTime: 0ns - RowsProduced: 208 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.521ms PipelineXTask (index=11):(Active: 264.759us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 195.29us - CloseTime: 5.744us - GetBlockTime: 28.238us - OpenTime: 2.564us - PrepareTime: 55.851us - SinkTime: 135.769us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 248.113us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.7ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 668ns - DeserializeAndMergeTime: 6.809us - ExecTime: 149.191us - ExprTime: 0ns - HashTableComputeTime: 114.685us - HashTableEmplaceTime: 91.239us - HashTableInputCount: 208 - InputRows: 208 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 129.975us - OpenTime: 13.482us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 4.252us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.489us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 17.430us - ProjectionTime: 0ns - RowsProduced: 208 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.406ms PipelineXTask (index=13):(Active: 254.812us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 175.526us - CloseTime: 6.966us - GetBlockTime: 19.519us - OpenTime: 2.594us - PrepareTime: 64.612us - SinkTime: 122.408us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 238.5us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.221ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 458ns - DeserializeAndMergeTime: 3.347us - ExecTime: 135.708us - ExprTime: 0ns - HashTableComputeTime: 104.385us - HashTableEmplaceTime: 84.154us - HashTableInputCount: 219 - InputRows: 219 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 117.92us - OpenTime: 13.542us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 5.647us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.432us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 18.469us - ProjectionTime: 0ns - RowsProduced: 219 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.308ms PipelineXTask (index=15):(Active: 259.519us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 164.819us - CloseTime: 8.212us - GetBlockTime: 20.786us - OpenTime: 2.782us - PrepareTime: 78.17us - SinkTime: 109.780us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 240.89us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.139ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.127us - DeserializeAndMergeTime: 3.30us - ExecTime: 130.82us - ExprTime: 0ns - HashTableComputeTime: 81.261us - HashTableEmplaceTime: 53.541us - HashTableInputCount: 217 - InputRows: 217 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 406.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 96.245us - OpenTime: 27.275us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 6.460us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.699us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 7.96 KB - OpenTime: 17.865us - ProjectionTime: 0ns - RowsProduced: 217 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.392ms PipelineXTask (index=17):(Active: 205.781us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 138.739us - CloseTime: 11.66us - GetBlockTime: 12.694us - OpenTime: 3.742us - PrepareTime: 47.395us - SinkTime: 93.995us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 185.509us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.198ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.269us - DeserializeAndMergeTime: 1.919us - ExecTime: 110.521us - ExprTime: 0ns - HashTableComputeTime: 75.113us - HashTableEmplaceTime: 43.383us - HashTableInputCount: 210 - InputRows: 210 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 88.539us - OpenTime: 15.742us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 8.592us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.363us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 6.73 KB - OpenTime: 11.663us - ProjectionTime: 0ns - RowsProduced: 210 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.927ms PipelineXTask (index=19):(Active: 151.432us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 97.504us - CloseTime: 3.164us - GetBlockTime: 9.608us - OpenTime: 1.941us - PrepareTime: 44.99us - SinkTime: 65.943us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 139.838us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.281ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 382ns - DeserializeAndMergeTime: 1.796us - ExecTime: 76.334us - ExprTime: 0ns - HashTableComputeTime: 54.554us - HashTableEmplaceTime: 40.873us - HashTableInputCount: 229 - InputRows: 229 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 62.720us - OpenTime: 10.240us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 2.433us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.52us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 6.73 KB - OpenTime: 15.942us - ProjectionTime: 0ns - RowsProduced: 229 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.908ms PipelineXTask (index=21):(Active: 169.793us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 109.214us - CloseTime: 3.38us - GetBlockTime: 8.836us - OpenTime: 2.480us - PrepareTime: 49.654us - SinkTime: 79.587us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 158.916us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.397ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 353ns - DeserializeAndMergeTime: 1.368us - ExecTime: 97.638us - ExprTime: 0ns - HashTableComputeTime: 67.856us - HashTableEmplaceTime: 54.880us - HashTableInputCount: 202 - InputRows: 202 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 406.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 76.973us - OpenTime: 17.707us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 2.284us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.743us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.25 KB - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 6.73 KB - OpenTime: 12.888us - ProjectionTime: 0ns - RowsProduced: 202 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.787ms PipelineXTask (index=23):(Active: 173.161us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 95.265us - CloseTime: 3.128us - GetBlockTime: 5.204us - OpenTime: 5.230us - PrepareTime: 64.380us - SinkTime: 64.559us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 161.890us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.367ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 520ns - DeserializeAndMergeTime: 1.931us - ExecTime: 82.626us - ExprTime: 0ns - HashTableComputeTime: 52.537us - HashTableEmplaceTime: 35.207us - HashTableInputCount: 200 - InputRows: 200 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 61.627us - OpenTime: 17.357us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 3 - BytesReceived: 0.00 - CloseTime: 2.311us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.00 KB - MemoryUsage: - Blocks: 9.25 KB - PeakMemoryUsage: 10.23 KB - OpenTime: 31.126us - ProjectionTime: 0ns - RowsProduced: 200 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 246.842ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 290.473us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 185.662us - CloseTime: 7.828us - GetBlockTime: 79.520us - OpenTime: 623ns - PrepareTime: 91.473us - SinkTime: 89.114us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 274.880us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 355.84us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.17 KB - CloseTime: 6.150us - CompressTime: 0ns - ExecTime: 129.674us - InputRows: 102 - LocalBytesSent: 4.05 KB - LocalSendTime: 11.113us - LocalSentRows: 102 - MemoryUsage: - PeakMemoryUsage: 5.75 KB - MergeBlockTime: 4.417us - OpenTime: 35.3us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 146.795ms - RowsProduced: 102 - RpcAvgTime: 146.145ms - RpcCount: 1 - RpcMaxTime: 146.145ms - RpcMinTime: 146.145ms - RpcSumTime: 146.145ms - SerializeBatchTime: 21.783us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 8.71 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 550ns - DeserializeAndMergeTime: 0ns - ExecTime: 85.268us - GetResultsTime: 24.500us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.495us - HashTableSize: 102 - InsertKeysToColumnTime: 14.682us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.308us - ProjectionTime: 38.991us - RowsProduced: 102 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s648ms PipelineXTask (index=2):(Active: 217.364us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 137.249us - CloseTime: 8.948us - GetBlockTime: 61.358us - OpenTime: 410ns - PrepareTime: 66.860us - SinkTime: 65.210us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 203.715us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 423.95us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.96 KB - CloseTime: 7.580us - CompressTime: 0ns - ExecTime: 107.695us - InputRows: 118 - LocalBytesSent: 4.71 KB - LocalSendTime: 4.669us - LocalSentRows: 118 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 2.122us - OpenTime: 35.813us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 146.848ms - RowsProduced: 118 - RpcAvgTime: 146.170ms - RpcCount: 1 - RpcMaxTime: 146.170ms - RpcMinTime: 146.170ms - RpcSumTime: 146.170ms - SerializeBatchTime: 19.396us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.07 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 400ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.43us - GetResultsTime: 21.589us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.250us - HashTableSize: 118 - InsertKeysToColumnTime: 7.17us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.820us - ProjectionTime: 33.388us - RowsProduced: 118 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s648ms PipelineXTask (index=4):(Active: 427.86us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 306.166us - CloseTime: 29.957us - GetBlockTime: 133.92us - OpenTime: 1.360us - PrepareTime: 84.157us - SinkTime: 150.500us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 389.130us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 199.411us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.09 KB - CloseTime: 24.320us - CompressTime: 0ns - ExecTime: 206.438us - InputRows: 121 - LocalBytesSent: 4.80 KB - LocalSendTime: 17.222us - LocalSentRows: 121 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 7.268us - OpenTime: 32.628us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 146.670ms - RowsProduced: 121 - RpcAvgTime: 146.179ms - RpcCount: 1 - RpcMaxTime: 146.179ms - RpcMinTime: 146.179ms - RpcSumTime: 146.179ms - SerializeBatchTime: 28.674us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.27 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.410us - DeserializeAndMergeTime: 0ns - ExecTime: 138.987us - GetResultsTime: 37.968us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.593us - HashTableSize: 121 - InsertKeysToColumnTime: 22.23us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.409us - ProjectionTime: 70.257us - RowsProduced: 121 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s648ms PipelineXTask (index=6):(Active: 163.486us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 91.487us - CloseTime: 7.522us - GetBlockTime: 33.958us - OpenTime: 1.113us - PrepareTime: 59.661us - SinkTime: 47.139us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 151.415us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.985ms DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.95 KB - CloseTime: 6.484us - CompressTime: 0ns - ExecTime: 85.41us - InputRows: 120 - LocalBytesSent: 4.74 KB - LocalSendTime: 4.991us - LocalSentRows: 120 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 1.560us - OpenTime: 31.861us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 146.739ms - RowsProduced: 120 - RpcAvgTime: 146.45ms - RpcCount: 1 - RpcMaxTime: 146.45ms - RpcMinTime: 146.45ms - RpcSumTime: 146.45ms - SerializeBatchTime: 8.538us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.14 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 376ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.772us - GetResultsTime: 14.934us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 998ns - HashTableSize: 120 - InsertKeysToColumnTime: 7.681us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.786us - ProjectionTime: 15.329us - RowsProduced: 120 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s647ms PipelineXTask (index=8):(Active: 289.887us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 193.888us - CloseTime: 21.464us - GetBlockTime: 99.889us - OpenTime: 357ns - PrepareTime: 69.240us - SinkTime: 73.343us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 260.853us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 334.118us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.30 KB - CloseTime: 16.309us - CompressTime: 0ns - ExecTime: 123.856us - InputRows: 106 - LocalBytesSent: 4.18 KB - LocalSendTime: 14.51us - LocalSentRows: 106 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 6.106us - OpenTime: 34.617us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 146.568ms - RowsProduced: 106 - RpcAvgTime: 146.102ms - RpcCount: 1 - RpcMaxTime: 146.102ms - RpcMinTime: 146.102ms - RpcSumTime: 146.102ms - SerializeBatchTime: 15.540us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 8.99 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 1.365us - DeserializeAndMergeTime: 0ns - ExecTime: 112.940us - GetResultsTime: 59.774us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.540us - HashTableSize: 106 - InsertKeysToColumnTime: 46.457us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.134us - ProjectionTime: 34.31us - RowsProduced: 106 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s648ms PipelineXTask (index=10):(Active: 198.603us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 114.99us - CloseTime: 14.227us - GetBlockTime: 42.77us - OpenTime: 602ns - PrepareTime: 65.139us - SinkTime: 43.897us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 163.164us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 220.883us DATA_STREAM_SINK_OPERATOR (id=263,dst_id=263): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.33 KB - CloseTime: 11.392us - CompressTime: 0ns - ExecTime: 96.475us - InputRows: 129 - LocalBytesSent: 5.08 KB - LocalSendTime: 8.155us - LocalSentRows: 129 - MemoryUsage: - PeakMemoryUsage: 10.75 KB - MergeBlockTime: 3.878us - OpenTime: 41.341us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 146.585ms - RowsProduced: 129 - RpcAvgTime: 146.109ms - RpcCount: 1 - RpcMaxTime: 146.109ms - RpcMinTime: 146.109ms - RpcSumTime: 146.109ms - SerializeBatchTime: 10.228us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 10.85 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=262): - BlocksProduced: 1 - CloseTime: 823ns - DeserializeAndMergeTime: 0ns - ExecTime: 49.296us - GetResultsTime: 22.428us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.352us - HashTableSize: 129 - InsertKeysToColumnTime: 12.281us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.731us - ProjectionTime: 15.786us - RowsProduced: 129 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 2s648ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 239.456us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 158.952us - CloseTime: 19.525us - GetBlockTime: 23.196us - OpenTime: 1.783us - PrepareTime: 55.285us - SinkTime: 108.626us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 210.805us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 684.796us AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.52us - DeserializeAndMergeTime: 3.302us - ExecTime: 130.327us - ExprTime: 0ns - HashTableComputeTime: 88.865us - HashTableEmplaceTime: 45.867us - HashTableInputCount: 186 - InputRows: 186 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 406.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 103.594us - OpenTime: 21.689us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 6 - BytesReceived: 5.29 KB - CloseTime: 16.814us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 52.787us - ExecTime: 57.917us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 1.47 KB - OpenTime: 19.392us - ProjectionTime: 0ns - RowsProduced: 186 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s648ms PipelineXTask (index=3):(Active: 295.150us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 211.921us - CloseTime: 12.986us - GetBlockTime: 28.403us - OpenTime: 2.73us - PrepareTime: 64.98us - SinkTime: 151.278us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 272.340us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 590.6us AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.248us - DeserializeAndMergeTime: 4.656us - ExecTime: 177.340us - ExprTime: 0ns - HashTableComputeTime: 114.951us - HashTableEmplaceTime: 75.795us - HashTableInputCount: 206 - InputRows: 206 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 141.427us - OpenTime: 26.45us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 6 - BytesReceived: 5.46 KB - CloseTime: 9.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 50.968us - ExecTime: 57.168us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 1.47 KB - OpenTime: 22.630us - ProjectionTime: 0ns - RowsProduced: 206 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s647ms PipelineXTask (index=5):(Active: 325.373us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 245.45us - CloseTime: 4.589us - GetBlockTime: 39.924us - OpenTime: 1.942us - PrepareTime: 69.727us - SinkTime: 144.904us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 305.817us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.841ms AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 576ns - DeserializeAndMergeTime: 4.743us - ExecTime: 176.92us - ExprTime: 0ns - HashTableComputeTime: 109.409us - HashTableEmplaceTime: 66.802us - HashTableInputCount: 235 - InputRows: 235 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 129.626us - OpenTime: 32.157us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 6 - BytesReceived: 5.56 KB - CloseTime: 3.265us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 39.772us - ExecTime: 59.521us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 1.47 KB - OpenTime: 19.55us - ProjectionTime: 0ns - RowsProduced: 235 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s646ms PipelineXTask (index=7):(Active: 247.843us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 158.702us - CloseTime: 9.706us - GetBlockTime: 28.904us - OpenTime: 1.592us - PrepareTime: 73.522us - SinkTime: 106.230us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 230.393us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 537.598us AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 1.75us - DeserializeAndMergeTime: 2.998us - ExecTime: 134.962us - ExprTime: 0ns - HashTableComputeTime: 90.282us - HashTableEmplaceTime: 63.363us - HashTableInputCount: 227 - InputRows: 227 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 100.943us - OpenTime: 28.318us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 6 - BytesReceived: 5.61 KB - CloseTime: 7.21us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 92.58us - ExecTime: 54.291us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 1.47 KB - OpenTime: 20.238us - ProjectionTime: 0ns - RowsProduced: 227 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s648ms PipelineXTask (index=9):(Active: 505.41us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 132.57us - CloseTime: 329.111us - GetBlockTime: 27.974us - OpenTime: 1.575us - PrepareTime: 38.304us - SinkTime: 80.42us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.340us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 530.90us AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 844ns - DeserializeAndMergeTime: 3.386us - ExecTime: 93.697us - ExprTime: 0ns - HashTableComputeTime: 62.633us - HashTableEmplaceTime: 40.622us - HashTableInputCount: 193 - InputRows: 193 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 406.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 76.543us - OpenTime: 13.294us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 6 - BytesReceived: 5.30 KB - CloseTime: 327.37us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 89.109us - ExecTime: 365.554us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 8.75 KB - PeakMemoryUsage: 1.47 KB - OpenTime: 12.503us - ProjectionTime: 0ns - RowsProduced: 193 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s648ms PipelineXTask (index=11):(Active: 219.865us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 160.319us - CloseTime: 4.219us - GetBlockTime: 20.255us - OpenTime: 1.467us - PrepareTime: 49.875us - SinkTime: 113.45us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 206.972us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 690.724us AGGREGATION_SINK_OPERATOR (id=262): - BuildTime: 0ns - CloseTime: 747ns - DeserializeAndMergeTime: 5.540us - ExecTime: 127.783us - ExprTime: 0ns - HashTableComputeTime: 89.383us - HashTableEmplaceTime: 60.261us - HashTableInputCount: 248 - InputRows: 248 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 409.98 KB - SerializeKeyArena: 404.00 KB - MergeTime: 107.654us - OpenTime: 14.926us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=261): - BlocksProduced: 6 - BytesReceived: 5.83 KB - CloseTime: 2.750us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 74.678us - ExecTime: 37.352us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 5.75 KB - PeakMemoryUsage: 1.47 KB - OpenTime: 16.132us - ProjectionTime: 0ns - RowsProduced: 248 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s648ms Fragment 52: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 714.884us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 479.691us - CloseTime: 42.365us - GetBlockTime: 135.478us - OpenTime: 4.381us - PrepareTime: 181.517us - SinkTime: 261.712us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 656.58us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.888ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 30 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.102us - CompressTime: 0ns - ExecTime: 368.454us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 21.704us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 92.129us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.272ms - RowsProduced: 0 - RpcAvgTime: 23.838ms - RpcCount: 12 - RpcMaxTime: 23.911ms - RpcMinTime: 23.779ms - RpcSumTime: 286.59ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 373ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 13.810us - DeserializeAndMergeTime: 0ns - ExecTime: 50.600us - ExprTime: 0ns - GetResultsTime: 7.738us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 182ns - HashTableSize: 0 - InsertKeysToColumnTime: 796ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.283us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 840ns - SerializeKeyTime: 0ns - SerializeResultTime: 12.776us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.453us - ExecTime: 71.331us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.40us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.440us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 43.353us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 36.41us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 80.00 KB - OpenTime: 683ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 113.747ms PipelineXTask (index=3):(Active: 540.235us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 314.495us - CloseTime: 33.613us - GetBlockTime: 27.104us - OpenTime: 3.145us - PrepareTime: 184.783us - SinkTime: 268.15us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 500.213us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.414ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 30 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.966us - CompressTime: 0ns - ExecTime: 367.954us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.839us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.260us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.931ms - RowsProduced: 0 - RpcAvgTime: 24.200ms - RpcCount: 12 - RpcMaxTime: 24.236ms - RpcMinTime: 24.163ms - RpcSumTime: 290.406ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 310ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.861us - DeserializeAndMergeTime: 0ns - ExecTime: 53.504us - ExprTime: 0ns - GetResultsTime: 4.374us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 99ns - HashTableSize: 0 - InsertKeysToColumnTime: 464ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 43.73us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 996ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.12us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.277us - ExecTime: 38.859us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.393us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.827us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.565us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.33us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 692ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 118.484ms PipelineXTask (index=6):(Active: 517.786us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 275.572us - CloseTime: 35.155us - GetBlockTime: 30.650us - OpenTime: 7.423us - PrepareTime: 194.132us - SinkTime: 218.115us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 474.410us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.204ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 30 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.169us - CompressTime: 0ns - ExecTime: 340.869us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 34.431us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 104.855us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.590ms - RowsProduced: 0 - RpcAvgTime: 24.18ms - RpcCount: 12 - RpcMaxTime: 24.98ms - RpcMinTime: 23.972ms - RpcSumTime: 288.226ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 314ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.389us - DeserializeAndMergeTime: 0ns - ExecTime: 50.599us - ExprTime: 0ns - GetResultsTime: 4.528us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 85ns - HashTableSize: 0 - InsertKeysToColumnTime: 459ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 33.67us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 889ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.447us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.367us - ExecTime: 36.256us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.716us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.34us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.366us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.316us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 560ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 118.444ms PipelineXTask (index=9):(Active: 475.991us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 298.385us - CloseTime: 17.508us - GetBlockTime: 30.360us - OpenTime: 5.743us - PrepareTime: 149.993us - SinkTime: 246.923us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 451.816us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.407ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 30 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.669us - CompressTime: 0ns - ExecTime: 325.233us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.231us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 69.480us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.904ms - RowsProduced: 0 - RpcAvgTime: 24.205ms - RpcCount: 12 - RpcMaxTime: 24.230ms - RpcMinTime: 24.170ms - RpcSumTime: 290.465ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 486ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 771ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.714us - ExprTime: 0ns - GetResultsTime: 7.867us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 130ns - HashTableSize: 0 - InsertKeysToColumnTime: 756ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.145us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.409us - SerializeKeyTime: 0ns - SerializeResultTime: 11.295us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.314us - ExecTime: 29.932us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.530us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.729us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.338us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.675us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 692ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 118.531ms PipelineXTask (index=12):(Active: 473.643us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 250.296us - CloseTime: 32.289us - GetBlockTime: 26.677us - OpenTime: 4.836us - PrepareTime: 181.158us - SinkTime: 198.34us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 435.173us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.59ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 30 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.796us - CompressTime: 0ns - ExecTime: 293.889us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 18.599us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 78.440us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.699ms - RowsProduced: 0 - RpcAvgTime: 23.294ms - RpcCount: 12 - RpcMaxTime: 23.407ms - RpcMinTime: 23.196ms - RpcSumTime: 279.537ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 385ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.523us - DeserializeAndMergeTime: 0ns - ExecTime: 49.491us - ExprTime: 0ns - GetResultsTime: 4.553us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 107ns - HashTableSize: 0 - InsertKeysToColumnTime: 378ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 39.850us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 703ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.695us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.462us - ExecTime: 36.360us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.615us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.184us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.159us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.844us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.960us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 118.48ms PipelineXTask (index=15):(Active: 463.529us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 286.839us - CloseTime: 18.962us - GetBlockTime: 31.811us - OpenTime: 3.766us - PrepareTime: 148.736us - SinkTime: 231.900us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 434.105us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.133ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 30 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.19us - CompressTime: 0ns - ExecTime: 315.1us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.747us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 73.777us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.641ms - RowsProduced: 0 - RpcAvgTime: 22.955ms - RpcCount: 12 - RpcMaxTime: 23.106ms - RpcMinTime: 22.825ms - RpcSumTime: 275.470ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 291ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.147us - DeserializeAndMergeTime: 0ns - ExecTime: 35.946us - ExprTime: 0ns - GetResultsTime: 9.259us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 43ns - HashTableSize: 0 - InsertKeysToColumnTime: 584ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.486us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 990ns - SerializeKeyTime: 0ns - SerializeResultTime: 10.828us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.398us - ExecTime: 33.512us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.476us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.260us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.823us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.315us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 555ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 118.33ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 2.454ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.170ms - CloseTime: 48.128us - GetBlockTime: 36.522us - OpenTime: 1.89ms - PrepareTime: 140.999us - SinkTime: 28.500us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 845.334us - WaitBfTime: 1.822ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 731.67us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 29.670us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.357us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 39.986us - BlocksProduced: 0 - CloseTime: 45.122us - ExecTime: 33.179ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.172ms - ProcessConjunctTime: 208.451us - ProjectionTime: 3.57us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 596.74K (596740) - filter id = -1 input: 668.578K (668578) - ScannerWorkerWaitTime: 8.864ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 31.923ms - 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: [8.654us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.864ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.689ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 88ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.529ms - ScannerCtxSchedTime: 8.861ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.626us - ScannerInitTime: 38.543us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 668578, filtered = 596740] - BitmapIndexFilterTimer: 975ns - BlockConditionsFilteredBloomFilterTime: 2.425us - BlockConditionsFilteredDictTime: 60.155us - BlockConditionsFilteredTime: 88.94us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.273us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 102.631us - BlockLoadTime: 23.291ms - BlocksLoad: 84 - CachedPagesNum: 73 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.602ms - FirstReadSeekCount: 83 - FirstReadSeekTime: 24.592us - FirstReadTime: 13.930ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.90us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.850ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 893.144us - OutputIndexResultColumnTimer: 8.94us - RawRowsRead: 334.289K (334289) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 298.37K (298370) - RowsShortCircuitPredInput: 334.289K (334289) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.989ms - ShortPredEvalTime: 2.281ms - TotalPagesNum: 73 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 63.348us PipelineXTask (index=4):(Active: 1.342ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 612.309us - CloseTime: 40.13us - GetBlockTime: 39.750us - OpenTime: 539.493us - PrepareTime: 140.663us - SinkTime: 8.629us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.290ms - WaitBfTime: 2.783ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 738.851us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.534us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.258us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 54.934us - BlocksProduced: 0 - CloseTime: 36.886us - ExecTime: 53.250ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 621.206us - ProcessConjunctTime: 377.87us - ProjectionTime: 3.386us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 599.932K (599932) - filter id = -1 input: 677.002K (677002) - ScannerWorkerWaitTime: 8.2ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 52.548ms - 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: [9.722us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.002ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 44.389ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 49ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.352ms - ScannerCtxSchedTime: 7.999ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.789us - ScannerInitTime: 70.195us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 677002, filtered = 599932] - BitmapIndexFilterTimer: 894ns - BlockConditionsFilteredBloomFilterTime: 2.162us - BlockConditionsFilteredDictTime: 70.977us - BlockConditionsFilteredTime: 99.349us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 13.153us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 113.516us - BlockLoadTime: 43.910ms - BlocksLoad: 85 - CachedPagesNum: 74 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 6.21ms - FirstReadSeekCount: 84 - FirstReadSeekTime: 38.313us - FirstReadTime: 29.253ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.473us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.753ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.462ms - OutputIndexResultColumnTimer: 11.30us - RawRowsRead: 338.501K (338501) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 299.966K (299966) - RowsShortCircuitPredInput: 338.501K (338501) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.963ms - ShortPredEvalTime: 3.302ms - TotalPagesNum: 74 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 76.831us PipelineXTask (index=7):(Active: 958.763us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 423.237us - CloseTime: 50.760us - GetBlockTime: 62.430us - OpenTime: 327.301us - PrepareTime: 149.857us - SinkTime: 11.836us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 897.895us - WaitBfTime: 2.930ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.858ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.407us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.351us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 34.198us - BlocksProduced: 0 - CloseTime: 47.737us - ExecTime: 43.795ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 413.915us - ProcessConjunctTime: 220.358us - ProjectionTime: 6.958us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 605.948K (605948) - filter id = -1 input: 683.574K (683574) - ScannerWorkerWaitTime: 8.11ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 43.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: [7.272us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [8.011ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 35.176ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 162ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.243ms - ScannerCtxSchedTime: 8.10ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.90us - ScannerInitTime: 46.678us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 683574, filtered = 605948] - BitmapIndexFilterTimer: 485ns - BlockConditionsFilteredBloomFilterTime: 1.254us - BlockConditionsFilteredDictTime: 49.32us - BlockConditionsFilteredTime: 64.352us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 7.16us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 71.643us - BlockLoadTime: 34.933ms - BlocksLoad: 86 - CachedPagesNum: 74 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.854ms - FirstReadSeekCount: 85 - FirstReadSeekTime: 17.965us - FirstReadTime: 27.568ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.279us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.609ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 709.189us - OutputIndexResultColumnTimer: 5.355us - RawRowsRead: 341.787K (341787) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 302.974K (302974) - RowsShortCircuitPredInput: 341.787K (341787) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.712ms - ShortPredEvalTime: 1.668ms - TotalPagesNum: 74 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 45.466us PipelineXTask (index=10):(Active: 9.476ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.671ms - CloseTime: 46.23us - GetBlockTime: 33.238us - OpenTime: 4.599ms - PrepareTime: 149.352us - SinkTime: 13.72us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.173ms - WaitBfTime: 1.525ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 928.568us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 15.199us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.952us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 40.186us - BlocksProduced: 0 - CloseTime: 43.272us - ExecTime: 62.932ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 4.684ms - ProcessConjunctTime: 331.40us - ProjectionTime: 2.400us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 687.57K (687570) - filter id = -1 input: 847.472K (847472) - ScannerWorkerWaitTime: 28.267ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 58.169ms - 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.734us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [28.267ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 29.800ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 83ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.9ms - ScannerCtxSchedTime: 28.265ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.988us - ScannerInitTime: 4.204ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 847472, filtered = 687570] - BitmapIndexFilterTimer: 945ns - BlockConditionsFilteredBloomFilterTime: 2.612us - BlockConditionsFilteredDictTime: 72.129us - BlockConditionsFilteredTime: 104.428us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 13.119us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 117.830us - BlockLoadTime: 29.354ms - BlocksLoad: 106 - CachedPagesNum: 91 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 7.320ms - FirstReadSeekCount: 105 - FirstReadSeekTime: 30.906us - FirstReadTime: 12.505ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.137us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.420ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.918ms - OutputIndexResultColumnTimer: 8.983us - RawRowsRead: 423.736K (423736) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 343.785K (343785) - RowsShortCircuitPredInput: 423.736K (423736) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.604ms - ShortPredEvalTime: 3.267ms - TotalPagesNum: 91 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 72.29us PipelineXTask (index=13):(Active: 809.67us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 351.100us - CloseTime: 45.29us - GetBlockTime: 42.391us - OpenTime: 273.650us - PrepareTime: 130.869us - SinkTime: 11.956us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 754.264us - WaitBfTime: 3.879ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.49ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.635us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.153us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 29.594us - BlocksProduced: 0 - CloseTime: 41.697us - ExecTime: 72.909ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 348.248us - ProcessConjunctTime: 186.176us - ProjectionTime: 6.534us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 673.21K (673210) - filter id = -1 input: 832.536K (832536) - ScannerWorkerWaitTime: 17.353ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 72.471ms - 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: [8.180us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [17.353ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 54.979ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 142ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 22.71ms - ScannerCtxSchedTime: 17.351ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.977us - ScannerInitTime: 41.73us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 832536, filtered = 673210] - BitmapIndexFilterTimer: 735ns - BlockConditionsFilteredBloomFilterTime: 1.689us - BlockConditionsFilteredDictTime: 36.708us - BlockConditionsFilteredTime: 66.534us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.676us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 76.497us - BlockLoadTime: 54.683ms - BlocksLoad: 104 - CachedPagesNum: 90 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.541ms - FirstReadSeekCount: 103 - FirstReadSeekTime: 24.44us - FirstReadTime: 42.124ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.713us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.428ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.531ms - OutputIndexResultColumnTimer: 6.980us - RawRowsRead: 416.268K (416268) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 336.605K (336605) - RowsShortCircuitPredInput: 416.268K (416268) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.571ms - ShortPredEvalTime: 2.273ms - TotalPagesNum: 90 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 89.434us PipelineXTask (index=16):(Active: 1.193ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 504.595us - CloseTime: 40.147us - GetBlockTime: 20.789us - OpenTime: 444.297us - PrepareTime: 196.241us - SinkTime: 16.775us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.144ms - WaitBfTime: 3.277ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.159ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.354us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.143us - 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: 41.234us - BlocksProduced: 0 - CloseTime: 37.956us - ExecTime: 111.10ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 547.940us - ProcessConjunctTime: 282.672us - ProjectionTime: 1.553us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 652.984K (652984) - filter id = -1 input: 799.106K (799106) - ScannerWorkerWaitTime: 10.210ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 110.403ms - 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.452us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [10.210ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 100.93ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 188ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.131ms - ScannerCtxSchedTime: 10.207ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 873ns - ScannerInitTime: 81.613us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 799106, filtered = 652984] - BitmapIndexFilterTimer: 875ns - BlockConditionsFilteredBloomFilterTime: 2.629us - BlockConditionsFilteredDictTime: 42.495us - BlockConditionsFilteredTime: 68.474us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.517us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 82.577us - BlockLoadTime: 99.650ms - BlocksLoad: 100 - CachedPagesNum: 85 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 28.356ms - FirstReadSeekCount: 99 - FirstReadSeekTime: 43.785us - FirstReadTime: 63.682ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.421us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.376ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.805ms - OutputIndexResultColumnTimer: 7.960us - 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: 2.510ms - ShortPredEvalTime: 2.682ms - TotalPagesNum: 85 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 69.428us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 354.247us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 119.28us - CloseTime: 6.532us - GetBlockTime: 5.557us - OpenTime: 1.534us - PrepareTime: 222.348us - SinkTime: 98.877us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 342.271us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 137.210us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 837ns - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.32us - BuildTableInsertTime: 29.630us - BuildTableTime: 34.817us - CloseTime: 0ns - ExecTime: 272.968us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 174.543us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.764us - RuntimeFilterComputeTime: 19.257us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=257): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.152us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.953us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 3.25 KB - OpenTime: 21.954us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1.664ms PipelineXTask (index=5):(Active: 100.360us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.896us - CloseTime: 6.371us - GetBlockTime: 0ns - OpenTime: 1.546us - PrepareTime: 60.874us - SinkTime: 17.451us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.636us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 491.950us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a1 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.354us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.842us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.768ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.293us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.296us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.422us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 155.496us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 70.781us - CloseTime: 10.500us - GetBlockTime: 0ns - OpenTime: 19.135us - PrepareTime: 49.606us - SinkTime: 24.811us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 137.291us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 744.171us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a1 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.112us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.811us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.836ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.656us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.610us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.104us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 138.811us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.104us - CloseTime: 36.997us - GetBlockTime: 0ns - OpenTime: 2.386us - PrepareTime: 49.673us - SinkTime: 27.377us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.272us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 636.569us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a1 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.537us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.452us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.340ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 34.988us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.244us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.571us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 112.372us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.10us - CloseTime: 6.537us - GetBlockTime: 0ns - OpenTime: 2.206us - PrepareTime: 66.152us - SinkTime: 18.85us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.679us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 962.179us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a1 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.17us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.310us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.813ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.971us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.746us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.25us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 111.665us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 43.674us - CloseTime: 6.359us - GetBlockTime: 0ns - OpenTime: 2.750us - PrepareTime: 54.167us - SinkTime: 25.119us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.344us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 807.984us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a1 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.511us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.410us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1.825ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.658us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.158us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.581us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 5.485ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 5.139ms - CloseTime: 131.932us - GetBlockTime: 4.478ms - OpenTime: 6.864us - PrepareTime: 198.794us - SinkTime: 552.249us - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.963ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.37 KB - CloseTime: 28.188us - CompressTime: 0ns - ExecTime: 697.750us - InputRows: 1.209K (1209) - LocalBytesSent: 38.21 KB - LocalSendTime: 77.948us - LocalSentRows: 810 - MemoryUsage: - PeakMemoryUsage: 98.50 KB - MergeBlockTime: 0ns - OpenTime: 117.591us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s416ms - RowsProduced: 1.209K (1209) - RpcAvgTime: 2s403ms - RpcCount: 6 - RpcMaxTime: 2s403ms - RpcMinTime: 2s403ms - RpcSumTime: 14s421ms - SerializeBatchTime: 74.95us - SplitBlockDistributeByChannelTime: 171.442us - SplitBlockHashComputeTime: 39.22us - UncompressedRowBatchSize: 19.98 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.986ms - CloseTime: 45.173us - DeserializeAndMergeTime: 0ns - ExecTime: 2.240ms - ExprTime: 9.438us - GetResultsTime: 160.930us - HashTableComputeTime: 1.875ms - HashTableEmplaceTime: 1.38ms - HashTableInputCount: 19.012K (19012) - HashTableIterateTime: 7.920us - HashTableSize: 1.209K (1209) - InsertKeysToColumnTime: 68.306us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 507.98 KB - SerializeKeyArena: 460.00 KB - MergeTime: 0ns - OpenTime: 31.278us - ProjectionTime: 0ns - RowsProduced: 1.209K (1209) - SerializeDataTime: 73.110us - SerializeKeyTime: 0ns - SerializeResultTime: 163.673us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 49.8us - ExecTime: 2.258ms - InitProbeSideTime: 415.464us - JoinFilterTimer: 887ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.46us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.503us - ProbeFindNextTime: 0ns - ProbeRows: 19.012K (19012) - ProbeTime: 1.67ms - ProbeWhenBuildSideOutputTime: 35.145us - ProbeWhenProbeSideOutputTime: 165.449us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 340.55us - ProjectionTime: 1.100ms - RowsProduced: 19.012K (19012) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 38.74us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 564.00 KB - OpenTime: 678ns - ProjectionTime: 0ns - RowsProduced: 19.012K (19012) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 230.87ms PipelineXTask (index=3):(Active: 5.888ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.591ms - CloseTime: 62.674us - GetBlockTime: 4.953ms - OpenTime: 5.200us - PrepareTime: 221.922us - SinkTime: 510.578us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.786ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.70ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.46 KB - CloseTime: 12.53us - CompressTime: 0ns - ExecTime: 618.291us - InputRows: 1.214K (1214) - LocalBytesSent: 38.54 KB - LocalSendTime: 78.418us - LocalSentRows: 817 - MemoryUsage: - PeakMemoryUsage: 99.00 KB - MergeBlockTime: 0ns - OpenTime: 96.200us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s428ms - RowsProduced: 1.214K (1214) - RpcAvgTime: 2s403ms - RpcCount: 6 - RpcMaxTime: 2s403ms - RpcMinTime: 2s402ms - RpcSumTime: 14s418ms - SerializeBatchTime: 57.413us - SplitBlockDistributeByChannelTime: 135.286us - SplitBlockHashComputeTime: 35.614us - UncompressedRowBatchSize: 19.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.65ms - CloseTime: 22.975us - DeserializeAndMergeTime: 0ns - ExecTime: 2.283ms - ExprTime: 8.617us - GetResultsTime: 141.640us - HashTableComputeTime: 1.932ms - HashTableEmplaceTime: 1.134ms - HashTableInputCount: 17.817K (17817) - HashTableIterateTime: 8.557us - HashTableSize: 1.214K (1214) - InsertKeysToColumnTime: 74.558us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 507.98 KB - SerializeKeyArena: 460.00 KB - MergeTime: 0ns - OpenTime: 30.813us - ProjectionTime: 0ns - RowsProduced: 1.214K (1214) - SerializeDataTime: 45.92us - SerializeKeyTime: 0ns - SerializeResultTime: 144.822us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 20.47us - ExecTime: 2.671ms - InitProbeSideTime: 510.25us - JoinFilterTimer: 1.160us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 29.679us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.283us - ProbeFindNextTime: 0ns - ProbeRows: 17.817K (17817) - ProbeTime: 1.314ms - ProbeWhenBuildSideOutputTime: 54.453us - ProbeWhenProbeSideOutputTime: 173.689us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 427.106us - ProjectionTime: 1.273ms - RowsProduced: 17.817K (17817) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 22.303us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 108.00 KB - OpenTime: 644ns - ProjectionTime: 0ns - RowsProduced: 17.817K (17817) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 238.289ms PipelineXTask (index=6):(Active: 5.590ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.294ms - CloseTime: 69.812us - GetBlockTime: 4.727ms - OpenTime: 7.817us - PrepareTime: 211.255us - SinkTime: 473.429us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.425ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.768ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.61 KB - CloseTime: 10.415us - CompressTime: 0ns - ExecTime: 570.432us - InputRows: 1.453K (1453) - LocalBytesSent: 45.22 KB - LocalSendTime: 45.239us - LocalSentRows: 954 - MemoryUsage: - PeakMemoryUsage: 103.50 KB - MergeBlockTime: 0ns - OpenTime: 86.943us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s427ms - RowsProduced: 1.453K (1453) - RpcAvgTime: 2s402ms - RpcCount: 6 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 14s416ms - SerializeBatchTime: 62.96us - SplitBlockDistributeByChannelTime: 147.959us - SplitBlockHashComputeTime: 36.665us - UncompressedRowBatchSize: 25.11 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.129ms - CloseTime: 20.585us - DeserializeAndMergeTime: 0ns - ExecTime: 2.333ms - ExprTime: 10.64us - GetResultsTime: 131.758us - HashTableComputeTime: 1.998ms - HashTableEmplaceTime: 1.160ms - HashTableInputCount: 15.477K (15477) - HashTableIterateTime: 10.122us - HashTableSize: 1.453K (1453) - InsertKeysToColumnTime: 64.842us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 507.98 KB - SerializeKeyArena: 460.00 KB - MergeTime: 0ns - OpenTime: 34.21us - ProjectionTime: 0ns - RowsProduced: 1.453K (1453) - SerializeDataTime: 37.800us - SerializeKeyTime: 0ns - SerializeResultTime: 133.973us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 35.743us - ExecTime: 2.406ms - InitProbeSideTime: 435.265us - JoinFilterTimer: 1.266us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 26.591us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.998us - ProbeFindNextTime: 0ns - ProbeRows: 15.477K (15477) - ProbeTime: 1.187ms - ProbeWhenBuildSideOutputTime: 24.664us - ProbeWhenProbeSideOutputTime: 180.399us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 415.165us - ProjectionTime: 1.123ms - RowsProduced: 15.477K (15477) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 26.733us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 216.00 KB - OpenTime: 736ns - ProjectionTime: 0ns - RowsProduced: 15.477K (15477) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 232.507ms PipelineXTask (index=9):(Active: 523.361us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 305.917us - CloseTime: 28.428us - GetBlockTime: 65.656us - OpenTime: 9.409us - PrepareTime: 172.887us - SinkTime: 193.438us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 485.791us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.203ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.351us - CompressTime: 0ns - ExecTime: 292.545us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 44.204us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 84.421us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s416ms - RowsProduced: 0 - RpcAvgTime: 2s404ms - RpcCount: 6 - RpcMaxTime: 2s404ms - RpcMinTime: 2s404ms - RpcSumTime: 14s425ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.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=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.560us - DeserializeAndMergeTime: 0ns - ExecTime: 46.651us - ExprTime: 0ns - GetResultsTime: 7.841us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 113ns - HashTableSize: 0 - InsertKeysToColumnTime: 722ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 30.171us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.729us - SerializeKeyTime: 0ns - SerializeResultTime: 12.132us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.969us - ExecTime: 51.816us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.122us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.461us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 23.343us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 10.182us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 84.21 KB - OpenTime: 632ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 229.3ms PipelineXTask (index=12):(Active: 574.676us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 319.535us - CloseTime: 23.738us - GetBlockTime: 46.513us - OpenTime: 5.180us - PrepareTime: 220.399us - SinkTime: 248.103us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 543.73us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.617ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.30us - CompressTime: 0ns - ExecTime: 393.54us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 59.445us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 133.601us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s427ms - RowsProduced: 0 - RpcAvgTime: 2s402ms - RpcCount: 6 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 14s413ms - 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=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.523us - DeserializeAndMergeTime: 0ns - ExecTime: 35.534us - ExprTime: 0ns - GetResultsTime: 5.995us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 124ns - HashTableSize: 0 - InsertKeysToColumnTime: 742ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.483us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.239us - SerializeKeyTime: 0ns - SerializeResultTime: 10.320us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.839us - ExecTime: 52.674us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.74us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.870us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 21.419us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.519us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 624ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 241.85ms PipelineXTask (index=15):(Active: 486.772us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 278.690us - CloseTime: 14.940us - GetBlockTime: 30.98us - OpenTime: 5.630us - PrepareTime: 181.428us - SinkTime: 219.891us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 463.348us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.973ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.735us - CompressTime: 0ns - ExecTime: 309.477us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 53.786us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.255us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 0 - RpcAvgTime: 2s402ms - RpcCount: 6 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 14s412ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 309ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 420ns - DeserializeAndMergeTime: 0ns - ExecTime: 35.132us - ExprTime: 0ns - GetResultsTime: 5.86us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 49ns - HashTableSize: 0 - InsertKeysToColumnTime: 490ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.141us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.95us - SerializeKeyTime: 0ns - SerializeResultTime: 8.306us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.99us - ExecTime: 50.75us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 29.523us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.363us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.933us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.725us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 662ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 241.56ms PipelineXTask (index=18):(Active: 394.449us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 177.289us - CloseTime: 18.768us - GetBlockTime: 17.529us - OpenTime: 4.830us - PrepareTime: 186.961us - SinkTime: 126.494us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 357.477us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.306ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.569us - CompressTime: 0ns - ExecTime: 223.229us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.81us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 86.365us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s426ms - RowsProduced: 0 - RpcAvgTime: 2s402ms - RpcCount: 6 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 14s412ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 362ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 498ns - DeserializeAndMergeTime: 0ns - ExecTime: 45.727us - ExprTime: 0ns - GetResultsTime: 3.322us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 118ns - HashTableSize: 0 - InsertKeysToColumnTime: 214ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 38.832us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 519ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.227us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.643us - ExecTime: 32.53us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.832us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.134us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.633us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.572us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 706ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 241.42ms PipelineXTask (index=21):(Active: 385.100us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 157.105us - CloseTime: 31.222us - GetBlockTime: 18.639us - OpenTime: 9.694us - PrepareTime: 181.118us - SinkTime: 112.136us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 347.928us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.52ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.925us - CompressTime: 0ns - ExecTime: 221.283us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.232us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 93.586us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s428ms - RowsProduced: 0 - RpcAvgTime: 2s402ms - RpcCount: 6 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 14s416ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 513ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.49us - DeserializeAndMergeTime: 0ns - ExecTime: 34.680us - ExprTime: 0ns - GetResultsTime: 3.322us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 116ns - HashTableSize: 0 - InsertKeysToColumnTime: 95ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.859us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 536ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.564us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.572us - ExecTime: 36.540us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.247us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.118us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.898us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.683us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 771ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 244.952ms PipelineXTask (index=24):(Active: 556.220us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 340.570us - CloseTime: 15.882us - GetBlockTime: 47.992us - OpenTime: 5.247us - PrepareTime: 188.485us - SinkTime: 262.75us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 531.900us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.362ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.66us - CompressTime: 0ns - ExecTime: 359.771us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 60.13us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 89.188us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s428ms - RowsProduced: 0 - RpcAvgTime: 2s403ms - RpcCount: 6 - RpcMaxTime: 2s403ms - RpcMinTime: 2s403ms - RpcSumTime: 14s421ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 596ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 559ns - DeserializeAndMergeTime: 0ns - ExecTime: 43.0us - ExprTime: 0ns - GetResultsTime: 6.110us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 330ns - HashTableSize: 0 - InsertKeysToColumnTime: 524ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 31.143us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.496us - SerializeKeyTime: 0ns - SerializeResultTime: 9.448us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.307us - ExecTime: 49.312us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 12.880us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 17.388us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.21us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 724ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 244.707ms PipelineXTask (index=27):(Active: 482.825us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 266.920us - CloseTime: 21.171us - GetBlockTime: 35.491us - OpenTime: 8.825us - PrepareTime: 179.648us - SinkTime: 202.279us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 453.352us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.703ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.626us - CompressTime: 0ns - ExecTime: 315.790us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.203us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 102.269us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s428ms - RowsProduced: 0 - RpcAvgTime: 2s403ms - RpcCount: 6 - RpcMaxTime: 2s403ms - RpcMinTime: 2s402ms - RpcSumTime: 14s418ms - 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 STREAMING_AGGREGATION_OPERATOR (id=260): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 980ns - DeserializeAndMergeTime: 0ns - ExecTime: 31.273us - ExprTime: 0ns - GetResultsTime: 5.140us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 52ns - HashTableSize: 0 - InsertKeysToColumnTime: 515ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.116us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 800ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.335us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.879us - ExecTime: 42.41us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.207us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.721us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 17.53us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.629us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.442us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 241.46ms PipelineXTask (index=30):(Active: 446.921us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 177.366us - CloseTime: 32.762us - GetBlockTime: 30.265us - OpenTime: 5.793us - PrepareTime: 225.335us - SinkTime: 126.396us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 407.971us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.761ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.343us - CompressTime: 0ns - ExecTime: 239.559us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 31.900us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 101.75us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s427ms - RowsProduced: 0 - RpcAvgTime: 2s402ms - RpcCount: 6 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 14s413ms - 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: 1.115us - DeserializeAndMergeTime: 0ns - ExecTime: 67.34us - ExprTime: 0ns - GetResultsTime: 3.924us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 149ns - HashTableSize: 0 - InsertKeysToColumnTime: 265ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 58.641us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 556ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.963us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 15.986us - ExecTime: 47.28us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.633us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 12.595us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.883us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.596us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 739ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 241.179ms PipelineXTask (index=33):(Active: 410.794us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 168.947us - CloseTime: 57.166us - GetBlockTime: 16.614us - OpenTime: 5.160us - PrepareTime: 173.732us - SinkTime: 132.200us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 346.704us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.981ms DATA_STREAM_SINK_OPERATOR (id=261,dst_id=261): - Partitioner: Crc32HashPartitioner(18) - BlocksProduced: 24 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.957us - CompressTime: 0ns - ExecTime: 229.726us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 23.631us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 87.181us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s427ms - RowsProduced: 0 - RpcAvgTime: 2s402ms - RpcCount: 6 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 14s413ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 212ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 31.839us - ExprTime: 0ns - GetResultsTime: 3.386us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 123ns - HashTableSize: 0 - InsertKeysToColumnTime: 56ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.849us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.117us - SerializeKeyTime: 0ns - SerializeResultTime: 4.664us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=259): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 41.820us - ExecTime: 66.340us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.754us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.80us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.172us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 938ns - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 572ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 241.152ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 56.127ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.986ms - CloseTime: 104.660us - GetBlockTime: 76.584us - OpenTime: 27.850ms - PrepareTime: 173.743us - SinkTime: 21.62us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.612ms - WaitBfTime: 3.880ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.840ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.267us - InputRows: 10.114K (10114) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.600us - 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, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 70.353us - BlocksProduced: 3 - CloseTime: 102.249us - ExecTime: 160.293ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 27.946ms - ProcessConjunctTime: 27.621ms - ProjectionTime: 69.746us - RowsProduced: 10.114K (10114) - RowsRead: 10.114K (10114) - RuntimeFilterInfo: - filter id = -1 filtered: 837.282K (837282) - filter id = -1 input: 955.922K (955922) - ScannerWorkerWaitTime: 256.694ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.97ms - 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.808us, 2.879ms, ] - PerScannerRowsRead: [0, 10.11K, ] - PerScannerWaitTime: [128.171ms, 128.523ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.603ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.196ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 321ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.396ms - ScannerCtxSchedTime: 256.692ms - ScannerFilterTime: 8.454us - ScannerGetBlockTime: 2.862ms - ScannerInitTime: 129.616us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 806314, filtered = 711388] - BitmapIndexFilterTimer: 860ns - BlockConditionsFilteredBloomFilterTime: 2.814us - BlockConditionsFilteredDictTime: 84.216us - BlockConditionsFilteredTime: 117.874us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 15.55us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 135.330us - BlockLoadTime: 17.459ms - BlocksLoad: 104 - CachedPagesNum: 103 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.867ms - FirstReadSeekCount: 101 - FirstReadSeekTime: 28.998us - FirstReadTime: 8.213ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.678us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.36ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 817.159us - OutputIndexResultColumnTimer: 7.92us - RawRowsRead: 403.157K (403157) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 355.694K (355694) - RowsShortCircuitPredInput: 403.157K (403157) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.44ms - ShortPredEvalTime: 1.846ms - TotalPagesNum: 103 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 48.265us PipelineXTask (index=4):(Active: 1.618ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 764.216us - CloseTime: 121.187us - GetBlockTime: 85.497us - OpenTime: 568.356us - PrepareTime: 154.402us - SinkTime: 63.224us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.484ms - WaitBfTime: 20.58ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.902ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 61.712us - InputRows: 10.631K (10631) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.131us - 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, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 57.201us - BlocksProduced: 3 - CloseTime: 117.882us - ExecTime: 147.382ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 670.946us - ProcessConjunctTime: 373.537us - ProjectionTime: 59.58us - RowsProduced: 10.631K (10631) - RowsRead: 10.631K (10631) - RuntimeFilterInfo: - filter id = -1 filtered: 846.298K (846298) - filter id = -1 input: 972.018K (972018) - ScannerWorkerWaitTime: 263.608ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 146.449ms - 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.442us, 2.938ms, ] - PerScannerRowsRead: [0, 10.63K, ] - PerScannerWaitTime: [131.736ms, 131.871ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.692ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.827ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 429ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.417ms - ScannerCtxSchedTime: 263.605ms - ScannerFilterTime: 7.820us - ScannerGetBlockTime: 2.922ms - ScannerInitTime: 108.819us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 819658, filtered = 718630] - BitmapIndexFilterTimer: 829ns - BlockConditionsFilteredBloomFilterTime: 2.480us - BlockConditionsFilteredDictTime: 65.802us - BlockConditionsFilteredTime: 94.976us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 13.746us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 113.48us - BlockLoadTime: 18.251ms - BlocksLoad: 106 - CachedPagesNum: 103 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.37ms - FirstReadSeekCount: 122 - FirstReadSeekTime: 34.927us - FirstReadTime: 8.470ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.60us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.664ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 894.242us - OutputIndexResultColumnTimer: 6.782us - RawRowsRead: 409.829K (409829) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 359.315K (359315) - RowsShortCircuitPredInput: 409.829K (409829) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.661ms - ShortPredEvalTime: 2.585ms - TotalPagesNum: 103 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 44.519us PipelineXTask (index=7):(Active: 1.321ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 592.42us - CloseTime: 53.362us - GetBlockTime: 45.287us - OpenTime: 505.637us - PrepareTime: 157.993us - SinkTime: 10.582us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.254ms - WaitBfTime: 17.776ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.443ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.994us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.128us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 43.627us - BlocksProduced: 0 - CloseTime: 51.336us - ExecTime: 148.429ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 589.714us - ProcessConjunctTime: 349.558us - ProjectionTime: 1.220us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 680.59K (680590) - filter id = -1 input: 838.702K (838702) - ScannerWorkerWaitTime: 134.953ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 147.741ms - 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.338us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [134.953ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 12.729ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 101ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.661ms - ScannerCtxSchedTime: 134.952ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.92us - ScannerInitTime: 84.866us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 838702, filtered = 680590] - BitmapIndexFilterTimer: 344ns - BlockConditionsFilteredBloomFilterTime: 1.413us - BlockConditionsFilteredDictTime: 30.656us - BlockConditionsFilteredTime: 43.584us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 6.263us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 49.131us - BlockLoadTime: 12.547ms - BlocksLoad: 105 - CachedPagesNum: 91 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.238ms - FirstReadSeekCount: 104 - FirstReadSeekTime: 14.17us - FirstReadTime: 5.37ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.114us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.483ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 832.527us - OutputIndexResultColumnTimer: 3.743us - RawRowsRead: 419.351K (419351) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 340.295K (340295) - RowsShortCircuitPredInput: 419.351K (419351) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.548ms - ShortPredEvalTime: 1.575ms - TotalPagesNum: 91 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 34.853us PipelineXTask (index=10):(Active: 1.163ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 493.320us - CloseTime: 24.359us - GetBlockTime: 9.419us - OpenTime: 459.212us - PrepareTime: 176.26us - SinkTime: 2.469us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.128ms - WaitBfTime: 17.398ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.695ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.510us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.241us - 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: 40.720us - BlocksProduced: 0 - CloseTime: 23.702us - ExecTime: 158.110ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 540.879us - ProcessConjunctTime: 323.825us - ProjectionTime: 1.692us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 684.072K (684072) - filter id = -1 input: 846.612K (846612) - ScannerWorkerWaitTime: 134.895ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.535ms - 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.765us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [134.895ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 22.554ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 42ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.199ms - ScannerCtxSchedTime: 134.893ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.465us - ScannerInitTime: 56.582us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 846612, filtered = 684072] - BitmapIndexFilterTimer: 452ns - BlockConditionsFilteredBloomFilterTime: 1.380us - BlockConditionsFilteredDictTime: 38.890us - BlockConditionsFilteredTime: 56.990us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.945us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 65.28us - BlockLoadTime: 22.282ms - BlocksLoad: 106 - CachedPagesNum: 91 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 6.569ms - FirstReadSeekCount: 105 - FirstReadSeekTime: 24.79us - FirstReadTime: 9.229ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.187us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.358ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.426ms - OutputIndexResultColumnTimer: 6.211us - 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: 2.478ms - ShortPredEvalTime: 2.106ms - TotalPagesNum: 91 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 49.976us PipelineXTask (index=13):(Active: 1.217ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 538.147us - CloseTime: 24.347us - GetBlockTime: 19.395us - OpenTime: 486.902us - PrepareTime: 156.484us - SinkTime: 5.994us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.181ms - WaitBfTime: 17.830ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.149ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.95us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.728us - 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: 37.59us - BlocksProduced: 0 - CloseTime: 23.184us - ExecTime: 157.613ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 590.207us - ProcessConjunctTime: 300.770us - ProjectionTime: 1.875us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 694.66K (694660) - filter id = -1 input: 856.196K (856196) - ScannerWorkerWaitTime: 134.839ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.978ms - 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: [6.766us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [134.839ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 22.43ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.646ms - ScannerCtxSchedTime: 134.837ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.520us - ScannerInitTime: 127.733us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 856196, filtered = 694660] - BitmapIndexFilterTimer: 463ns - BlockConditionsFilteredBloomFilterTime: 1.970us - BlockConditionsFilteredDictTime: 36.676us - BlockConditionsFilteredTime: 52.104us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 6.564us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 59.738us - BlockLoadTime: 21.812ms - BlocksLoad: 107 - CachedPagesNum: 93 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.166ms - FirstReadSeekCount: 106 - FirstReadSeekTime: 19.298us - FirstReadTime: 9.867ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.183us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.489ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 1.493ms - OutputIndexResultColumnTimer: 6.621us - 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: 2.617ms - ShortPredEvalTime: 2.184ms - TotalPagesNum: 93 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 50.224us PipelineXTask (index=16):(Active: 1.827ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 824.462us - CloseTime: 51.873us - GetBlockTime: 23.47us - OpenTime: 770.832us - PrepareTime: 169.491us - SinkTime: 5.325us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.314ms - WaitBfTime: 16.822ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.541ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.842us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.118us - 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: 45.688us - BlocksProduced: 0 - CloseTime: 45.726us - ExecTime: 147.438ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 848.95us - ProcessConjunctTime: 362.701us - ProjectionTime: 1.233us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 640.138K (640138) - filter id = -1 input: 781.164K (781164) - ScannerWorkerWaitTime: 134.659ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 146.523ms - 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.032us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [134.659ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.813ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 106ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.824ms - ScannerCtxSchedTime: 134.658ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.234us - ScannerInitTime: 309.718us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 781164, filtered = 640138] - BitmapIndexFilterTimer: 262ns - BlockConditionsFilteredBloomFilterTime: 686ns - BlockConditionsFilteredDictTime: 27.900us - BlockConditionsFilteredTime: 39.180us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.936us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 43.692us - BlockLoadTime: 11.655ms - BlocksLoad: 98 - CachedPagesNum: 83 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.852ms - FirstReadSeekCount: 97 - FirstReadSeekTime: 13.707us - FirstReadTime: 4.781ms - IOTimer: 0ns - InvertedIndexFilterTime: 788ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.488ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 734.598us - OutputIndexResultColumnTimer: 3.339us - 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: 1.547ms - ShortPredEvalTime: 1.459ms - TotalPagesNum: 83 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 31.352us PipelineXTask (index=19):(Active: 1.373ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 625.901us - CloseTime: 41.720us - GetBlockTime: 47.98us - OpenTime: 530.487us - PrepareTime: 164.236us - SinkTime: 14.615us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.318ms - WaitBfTime: 20.60ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.303ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.556us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.101us - 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: [15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 57.910us - BlocksProduced: 0 - CloseTime: 38.105us - ExecTime: 144.219ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 646.810us - ProcessConjunctTime: 334.254us - ProjectionTime: 1.300us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 638.5K (638500) - filter id = -1 input: 780.222K (780222) - ScannerWorkerWaitTime: 131.283ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.487ms - 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.246us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [131.283ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 12.139ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 145ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.68ms - ScannerCtxSchedTime: 131.281ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.23us - ScannerInitTime: 109.947us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 780222, filtered = 638500] - BitmapIndexFilterTimer: 315ns - BlockConditionsFilteredBloomFilterTime: 813ns - BlockConditionsFilteredDictTime: 27.880us - BlockConditionsFilteredTime: 39.26us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.126us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 43.758us - BlockLoadTime: 11.985ms - BlocksLoad: 97 - CachedPagesNum: 83 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.66ms - FirstReadSeekCount: 96 - FirstReadSeekTime: 21.936us - FirstReadTime: 4.842ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.114us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.545ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 774.540us - OutputIndexResultColumnTimer: 3.646us - RawRowsRead: 390.111K (390111) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 319.25K (319250) - RowsShortCircuitPredInput: 390.111K (390111) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.608ms - ShortPredEvalTime: 1.412ms - TotalPagesNum: 83 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 31.644us PipelineXTask (index=22):(Active: 45.327ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.600ms - CloseTime: 44.672us - GetBlockTime: 48.986us - OpenTime: 22.516ms - PrepareTime: 154.768us - SinkTime: 8.400us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.349ms - WaitBfTime: 19.672ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 281.332us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.526us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.462us - 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: [15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 55.227us - BlocksProduced: 0 - CloseTime: 40.707us - ExecTime: 170.199ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 22.601ms - ProcessConjunctTime: 22.356ms - ProjectionTime: 1.411us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 638.818K (638818) - filter id = -1 input: 780.478K (780478) - ScannerWorkerWaitTime: 123.261ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 147.507ms - 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.714us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [123.261ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 24.147ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 47ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.69ms - ScannerCtxSchedTime: 123.258ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.196us - ScannerInitTime: 77.403us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 780478, filtered = 638818] - BitmapIndexFilterTimer: 401ns - BlockConditionsFilteredBloomFilterTime: 1.193us - BlockConditionsFilteredDictTime: 32.252us - BlockConditionsFilteredTime: 51.144us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 9.875us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 58.706us - BlockLoadTime: 23.879ms - BlocksLoad: 98 - CachedPagesNum: 83 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.351ms - FirstReadSeekCount: 97 - FirstReadSeekTime: 20.255us - FirstReadTime: 5.531ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.496us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.825ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 933.63us - OutputIndexResultColumnTimer: 4.748us - RawRowsRead: 390.239K (390239) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 319.409K (319409) - RowsShortCircuitPredInput: 390.239K (390239) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.914ms - ShortPredEvalTime: 11.767ms - TotalPagesNum: 83 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 39.382us PipelineXTask (index=25):(Active: 44.781ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.321ms - CloseTime: 39.47us - GetBlockTime: 14.696us - OpenTime: 22.227ms - PrepareTime: 181.720us - SinkTime: 50.669us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.252ms - WaitBfTime: 22.184ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.843ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.193us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.160us - 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: [15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 54.820us - BlocksProduced: 0 - CloseTime: 37.691us - ExecTime: 219.46ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 22.353ms - ProcessConjunctTime: 22.47ms - ProjectionTime: 1.678us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 642.248K (642248) - filter id = -1 input: 787.694K (787694) - ScannerWorkerWaitTime: 128.758ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 196.639ms - 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.512us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [128.758ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 67.784ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 158ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.243ms - ScannerCtxSchedTime: 128.757ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.886us - ScannerInitTime: 102.354us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 787694, filtered = 642248] - BitmapIndexFilterTimer: 529ns - BlockConditionsFilteredBloomFilterTime: 1.550us - BlockConditionsFilteredDictTime: 31.174us - BlockConditionsFilteredTime: 56.383us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 14.810us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 65.77us - BlockLoadTime: 67.546ms - BlocksLoad: 98 - CachedPagesNum: 85 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.621ms - FirstReadSeekCount: 97 - FirstReadSeekTime: 26.604us - FirstReadTime: 6.40ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.117us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 46.185ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 9.439ms - OutputIndexResultColumnTimer: 5.127us - RawRowsRead: 393.847K (393847) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 321.124K (321124) - RowsShortCircuitPredInput: 393.847K (393847) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 46.316ms - ShortPredEvalTime: 1.652ms - TotalPagesNum: 85 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 43.661us PipelineXTask (index=28):(Active: 1.227ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 563.799us - CloseTime: 34.282us - GetBlockTime: 41.746us - OpenTime: 477.817us - PrepareTime: 140.930us - SinkTime: 19.415us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.182ms - WaitBfTime: 16.816ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.603ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.797us - InputRows: 10.403K (10403) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.114us - 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: [15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 41.514us - BlocksProduced: 3 - CloseTime: 32.609us - ExecTime: 138.745ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 556.114us - ProcessConjunctTime: 327.911us - ProjectionTime: 121.579us - RowsProduced: 10.403K (10403) - RowsRead: 10.403K (10403) - RuntimeFilterInfo: - filter id = -1 filtered: 126.478K (126478) - filter id = -1 input: 150.628K (150628) - ScannerWorkerWaitTime: 131.427ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.989ms - 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: [5.294ms, ] - PerScannerRowsRead: [10.40K, ] - PerScannerWaitTime: [131.427ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.868ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 802.478us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 205ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 6.549ms - ScannerCtxSchedTime: 131.424ms - ScannerFilterTime: 16.163us - ScannerGetBlockTime: 5.262ms - ScannerInitTime: 87.423us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 150628, filtered = 126478] - BitmapIndexFilterTimer: 708ns - BlockConditionsFilteredBloomFilterTime: 2.514us - BlockConditionsFilteredDictTime: 25.371us - BlockConditionsFilteredTime: 50.450us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.197us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 71.852us - BlockLoadTime: 5.572ms - BlocksLoad: 22 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.216ms - FirstReadSeekCount: 39 - FirstReadSeekTime: 29.16us - FirstReadTime: 1.901ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.793us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 459.969us - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 308.269us - OutputIndexResultColumnTimer: 1.756us - RawRowsRead: 75.314K (75314) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 63.239K (63239) - RowsShortCircuitPredInput: 75.314K (75314) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 317.754us - ShortPredEvalTime: 452.195us - TotalPagesNum: 30 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 11.292us PipelineXTask (index=31):(Active: 1.281ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 566.445us - CloseTime: 64.74us - GetBlockTime: 42.324us - OpenTime: 473.85us - PrepareTime: 165.306us - SinkTime: 19.867us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.204ms - WaitBfTime: 18.267ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.500ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 17.902us - InputRows: 10.473K (10473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.206us - 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: [15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 44.251us - BlocksProduced: 3 - CloseTime: 62.463us - ExecTime: 145.949ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 561.950us - ProcessConjunctTime: 314.841us - ProjectionTime: 98.561us - RowsProduced: 10.473K (10473) - RowsRead: 10.473K (10473) - RuntimeFilterInfo: - filter id = -1 filtered: 128.818K (128818) - filter id = -1 input: 153.242K (153242) - ScannerWorkerWaitTime: 136.695ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 145.181ms - 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.442ms, ] - PerScannerRowsRead: [10.47K, ] - PerScannerWaitTime: [136.695ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.28ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 625.526us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 184ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.886ms - ScannerCtxSchedTime: 136.694ms - ScannerFilterTime: 13.500us - ScannerGetBlockTime: 7.411ms - ScannerInitTime: 89.737us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 153242, filtered = 128818] - BitmapIndexFilterTimer: 633ns - BlockConditionsFilteredBloomFilterTime: 2.83us - BlockConditionsFilteredDictTime: 25.781us - BlockConditionsFilteredTime: 47.824us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.713us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 62.209us - BlockLoadTime: 7.615ms - BlocksLoad: 22 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.561ms - FirstReadSeekCount: 20 - FirstReadSeekTime: 18.329us - FirstReadTime: 1.652ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.280us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 581.520us - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 231.468us - OutputIndexResultColumnTimer: 1.605us - RawRowsRead: 76.621K (76621) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 64.409K (64409) - RowsShortCircuitPredInput: 76.621K (76621) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 453.191us - ShortPredEvalTime: 371.275us - TotalPagesNum: 30 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.605us PipelineXTask (index=34):(Active: 1.180ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 505.931us - CloseTime: 39.250us - GetBlockTime: 37.611us - OpenTime: 437.156us - PrepareTime: 187.131us - SinkTime: 5.509us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.130ms - WaitBfTime: 18.361ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.893ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 7.318us - InputRows: 10.685K (10685) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.360us - 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: [15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 36.900us - BlocksProduced: 3 - CloseTime: 38.156us - ExecTime: 143.533ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 569.397us - ProcessConjunctTime: 309.553us - ProjectionTime: 90.279us - RowsProduced: 10.685K (10685) - RowsRead: 10.685K (10685) - RuntimeFilterInfo: - filter id = -1 filtered: 126.624K (126624) - filter id = -1 input: 151.622K (151622) - ScannerWorkerWaitTime: 136.999ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.794ms - 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: [4.797ms, ] - PerScannerRowsRead: [10.69K, ] - PerScannerWaitTime: [136.999ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.391ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 586.39us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 202ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.780ms - ScannerCtxSchedTime: 136.997ms - ScannerFilterTime: 13.195us - ScannerGetBlockTime: 4.771ms - ScannerInitTime: 68.958us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 151622, filtered = 126624] - BitmapIndexFilterTimer: 613ns - BlockConditionsFilteredBloomFilterTime: 1.970us - BlockConditionsFilteredDictTime: 20.456us - BlockConditionsFilteredTime: 41.836us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.844us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 54.411us - BlockLoadTime: 4.929ms - BlocksLoad: 22 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.989ms - FirstReadSeekCount: 20 - FirstReadSeekTime: 21.882us - FirstReadTime: 1.576ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.165us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 603.108us - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 222.408us - OutputIndexResultColumnTimer: 1.412us - RawRowsRead: 75.811K (75811) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 63.312K (63312) - RowsShortCircuitPredInput: 75.811K (75811) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 479.693us - ShortPredEvalTime: 347.906us - TotalPagesNum: 30 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.85us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 15.535ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.418ms - CloseTime: 36.108us - GetBlockTime: 11.168us - OpenTime: 2.70us - PrepareTime: 74.65us - SinkTime: 15.384ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 318.924us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.57ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.549us - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.830us - BuildTableInsertTime: 15.219ms - BuildTableTime: 15.228ms - CloseTime: 0ns - ExecTime: 15.398ms - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 16.181us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.626us - RuntimeFilterComputeTime: 35.706us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=257): - BlocksProduced: 2 - BytesReceived: 1.21 KB - CloseTime: 31.649us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 17.591us - ExecTime: 58.31us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.747us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 108.897us PipelineXTask (index=5):(Active: 170.880us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 82.419us - CloseTime: 16.247us - GetBlockTime: 0ns - OpenTime: 3.452us - PrepareTime: 62.961us - SinkTime: 37.61us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 141.868us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.127ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.551us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.71us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.996ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.809us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.989us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.781us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 116.156us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.722us - CloseTime: 9.776us - GetBlockTime: 0ns - OpenTime: 2.876us - PrepareTime: 50.625us - SinkTime: 28.518us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.232us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.41ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.56us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.108us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 15.612ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.403us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.712us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.118us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 119.139us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 40.826us - CloseTime: 7.346us - GetBlockTime: 0ns - OpenTime: 1.813us - PrepareTime: 64.127us - SinkTime: 22.887us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.760us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.162ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.300us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.744us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 15.555ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.332us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.202us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.204us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 118.54us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 55.90us - CloseTime: 4.887us - GetBlockTime: 0ns - OpenTime: 2.160us - PrepareTime: 51.125us - SinkTime: 18.958us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.228ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.743us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.68us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 15.528ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.132us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.783us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.666us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 143.991us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 59.608us - CloseTime: 8.223us - GetBlockTime: 0ns - OpenTime: 4.394us - PrepareTime: 65.382us - SinkTime: 35.259us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 127.393us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.55ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 67.207us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.363us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 15.507ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.974us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.71us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.883us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 117.234us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.453us - CloseTime: 4.901us - GetBlockTime: 0ns - OpenTime: 3.373us - PrepareTime: 67.608us - SinkTime: 17.852us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.638us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 264.318us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.146us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.771us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19.424ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.374us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.335us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 34.319us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 107.927us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.668us - CloseTime: 4.532us - GetBlockTime: 0ns - OpenTime: 2.26us - PrepareTime: 63.596us - SinkTime: 16.91us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.771us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 321.18us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.609us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.845us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19.399ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.904us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.704us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.834us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 109.283us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.450us - CloseTime: 9.181us - GetBlockTime: 0ns - OpenTime: 3.6us - PrepareTime: 54.919us - SinkTime: 19.509us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.549us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 222.66us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.241us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.973us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19.391ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.68us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.284us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.223us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 106.235us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.954us - CloseTime: 6.802us - GetBlockTime: 0ns - OpenTime: 2.904us - PrepareTime: 56.785us - SinkTime: 18.261us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.75us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.502us HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.710us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.609us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19.378ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.873us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.113us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.248us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 118.145us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.133us - CloseTime: 9.984us - GetBlockTime: 0ns - OpenTime: 2.80us - PrepareTime: 53.710us - SinkTime: 28.365us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.886us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.126ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.863us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.150us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 15.617ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.638us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.818us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.269us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 124.226us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.447us - CloseTime: 12.19us - GetBlockTime: 0ns - OpenTime: 3.348us - PrepareTime: 55.384us - SinkTime: 27.257us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.815us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.993ms HASH_JOIN_SINK_OPERATOR (id=259): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc85a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.509us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.538us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 15.567ms EXCHANGE_OPERATOR (id=257): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.508us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.936us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.365us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 53: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 302.302us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 134.263us - CloseTime: 30.7us - GetBlockTime: 37.416us - OpenTime: 2.582us - PrepareTime: 130.924us - SinkTime: 74.337us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 265.456us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 701.417us DATA_STREAM_SINK_OPERATOR (id=257,dst_id=257): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.38 KB - CloseTime: 15.297us - CompressTime: 0ns - ExecTime: 133.306us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 4.887us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 3.25 KB - MergeBlockTime: 3.335us - OpenTime: 44.6us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.426ms - RowsProduced: 109 - RpcAvgTime: 771.451us - RpcCount: 1 - RpcMaxTime: 771.451us - RpcMinTime: 771.451us - RpcSumTime: 771.451us - SerializeBatchTime: 10.975us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.49 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=256): - BlocksProduced: 0 - BuildTime: 30.203us - CloseTime: 1.238us - ExecTime: 66.412us - HashTableComputeTime: 15.397us - HashTableEmplaceTime: 10.813us - HashTableInputCount: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 32.830us - ProjectionTime: 0ns - RowsProduced: 109 EXCHANGE_OPERATOR (id=255): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.161us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.568us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 2.75 KB - OpenTime: 16.290us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1.466ms Fragment 54: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 1.85ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 493.499us - CloseTime: 32.281us - GetBlockTime: 82.232us - OpenTime: 378.808us - PrepareTime: 175.256us - SinkTime: 10.731us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 570.562us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 521.801us DATA_STREAM_SINK_OPERATOR (id=255,dst_id=255): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.223us - CompressTime: 0ns - ExecTime: 50.373us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 5.881us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.806us - 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.534us - CloseTime: 241ns - ExecTime: 83.690us - HashTableComputeTime: 28.278us - HashTableEmplaceTime: 21.407us - HashTableInputCount: 109 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 34.549us - 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: 702ns - BlocksProduced: 1 - CloseTime: 16.248us - ExecTime: 1.76ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 445.859us - ProcessConjunctTime: 25.657us - ProjectionTime: 0ns - RowsProduced: 109 - RowsRead: 109 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 380.390us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 582.371us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID] - PerScannerRunningTime: [17.713us, ] - PerScannerRowsRead: [109, ] - PerScannerWaitTime: [380.390us, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.901us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 145.618us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 105ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 216.871us - ScannerCtxSchedTime: 378.761us - ScannerFilterTime: 1.91us - ScannerGetBlockTime: 15.511us - ScannerInitTime: 317.425us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 191ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.374us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 6 - BlockInitSeekTime: 16.133us - BlockInitTime: 42.839us - BlockLoadTime: 84.376us - BlocksLoad: 2 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 255ns - FirstReadTime: 5.284us - IOTimer: 0ns - InvertedIndexFilterTime: 407ns - 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: 245ns - OutputIndexResultColumnTimer: 354ns - 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: 411.664us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 300.936us - CloseTime: 14.472us - GetBlockTime: 130.583us - OpenTime: 2.710us - PrepareTime: 86.395us - SinkTime: 149.254us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 369.526us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 501.519us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.98 KB - CloseTime: 11.698us - CompressTime: 0ns - ExecTime: 203.410us - InputRows: 219 - LocalBytesSent: 14.07 KB - LocalSendTime: 52.727us - LocalSentRows: 219 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 17.688us - OpenTime: 43.64us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.633ms - RowsProduced: 219 - RpcAvgTime: 578.551us - RpcCount: 1 - RpcMaxTime: 578.551us - RpcMinTime: 578.551us - RpcSumTime: 578.551us - SerializeBatchTime: 24.149us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 29.91 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 633ns - DeserializeAndMergeTime: 0ns - ExecTime: 136.604us - GetResultsTime: 69.455us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.557us - HashTableSize: 219 - InsertKeysToColumnTime: 11.462us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.265us - ProjectionTime: 48.717us - RowsProduced: 219 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms PipelineXTask (index=2):(Active: 349.417us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 253.427us - CloseTime: 12.102us - GetBlockTime: 82.385us - OpenTime: 914ns - PrepareTime: 77.290us - SinkTime: 155.509us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 330.549us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 767.181us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.09 KB - CloseTime: 9.330us - CompressTime: 0ns - ExecTime: 206.837us - InputRows: 174 - LocalBytesSent: 11.19 KB - LocalSendTime: 19.48us - LocalSentRows: 174 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 14.668us - OpenTime: 42.738us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.517ms - RowsProduced: 174 - RpcAvgTime: 585.608us - RpcCount: 1 - RpcMaxTime: 585.608us - RpcMinTime: 585.608us - RpcSumTime: 585.608us - SerializeBatchTime: 20.98us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 23.85 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 1000ns - DeserializeAndMergeTime: 0ns - ExecTime: 93.614us - GetResultsTime: 30.966us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.823us - HashTableSize: 174 - InsertKeysToColumnTime: 12.425us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.42us - ProjectionTime: 39.112us - RowsProduced: 174 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms PipelineXTask (index=4):(Active: 352.221us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 239.52us - CloseTime: 13.822us - GetBlockTime: 69.927us - OpenTime: 534ns - PrepareTime: 93.471us - SinkTime: 154.835us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 332.127us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 745.329us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.38 KB - CloseTime: 11.415us - CompressTime: 0ns - ExecTime: 220.971us - InputRows: 211 - LocalBytesSent: 13.57 KB - LocalSendTime: 30.402us - LocalSentRows: 211 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 7.860us - OpenTime: 55.565us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.521ms - RowsProduced: 211 - RpcAvgTime: 608.875us - RpcCount: 1 - RpcMaxTime: 608.875us - RpcMinTime: 608.875us - RpcSumTime: 608.875us - SerializeBatchTime: 34.80us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 28.86 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 717ns - DeserializeAndMergeTime: 0ns - ExecTime: 77.954us - GetResultsTime: 29.455us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.925us - HashTableSize: 211 - InsertKeysToColumnTime: 8.724us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.835us - ProjectionTime: 35.415us - RowsProduced: 211 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms PipelineXTask (index=6):(Active: 305.609us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 189.296us - CloseTime: 16.458us - GetBlockTime: 70.278us - OpenTime: 653ns - PrepareTime: 93.853us - SinkTime: 104.287us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 282.735us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 501.945us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 15.43 KB - CloseTime: 13.825us - CompressTime: 0ns - ExecTime: 175.0us - InputRows: 242 - LocalBytesSent: 15.56 KB - LocalSendTime: 11.273us - LocalSentRows: 242 - MemoryUsage: - PeakMemoryUsage: 19.50 KB - MergeBlockTime: 22.297us - OpenTime: 57.389us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.214ms - RowsProduced: 242 - RpcAvgTime: 737.246us - RpcCount: 1 - RpcMaxTime: 737.246us - RpcMinTime: 737.246us - RpcSumTime: 737.246us - SerializeBatchTime: 35.336us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 33.04 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 597ns - DeserializeAndMergeTime: 0ns - ExecTime: 76.671us - GetResultsTime: 25.961us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.1us - HashTableSize: 242 - InsertKeysToColumnTime: 10.790us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.311us - ProjectionTime: 35.715us - RowsProduced: 242 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s599ms PipelineXTask (index=8):(Active: 296.748us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 187.749us - CloseTime: 7.70us - GetBlockTime: 91.268us - OpenTime: 497ns - PrepareTime: 96.254us - SinkTime: 83.673us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 283.701us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 854.454us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 15.97 KB - CloseTime: 6.193us - CompressTime: 0ns - ExecTime: 145.296us - InputRows: 250 - LocalBytesSent: 16.07 KB - LocalSendTime: 13.489us - LocalSentRows: 250 - MemoryUsage: - PeakMemoryUsage: 19.50 KB - MergeBlockTime: 7.468us - OpenTime: 55.704us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.466ms - RowsProduced: 250 - RpcAvgTime: 787.825us - RpcCount: 1 - RpcMaxTime: 787.825us - RpcMinTime: 787.825us - RpcSumTime: 787.825us - SerializeBatchTime: 15.475us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 34.11 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 317ns - DeserializeAndMergeTime: 0ns - ExecTime: 101.471us - GetResultsTime: 49.916us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.966us - HashTableSize: 250 - InsertKeysToColumnTime: 14.759us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.400us - ProjectionTime: 28.384us - RowsProduced: 250 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms PipelineXTask (index=10):(Active: 210.596us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 137.575us - CloseTime: 8.932us - GetBlockTime: 68.51us - OpenTime: 683ns - PrepareTime: 57.827us - SinkTime: 55.289us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 195.400us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 814.516us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.72 KB - CloseTime: 7.770us - CompressTime: 0ns - ExecTime: 96.110us - InputRows: 232 - LocalBytesSent: 14.89 KB - LocalSendTime: 9.915us - LocalSentRows: 232 - MemoryUsage: - PeakMemoryUsage: 19.50 KB - MergeBlockTime: 5.666us - OpenTime: 33.396us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.608ms - RowsProduced: 232 - RpcAvgTime: 598.703us - RpcCount: 1 - RpcMaxTime: 598.703us - RpcMinTime: 598.703us - RpcSumTime: 598.703us - SerializeBatchTime: 16.282us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 31.64 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 300ns - DeserializeAndMergeTime: 0ns - ExecTime: 75.16us - GetResultsTime: 25.959us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.665us - HashTableSize: 232 - InsertKeysToColumnTime: 10.781us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.198us - ProjectionTime: 35.736us - RowsProduced: 232 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms PipelineXTask (index=12):(Active: 344.395us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 253.866us - CloseTime: 13.380us - GetBlockTime: 102.32us - OpenTime: 1.77us - PrepareTime: 70.880us - SinkTime: 134.113us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 324.318us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.242ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.27 KB - CloseTime: 11.219us - CompressTime: 0ns - ExecTime: 181.63us - InputRows: 208 - LocalBytesSent: 13.40 KB - LocalSendTime: 21.601us - LocalSentRows: 208 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 11.925us - OpenTime: 36.257us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.606ms - RowsProduced: 208 - RpcAvgTime: 639.944us - RpcCount: 1 - RpcMaxTime: 639.944us - RpcMinTime: 639.944us - RpcSumTime: 639.944us - SerializeBatchTime: 18.536us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 28.50 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 485ns - DeserializeAndMergeTime: 0ns - ExecTime: 108.277us - GetResultsTime: 38.132us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.110us - HashTableSize: 208 - InsertKeysToColumnTime: 17.547us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.900us - ProjectionTime: 34.422us - RowsProduced: 208 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s597ms PipelineXTask (index=14):(Active: 285.892us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 190.386us - CloseTime: 9.421us - GetBlockTime: 104.462us - OpenTime: 676ns - PrepareTime: 79.570us - SinkTime: 70.915us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 269.213us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 542.164us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.58 KB - CloseTime: 7.767us - CompressTime: 0ns - ExecTime: 124.73us - InputRows: 165 - LocalBytesSent: 10.56 KB - LocalSendTime: 15.910us - LocalSentRows: 165 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 3.731us - OpenTime: 45.693us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.196ms - RowsProduced: 165 - RpcAvgTime: 963.733us - RpcCount: 1 - RpcMaxTime: 963.733us - RpcMinTime: 963.733us - RpcSumTime: 963.733us - SerializeBatchTime: 16.30us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 22.54 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 474ns - DeserializeAndMergeTime: 0ns - ExecTime: 109.607us - GetResultsTime: 44.605us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.26us - HashTableSize: 165 - InsertKeysToColumnTime: 7.816us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.83us - ProjectionTime: 53.746us - RowsProduced: 165 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s599ms PipelineXTask (index=16):(Active: 355.646us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 170.34us - CloseTime: 7.718us - GetBlockTime: 43.853us - OpenTime: 800ns - PrepareTime: 149.376us - SinkTime: 88.897us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 245.670us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 913.344us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.39 KB - CloseTime: 6.597us - CompressTime: 0ns - ExecTime: 128.267us - InputRows: 195 - LocalBytesSent: 12.53 KB - LocalSendTime: 17.570us - LocalSentRows: 195 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 2.576us - OpenTime: 33.284us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.380ms - RowsProduced: 195 - RpcAvgTime: 757.187us - RpcCount: 1 - RpcMaxTime: 757.187us - RpcMinTime: 757.187us - RpcSumTime: 757.187us - SerializeBatchTime: 15.667us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 26.67 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 326ns - DeserializeAndMergeTime: 0ns - ExecTime: 52.574us - GetResultsTime: 18.688us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.913us - HashTableSize: 195 - InsertKeysToColumnTime: 7.418us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.822us - ProjectionTime: 19.405us - RowsProduced: 195 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms PipelineXTask (index=18):(Active: 297.52us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 191.493us - CloseTime: 9.307us - GetBlockTime: 97.80us - OpenTime: 970ns - PrepareTime: 89.607us - SinkTime: 79.7us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 281.135us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 578.566us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.06 KB - CloseTime: 7.968us - CompressTime: 0ns - ExecTime: 122.205us - InputRows: 158 - LocalBytesSent: 10.13 KB - LocalSendTime: 26.815us - LocalSentRows: 158 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 6.817us - OpenTime: 35.593us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.174ms - RowsProduced: 158 - RpcAvgTime: 901.364us - RpcCount: 1 - RpcMaxTime: 901.364us - RpcMinTime: 901.364us - RpcSumTime: 901.364us - SerializeBatchTime: 12.15us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 21.64 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 472ns - DeserializeAndMergeTime: 0ns - ExecTime: 129.891us - GetResultsTime: 40.885us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.866us - HashTableSize: 158 - InsertKeysToColumnTime: 10.318us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 32.859us - ProjectionTime: 50.355us - RowsProduced: 158 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s599ms PipelineXTask (index=20):(Active: 300.852us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 220.444us - CloseTime: 6.847us - GetBlockTime: 60.398us - OpenTime: 586ns - PrepareTime: 67.672us - SinkTime: 144.499us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 287.340us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 898.37us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.13 KB - CloseTime: 5.612us - CompressTime: 0ns - ExecTime: 183.793us - InputRows: 173 - LocalBytesSent: 11.08 KB - LocalSendTime: 15.906us - LocalSentRows: 173 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 16.513us - OpenTime: 34.171us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.168ms - RowsProduced: 173 - RpcAvgTime: 734.196us - RpcCount: 1 - RpcMaxTime: 734.196us - RpcMinTime: 734.196us - RpcSumTime: 734.196us - SerializeBatchTime: 26.567us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 23.64 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 410ns - DeserializeAndMergeTime: 0ns - ExecTime: 68.69us - GetResultsTime: 22.225us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.743us - HashTableSize: 173 - InsertKeysToColumnTime: 8.941us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.895us - ProjectionTime: 30.911us - RowsProduced: 173 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms PipelineXTask (index=22):(Active: 276.338us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 177.242us - CloseTime: 12.639us - GetBlockTime: 64.928us - OpenTime: 487ns - PrepareTime: 80.424us - SinkTime: 98.214us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 257.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 663.80us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.16 KB - CloseTime: 10.513us - CompressTime: 0ns - ExecTime: 155.244us - InputRows: 207 - LocalBytesSent: 13.26 KB - LocalSendTime: 23.751us - LocalSentRows: 207 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 17.125us - OpenTime: 46.831us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.217ms - RowsProduced: 207 - RpcAvgTime: 728.798us - RpcCount: 1 - RpcMaxTime: 728.798us - RpcMinTime: 728.798us - RpcSumTime: 728.798us - SerializeBatchTime: 31.249us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 28.21 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 437ns - DeserializeAndMergeTime: 0ns - ExecTime: 72.800us - GetResultsTime: 26.570us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.723us - HashTableSize: 207 - InsertKeysToColumnTime: 8.363us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.779us - ProjectionTime: 31.575us - RowsProduced: 207 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s598ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 996.319us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 910.742us - CloseTime: 8.419us - GetBlockTime: 188.761us - OpenTime: 3.217us - PrepareTime: 66.200us - SinkTime: 573.348us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 953.439us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.813ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.274us - DeserializeAndMergeTime: 144.805us - ExecTime: 602.805us - ExprTime: 0ns - HashTableComputeTime: 345.834us - HashTableEmplaceTime: 173.826us - HashTableInputCount: 2.335K (2335) - InputRows: 2.335K (2335) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 543.407us - OpenTime: 35.408us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 35.37 KB - CloseTime: 5.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 263.910us - ExecTime: 198.934us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 90.75 KB - MemoryUsage: - Blocks: 16.25 KB - PeakMemoryUsage: 16.25 KB - OpenTime: 17.280us - ProjectionTime: 0ns - RowsProduced: 2.335K (2335) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=3):(Active: 832.322us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 752.391us - CloseTime: 5.481us - GetBlockTime: 195.375us - OpenTime: 2.80us - PrepareTime: 65.551us - SinkTime: 410.575us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 797.481us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.175ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 885ns - DeserializeAndMergeTime: 91.178us - ExecTime: 427.518us - ExprTime: 0ns - HashTableComputeTime: 241.205us - HashTableEmplaceTime: 134.549us - HashTableInputCount: 1.865K (1865) - InputRows: 1.865K (1865) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 387.797us - OpenTime: 21.282us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 30.79 KB - CloseTime: 3.902us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 287.882us - ExecTime: 200.757us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 77.38 KB - MemoryUsage: - Blocks: 14.00 KB - PeakMemoryUsage: 14.00 KB - OpenTime: 13.194us - ProjectionTime: 0ns - RowsProduced: 1.865K (1865) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s596ms PipelineXTask (index=5):(Active: 858.14us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 793.922us - CloseTime: 6.860us - GetBlockTime: 168.283us - OpenTime: 2.437us - PrepareTime: 47.934us - SinkTime: 511.736us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 818.115us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.391ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.247us - DeserializeAndMergeTime: 143.817us - ExecTime: 517.249us - ExprTime: 0ns - HashTableComputeTime: 288.526us - HashTableEmplaceTime: 190.478us - HashTableInputCount: 2.221K (2221) - InputRows: 2.221K (2221) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 486.43us - OpenTime: 17.608us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 35.21 KB - CloseTime: 4.977us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 260.852us - ExecTime: 180.666us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 84.88 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 15.00 KB - OpenTime: 17.968us - ProjectionTime: 0ns - RowsProduced: 2.221K (2221) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=7):(Active: 896.537us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 835.218us - CloseTime: 2.753us - GetBlockTime: 175.432us - OpenTime: 3.280us - PrepareTime: 48.445us - SinkTime: 533.66us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 856.587us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.985ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 603ns - DeserializeAndMergeTime: 151.563us - ExecTime: 547.372us - ExprTime: 0ns - HashTableComputeTime: 309.362us - HashTableEmplaceTime: 183.514us - HashTableInputCount: 2.764K (2764) - InputRows: 2.764K (2764) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 515.543us - OpenTime: 19.369us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 41.52 KB - CloseTime: 1.768us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 306.977us - ExecTime: 175.630us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 115.25 KB - MemoryUsage: - Blocks: 29.50 KB - PeakMemoryUsage: 21.50 KB - OpenTime: 10.695us - ProjectionTime: 0ns - RowsProduced: 2.764K (2764) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=9):(Active: 968.735us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 904.211us - CloseTime: 3.851us - GetBlockTime: 195.92us - OpenTime: 3.440us - PrepareTime: 50.827us - SinkTime: 571.727us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 929.439us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.207ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 905ns - DeserializeAndMergeTime: 145.114us - ExecTime: 594.465us - ExprTime: 0ns - HashTableComputeTime: 340.994us - HashTableEmplaceTime: 199.312us - HashTableInputCount: 2.719K (2719) - InputRows: 2.719K (2719) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 543.404us - OpenTime: 27.86us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 41.16 KB - CloseTime: 2.287us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 366.971us - ExecTime: 197.811us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 109.00 KB - MemoryUsage: - Blocks: 19.00 KB - PeakMemoryUsage: 19.00 KB - OpenTime: 12.850us - ProjectionTime: 0ns - RowsProduced: 2.719K (2719) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=11):(Active: 857.954us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 750.720us - CloseTime: 3.765us - GetBlockTime: 167.278us - OpenTime: 2.600us - PrepareTime: 93.909us - SinkTime: 474.760us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 823.823us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.326ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.119us - DeserializeAndMergeTime: 123.724us - ExecTime: 508.423us - ExprTime: 0ns - HashTableComputeTime: 281.300us - HashTableEmplaceTime: 161.134us - HashTableInputCount: 2.214K (2214) - InputRows: 2.214K (2214) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 458.599us - OpenTime: 37.524us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 34.82 KB - CloseTime: 2.266us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 298.998us - ExecTime: 179.302us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 85.38 KB - MemoryUsage: - Blocks: 21.00 KB - PeakMemoryUsage: 15.25 KB - OpenTime: 20.317us - ProjectionTime: 0ns - RowsProduced: 2.214K (2214) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=13):(Active: 808.769us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 741.994us - CloseTime: 7.881us - GetBlockTime: 197.446us - OpenTime: 2.503us - PrepareTime: 50.217us - SinkTime: 445.530us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 772.376us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.359ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 4.360us - DeserializeAndMergeTime: 115.223us - ExecTime: 466.143us - ExprTime: 0ns - HashTableComputeTime: 255.707us - HashTableEmplaceTime: 157.203us - HashTableInputCount: 2.104K (2104) - InputRows: 2.104K (2104) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 418.896us - OpenTime: 20.497us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 33.56 KB - CloseTime: 2.795us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 274.446us - ExecTime: 199.962us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 79.63 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 15.00 KB - OpenTime: 10.995us - ProjectionTime: 0ns - RowsProduced: 2.104K (2104) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=15):(Active: 688.820us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 620.177us - CloseTime: 4.751us - GetBlockTime: 143.850us - OpenTime: 2.440us - PrepareTime: 54.879us - SinkTime: 375.765us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 656.436us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.813ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 936ns - DeserializeAndMergeTime: 96.555us - ExecTime: 399.156us - ExprTime: 0ns - HashTableComputeTime: 219.885us - HashTableEmplaceTime: 126.856us - HashTableInputCount: 1.854K (1854) - InputRows: 1.854K (1854) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 356.578us - OpenTime: 26.305us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 30.57 KB - CloseTime: 3.167us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 296.298us - ExecTime: 150.486us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 72.38 KB - MemoryUsage: - Blocks: 17.00 KB - PeakMemoryUsage: 14.00 KB - OpenTime: 14.617us - ProjectionTime: 0ns - RowsProduced: 1.854K (1854) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=17):(Active: 685.191us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 620.388us - CloseTime: 3.449us - GetBlockTime: 149.778us - OpenTime: 2.460us - PrepareTime: 52.418us - SinkTime: 371.590us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 649.325us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.473ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 782ns - DeserializeAndMergeTime: 108.597us - ExecTime: 390.547us - ExprTime: 0ns - HashTableComputeTime: 207.758us - HashTableEmplaceTime: 129.366us - HashTableInputCount: 1.96K (1960) - InputRows: 1.96K (1960) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 355.780us - OpenTime: 23.880us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 31.49 KB - CloseTime: 2.126us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 264.764us - ExecTime: 152.822us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 79.63 KB - MemoryUsage: - Blocks: 14.00 KB - PeakMemoryUsage: 14.00 KB - OpenTime: 10.765us - ProjectionTime: 0ns - RowsProduced: 1.96K (1960) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=19):(Active: 660.630us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 586.242us - CloseTime: 2.653us - GetBlockTime: 140.653us - OpenTime: 2.351us - PrepareTime: 63.61us - SinkTime: 356.77us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 629.390us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.32ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 469ns - DeserializeAndMergeTime: 104.289us - ExecTime: 378.961us - ExprTime: 0ns - HashTableComputeTime: 202.889us - HashTableEmplaceTime: 126.541us - HashTableInputCount: 1.805K (1805) - InputRows: 1.805K (1805) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 342.966us - OpenTime: 26.306us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 29.71 KB - CloseTime: 1.662us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 237.346us - ExecTime: 152.368us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 73.25 KB - MemoryUsage: - Blocks: 14.00 KB - PeakMemoryUsage: 14.00 KB - OpenTime: 18.462us - ProjectionTime: 0ns - RowsProduced: 1.805K (1805) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s594ms PipelineXTask (index=21):(Active: 717.884us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 640.926us - CloseTime: 4.0us - GetBlockTime: 169.982us - OpenTime: 2.271us - PrepareTime: 64.339us - SinkTime: 382.783us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 687.45us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.368ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 681ns - DeserializeAndMergeTime: 93.957us - ExecTime: 401.900us - ExprTime: 0ns - HashTableComputeTime: 237.34us - HashTableEmplaceTime: 155.571us - HashTableInputCount: 1.912K (1912) - InputRows: 1.912K (1912) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 369.728us - OpenTime: 22.0us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 30.58 KB - CloseTime: 2.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 267.394us - ExecTime: 181.135us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 79.63 KB - MemoryUsage: - Blocks: 14.75 KB - PeakMemoryUsage: 14.00 KB - OpenTime: 18.169us - ProjectionTime: 0ns - RowsProduced: 1.912K (1912) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms PipelineXTask (index=23):(Active: 793.457us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 718.647us - CloseTime: 15.254us - GetBlockTime: 168.604us - OpenTime: 3.245us - PrepareTime: 50.234us - SinkTime: 448.728us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 747.765us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.176ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 535ns - DeserializeAndMergeTime: 105.527us - ExecTime: 467.469us - ExprTime: 0ns - HashTableComputeTime: 272.636us - HashTableEmplaceTime: 162.351us - HashTableInputCount: 2.183K (2183) - InputRows: 2.183K (2183) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 429.746us - OpenTime: 23.631us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 34.47 KB - CloseTime: 13.853us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 280.98us - ExecTime: 183.566us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 83.25 KB - MemoryUsage: - Blocks: 18.50 KB - PeakMemoryUsage: 11.25 KB - OpenTime: 11.313us - ProjectionTime: 0ns - RowsProduced: 2.183K (2183) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s595ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 289.621us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 188.977us - CloseTime: 18.23us - GetBlockTime: 89.450us - OpenTime: 828ns - PrepareTime: 76.719us - SinkTime: 83.178us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 265.317us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.883ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.46 KB - CloseTime: 13.568us - CompressTime: 0ns - ExecTime: 134.830us - InputRows: 229 - LocalBytesSent: 14.68 KB - LocalSendTime: 15.205us - LocalSentRows: 229 - MemoryUsage: - PeakMemoryUsage: 19.50 KB - MergeBlockTime: 6.574us - OpenTime: 38.694us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.678ms - RowsProduced: 229 - RpcAvgTime: 2.679ms - RpcCount: 1 - RpcMaxTime: 2.679ms - RpcMinTime: 2.679ms - RpcSumTime: 2.679ms - SerializeBatchTime: 20.280us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 31.19 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 1.130us - DeserializeAndMergeTime: 0ns - ExecTime: 101.581us - GetResultsTime: 40.369us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.487us - HashTableSize: 229 - InsertKeysToColumnTime: 10.684us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.600us - ProjectionTime: 39.638us - RowsProduced: 229 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s593ms PipelineXTask (index=2):(Active: 440.309us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 362.685us - CloseTime: 7.798us - GetBlockTime: 188.328us - OpenTime: 345ns - PrepareTime: 65.680us - SinkTime: 158.534us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 425.884us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.942ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 15.96 KB - CloseTime: 6.616us - CompressTime: 0ns - ExecTime: 202.401us - InputRows: 259 - LocalBytesSent: 16.63 KB - LocalSendTime: 20.697us - LocalSentRows: 259 - MemoryUsage: - PeakMemoryUsage: 33.50 KB - MergeBlockTime: 28.765us - OpenTime: 37.727us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.630ms - RowsProduced: 259 - RpcAvgTime: 3.561ms - RpcCount: 1 - RpcMaxTime: 3.561ms - RpcMinTime: 3.561ms - RpcSumTime: 3.561ms - SerializeBatchTime: 48.356us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 35.53 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 209ns - DeserializeAndMergeTime: 0ns - ExecTime: 193.747us - GetResultsTime: 98.421us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.75us - HashTableSize: 259 - InsertKeysToColumnTime: 64.268us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.432us - ProjectionTime: 74.522us - RowsProduced: 259 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s593ms PipelineXTask (index=4):(Active: 295.204us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 188.730us - CloseTime: 7.822us - GetBlockTime: 83.604us - OpenTime: 404ns - PrepareTime: 87.81us - SinkTime: 82.944us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 264.118us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.858ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.46 KB - CloseTime: 6.461us - CompressTime: 0ns - ExecTime: 126.73us - InputRows: 180 - LocalBytesSent: 11.51 KB - LocalSendTime: 24.7us - LocalSentRows: 180 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 6.229us - OpenTime: 37.167us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.854ms - RowsProduced: 180 - RpcAvgTime: 3.129ms - RpcCount: 1 - RpcMaxTime: 3.129ms - RpcMinTime: 3.129ms - RpcSumTime: 3.129ms - SerializeBatchTime: 16.644us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 24.54 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 383ns - DeserializeAndMergeTime: 0ns - ExecTime: 88.597us - GetResultsTime: 45.110us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.880us - HashTableSize: 180 - InsertKeysToColumnTime: 20.499us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.235us - ProjectionTime: 31.0us - RowsProduced: 180 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s593ms PipelineXTask (index=6):(Active: 271.773us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 195.133us - CloseTime: 8.705us - GetBlockTime: 97.541us - OpenTime: 316ns - PrepareTime: 63.639us - SinkTime: 85.488us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 257.434us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.806ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.49 KB - CloseTime: 7.83us - CompressTime: 0ns - ExecTime: 126.845us - InputRows: 228 - LocalBytesSent: 14.68 KB - LocalSendTime: 12.804us - LocalSentRows: 228 - MemoryUsage: - PeakMemoryUsage: 19.50 KB - MergeBlockTime: 9.227us - OpenTime: 34.757us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.856ms - RowsProduced: 228 - RpcAvgTime: 3.115ms - RpcCount: 1 - RpcMaxTime: 3.115ms - RpcMinTime: 3.115ms - RpcSumTime: 3.115ms - SerializeBatchTime: 26.306us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 31.18 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 764ns - DeserializeAndMergeTime: 0ns - ExecTime: 102.862us - GetResultsTime: 49.814us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.3us - HashTableSize: 228 - InsertKeysToColumnTime: 27.911us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.808us - ProjectionTime: 28.609us - RowsProduced: 228 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s593ms PipelineXTask (index=8):(Active: 222.396us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 139.724us - CloseTime: 12.709us - GetBlockTime: 65.376us - OpenTime: 614ns - PrepareTime: 65.561us - SinkTime: 63.703us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 205.245us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 912.718us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.50 KB - CloseTime: 10.411us - CompressTime: 0ns - ExecTime: 103.676us - InputRows: 180 - LocalBytesSent: 11.59 KB - LocalSendTime: 13.773us - LocalSentRows: 180 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 10.40us - OpenTime: 29.859us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.949ms - RowsProduced: 180 - RpcAvgTime: 3.622ms - RpcCount: 1 - RpcMaxTime: 3.622ms - RpcMinTime: 3.622ms - RpcSumTime: 3.622ms - SerializeBatchTime: 14.806us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 24.70 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 762ns - DeserializeAndMergeTime: 0ns - ExecTime: 75.500us - GetResultsTime: 24.542us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.722us - HashTableSize: 180 - InsertKeysToColumnTime: 7.397us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.892us - ProjectionTime: 34.449us - RowsProduced: 180 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s594ms PipelineXTask (index=10):(Active: 472.347us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 383.528us - CloseTime: 23.720us - GetBlockTime: 159.363us - OpenTime: 747ns - PrepareTime: 60.326us - SinkTime: 199.928us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 442.230us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 304.707us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.91 KB - CloseTime: 19.390us - CompressTime: 0ns - ExecTime: 253.244us - InputRows: 202 - LocalBytesSent: 13.01 KB - LocalSendTime: 16.362us - LocalSentRows: 202 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 16.285us - OpenTime: 34.427us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.667ms - RowsProduced: 202 - RpcAvgTime: 2.596ms - RpcCount: 1 - RpcMaxTime: 2.596ms - RpcMinTime: 2.596ms - RpcSumTime: 2.596ms - SerializeBatchTime: 38.742us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 27.68 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 1.196us - DeserializeAndMergeTime: 0ns - ExecTime: 167.922us - GetResultsTime: 79.725us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.909us - HashTableSize: 202 - InsertKeysToColumnTime: 36.598us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.465us - ProjectionTime: 59.49us - RowsProduced: 202 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s594ms PipelineXTask (index=12):(Active: 233.486us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 158.647us - CloseTime: 9.165us - GetBlockTime: 82.253us - OpenTime: 345ns - PrepareTime: 61.265us - SinkTime: 64.729us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 219.195us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.827ms DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.15 KB - CloseTime: 7.311us - CompressTime: 0ns - ExecTime: 103.302us - InputRows: 222 - LocalBytesSent: 14.25 KB - LocalSendTime: 15.100us - LocalSentRows: 222 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 8.534us - OpenTime: 31.484us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.632ms - RowsProduced: 222 - RpcAvgTime: 3.465ms - RpcCount: 1 - RpcMaxTime: 3.465ms - RpcMinTime: 3.465ms - RpcSumTime: 3.465ms - SerializeBatchTime: 14.684us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 30.28 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 752ns - DeserializeAndMergeTime: 0ns - ExecTime: 89.659us - GetResultsTime: 34.362us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.107us - HashTableSize: 222 - InsertKeysToColumnTime: 13.466us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.185us - ProjectionTime: 41.576us - RowsProduced: 222 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s593ms PipelineXTask (index=14):(Active: 275.215us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 191.115us - CloseTime: 14.186us - GetBlockTime: 104.475us - OpenTime: 812ns - PrepareTime: 64.549us - SinkTime: 71.27us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 254.288us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 835.30us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.48 KB - CloseTime: 11.163us - CompressTime: 0ns - ExecTime: 112.690us - InputRows: 194 - LocalBytesSent: 12.45 KB - LocalSendTime: 11.430us - LocalSentRows: 194 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 9.209us - OpenTime: 31.179us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.420ms - RowsProduced: 194 - RpcAvgTime: 3.496ms - RpcCount: 1 - RpcMaxTime: 3.496ms - RpcMinTime: 3.496ms - RpcSumTime: 3.496ms - SerializeBatchTime: 19.174us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 26.51 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 1.172us - DeserializeAndMergeTime: 0ns - ExecTime: 115.974us - GetResultsTime: 57.650us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.264us - HashTableSize: 194 - InsertKeysToColumnTime: 14.675us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.570us - ProjectionTime: 38.33us - RowsProduced: 194 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s594ms PipelineXTask (index=16):(Active: 429.647us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 323.742us - CloseTime: 12.316us - GetBlockTime: 121.193us - OpenTime: 774ns - PrepareTime: 88.612us - SinkTime: 184.417us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 410.212us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 708.962us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.07 KB - CloseTime: 9.415us - CompressTime: 0ns - ExecTime: 226.867us - InputRows: 190 - LocalBytesSent: 12.15 KB - LocalSendTime: 37.267us - LocalSentRows: 190 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 8.207us - OpenTime: 33.567us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.425ms - RowsProduced: 190 - RpcAvgTime: 3.468ms - RpcCount: 1 - RpcMaxTime: 3.468ms - RpcMinTime: 3.468ms - RpcSumTime: 3.468ms - SerializeBatchTime: 27.213us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 25.88 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 931ns - DeserializeAndMergeTime: 0ns - ExecTime: 128.454us - GetResultsTime: 56.576us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.316us - HashTableSize: 190 - InsertKeysToColumnTime: 21.777us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.207us - ProjectionTime: 51.53us - RowsProduced: 190 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s594ms PipelineXTask (index=18):(Active: 388.230us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 308.695us - CloseTime: 17.186us - GetBlockTime: 136.373us - OpenTime: 1.180us - PrepareTime: 57.316us - SinkTime: 139.278us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 363.812us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 171.426us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.13 KB - CloseTime: 14.202us - CompressTime: 0ns - ExecTime: 189.710us - InputRows: 173 - LocalBytesSent: 11.13 KB - LocalSendTime: 16.654us - LocalSentRows: 173 - MemoryUsage: - PeakMemoryUsage: 16.75 KB - MergeBlockTime: 21.138us - OpenTime: 36.963us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.880ms - RowsProduced: 173 - RpcAvgTime: 3.125ms - RpcCount: 1 - RpcMaxTime: 3.125ms - RpcMinTime: 3.125ms - RpcSumTime: 3.125ms - SerializeBatchTime: 26.180us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 23.73 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 836ns - DeserializeAndMergeTime: 0ns - ExecTime: 140.468us - GetResultsTime: 62.622us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.352us - HashTableSize: 173 - InsertKeysToColumnTime: 25.172us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.743us - ProjectionTime: 51.86us - RowsProduced: 173 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s594ms PipelineXTask (index=20):(Active: 352.598us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 267.375us - CloseTime: 10.528us - GetBlockTime: 109.917us - OpenTime: 521ns - PrepareTime: 70.158us - SinkTime: 140.614us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 334.768us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 646.538us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.78 KB - CloseTime: 8.573us - CompressTime: 0ns - ExecTime: 186.748us - InputRows: 200 - LocalBytesSent: 12.86 KB - LocalSendTime: 22.941us - LocalSentRows: 200 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 7.894us - OpenTime: 38.244us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.692ms - RowsProduced: 200 - RpcAvgTime: 3.521ms - RpcCount: 1 - RpcMaxTime: 3.521ms - RpcMinTime: 3.521ms - RpcSumTime: 3.521ms - SerializeBatchTime: 25.290us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 27.36 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 528ns - DeserializeAndMergeTime: 0ns - ExecTime: 114.553us - GetResultsTime: 63.759us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.693us - HashTableSize: 200 - InsertKeysToColumnTime: 30.652us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.7us - ProjectionTime: 36.268us - RowsProduced: 200 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s594ms PipelineXTask (index=22):(Active: 275.637us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 191.285us - CloseTime: 16.174us - GetBlockTime: 79.321us - OpenTime: 500ns - PrepareTime: 63.382us - SinkTime: 100.640us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 254.114us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 528.34us DATA_STREAM_SINK_OPERATOR (id=252,dst_id=252): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 16.45 KB - CloseTime: 12.880us - CompressTime: 0ns - ExecTime: 150.918us - InputRows: 273 - LocalBytesSent: 17.55 KB - LocalSendTime: 19.645us - LocalSentRows: 273 - MemoryUsage: - PeakMemoryUsage: 33.50 KB - MergeBlockTime: 9.284us - OpenTime: 37.553us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.751ms - RowsProduced: 273 - RpcAvgTime: 3.506ms - RpcCount: 1 - RpcMaxTime: 3.506ms - RpcMinTime: 3.506ms - RpcSumTime: 3.506ms - SerializeBatchTime: 19.356us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 37.47 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=251): - BlocksProduced: 1 - CloseTime: 1.62us - DeserializeAndMergeTime: 0ns - ExecTime: 90.293us - GetResultsTime: 38.400us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.627us - HashTableSize: 273 - InsertKeysToColumnTime: 13.839us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.158us - ProjectionTime: 34.872us - RowsProduced: 273 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s595ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 802.267us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 711.23us - CloseTime: 6.458us - GetBlockTime: 147.554us - OpenTime: 2.633us - PrepareTime: 76.780us - SinkTime: 504.864us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 782.43us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.16ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 1.325us - DeserializeAndMergeTime: 132.760us - ExecTime: 543.670us - ExprTime: 0ns - HashTableComputeTime: 313.455us - HashTableEmplaceTime: 187.440us - HashTableInputCount: 2.514K (2514) - InputRows: 2.514K (2514) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 488.195us - OpenTime: 41.541us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 31.97 KB - CloseTime: 4.242us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 256.447us - ExecTime: 162.610us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 131.25 KB - MemoryUsage: - Blocks: 149.75 KB - PeakMemoryUsage: 49.25 KB - OpenTime: 19.63us - ProjectionTime: 0ns - RowsProduced: 2.514K (2514) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s583ms PipelineXTask (index=3):(Active: 765.143us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 692.88us - CloseTime: 9.247us - GetBlockTime: 143.0us - OpenTime: 1.622us - PrepareTime: 57.884us - SinkTime: 503.937us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 744.360us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.406ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 5.285us - DeserializeAndMergeTime: 154.715us - ExecTime: 523.218us - ExprTime: 0ns - HashTableComputeTime: 284.596us - HashTableEmplaceTime: 148.619us - HashTableInputCount: 2.756K (2756) - InputRows: 2.756K (2756) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 484.132us - OpenTime: 18.485us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 34.32 KB - CloseTime: 3.442us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 278.540us - ExecTime: 156.582us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 139.25 KB - MemoryUsage: - Blocks: 161.50 KB - PeakMemoryUsage: 54.00 KB - OpenTime: 17.82us - ProjectionTime: 0ns - RowsProduced: 2.756K (2756) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s582ms PipelineXTask (index=5):(Active: 799.264us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 736.327us - CloseTime: 3.319us - GetBlockTime: 164.311us - OpenTime: 2.550us - PrepareTime: 51.184us - SinkTime: 511.613us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 780.666us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.677ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 536ns - DeserializeAndMergeTime: 141.236us - ExecTime: 527.433us - ExprTime: 0ns - HashTableComputeTime: 303.113us - HashTableEmplaceTime: 146.880us - HashTableInputCount: 1.833K (1833) - InputRows: 1.833K (1833) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 495.229us - OpenTime: 20.176us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 25.39 KB - CloseTime: 2.266us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 229.376us - ExecTime: 170.939us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 88.75 KB - MemoryUsage: - Blocks: 96.25 KB - PeakMemoryUsage: 22.75 KB - OpenTime: 14.764us - ProjectionTime: 0ns - RowsProduced: 1.833K (1833) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s583ms PipelineXTask (index=7):(Active: 621.627us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 554.24us - CloseTime: 2.659us - GetBlockTime: 113.58us - OpenTime: 3.108us - PrepareTime: 57.162us - SinkTime: 395.975us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 607.559us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.920ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 501ns - DeserializeAndMergeTime: 95.877us - ExecTime: 419.463us - ExprTime: 0ns - HashTableComputeTime: 246.153us - HashTableEmplaceTime: 156.279us - HashTableInputCount: 2.246K (2246) - InputRows: 2.246K (2246) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 384.808us - OpenTime: 26.20us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 29.23 KB - CloseTime: 1.664us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 293.557us - ExecTime: 123.104us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 108.50 KB - MemoryUsage: - Blocks: 120.75 KB - PeakMemoryUsage: 35.13 KB - OpenTime: 14.311us - ProjectionTime: 0ns - RowsProduced: 2.246K (2246) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s583ms PipelineXTask (index=9):(Active: 620.318us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 560.838us - CloseTime: 2.664us - GetBlockTime: 140.449us - OpenTime: 1.980us - PrepareTime: 50.920us - SinkTime: 379.731us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 607.639us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.436ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 667ns - DeserializeAndMergeTime: 108.575us - ExecTime: 396.477us - ExprTime: 0ns - HashTableComputeTime: 227.316us - HashTableEmplaceTime: 125.718us - HashTableInputCount: 1.966K (1966) - InputRows: 1.966K (1966) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 368.764us - OpenTime: 19.369us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 27.88 KB - CloseTime: 1.335us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 226.72us - ExecTime: 152.645us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 89.00 KB - MemoryUsage: - Blocks: 122.25 KB - PeakMemoryUsage: 43.25 KB - OpenTime: 15.997us - ProjectionTime: 0ns - RowsProduced: 1.966K (1966) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s582ms PipelineXTask (index=11):(Active: 675.615us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 605.810us - CloseTime: 3.996us - GetBlockTime: 125.81us - OpenTime: 1.994us - PrepareTime: 59.82us - SinkTime: 429.604us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 657.233us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.596ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 693ns - DeserializeAndMergeTime: 118.773us - ExecTime: 444.997us - ExprTime: 0ns - HashTableComputeTime: 249.457us - HashTableEmplaceTime: 136.814us - HashTableInputCount: 2.123K (2123) - InputRows: 2.123K (2123) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 404.193us - OpenTime: 17.823us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 27.84 KB - CloseTime: 2.663us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 204.995us - ExecTime: 144.811us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 97.25 KB - MemoryUsage: - Blocks: 107.00 KB - PeakMemoryUsage: 24.38 KB - OpenTime: 25.972us - ProjectionTime: 0ns - RowsProduced: 2.123K (2123) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s584ms PipelineXTask (index=13):(Active: 837.926us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 732.805us - CloseTime: 11.320us - GetBlockTime: 159.787us - OpenTime: 2.12us - PrepareTime: 87.337us - SinkTime: 520.762us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 813.942us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.114ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 9.100us - DeserializeAndMergeTime: 149.300us - ExecTime: 543.889us - ExprTime: 0ns - HashTableComputeTime: 304.29us - HashTableEmplaceTime: 165.836us - HashTableInputCount: 2.218K (2218) - InputRows: 2.218K (2218) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 504.274us - OpenTime: 19.607us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 29.40 KB - CloseTime: 1.649us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 240.111us - ExecTime: 174.121us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 109.25 KB - MemoryUsage: - Blocks: 131.50 KB - PeakMemoryUsage: 44.88 KB - OpenTime: 20.455us - ProjectionTime: 0ns - RowsProduced: 2.218K (2218) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s582ms PipelineXTask (index=15):(Active: 740.504us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 669.303us - CloseTime: 4.60us - GetBlockTime: 140.444us - OpenTime: 2.164us - PrepareTime: 60.641us - SinkTime: 472.796us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 722.475us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.953ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 657ns - DeserializeAndMergeTime: 128.178us - ExecTime: 491.84us - ExprTime: 0ns - HashTableComputeTime: 269.636us - HashTableEmplaceTime: 142.684us - HashTableInputCount: 2.077K (2077) - InputRows: 2.077K (2077) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 458.119us - OpenTime: 21.774us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 27.82 KB - CloseTime: 2.867us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 255.263us - ExecTime: 154.462us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 104.50 KB - MemoryUsage: - Blocks: 134.25 KB - PeakMemoryUsage: 50.38 KB - OpenTime: 17.401us - ProjectionTime: 0ns - RowsProduced: 2.077K (2077) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s584ms PipelineXTask (index=17):(Active: 547.25us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 471.992us - CloseTime: 2.752us - GetBlockTime: 116.779us - OpenTime: 1.798us - PrepareTime: 66.593us - SinkTime: 320.183us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 535.73us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.973ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 577ns - DeserializeAndMergeTime: 88.172us - ExecTime: 346.169us - ExprTime: 0ns - HashTableComputeTime: 191.68us - HashTableEmplaceTime: 99.207us - HashTableInputCount: 2.041K (2041) - InputRows: 2.041K (2041) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 310.91us - OpenTime: 28.298us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 28.99 KB - CloseTime: 1.601us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 228.383us - ExecTime: 134.883us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 97.00 KB - MemoryUsage: - Blocks: 113.75 KB - PeakMemoryUsage: 32.50 KB - OpenTime: 21.462us - ProjectionTime: 0ns - RowsProduced: 2.041K (2041) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s583ms PipelineXTask (index=19):(Active: 799.359us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 708.934us - CloseTime: 4.700us - GetBlockTime: 144.549us - OpenTime: 3.104us - PrepareTime: 78.546us - SinkTime: 505.966us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 782.746us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.299ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 2.132us - DeserializeAndMergeTime: 140.337us - ExecTime: 523.573us - ExprTime: 0ns - HashTableComputeTime: 272.814us - HashTableEmplaceTime: 141.895us - HashTableInputCount: 1.788K (1788) - InputRows: 1.788K (1788) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 480.510us - OpenTime: 21.207us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 25.41 KB - CloseTime: 1.940us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 208.933us - ExecTime: 154.744us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 87.75 KB - MemoryUsage: - Blocks: 93.50 KB - PeakMemoryUsage: 19.50 KB - OpenTime: 16.65us - ProjectionTime: 0ns - RowsProduced: 1.788K (1788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s583ms PipelineXTask (index=21):(Active: 728.414us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 660.87us - CloseTime: 6.25us - GetBlockTime: 121.211us - OpenTime: 2.893us - PrepareTime: 54.280us - SinkTime: 469.754us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 707.769us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.578ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 734ns - DeserializeAndMergeTime: 129.408us - ExecTime: 487.995us - ExprTime: 0ns - HashTableComputeTime: 267.733us - HashTableEmplaceTime: 147.330us - HashTableInputCount: 2.19K (2190) - InputRows: 2.19K (2190) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.03 MB - SerializeKeyArena: 1.02 MB - MergeTime: 454.486us - OpenTime: 21.423us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 28.73 KB - CloseTime: 4.379us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 226.948us - ExecTime: 127.998us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 103.50 KB - MemoryUsage: - Blocks: 108.00 KB - PeakMemoryUsage: 26.25 KB - OpenTime: 12.501us - ProjectionTime: 0ns - RowsProduced: 2.19K (2190) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s585ms PipelineXTask (index=23):(Active: 834.267us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 754.81us - CloseTime: 5.534us - GetBlockTime: 142.656us - OpenTime: 2.87us - PrepareTime: 67.413us - SinkTime: 558.312us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 814.980us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.784ms AGGREGATION_SINK_OPERATOR (id=251): - BuildTime: 0ns - CloseTime: 646ns - DeserializeAndMergeTime: 164.30us - ExecTime: 596.741us - ExprTime: 0ns - HashTableComputeTime: 343.880us - HashTableEmplaceTime: 191.779us - HashTableInputCount: 2.68K (2680) - InputRows: 2.68K (2680) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 1.04 MB - SerializeKeyArena: 1.02 MB - MergeTime: 545.420us - OpenTime: 41.511us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=250): - BlocksProduced: 36 - BytesReceived: 32.56 KB - CloseTime: 3.677us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 248.475us - ExecTime: 152.12us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 141.00 KB - MemoryUsage: - Blocks: 125.50 KB - PeakMemoryUsage: 27.13 KB - OpenTime: 12.651us - ProjectionTime: 0ns - RowsProduced: 2.68K (2680) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s585ms Fragment 56: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.999ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.622ms - CloseTime: 123.799us - GetBlockTime: 1.758ms - OpenTime: 8.994us - PrepareTime: 235.530us - SinkTime: 818.570us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.865ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.649ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.60 KB - CloseTime: 12.398us - CompressTime: 0ns - ExecTime: 943.1us - InputRows: 1.113K (1113) - LocalBytesSent: 33.71 KB - LocalSendTime: 102.668us - LocalSentRows: 576 - MemoryUsage: - PeakMemoryUsage: 101.63 KB - MergeBlockTime: 0ns - OpenTime: 112.751us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.982ms - RowsProduced: 1.113K (1113) - RpcAvgTime: 25.663ms - RpcCount: 12 - RpcMaxTime: 25.754ms - RpcMinTime: 25.499ms - RpcSumTime: 307.965ms - SerializeBatchTime: 96.836us - SplitBlockDistributeByChannelTime: 200.578us - SplitBlockHashComputeTime: 26.973us - UncompressedRowBatchSize: 33.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 605.261us - CloseTime: 82.200us - DeserializeAndMergeTime: 0ns - ExecTime: 873.449us - ExprTime: 76.751us - GetResultsTime: 145.614us - HashTableComputeTime: 510.867us - HashTableEmplaceTime: 408.327us - HashTableInputCount: 3.006K (3006) - HashTableIterateTime: 5.243us - HashTableSize: 1.113K (1113) - InsertKeysToColumnTime: 43.449us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 1.12 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 29.738us - ProjectionTime: 0ns - RowsProduced: 1.113K (1113) - SerializeDataTime: 80.806us - SerializeKeyTime: 0ns - SerializeResultTime: 147.868us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 18.634us - ExecTime: 1.15ms - InitProbeSideTime: 19.78us - JoinFilterTimer: 125ns - MemoryUsage: - PeakMemoryUsage: 3.73 KB - ProbeKeyArena: 3.73 KB - OpenTime: 20.706us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 791ns - ProbeFindNextTime: 0ns - ProbeRows: 239 - ProbeTime: 250.118us - ProbeWhenBuildSideOutputTime: 124.428us - ProbeWhenProbeSideOutputTime: 37.155us - ProbeWhenProcessHashTableTime: 7.15us - ProbeWhenSearchHashTableTime: 10.763us - ProjectionTime: 719.114us - RowsProduced: 3.006K (3006) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s412ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.14 KB - CloseTime: 6.819us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 21.875us - ExecTime: 24.820us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.742us - ProjectionTime: 0ns - RowsProduced: 239 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=2):(Active: 5.404ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.868ms - CloseTime: 261.38us - GetBlockTime: 3.362ms - OpenTime: 7.190us - PrepareTime: 262.8us - SinkTime: 1.466ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.134ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.673ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.53 KB - CloseTime: 14.627us - CompressTime: 0ns - ExecTime: 1.572ms - InputRows: 1.929K (1929) - LocalBytesSent: 55.55 KB - LocalSendTime: 189.464us - LocalSentRows: 949 - MemoryUsage: - PeakMemoryUsage: 174.75 KB - MergeBlockTime: 0ns - OpenTime: 92.325us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 31.778ms - RowsProduced: 1.929K (1929) - RpcAvgTime: 27.810ms - RpcCount: 12 - RpcMaxTime: 28.105ms - RpcMinTime: 27.447ms - RpcSumTime: 333.726ms - SerializeBatchTime: 236.264us - SplitBlockDistributeByChannelTime: 324.48us - SplitBlockHashComputeTime: 75.949us - UncompressedRowBatchSize: 61.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.305ms - CloseTime: 203.345us - DeserializeAndMergeTime: 0ns - ExecTime: 1.835ms - ExprTime: 74.433us - GetResultsTime: 268.827us - HashTableComputeTime: 1.182ms - HashTableEmplaceTime: 947.823us - HashTableInputCount: 5.829K (5829) - HashTableIterateTime: 9.474us - HashTableSize: 1.929K (1929) - InsertKeysToColumnTime: 96.809us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.16 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 44.369us - ProjectionTime: 0ns - RowsProduced: 1.929K (1929) - SerializeDataTime: 146.841us - SerializeKeyTime: 0ns - SerializeResultTime: 270.420us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 14.703us - ExecTime: 1.757ms - InitProbeSideTime: 7.724us - JoinFilterTimer: 287ns - MemoryUsage: - PeakMemoryUsage: 3.80 KB - ProbeKeyArena: 3.80 KB - OpenTime: 23.279us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 544ns - ProbeFindNextTime: 0ns - ProbeRows: 243 - ProbeTime: 446.205us - ProbeWhenBuildSideOutputTime: 226.42us - ProbeWhenProbeSideOutputTime: 85.958us - ProbeWhenProcessHashTableTime: 15.430us - ProbeWhenSearchHashTableTime: 22.384us - ProjectionTime: 1.265ms - RowsProduced: 5.829K (5829) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s412ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.12 KB - CloseTime: 15.612us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.884us - ExecTime: 50.290us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 28.204us - ProjectionTime: 0ns - RowsProduced: 243 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=4):(Active: 8.628ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.110ms - CloseTime: 237.883us - GetBlockTime: 7.36ms - OpenTime: 5.677us - PrepareTime: 269.202us - SinkTime: 1.25ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.381ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.371ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.36 KB - CloseTime: 12.842us - CompressTime: 0ns - ExecTime: 1.156ms - InputRows: 2.184K (2184) - LocalBytesSent: 63.94 KB - LocalSendTime: 83.946us - LocalSentRows: 1.093K (1093) - MemoryUsage: - PeakMemoryUsage: 186.75 KB - MergeBlockTime: 0ns - OpenTime: 118.908us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 27.729ms - RowsProduced: 2.184K (2184) - RpcAvgTime: 23.719ms - RpcCount: 12 - RpcMaxTime: 23.844ms - RpcMinTime: 23.601ms - RpcSumTime: 284.638ms - SerializeBatchTime: 152.539us - SplitBlockDistributeByChannelTime: 331.987us - SplitBlockHashComputeTime: 54.919us - UncompressedRowBatchSize: 68.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.63ms - CloseTime: 185.499us - DeserializeAndMergeTime: 0ns - ExecTime: 2.698ms - ExprTime: 183.598us - GetResultsTime: 394.446us - HashTableComputeTime: 1.783ms - HashTableEmplaceTime: 1.391ms - HashTableInputCount: 9.984K (9984) - HashTableIterateTime: 19.143us - HashTableSize: 2.184K (2184) - InsertKeysToColumnTime: 163.807us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.16 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 32.616us - ProjectionTime: 0ns - RowsProduced: 2.184K (2184) - SerializeDataTime: 185.793us - SerializeKeyTime: 0ns - SerializeResultTime: 396.921us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 21.322us - ExecTime: 4.496ms - InitProbeSideTime: 27.31us - JoinFilterTimer: 732ns - MemoryUsage: - PeakMemoryUsage: 3.58 KB - ProbeKeyArena: 3.58 KB - OpenTime: 27.341us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 718ns - ProbeFindNextTime: 0ns - ProbeRows: 229 - ProbeTime: 1.487ms - ProbeWhenBuildSideOutputTime: 852.425us - ProbeWhenProbeSideOutputTime: 266.814us - ProbeWhenProcessHashTableTime: 24.716us - ProbeWhenSearchHashTableTime: 123.640us - ProjectionTime: 2.942ms - RowsProduced: 9.984K (9984) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s413ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.01 KB - CloseTime: 5.2us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.428us - ExecTime: 38.746us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.138us - ProjectionTime: 0ns - RowsProduced: 229 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=6):(Active: 9.768ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.261ms - CloseTime: 260.140us - GetBlockTime: 7.554ms - OpenTime: 5.544us - PrepareTime: 234.948us - SinkTime: 1.662ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.497ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.53ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 34.83 KB - CloseTime: 13.360us - CompressTime: 0ns - ExecTime: 1.786ms - InputRows: 2.502K (2502) - LocalBytesSent: 73.17 KB - LocalSendTime: 173.896us - LocalSentRows: 1.25K (1250) - MemoryUsage: - PeakMemoryUsage: 216.25 KB - MergeBlockTime: 0ns - OpenTime: 112.322us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.475ms - RowsProduced: 2.502K (2502) - RpcAvgTime: 22.797ms - RpcCount: 12 - RpcMaxTime: 23.139ms - RpcMinTime: 22.487ms - RpcSumTime: 273.574ms - SerializeBatchTime: 271.89us - SplitBlockDistributeByChannelTime: 410.481us - SplitBlockHashComputeTime: 129.307us - UncompressedRowBatchSize: 77.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.557ms - CloseTime: 219.219us - DeserializeAndMergeTime: 0ns - ExecTime: 3.510ms - ExprTime: 186.346us - GetResultsTime: 664.80us - HashTableComputeTime: 2.249ms - HashTableEmplaceTime: 1.818ms - HashTableInputCount: 8.889K (8889) - HashTableIterateTime: 22.40us - HashTableSize: 2.502K (2502) - InsertKeysToColumnTime: 228.481us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 35.57us - ProjectionTime: 0ns - RowsProduced: 2.502K (2502) - SerializeDataTime: 378.57us - SerializeKeyTime: 0ns - SerializeResultTime: 666.763us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 16.106us - ExecTime: 4.242ms - InitProbeSideTime: 12.722us - JoinFilterTimer: 753ns - MemoryUsage: - PeakMemoryUsage: 3.70 KB - ProbeKeyArena: 3.70 KB - OpenTime: 15.570us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 656ns - ProbeFindNextTime: 0ns - ProbeRows: 237 - ProbeTime: 1.79ms - ProbeWhenBuildSideOutputTime: 640.570us - ProbeWhenProbeSideOutputTime: 163.931us - ProbeWhenProcessHashTableTime: 26.712us - ProbeWhenSearchHashTableTime: 105.259us - ProjectionTime: 3.120ms - RowsProduced: 8.889K (8889) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s413ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.13 KB - CloseTime: 6.695us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.794us - ExecTime: 29.158us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.672us - ProjectionTime: 0ns - RowsProduced: 237 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=8):(Active: 6.721ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.87ms - CloseTime: 374.767us - GetBlockTime: 4.712ms - OpenTime: 6.187us - PrepareTime: 246.586us - SinkTime: 1.330ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.336ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.553ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.00 KB - CloseTime: 13.780us - CompressTime: 0ns - ExecTime: 1.440ms - InputRows: 2.129K (2129) - LocalBytesSent: 62.90 KB - LocalSendTime: 173.547us - LocalSentRows: 1.075K (1075) - MemoryUsage: - PeakMemoryUsage: 178.75 KB - MergeBlockTime: 0ns - OpenTime: 97.166us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.577ms - RowsProduced: 2.129K (2129) - RpcAvgTime: 25.663ms - RpcCount: 12 - RpcMaxTime: 25.861ms - RpcMinTime: 25.390ms - RpcSumTime: 307.967ms - SerializeBatchTime: 224.467us - SplitBlockDistributeByChannelTime: 325.359us - SplitBlockHashComputeTime: 77.106us - UncompressedRowBatchSize: 66.11 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.792ms - CloseTime: 337.389us - DeserializeAndMergeTime: 0ns - ExecTime: 2.503ms - ExprTime: 121.148us - GetResultsTime: 314.435us - HashTableComputeTime: 1.613ms - HashTableEmplaceTime: 1.282ms - HashTableInputCount: 6.088K (6088) - HashTableIterateTime: 15.312us - HashTableSize: 2.129K (2129) - InsertKeysToColumnTime: 109.85us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.16 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 42.134us - ProjectionTime: 0ns - RowsProduced: 2.129K (2129) - SerializeDataTime: 170.128us - SerializeKeyTime: 0ns - SerializeResultTime: 316.459us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 13.876us - ExecTime: 2.569ms - InitProbeSideTime: 11.694us - JoinFilterTimer: 553ns - MemoryUsage: - PeakMemoryUsage: 3.41 KB - ProbeKeyArena: 3.41 KB - OpenTime: 15.709us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 789ns - ProbeFindNextTime: 0ns - ProbeRows: 218 - ProbeTime: 660.63us - ProbeWhenBuildSideOutputTime: 347.229us - ProbeWhenProbeSideOutputTime: 116.809us - ProbeWhenProcessHashTableTime: 24.954us - ProbeWhenSearchHashTableTime: 54.172us - ProjectionTime: 1.868ms - RowsProduced: 6.088K (6088) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s413ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 2.84 KB - CloseTime: 5.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.630us - ExecTime: 52.72us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 4.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 33.839us - ProjectionTime: 0ns - RowsProduced: 218 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=10):(Active: 6.342ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.726ms - CloseTime: 324.815us - GetBlockTime: 4.481ms - OpenTime: 6.367us - PrepareTime: 279.271us - SinkTime: 1.207ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.9ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.471ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.06 KB - CloseTime: 18.28us - CompressTime: 0ns - ExecTime: 1.355ms - InputRows: 1.702K (1702) - LocalBytesSent: 48.71 KB - LocalSendTime: 106.636us - LocalSentRows: 833 - MemoryUsage: - PeakMemoryUsage: 160.75 KB - MergeBlockTime: 0ns - OpenTime: 131.76us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.523ms - RowsProduced: 1.702K (1702) - RpcAvgTime: 25.513ms - RpcCount: 12 - RpcMaxTime: 25.690ms - RpcMinTime: 25.336ms - RpcSumTime: 306.165ms - SerializeBatchTime: 181.939us - SplitBlockDistributeByChannelTime: 383.51us - SplitBlockHashComputeTime: 58.770us - UncompressedRowBatchSize: 54.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.423ms - CloseTime: 269.480us - DeserializeAndMergeTime: 0ns - ExecTime: 2.71ms - ExprTime: 106.953us - GetResultsTime: 313.90us - HashTableComputeTime: 1.247ms - HashTableEmplaceTime: 1.0ms - HashTableInputCount: 6.092K (6092) - HashTableIterateTime: 12.349us - HashTableSize: 1.702K (1702) - InsertKeysToColumnTime: 107.661us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 1.12 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 50.117us - ProjectionTime: 0ns - RowsProduced: 1.702K (1702) - SerializeDataTime: 182.920us - SerializeKeyTime: 0ns - SerializeResultTime: 314.492us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 22.9us - ExecTime: 2.720ms - InitProbeSideTime: 12.684us - JoinFilterTimer: 647ns - MemoryUsage: - PeakMemoryUsage: 3.63 KB - ProbeKeyArena: 3.63 KB - OpenTime: 17.344us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 681ns - ProbeFindNextTime: 0ns - ProbeRows: 232 - ProbeTime: 733.822us - ProbeWhenBuildSideOutputTime: 408.184us - ProbeWhenProbeSideOutputTime: 125.177us - ProbeWhenProcessHashTableTime: 15.361us - ProbeWhenSearchHashTableTime: 64.779us - ProjectionTime: 1.938ms - RowsProduced: 6.092K (6092) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s413ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.00 KB - CloseTime: 8.543us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.205us - ExecTime: 46.646us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 24.343us - ProjectionTime: 0ns - RowsProduced: 232 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=12):(Active: 4.512ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.16ms - CloseTime: 259.792us - GetBlockTime: 3.141ms - OpenTime: 10.61us - PrepareTime: 220.3us - SinkTime: 818.158us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.231ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 141.490ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.50 KB - CloseTime: 15.608us - CompressTime: 0ns - ExecTime: 936.47us - InputRows: 2.195K (2195) - LocalBytesSent: 63.53 KB - LocalSendTime: 96.549us - LocalSentRows: 1.086K (1086) - MemoryUsage: - PeakMemoryUsage: 190.50 KB - MergeBlockTime: 0ns - OpenTime: 102.733us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 30.86ms - RowsProduced: 2.195K (2195) - RpcAvgTime: 25.938ms - RpcCount: 12 - RpcMaxTime: 26.94ms - RpcMinTime: 25.806ms - RpcSumTime: 311.256ms - SerializeBatchTime: 155.532us - SplitBlockDistributeByChannelTime: 188.790us - SplitBlockHashComputeTime: 50.640us - UncompressedRowBatchSize: 69.37 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.236ms - CloseTime: 198.177us - DeserializeAndMergeTime: 0ns - ExecTime: 1.704ms - ExprTime: 63.934us - GetResultsTime: 218.195us - HashTableComputeTime: 1.126ms - HashTableEmplaceTime: 923.9us - HashTableInputCount: 5.414K (5414) - HashTableIterateTime: 10.25us - HashTableSize: 2.195K (2195) - InsertKeysToColumnTime: 78.400us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.16 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 31.717us - ProjectionTime: 0ns - RowsProduced: 2.195K (2195) - SerializeDataTime: 116.97us - SerializeKeyTime: 0ns - SerializeResultTime: 219.306us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 32.517us - ExecTime: 1.689ms - InitProbeSideTime: 12.114us - JoinFilterTimer: 405ns - MemoryUsage: - PeakMemoryUsage: 3.67 KB - ProbeKeyArena: 3.67 KB - OpenTime: 19.664us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 484ns - ProbeFindNextTime: 0ns - ProbeRows: 235 - ProbeTime: 524.619us - ProbeWhenBuildSideOutputTime: 298.460us - ProbeWhenProbeSideOutputTime: 95.932us - ProbeWhenProcessHashTableTime: 15.363us - ProbeWhenSearchHashTableTime: 30.886us - ProjectionTime: 1.104ms - RowsProduced: 5.414K (5414) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s331ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.11 KB - CloseTime: 8.151us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 9.512us - ExecTime: 26.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.451us - ProjectionTime: 0ns - RowsProduced: 235 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=14):(Active: 6.896ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.434ms - CloseTime: 224.153us - GetBlockTime: 5.193ms - OpenTime: 9.18us - PrepareTime: 222.792us - SinkTime: 1.193ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.661ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.412ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 31.28 KB - CloseTime: 11.427us - CompressTime: 0ns - ExecTime: 1.293ms - InputRows: 2.247K (2247) - LocalBytesSent: 65.78 KB - LocalSendTime: 85.652us - LocalSentRows: 1.124K (1124) - MemoryUsage: - PeakMemoryUsage: 182.75 KB - MergeBlockTime: 0ns - OpenTime: 88.591us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 27.707ms - RowsProduced: 2.247K (2247) - RpcAvgTime: 23.721ms - RpcCount: 12 - RpcMaxTime: 23.935ms - RpcMinTime: 23.563ms - RpcSumTime: 284.653ms - SerializeBatchTime: 185.84us - SplitBlockDistributeByChannelTime: 338.420us - SplitBlockHashComputeTime: 54.821us - UncompressedRowBatchSize: 70.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.710ms - CloseTime: 178.648us - DeserializeAndMergeTime: 0ns - ExecTime: 2.283ms - ExprTime: 144.937us - GetResultsTime: 335.218us - HashTableComputeTime: 1.491ms - HashTableEmplaceTime: 1.114ms - HashTableInputCount: 11.326K (11326) - HashTableIterateTime: 14.305us - HashTableSize: 2.247K (2247) - InsertKeysToColumnTime: 99.712us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 34.719us - ProjectionTime: 0ns - RowsProduced: 2.247K (2247) - SerializeDataTime: 198.61us - SerializeKeyTime: 0ns - SerializeResultTime: 337.508us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 25.802us - ExecTime: 3.101ms - InitProbeSideTime: 25.587us - JoinFilterTimer: 574ns - MemoryUsage: - PeakMemoryUsage: 3.66 KB - ProbeKeyArena: 3.66 KB - OpenTime: 23.668us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 558ns - ProbeFindNextTime: 0ns - ProbeRows: 234 - ProbeTime: 948.811us - ProbeWhenBuildSideOutputTime: 556.513us - ProbeWhenProbeSideOutputTime: 128.805us - ProbeWhenProcessHashTableTime: 30.817us - ProbeWhenSearchHashTableTime: 83.33us - ProjectionTime: 2.93ms - RowsProduced: 11.326K (11326) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s407ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.08 KB - CloseTime: 4.741us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.633us - ExecTime: 23.746us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.472us - ProjectionTime: 0ns - RowsProduced: 234 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms PipelineXTask (index=16):(Active: 3.184ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.769ms - CloseTime: 132.821us - GetBlockTime: 1.855ms - OpenTime: 9.301us - PrepareTime: 250.639us - SinkTime: 875.372us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.41ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.80ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 24.71 KB - CloseTime: 10.851us - CompressTime: 0ns - ExecTime: 978.322us - InputRows: 1.418K (1418) - LocalBytesSent: 41.26 KB - LocalSendTime: 92.707us - LocalSentRows: 705 - MemoryUsage: - PeakMemoryUsage: 131.50 KB - MergeBlockTime: 0ns - OpenTime: 93.30us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.728ms - RowsProduced: 1.418K (1418) - RpcAvgTime: 24.604ms - RpcCount: 12 - RpcMaxTime: 24.653ms - RpcMinTime: 24.499ms - RpcSumTime: 295.251ms - SerializeBatchTime: 136.930us - SplitBlockDistributeByChannelTime: 198.906us - SplitBlockHashComputeTime: 54.108us - UncompressedRowBatchSize: 44.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 696.47us - CloseTime: 95.346us - DeserializeAndMergeTime: 0ns - ExecTime: 1.21ms - ExprTime: 37.978us - GetResultsTime: 167.527us - HashTableComputeTime: 641.359us - HashTableEmplaceTime: 520.322us - HashTableInputCount: 3.029K (3029) - HashTableIterateTime: 13.95us - HashTableSize: 1.418K (1418) - InsertKeysToColumnTime: 47.522us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 1.12 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 55.714us - ProjectionTime: 0ns - RowsProduced: 1.418K (1418) - SerializeDataTime: 88.121us - SerializeKeyTime: 0ns - SerializeResultTime: 168.972us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 15.397us - ExecTime: 1.0ms - InitProbeSideTime: 7.285us - JoinFilterTimer: 217ns - MemoryUsage: - PeakMemoryUsage: 3.61 KB - ProbeKeyArena: 3.61 KB - OpenTime: 20.121us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 558ns - ProbeFindNextTime: 0ns - ProbeRows: 231 - ProbeTime: 233.235us - ProbeWhenBuildSideOutputTime: 115.890us - ProbeWhenProbeSideOutputTime: 39.923us - ProbeWhenProcessHashTableTime: 8.738us - ProbeWhenSearchHashTableTime: 11.396us - ProjectionTime: 725.369us - RowsProduced: 3.029K (3029) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s379ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.05 KB - CloseTime: 7.464us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.309us - ExecTime: 30.558us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.855us - ProjectionTime: 0ns - RowsProduced: 231 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s77ms PipelineXTask (index=18):(Active: 4.240ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.761ms - CloseTime: 186.377us - GetBlockTime: 2.739ms - OpenTime: 9.332us - PrepareTime: 277.191us - SinkTime: 975.563us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.44ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 143.293ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.81 KB - CloseTime: 12.543us - CompressTime: 0ns - ExecTime: 1.108ms - InputRows: 1.688K (1688) - LocalBytesSent: 49.88 KB - LocalSendTime: 101.386us - LocalSentRows: 852 - MemoryUsage: - PeakMemoryUsage: 162.25 KB - MergeBlockTime: 0ns - OpenTime: 121.419us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 32.390ms - RowsProduced: 1.688K (1688) - RpcAvgTime: 27.171ms - RpcCount: 12 - RpcMaxTime: 28.173ms - RpcMinTime: 24.404ms - RpcSumTime: 326.62ms - SerializeBatchTime: 170.609us - SplitBlockDistributeByChannelTime: 231.927us - SplitBlockHashComputeTime: 35.426us - UncompressedRowBatchSize: 52.10 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 917.908us - CloseTime: 137.80us - DeserializeAndMergeTime: 0ns - ExecTime: 1.294ms - ExprTime: 58.649us - GetResultsTime: 173.436us - HashTableComputeTime: 831.233us - HashTableEmplaceTime: 653.621us - HashTableInputCount: 5.018K (5018) - HashTableIterateTime: 7.928us - HashTableSize: 1.688K (1688) - InsertKeysToColumnTime: 62.137us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 1.12 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 52.748us - ProjectionTime: 0ns - RowsProduced: 1.688K (1688) - SerializeDataTime: 94.185us - SerializeKeyTime: 0ns - SerializeResultTime: 174.985us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 27.579us - ExecTime: 1.651ms - InitProbeSideTime: 16.884us - JoinFilterTimer: 298ns - MemoryUsage: - PeakMemoryUsage: 3.69 KB - ProbeKeyArena: 3.69 KB - OpenTime: 18.966us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 580ns - ProbeFindNextTime: 0ns - ProbeRows: 236 - ProbeTime: 415.589us - ProbeWhenBuildSideOutputTime: 234.30us - ProbeWhenProbeSideOutputTime: 56.862us - ProbeWhenProcessHashTableTime: 10.873us - ProbeWhenSearchHashTableTime: 25.392us - ProjectionTime: 1.182ms - RowsProduced: 5.018K (5018) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s331ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.09 KB - CloseTime: 4.695us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 33.243us - ExecTime: 33.93us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 21.158us - ProjectionTime: 0ns - RowsProduced: 236 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s77ms PipelineXTask (index=20):(Active: 9.395ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.874ms - CloseTime: 252.569us - GetBlockTime: 7.400ms - OpenTime: 8.710us - PrepareTime: 253.84us - SinkTime: 1.417ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.133ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.388ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 35.20 KB - CloseTime: 13.109us - CompressTime: 0ns - ExecTime: 1.542ms - InputRows: 2.601K (2601) - LocalBytesSent: 75.25 KB - LocalSendTime: 144.551us - LocalSentRows: 1.286K (1286) - MemoryUsage: - PeakMemoryUsage: 224.00 KB - MergeBlockTime: 0ns - OpenTime: 112.614us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.430ms - RowsProduced: 2.601K (2601) - RpcAvgTime: 22.649ms - RpcCount: 12 - RpcMaxTime: 22.868ms - RpcMinTime: 22.329ms - RpcSumTime: 271.788ms - SerializeBatchTime: 261.481us - SplitBlockDistributeByChannelTime: 418.354us - SplitBlockHashComputeTime: 129.67us - UncompressedRowBatchSize: 81.80 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.606ms - CloseTime: 213.657us - DeserializeAndMergeTime: 0ns - ExecTime: 3.539ms - ExprTime: 183.51us - GetResultsTime: 649.421us - HashTableComputeTime: 2.303ms - HashTableEmplaceTime: 1.908ms - HashTableInputCount: 8.261K (8261) - HashTableIterateTime: 29.318us - HashTableSize: 2.601K (2601) - InsertKeysToColumnTime: 263.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.889us - ProjectionTime: 0ns - RowsProduced: 2.601K (2601) - SerializeDataTime: 315.295us - SerializeKeyTime: 0ns - SerializeResultTime: 651.766us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 17.340us - ExecTime: 4.70ms - InitProbeSideTime: 26.503us - JoinFilterTimer: 829ns - MemoryUsage: - PeakMemoryUsage: 3.66 KB - ProbeKeyArena: 3.66 KB - OpenTime: 16.246us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 756ns - ProbeFindNextTime: 0ns - ProbeRows: 234 - ProbeTime: 1.29ms - ProbeWhenBuildSideOutputTime: 561.574us - ProbeWhenProbeSideOutputTime: 183.920us - ProbeWhenProcessHashTableTime: 27.732us - ProbeWhenSearchHashTableTime: 88.830us - ProjectionTime: 2.994ms - RowsProduced: 8.261K (8261) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s412ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 3.07 KB - CloseTime: 4.478us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 20.947us - ExecTime: 23.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.721us - ProjectionTime: 0ns - RowsProduced: 234 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s77ms PipelineXTask (index=22):(Active: 3.465ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.998ms - CloseTime: 197.868us - GetBlockTime: 2.115ms - OpenTime: 8.289us - PrepareTime: 253.368us - SinkTime: 839.388us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.257ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 39.357ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.48 KB - CloseTime: 14.312us - CompressTime: 0ns - ExecTime: 954.665us - InputRows: 1.564K (1564) - LocalBytesSent: 45.44 KB - LocalSendTime: 71.796us - LocalSentRows: 776 - MemoryUsage: - PeakMemoryUsage: 155.13 KB - MergeBlockTime: 0ns - OpenTime: 101.766us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.630ms - RowsProduced: 1.564K (1564) - RpcAvgTime: 24.599ms - RpcCount: 12 - RpcMaxTime: 24.657ms - RpcMinTime: 24.522ms - RpcSumTime: 295.199ms - SerializeBatchTime: 133.424us - SplitBlockDistributeByChannelTime: 229.484us - SplitBlockHashComputeTime: 35.481us - UncompressedRowBatchSize: 49.28 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 760.205us - CloseTime: 137.882us - DeserializeAndMergeTime: 0ns - ExecTime: 1.124ms - ExprTime: 38.144us - GetResultsTime: 187.545us - HashTableComputeTime: 700.662us - HashTableEmplaceTime: 573.266us - HashTableInputCount: 3.672K (3672) - HashTableIterateTime: 8.299us - HashTableSize: 1.564K (1564) - InsertKeysToColumnTime: 59.136us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 1.12 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 29.581us - ProjectionTime: 0ns - RowsProduced: 1.564K (1564) - SerializeDataTime: 108.382us - SerializeKeyTime: 0ns - SerializeResultTime: 189.239us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 24.76us - ExecTime: 1.172ms - InitProbeSideTime: 9.952us - JoinFilterTimer: 131ns - MemoryUsage: - PeakMemoryUsage: 3.50 KB - ProbeKeyArena: 3.50 KB - OpenTime: 16.912us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 613ns - ProbeFindNextTime: 0ns - ProbeRows: 224 - ProbeTime: 325.696us - ProbeWhenBuildSideOutputTime: 169.282us - ProbeWhenProbeSideOutputTime: 50.201us - ProbeWhenProcessHashTableTime: 9.259us - ProbeWhenSearchHashTableTime: 14.935us - ProjectionTime: 799.98us - RowsProduced: 3.672K (3672) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s431ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 2 - BytesReceived: 2.93 KB - CloseTime: 8.296us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 14.271us - ExecTime: 33.304us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 5.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 19.430us - ProjectionTime: 0ns - RowsProduced: 224 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s80ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 868.436us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 783.82us - CloseTime: 8.741us - GetBlockTime: 164.971us - OpenTime: 2.84us - PrepareTime: 68.546us - SinkTime: 536.25us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 840.702us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.502ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.968us - BuildRows: 3.007K (3007) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 329.331us - BuildTableInsertTime: 92.408us - BuildTableTime: 96.399us - CloseTime: 0ns - ExecTime: 553.342us - InputRows: 3.006K (3006) - MemoryUsage: - BuildBlocks: 196.58 KB - BuildKeyArena: 46.98 KB - HashTable: 30.69 KB - PeakMemoryUsage: 274.25 KB - OpenTime: 20.914us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.666us - RuntimeFilterComputeTime: 52.360us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 6.624us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 193.568us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 290.00 KB - MemoryUsage: - Blocks: 112.00 KB - PeakMemoryUsage: 112.00 KB - OpenTime: 29.781us - ProjectionTime: 0ns - RowsProduced: 3.006K (3006) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s542ms PipelineXTask (index=3):(Active: 1.80ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.11ms - CloseTime: 7.916us - GetBlockTime: 179.894us - OpenTime: 1.894us - PrepareTime: 53.206us - SinkTime: 770.682us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.55ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.517ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.269us - BuildRows: 5.83K (5830) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 448.480us - BuildTableInsertTime: 91.124us - BuildTableTime: 94.506us - CloseTime: 0ns - ExecTime: 784.705us - InputRows: 5.829K (5829) - MemoryUsage: - BuildBlocks: 381.26 KB - BuildKeyArena: 91.09 KB - HashTable: 60.47 KB - PeakMemoryUsage: 532.82 KB - OpenTime: 17.47us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.573us - RuntimeFilterComputeTime: 162.17us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 196.695us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 528.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.00 KB - OpenTime: 17.308us - ProjectionTime: 0ns - RowsProduced: 5.829K (5829) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s541ms PipelineXTask (index=5):(Active: 1.215ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.137ms - CloseTime: 5.147us - GetBlockTime: 142.570us - OpenTime: 2.140us - PrepareTime: 64.647us - SinkTime: 935.121us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.194ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.113ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.600us - BuildRows: 9.985K (9985) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 648.823us - BuildTableInsertTime: 109.440us - BuildTableTime: 111.348us - CloseTime: 0ns - ExecTime: 965.508us - InputRows: 9.984K (9984) - MemoryUsage: - BuildBlocks: 652.91 KB - BuildKeyArena: 156.02 KB - HashTable: 112.76 KB - PeakMemoryUsage: 921.67 KB - OpenTime: 33.976us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.42us - RuntimeFilterComputeTime: 118.647us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.13us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 151.581us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 984.00 KB - MemoryUsage: - Blocks: 328.00 KB - PeakMemoryUsage: 328.00 KB - OpenTime: 11.148us - ProjectionTime: 0ns - RowsProduced: 9.984K (9984) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s542ms PipelineXTask (index=7):(Active: 1.372ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.303ms - CloseTime: 6.194us - GetBlockTime: 146.333us - OpenTime: 2.193us - PrepareTime: 53.801us - SinkTime: 1.101ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.349ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.367ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.117us - BuildRows: 8.89K (8890) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 828.40us - BuildTableInsertTime: 125.76us - BuildTableTime: 127.25us - CloseTime: 0ns - ExecTime: 1.120ms - InputRows: 8.889K (8889) - MemoryUsage: - BuildBlocks: 581.26 KB - BuildKeyArena: 138.91 KB - HashTable: 107.41 KB - PeakMemoryUsage: 827.57 KB - OpenTime: 22.110us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.896us - RuntimeFilterComputeTime: 92.593us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.970us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 154.825us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 896.00 KB - MemoryUsage: - Blocks: 304.00 KB - PeakMemoryUsage: 304.00 KB - OpenTime: 9.353us - ProjectionTime: 0ns - RowsProduced: 8.889K (8889) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s542ms PipelineXTask (index=9):(Active: 1.201ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.135ms - CloseTime: 5.621us - GetBlockTime: 128.801us - OpenTime: 2.86us - PrepareTime: 53.61us - SinkTime: 945.341us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.182ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.854ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.17us - BuildRows: 6.089K (6089) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 703.293us - BuildTableInsertTime: 88.172us - BuildTableTime: 89.406us - CloseTime: 0ns - ExecTime: 960.486us - InputRows: 6.088K (6088) - MemoryUsage: - BuildBlocks: 398.10 KB - BuildKeyArena: 95.14 KB - HashTable: 61.74 KB - PeakMemoryUsage: 554.96 KB - OpenTime: 17.978us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.800us - RuntimeFilterComputeTime: 96.166us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.800us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 144.324us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 200.00 KB - PeakMemoryUsage: 200.00 KB - OpenTime: 16.648us - ProjectionTime: 0ns - RowsProduced: 6.088K (6088) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s542ms PipelineXTask (index=11):(Active: 1.259ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.200ms - CloseTime: 5.399us - GetBlockTime: 141.295us - OpenTime: 1.876us - PrepareTime: 45.814us - SinkTime: 993.535us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.221ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.240ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.108us - BuildRows: 6.093K (6093) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 746.649us - BuildTableInsertTime: 104.894us - BuildTableTime: 106.184us - CloseTime: 0ns - ExecTime: 987.769us - InputRows: 6.092K (6092) - MemoryUsage: - BuildBlocks: 398.35 KB - BuildKeyArena: 95.20 KB - HashTable: 61.75 KB - PeakMemoryUsage: 555.30 KB - OpenTime: 13.834us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.89us - RuntimeFilterComputeTime: 74.322us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 151.830us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 556.00 KB - MemoryUsage: - Blocks: 220.00 KB - PeakMemoryUsage: 220.00 KB - OpenTime: 18.875us - ProjectionTime: 0ns - RowsProduced: 6.092K (6092) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s542ms PipelineXTask (index=13):(Active: 908.25us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 847.52us - CloseTime: 3.113us - GetBlockTime: 144.874us - OpenTime: 2.597us - PrepareTime: 49.882us - SinkTime: 645.379us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 888.200us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.533ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.110us - BuildRows: 5.415K (5415) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 425.597us - BuildTableInsertTime: 82.756us - BuildTableTime: 83.952us - CloseTime: 0ns - ExecTime: 656.802us - InputRows: 5.414K (5414) - MemoryUsage: - BuildBlocks: 353.95 KB - BuildKeyArena: 84.61 KB - HashTable: 58.44 KB - PeakMemoryUsage: 497.00 KB - OpenTime: 14.282us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.25us - RuntimeFilterComputeTime: 85.478us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.331us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 162.401us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 536.00 KB - MemoryUsage: - Blocks: 204.00 KB - PeakMemoryUsage: 204.00 KB - OpenTime: 21.210us - ProjectionTime: 0ns - RowsProduced: 5.414K (5414) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s541ms PipelineXTask (index=15):(Active: 1.646ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.531ms - CloseTime: 3.970us - GetBlockTime: 148.564us - OpenTime: 2.954us - PrepareTime: 102.970us - SinkTime: 1.314ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.628ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.550ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.904us - BuildRows: 11.327K (11327) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 879.780us - BuildTableInsertTime: 190.136us - BuildTableTime: 191.252us - CloseTime: 0ns - ExecTime: 1.340ms - InputRows: 11.326K (11326) - MemoryUsage: - BuildBlocks: 740.70 KB - BuildKeyArena: 176.98 KB - HashTable: 119.31 KB - PeakMemoryUsage: 1.01 MB - OpenTime: 28.575us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.433us - RuntimeFilterComputeTime: 194.408us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 2.992us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 165.205us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.04 MB - MemoryUsage: - Blocks: 408.00 KB - PeakMemoryUsage: 408.00 KB - OpenTime: 31.683us - ProjectionTime: 0ns - RowsProduced: 11.326K (11326) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s541ms PipelineXTask (index=17):(Active: 799.75us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 707.52us - CloseTime: 9.234us - GetBlockTime: 149.964us - OpenTime: 2.788us - PrepareTime: 74.524us - SinkTime: 497.757us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 775.153us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.56ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.118us - BuildRows: 3.03K (3030) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 347.615us - BuildTableInsertTime: 42.581us - BuildTableTime: 43.428us - CloseTime: 0ns - ExecTime: 517.625us - InputRows: 3.029K (3029) - MemoryUsage: - BuildBlocks: 198.09 KB - BuildKeyArena: 47.34 KB - HashTable: 30.80 KB - PeakMemoryUsage: 276.23 KB - OpenTime: 22.626us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.769us - RuntimeFilterComputeTime: 33.199us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 8.562us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 176.958us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 296.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 34.25us - ProjectionTime: 0ns - RowsProduced: 3.029K (3029) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s542ms PipelineXTask (index=19):(Active: 860.505us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 790.148us - CloseTime: 5.563us - GetBlockTime: 104.103us - OpenTime: 3.575us - PrepareTime: 54.857us - SinkTime: 628.516us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 839.512us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.686ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.287us - BuildRows: 5.019K (5019) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 432.895us - BuildTableInsertTime: 59.818us - BuildTableTime: 60.850us - CloseTime: 0ns - ExecTime: 642.343us - InputRows: 5.018K (5018) - MemoryUsage: - BuildBlocks: 328.20 KB - BuildKeyArena: 78.42 KB - HashTable: 56.51 KB - PeakMemoryUsage: 463.12 KB - OpenTime: 16.715us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.295us - RuntimeFilterComputeTime: 52.882us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.940us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 117.357us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 492.00 KB - MemoryUsage: - Blocks: 132.00 KB - PeakMemoryUsage: 132.00 KB - OpenTime: 14.291us - ProjectionTime: 0ns - RowsProduced: 5.018K (5018) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s540ms PipelineXTask (index=21):(Active: 1.545ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.481ms - CloseTime: 6.664us - GetBlockTime: 203.922us - OpenTime: 2.783us - PrepareTime: 49.366us - SinkTime: 1.220ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.524ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.279ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.525us - BuildRows: 8.262K (8262) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 766.708us - BuildTableInsertTime: 145.694us - BuildTableTime: 149.100us - CloseTime: 0ns - ExecTime: 1.230ms - InputRows: 8.261K (8261) - MemoryUsage: - BuildBlocks: 540.27 KB - BuildKeyArena: 129.09 KB - HashTable: 104.35 KB - PeakMemoryUsage: 773.70 KB - OpenTime: 14.92us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 77.701us - RuntimeFilterComputeTime: 161.219us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 5.381us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 217.108us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 780.00 KB - MemoryUsage: - Blocks: 308.00 KB - PeakMemoryUsage: 308.00 KB - OpenTime: 15.163us - ProjectionTime: 0ns - RowsProduced: 8.261K (8261) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s538ms PipelineXTask (index=23):(Active: 890.941us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 816.306us - CloseTime: 5.357us - GetBlockTime: 144.203us - OpenTime: 2.74us - PrepareTime: 61.901us - SinkTime: 586.385us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 870.547us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.347ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.826us - BuildRows: 3.673K (3673) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 379.50us - BuildTableInsertTime: 63.475us - BuildTableTime: 65.323us - CloseTime: 0ns - ExecTime: 598.996us - InputRows: 3.672K (3672) - MemoryUsage: - BuildBlocks: 240.13 KB - BuildKeyArena: 57.39 KB - HashTable: 49.94 KB - PeakMemoryUsage: 347.45 KB - OpenTime: 16.401us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.427us - RuntimeFilterComputeTime: 59.803us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 12 - BytesReceived: 0.00 - CloseTime: 4.346us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 159.657us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 334.00 KB - MemoryUsage: - Blocks: 152.00 KB - PeakMemoryUsage: 152.00 KB - OpenTime: 18.380us - ProjectionTime: 0ns - RowsProduced: 3.672K (3672) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s543ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 8.404ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.894ms - CloseTime: 238.479us - GetBlockTime: 6.50ms - OpenTime: 5.197us - PrepareTime: 259.763us - SinkTime: 1.796ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.156ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.199ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 32.59 KB - CloseTime: 24.293us - CompressTime: 0ns - ExecTime: 1.938ms - InputRows: 2.427K (2427) - LocalBytesSent: 72.66 KB - LocalSendTime: 120.7us - LocalSentRows: 1.242K (1242) - MemoryUsage: - PeakMemoryUsage: 207.25 KB - MergeBlockTime: 0ns - OpenTime: 118.697us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.682ms - RowsProduced: 2.427K (2427) - RpcAvgTime: 662.331us - RpcCount: 12 - RpcMaxTime: 829.858us - RpcMinTime: 541.824us - RpcSumTime: 7.947ms - SerializeBatchTime: 239.70us - SplitBlockDistributeByChannelTime: 484.827us - SplitBlockHashComputeTime: 87.906us - UncompressedRowBatchSize: 73.92 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.216ms - CloseTime: 188.261us - DeserializeAndMergeTime: 0ns - ExecTime: 2.945ms - ExprTime: 227.38us - GetResultsTime: 479.200us - HashTableComputeTime: 1.855ms - HashTableEmplaceTime: 1.543ms - HashTableInputCount: 7.997K (7997) - HashTableIterateTime: 24.388us - HashTableSize: 2.427K (2427) - InsertKeysToColumnTime: 164.571us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 39.150us - ProjectionTime: 0ns - RowsProduced: 2.427K (2427) - SerializeDataTime: 257.373us - SerializeKeyTime: 0ns - SerializeResultTime: 482.977us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 13.790us - ExecTime: 3.298ms - InitProbeSideTime: 14.554us - JoinFilterTimer: 567ns - MemoryUsage: - PeakMemoryUsage: 3.84 KB - ProbeKeyArena: 3.84 KB - OpenTime: 14.382us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 628ns - ProbeFindNextTime: 0ns - ProbeRows: 246 - ProbeTime: 818.256us - ProbeWhenBuildSideOutputTime: 470.96us - ProbeWhenProbeSideOutputTime: 135.20us - ProbeWhenProcessHashTableTime: 20.976us - ProbeWhenSearchHashTableTime: 70.664us - ProjectionTime: 2.442ms - RowsProduced: 7.997K (7997) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s771ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.608us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.242us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 25.467us - ProjectionTime: 0ns - RowsProduced: 246 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 798.496ms PipelineXTask (index=2):(Active: 8.882ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.485ms - CloseTime: 128.861us - GetBlockTime: 6.995ms - OpenTime: 4.53us - PrepareTime: 259.536us - SinkTime: 1.444ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.706ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.363ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.59 KB - CloseTime: 15.869us - CompressTime: 0ns - ExecTime: 1.570ms - InputRows: 2.105K (2105) - LocalBytesSent: 64.03 KB - LocalSendTime: 99.470us - LocalSentRows: 1.095K (1095) - MemoryUsage: - PeakMemoryUsage: 179.00 KB - MergeBlockTime: 0ns - OpenTime: 110.935us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.800ms - RowsProduced: 2.105K (2105) - RpcAvgTime: 3.839ms - RpcCount: 12 - RpcMaxTime: 4.216ms - RpcMinTime: 578.295us - RpcSumTime: 46.72ms - SerializeBatchTime: 278.1us - SplitBlockDistributeByChannelTime: 334.655us - SplitBlockHashComputeTime: 90.31us - UncompressedRowBatchSize: 63.48 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.213ms - CloseTime: 86.201us - DeserializeAndMergeTime: 0ns - ExecTime: 2.905ms - ExprTime: 144.22us - GetResultsTime: 524.445us - HashTableComputeTime: 1.981ms - HashTableEmplaceTime: 1.542ms - HashTableInputCount: 8.642K (8642) - HashTableIterateTime: 20.30us - HashTableSize: 2.105K (2105) - InsertKeysToColumnTime: 174.843us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.16 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 54.10us - ProjectionTime: 0ns - RowsProduced: 2.105K (2105) - SerializeDataTime: 301.908us - SerializeKeyTime: 0ns - SerializeResultTime: 527.894us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 12.915us - ExecTime: 4.184ms - InitProbeSideTime: 33.245us - JoinFilterTimer: 899ns - MemoryUsage: - PeakMemoryUsage: 3.64 KB - ProbeKeyArena: 3.64 KB - OpenTime: 20.350us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 937ns - ProbeFindNextTime: 0ns - ProbeRows: 233 - ProbeTime: 1.132ms - ProbeWhenBuildSideOutputTime: 598.514us - ProbeWhenProbeSideOutputTime: 189.561us - ProbeWhenProcessHashTableTime: 35.640us - ProbeWhenSearchHashTableTime: 106.880us - ProjectionTime: 3.4ms - RowsProduced: 8.642K (8642) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s773ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.631us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.101us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 12.905us - ProjectionTime: 0ns - RowsProduced: 233 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 798.497ms PipelineXTask (index=4):(Active: 9.567ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.198ms - CloseTime: 101.966us - GetBlockTime: 7.862ms - OpenTime: 4.383us - PrepareTime: 257.987us - SinkTime: 1.289ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.457ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.836ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 33.91 KB - CloseTime: 10.682us - CompressTime: 0ns - ExecTime: 1.406ms - InputRows: 2.444K (2444) - LocalBytesSent: 72.76 KB - LocalSendTime: 100.951us - LocalSentRows: 1.244K (1244) - MemoryUsage: - PeakMemoryUsage: 212.75 KB - MergeBlockTime: 0ns - OpenTime: 107.251us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.180ms - RowsProduced: 2.444K (2444) - RpcAvgTime: 3.455ms - RpcCount: 12 - RpcMaxTime: 3.733ms - RpcMinTime: 2.956ms - RpcSumTime: 41.462ms - SerializeBatchTime: 262.440us - SplitBlockDistributeByChannelTime: 311.401us - SplitBlockHashComputeTime: 86.834us - UncompressedRowBatchSize: 74.82 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.353ms - CloseTime: 74.306us - DeserializeAndMergeTime: 0ns - ExecTime: 2.916ms - ExprTime: 179.157us - GetResultsTime: 428.694us - HashTableComputeTime: 2.65ms - HashTableEmplaceTime: 1.484ms - HashTableInputCount: 13.587K (13587) - HashTableIterateTime: 37.615us - HashTableSize: 2.444K (2444) - InsertKeysToColumnTime: 120.664us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 34.363us - ProjectionTime: 0ns - RowsProduced: 2.444K (2444) - SerializeDataTime: 239.37us - SerializeKeyTime: 0ns - SerializeResultTime: 430.880us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 9.18us - ExecTime: 4.995ms - InitProbeSideTime: 9.403us - JoinFilterTimer: 886ns - MemoryUsage: - PeakMemoryUsage: 3.88 KB - ProbeKeyArena: 3.88 KB - OpenTime: 17.548us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 536ns - ProbeFindNextTime: 0ns - ProbeRows: 248 - ProbeTime: 1.199ms - ProbeWhenBuildSideOutputTime: 646.734us - ProbeWhenProbeSideOutputTime: 209.987us - ProbeWhenProcessHashTableTime: 56.550us - ProbeWhenSearchHashTableTime: 126.907us - ProjectionTime: 3.759ms - RowsProduced: 13.587K (13587) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s774ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.760us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.600us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 29.453us - ProjectionTime: 0ns - RowsProduced: 248 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 798.592ms PipelineXTask (index=6):(Active: 9.498ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.830ms - CloseTime: 411.700us - GetBlockTime: 7.765ms - OpenTime: 5.776us - PrepareTime: 245.596us - SinkTime: 1.22ms - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.78ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.926ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 42.08 KB - CloseTime: 23.915us - CompressTime: 0ns - ExecTime: 1.152ms - InputRows: 2.685K (2685) - LocalBytesSent: 90.24 KB - LocalSendTime: 60.444us - LocalSentRows: 1.377K (1377) - MemoryUsage: - PeakMemoryUsage: 255.50 KB - MergeBlockTime: 0ns - OpenTime: 106.795us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.239ms - RowsProduced: 2.685K (2685) - RpcAvgTime: 3.533ms - RpcCount: 12 - RpcMaxTime: 3.748ms - RpcMinTime: 3.28ms - RpcSumTime: 42.397ms - SerializeBatchTime: 214.507us - SplitBlockDistributeByChannelTime: 251.900us - SplitBlockHashComputeTime: 60.847us - UncompressedRowBatchSize: 90.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.659ms - CloseTime: 356.44us - DeserializeAndMergeTime: 0ns - ExecTime: 3.659ms - ExprTime: 175.217us - GetResultsTime: 578.403us - HashTableComputeTime: 1.947ms - HashTableEmplaceTime: 1.438ms - HashTableInputCount: 14.19K (14190) - HashTableIterateTime: 21.206us - HashTableSize: 2.685K (2685) - InsertKeysToColumnTime: 144.457us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 32.598us - ProjectionTime: 0ns - RowsProduced: 2.685K (2685) - SerializeDataTime: 381.241us - SerializeKeyTime: 0ns - SerializeResultTime: 581.162us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 18.235us - ExecTime: 4.451ms - InitProbeSideTime: 17.157us - JoinFilterTimer: 637ns - MemoryUsage: - PeakMemoryUsage: 3.88 KB - ProbeKeyArena: 3.88 KB - OpenTime: 16.412us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 785ns - ProbeFindNextTime: 0ns - ProbeRows: 248 - ProbeTime: 1.475ms - ProbeWhenBuildSideOutputTime: 879.768us - ProbeWhenProbeSideOutputTime: 185.962us - ProbeWhenProcessHashTableTime: 52.741us - ProbeWhenSearchHashTableTime: 204.738us - ProjectionTime: 2.929ms - RowsProduced: 14.19K (14190) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s774ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.296us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.675us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 14.481us - ProjectionTime: 0ns - RowsProduced: 248 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 799.380ms PipelineXTask (index=8):(Active: 6.575ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.48ms - CloseTime: 256.165us - GetBlockTime: 4.892ms - OpenTime: 6.178us - PrepareTime: 259.672us - SinkTime: 1.122ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.312ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.108ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 34.26 KB - CloseTime: 14.980us - CompressTime: 0ns - ExecTime: 1.238ms - InputRows: 2.51K (2510) - LocalBytesSent: 74.33 KB - LocalSendTime: 76.141us - LocalSentRows: 1.271K (1271) - MemoryUsage: - PeakMemoryUsage: 218.00 KB - MergeBlockTime: 0ns - OpenTime: 101.768us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.284ms - RowsProduced: 2.51K (2510) - RpcAvgTime: 632.630us - RpcCount: 12 - RpcMaxTime: 719.915us - RpcMinTime: 511.718us - RpcSumTime: 7.591ms - SerializeBatchTime: 187.70us - SplitBlockDistributeByChannelTime: 249.667us - SplitBlockHashComputeTime: 58.82us - UncompressedRowBatchSize: 77.20 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.672ms - CloseTime: 210.728us - DeserializeAndMergeTime: 0ns - ExecTime: 2.238ms - ExprTime: 124.306us - GetResultsTime: 305.881us - HashTableComputeTime: 1.449ms - HashTableEmplaceTime: 1.115ms - HashTableInputCount: 9.864K (9864) - HashTableIterateTime: 21.982us - HashTableSize: 2.51K (2510) - InsertKeysToColumnTime: 95.373us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 30.643us - ProjectionTime: 0ns - RowsProduced: 2.51K (2510) - SerializeDataTime: 166.463us - SerializeKeyTime: 0ns - SerializeResultTime: 307.805us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 15.885us - ExecTime: 2.862ms - InitProbeSideTime: 9.553us - JoinFilterTimer: 246ns - MemoryUsage: - PeakMemoryUsage: 3.69 KB - ProbeKeyArena: 3.69 KB - OpenTime: 19.546us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 337ns - ProbeFindNextTime: 0ns - ProbeRows: 236 - ProbeTime: 916.34us - ProbeWhenBuildSideOutputTime: 561.324us - ProbeWhenProbeSideOutputTime: 116.969us - ProbeWhenProcessHashTableTime: 29.127us - ProbeWhenSearchHashTableTime: 88.931us - ProjectionTime: 1.903ms - RowsProduced: 9.864K (9864) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s774ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.894us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.728us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 17.696us - ProjectionTime: 0ns - RowsProduced: 236 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 799.966ms PipelineXTask (index=10):(Active: 7.378ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.835ms - CloseTime: 282.401us - GetBlockTime: 5.838ms - OpenTime: 5.70us - PrepareTime: 250.183us - SinkTime: 960.552us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.88ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.686ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.64 KB - CloseTime: 15.560us - CompressTime: 0ns - ExecTime: 1.81ms - InputRows: 2.877K (2877) - LocalBytesSent: 85.92 KB - LocalSendTime: 68.585us - LocalSentRows: 1.469K (1469) - MemoryUsage: - PeakMemoryUsage: 259.75 KB - MergeBlockTime: 0ns - OpenTime: 106.252us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.978ms - RowsProduced: 2.877K (2877) - RpcAvgTime: 3.101ms - RpcCount: 12 - RpcMaxTime: 3.199ms - RpcMinTime: 2.872ms - RpcSumTime: 37.221ms - SerializeBatchTime: 183.410us - SplitBlockDistributeByChannelTime: 254.28us - SplitBlockHashComputeTime: 67.101us - UncompressedRowBatchSize: 87.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.846ms - CloseTime: 234.723us - DeserializeAndMergeTime: 0ns - ExecTime: 2.484ms - ExprTime: 123.248us - GetResultsTime: 337.245us - HashTableComputeTime: 1.608ms - HashTableEmplaceTime: 1.249ms - HashTableInputCount: 12.547K (12547) - HashTableIterateTime: 16.499us - HashTableSize: 2.877K (2877) - InsertKeysToColumnTime: 102.880us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 43.12us - ProjectionTime: 0ns - RowsProduced: 2.877K (2877) - SerializeDataTime: 193.132us - SerializeKeyTime: 0ns - SerializeResultTime: 339.365us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 18.82us - ExecTime: 3.596ms - InitProbeSideTime: 17.927us - JoinFilterTimer: 463ns - MemoryUsage: - PeakMemoryUsage: 3.81 KB - ProbeKeyArena: 3.81 KB - OpenTime: 12.29us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 786ns - ProbeFindNextTime: 0ns - ProbeRows: 244 - ProbeTime: 1.150ms - ProbeWhenBuildSideOutputTime: 668.563us - ProbeWhenProbeSideOutputTime: 138.441us - ProbeWhenProcessHashTableTime: 42.106us - ProbeWhenSearchHashTableTime: 159.273us - ProjectionTime: 2.406ms - RowsProduced: 12.547K (12547) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s775ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.476us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.545us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 14.517us - ProjectionTime: 0ns - RowsProduced: 244 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 800.15ms PipelineXTask (index=12):(Active: 6.14ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.564ms - CloseTime: 229.547us - GetBlockTime: 4.499ms - OpenTime: 3.999us - PrepareTime: 211.848us - SinkTime: 1.34ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.778ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.961ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 35.61 KB - CloseTime: 9.645us - CompressTime: 0ns - ExecTime: 1.134ms - InputRows: 2.578K (2578) - LocalBytesSent: 75.57 KB - LocalSendTime: 70.86us - LocalSentRows: 1.292K (1292) - MemoryUsage: - PeakMemoryUsage: 218.75 KB - MergeBlockTime: 0ns - OpenTime: 91.243us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.548ms - RowsProduced: 2.578K (2578) - RpcAvgTime: 3.606ms - RpcCount: 12 - RpcMaxTime: 3.757ms - RpcMinTime: 3.492ms - RpcSumTime: 43.273ms - SerializeBatchTime: 186.704us - SplitBlockDistributeByChannelTime: 242.108us - SplitBlockHashComputeTime: 62.297us - UncompressedRowBatchSize: 80.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.515ms - CloseTime: 186.598us - DeserializeAndMergeTime: 0ns - ExecTime: 2.40ms - ExprTime: 98.339us - GetResultsTime: 293.41us - HashTableComputeTime: 1.339ms - HashTableEmplaceTime: 1.27ms - HashTableInputCount: 8.821K (8821) - HashTableIterateTime: 12.962us - HashTableSize: 2.578K (2578) - InsertKeysToColumnTime: 96.436us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 29.435us - ProjectionTime: 0ns - RowsProduced: 2.578K (2578) - SerializeDataTime: 164.545us - SerializeKeyTime: 0ns - SerializeResultTime: 294.624us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 24.418us - ExecTime: 2.665ms - InitProbeSideTime: 10.954us - JoinFilterTimer: 405ns - MemoryUsage: - PeakMemoryUsage: 3.64 KB - ProbeKeyArena: 3.64 KB - OpenTime: 14.487us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 440ns - ProbeFindNextTime: 0ns - ProbeRows: 233 - ProbeTime: 831.823us - ProbeWhenBuildSideOutputTime: 488.419us - ProbeWhenProbeSideOutputTime: 108.871us - ProbeWhenProcessHashTableTime: 22.774us - ProbeWhenSearchHashTableTime: 118.434us - ProjectionTime: 1.788ms - RowsProduced: 8.821K (8821) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s779ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.378us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.413us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 13.795us - ProjectionTime: 0ns - RowsProduced: 233 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 800.4ms PipelineXTask (index=14):(Active: 6.517ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.103ms - CloseTime: 189.983us - GetBlockTime: 5.145ms - OpenTime: 7.132us - PrepareTime: 212.105us - SinkTime: 917.919us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.319ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.219ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.58 KB - CloseTime: 11.438us - CompressTime: 0ns - ExecTime: 1.10ms - InputRows: 2.165K (2165) - LocalBytesSent: 63.71 KB - LocalSendTime: 84.751us - LocalSentRows: 1.089K (1089) - MemoryUsage: - PeakMemoryUsage: 185.25 KB - MergeBlockTime: 0ns - OpenTime: 82.83us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.10ms - RowsProduced: 2.165K (2165) - RpcAvgTime: 3.409ms - RpcCount: 12 - RpcMaxTime: 3.772ms - RpcMinTime: 2.711ms - RpcSumTime: 40.916ms - SerializeBatchTime: 159.920us - SplitBlockDistributeByChannelTime: 206.93us - SplitBlockHashComputeTime: 48.321us - UncompressedRowBatchSize: 67.41 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.824ms - CloseTime: 158.325us - DeserializeAndMergeTime: 0ns - ExecTime: 2.289ms - ExprTime: 161.642us - GetResultsTime: 237.523us - HashTableComputeTime: 1.554ms - HashTableEmplaceTime: 1.243ms - HashTableInputCount: 9.305K (9305) - HashTableIterateTime: 13.31us - HashTableSize: 2.165K (2165) - InsertKeysToColumnTime: 73.140us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.16 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 29.844us - ProjectionTime: 0ns - RowsProduced: 2.165K (2165) - SerializeDataTime: 129.420us - SerializeKeyTime: 0ns - SerializeResultTime: 238.894us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.781us - ExecTime: 3.37ms - InitProbeSideTime: 14.491us - JoinFilterTimer: 641ns - MemoryUsage: - PeakMemoryUsage: 3.45 KB - ProbeKeyArena: 3.45 KB - OpenTime: 27.378us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 504ns - ProbeFindNextTime: 0ns - ProbeRows: 221 - ProbeTime: 1.79ms - ProbeWhenBuildSideOutputTime: 634.551us - ProbeWhenProbeSideOutputTime: 151.635us - ProbeWhenProcessHashTableTime: 19.600us - ProbeWhenSearchHashTableTime: 158.354us - ProjectionTime: 1.911ms - RowsProduced: 9.305K (9305) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s779ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.247us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.50 KB - MemoryUsage: - Blocks: 5.50 KB - PeakMemoryUsage: 5.50 KB - OpenTime: 13.264us - ProjectionTime: 0ns - RowsProduced: 221 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 799.581ms PipelineXTask (index=16):(Active: 10.11ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.497ms - CloseTime: 281.365us - GetBlockTime: 7.799ms - OpenTime: 4.734us - PrepareTime: 223.162us - SinkTime: 1.654ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.701ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.888ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 34.31 KB - CloseTime: 16.284us - CompressTime: 0ns - ExecTime: 1.761ms - InputRows: 2.534K (2534) - LocalBytesSent: 74.91 KB - LocalSendTime: 147.276us - LocalSentRows: 1.28K (1280) - MemoryUsage: - PeakMemoryUsage: 218.75 KB - MergeBlockTime: 0ns - OpenTime: 91.644us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.563ms - RowsProduced: 2.534K (2534) - RpcAvgTime: 3.761ms - RpcCount: 12 - RpcMaxTime: 3.941ms - RpcMinTime: 3.605ms - RpcSumTime: 45.133ms - SerializeBatchTime: 306.852us - SplitBlockDistributeByChannelTime: 307.520us - SplitBlockHashComputeTime: 100.462us - UncompressedRowBatchSize: 78.05 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.498ms - CloseTime: 221.118us - DeserializeAndMergeTime: 0ns - ExecTime: 3.260ms - ExprTime: 197.465us - GetResultsTime: 472.512us - HashTableComputeTime: 2.126ms - HashTableEmplaceTime: 1.619ms - HashTableInputCount: 10.209K (10209) - HashTableIterateTime: 27.613us - HashTableSize: 2.534K (2534) - InsertKeysToColumnTime: 147.161us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 38.477us - ProjectionTime: 0ns - RowsProduced: 2.534K (2534) - SerializeDataTime: 232.951us - SerializeKeyTime: 0ns - SerializeResultTime: 475.77us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 16.528us - ExecTime: 4.746ms - InitProbeSideTime: 16.664us - JoinFilterTimer: 661ns - MemoryUsage: - PeakMemoryUsage: 3.50 KB - ProbeKeyArena: 3.50 KB - OpenTime: 17.47us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 655ns - ProbeFindNextTime: 0ns - ProbeRows: 224 - ProbeTime: 1.405ms - ProbeWhenBuildSideOutputTime: 763.706us - ProbeWhenProbeSideOutputTime: 193.750us - ProbeWhenProcessHashTableTime: 38.188us - ProbeWhenSearchHashTableTime: 249.961us - ProjectionTime: 3.295ms - RowsProduced: 10.209K (10209) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s777ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 22.163us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 49.396us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.50 KB - MemoryUsage: - Blocks: 5.50 KB - PeakMemoryUsage: 5.50 KB - OpenTime: 19.107us - ProjectionTime: 0ns - RowsProduced: 224 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 799.664ms PipelineXTask (index=18):(Active: 5.17ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.524ms - CloseTime: 238.892us - GetBlockTime: 3.501ms - OpenTime: 4.307us - PrepareTime: 245.295us - SinkTime: 992.284us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.772ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.302ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.41 KB - CloseTime: 16.892us - CompressTime: 0ns - ExecTime: 1.104ms - InputRows: 2.191K (2191) - LocalBytesSent: 64.49 KB - LocalSendTime: 92.340us - LocalSentRows: 1.102K (1102) - MemoryUsage: - PeakMemoryUsage: 182.50 KB - MergeBlockTime: 0ns - OpenTime: 96.502us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.92ms - RowsProduced: 2.191K (2191) - RpcAvgTime: 3.211ms - RpcCount: 12 - RpcMaxTime: 3.902ms - RpcMinTime: 2.508ms - RpcSumTime: 38.535ms - SerializeBatchTime: 175.860us - SplitBlockDistributeByChannelTime: 237.889us - SplitBlockHashComputeTime: 57.170us - UncompressedRowBatchSize: 68.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.232ms - CloseTime: 197.5us - DeserializeAndMergeTime: 0ns - ExecTime: 1.789ms - ExprTime: 86.438us - GetResultsTime: 299.713us - HashTableComputeTime: 1.97ms - HashTableEmplaceTime: 876.820us - HashTableInputCount: 6.496K (6496) - HashTableIterateTime: 13.481us - HashTableSize: 2.191K (2191) - InsertKeysToColumnTime: 86.941us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.16 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 45.674us - ProjectionTime: 0ns - RowsProduced: 2.191K (2191) - SerializeDataTime: 174.65us - SerializeKeyTime: 0ns - SerializeResultTime: 301.813us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 13.447us - ExecTime: 1.948ms - InitProbeSideTime: 13.185us - JoinFilterTimer: 265ns - MemoryUsage: - PeakMemoryUsage: 3.66 KB - ProbeKeyArena: 3.66 KB - OpenTime: 16.400us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 607ns - ProbeFindNextTime: 0ns - ProbeRows: 234 - ProbeTime: 620.410us - ProbeWhenBuildSideOutputTime: 348.316us - ProbeWhenProbeSideOutputTime: 74.235us - ProbeWhenProcessHashTableTime: 16.596us - ProbeWhenSearchHashTableTime: 90.171us - ProjectionTime: 1.291ms - RowsProduced: 6.496K (6496) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s777ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.121us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.667us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 13.262us - ProjectionTime: 0ns - RowsProduced: 234 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 800.17ms PipelineXTask (index=20):(Active: 4.342ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.957ms - CloseTime: 140.532us - GetBlockTime: 2.884ms - OpenTime: 5.466us - PrepareTime: 233.978us - SinkTime: 1.39ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.137ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.155ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.63 KB - CloseTime: 13.472us - CompressTime: 0ns - ExecTime: 1.151ms - InputRows: 1.49K (1490) - LocalBytesSent: 44.24 KB - LocalSendTime: 91.872us - LocalSentRows: 756 - MemoryUsage: - PeakMemoryUsage: 139.50 KB - MergeBlockTime: 0ns - OpenTime: 98.891us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.999ms - RowsProduced: 1.49K (1490) - RpcAvgTime: 3.136ms - RpcCount: 12 - RpcMaxTime: 3.196ms - RpcMinTime: 3.48ms - RpcSumTime: 37.633ms - SerializeBatchTime: 195.611us - SplitBlockDistributeByChannelTime: 196.661us - SplitBlockHashComputeTime: 49.743us - UncompressedRowBatchSize: 45.66 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.55ms - CloseTime: 104.115us - DeserializeAndMergeTime: 0ns - ExecTime: 1.455ms - ExprTime: 65.121us - GetResultsTime: 251.13us - HashTableComputeTime: 961.489us - HashTableEmplaceTime: 742.613us - HashTableInputCount: 3.728K (3728) - HashTableIterateTime: 16.644us - HashTableSize: 1.49K (1490) - InsertKeysToColumnTime: 71.999us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 1.12 MB - SerializeKeyArena: 1.07 MB - MergeTime: 0ns - OpenTime: 34.640us - ProjectionTime: 0ns - RowsProduced: 1.49K (1490) - SerializeDataTime: 143.223us - SerializeKeyTime: 0ns - SerializeResultTime: 253.109us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 13.417us - ExecTime: 1.574ms - InitProbeSideTime: 11.827us - JoinFilterTimer: 291ns - MemoryUsage: - PeakMemoryUsage: 3.58 KB - ProbeKeyArena: 3.58 KB - OpenTime: 18.528us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 716ns - ProbeFindNextTime: 0ns - ProbeRows: 229 - ProbeTime: 420.564us - ProbeWhenBuildSideOutputTime: 184.656us - ProbeWhenProbeSideOutputTime: 79.266us - ProbeWhenProcessHashTableTime: 16.900us - ProbeWhenSearchHashTableTime: 36.513us - ProjectionTime: 1.113ms - RowsProduced: 3.728K (3728) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s780ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.574us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.375us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 19.216us - ProjectionTime: 0ns - RowsProduced: 229 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 799.590ms PipelineXTask (index=22):(Active: 13.348ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.961ms - CloseTime: 165.158us - GetBlockTime: 11.309ms - OpenTime: 6.146us - PrepareTime: 210.279us - SinkTime: 1.571ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 13.174ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.313ms DATA_STREAM_SINK_OPERATOR (id=250,dst_id=250): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 38.46 KB - CloseTime: 16.894us - CompressTime: 0ns - ExecTime: 1.683ms - InputRows: 3.09K (3090) - LocalBytesSent: 90.55 KB - LocalSendTime: 112.233us - LocalSentRows: 1.548K (1548) - MemoryUsage: - PeakMemoryUsage: 282.50 KB - MergeBlockTime: 0ns - OpenTime: 96.161us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.746ms - RowsProduced: 3.09K (3090) - RpcAvgTime: 2.759ms - RpcCount: 12 - RpcMaxTime: 3.34ms - RpcMinTime: 2.620ms - RpcSumTime: 33.116ms - SerializeBatchTime: 322.550us - SplitBlockDistributeByChannelTime: 370.586us - SplitBlockHashComputeTime: 118.857us - UncompressedRowBatchSize: 95.41 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.224ms - CloseTime: 118.175us - DeserializeAndMergeTime: 0ns - ExecTime: 3.968ms - ExprTime: 246.181us - GetResultsTime: 560.569us - HashTableComputeTime: 2.803ms - HashTableEmplaceTime: 1.907ms - HashTableInputCount: 17.999K (17999) - HashTableIterateTime: 45.648us - HashTableSize: 3.09K (3090) - InsertKeysToColumnTime: 186.840us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 95.98 KB - PeakMemoryUsage: 1.23 MB - SerializeKeyArena: 1.13 MB - MergeTime: 0ns - OpenTime: 33.252us - ProjectionTime: 0ns - RowsProduced: 3.09K (3090) - SerializeDataTime: 299.733us - SerializeKeyTime: 0ns - SerializeResultTime: 562.728us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=248): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 15.355us - ExecTime: 7.412ms - InitProbeSideTime: 15.29us - JoinFilterTimer: 1.251us - MemoryUsage: - PeakMemoryUsage: 3.63 KB - ProbeKeyArena: 3.63 KB - OpenTime: 15.799us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 624ns - ProbeFindNextTime: 0ns - ProbeRows: 232 - ProbeTime: 1.946ms - ProbeWhenBuildSideOutputTime: 1.99ms - ProbeWhenProbeSideOutputTime: 282.388us - ProbeWhenProcessHashTableTime: 82.320us - ProbeWhenSearchHashTableTime: 250.965us - ProjectionTime: 5.422ms - RowsProduced: 17.999K (17999) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s778ms EXCHANGE_OPERATOR (id=247): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.122us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.616us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.00 KB - MemoryUsage: - Blocks: 6.00 KB - PeakMemoryUsage: 6.00 KB - OpenTime: 13.256us - ProjectionTime: 0ns - RowsProduced: 232 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 799.904ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.205ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 1.115ms - CloseTime: 16.379us - GetBlockTime: 189.989us - OpenTime: 3.0us - PrepareTime: 64.510us - SinkTime: 822.596us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.154ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.435ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.618us - BuildRows: 7.998K (7998) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 495.772us - BuildTableInsertTime: 92.830us - BuildTableTime: 103.477us - CloseTime: 0ns - ExecTime: 838.482us - InputRows: 7.997K (7997) - MemoryUsage: - BuildBlocks: 522.89 KB - BuildKeyArena: 124.97 KB - HashTable: 103.06 KB - PeakMemoryUsage: 750.90 KB - OpenTime: 20.994us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.821us - RuntimeFilterComputeTime: 112.972us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 284.02 KB - CloseTime: 14.155us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 604.52us - ExecTime: 211.503us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 17.728us - ProjectionTime: 0ns - RowsProduced: 7.997K (7997) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s568ms PipelineXTask (index=3):(Active: 1.314ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.239ms - CloseTime: 7.680us - GetBlockTime: 171.407us - OpenTime: 2.7us - PrepareTime: 59.381us - SinkTime: 966.932us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.280ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.811ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.822us - BuildRows: 8.643K (8643) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 689.1us - BuildTableInsertTime: 105.606us - BuildTableTime: 108.83us - CloseTime: 0ns - ExecTime: 982.124us - InputRows: 8.642K (8642) - MemoryUsage: - BuildBlocks: 564.98 KB - BuildKeyArena: 135.05 KB - HashTable: 106.21 KB - PeakMemoryUsage: 806.22 KB - OpenTime: 21.453us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.515us - RuntimeFilterComputeTime: 94.1us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 305.19 KB - CloseTime: 5.733us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 626.529us - ExecTime: 178.627us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 13.586us - ProjectionTime: 0ns - RowsProduced: 8.642K (8642) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s570ms PipelineXTask (index=5):(Active: 1.702ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.633ms - CloseTime: 11.38us - GetBlockTime: 200.632us - OpenTime: 2.90us - PrepareTime: 49.989us - SinkTime: 1.317ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.669ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.287ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.836us - BuildRows: 13.588K (13588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 743.799us - BuildTableInsertTime: 212.920us - BuildTableTime: 216.148us - CloseTime: 0ns - ExecTime: 1.325ms - InputRows: 13.587K (13587) - MemoryUsage: - BuildBlocks: 888.44 KB - BuildKeyArena: 212.31 KB - HashTable: 130.35 KB - PeakMemoryUsage: 1.20 MB - OpenTime: 12.93us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.450us - RuntimeFilterComputeTime: 276.376us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 475.53 KB - CloseTime: 8.196us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 807.234us - ExecTime: 208.855us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 144.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 13.697us - ProjectionTime: 0ns - RowsProduced: 13.587K (13587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s570ms PipelineXTask (index=7):(Active: 1.487ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.403ms - CloseTime: 7.553us - GetBlockTime: 166.524us - OpenTime: 2.518us - PrepareTime: 68.446us - SinkTime: 1.146ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.457ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.244ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.788us - BuildRows: 14.191K (14191) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 756.854us - BuildTableInsertTime: 148.491us - BuildTableTime: 150.424us - CloseTime: 0ns - ExecTime: 1.163ms - InputRows: 14.19K (14190) - MemoryUsage: - BuildBlocks: 929.94 KB - BuildKeyArena: 221.73 KB - HashTable: 133.30 KB - PeakMemoryUsage: 1.25 MB - OpenTime: 21.28us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.408us - RuntimeFilterComputeTime: 172.958us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 503.16 KB - CloseTime: 5.532us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 778.552us - ExecTime: 189.895us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 144.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 27.168us - ProjectionTime: 0ns - RowsProduced: 14.19K (14190) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s571ms PipelineXTask (index=9):(Active: 1.427ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.330ms - CloseTime: 5.329us - GetBlockTime: 198.853us - OpenTime: 1.579us - PrepareTime: 63.259us - SinkTime: 1.42ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.379ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.355ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.985us - BuildRows: 9.865K (9865) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 704.920us - BuildTableInsertTime: 126.982us - BuildTableTime: 128.734us - CloseTime: 0ns - ExecTime: 1.68ms - InputRows: 9.864K (9864) - MemoryUsage: - BuildBlocks: 645.05 KB - BuildKeyArena: 154.14 KB - HashTable: 112.17 KB - PeakMemoryUsage: 911.35 KB - OpenTime: 31.252us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.882us - RuntimeFilterComputeTime: 140.381us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 347.63 KB - CloseTime: 4.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 670.568us - ExecTime: 203.514us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 11.659us - ProjectionTime: 0ns - RowsProduced: 9.864K (9864) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s571ms PipelineXTask (index=11):(Active: 1.687ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.608ms - CloseTime: 7.557us - GetBlockTime: 160.618us - OpenTime: 1.630us - PrepareTime: 65.170us - SinkTime: 1.346ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.657ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.553ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.325us - BuildRows: 12.548K (12548) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 724.499us - BuildTableInsertTime: 228.501us - BuildTableTime: 231.266us - CloseTime: 0ns - ExecTime: 1.357ms - InputRows: 12.547K (12547) - MemoryUsage: - BuildBlocks: 820.76 KB - BuildKeyArena: 196.06 KB - HashTable: 125.27 KB - PeakMemoryUsage: 1.12 MB - OpenTime: 16.475us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.309us - RuntimeFilterComputeTime: 312.94us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 443.38 KB - CloseTime: 5.911us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 725.534us - ExecTime: 186.1us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 30.699us - ProjectionTime: 0ns - RowsProduced: 12.547K (12547) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s572ms PipelineXTask (index=13):(Active: 1.300ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.196ms - CloseTime: 7.246us - GetBlockTime: 156.951us - OpenTime: 1.352us - PrepareTime: 90.924us - SinkTime: 950.612us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.273ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.22ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.6us - BuildRows: 8.822K (8822) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 644.84us - BuildTableInsertTime: 138.395us - BuildTableTime: 140.465us - CloseTime: 0ns - ExecTime: 966.155us - InputRows: 8.821K (8821) - MemoryUsage: - BuildBlocks: 576.74 KB - BuildKeyArena: 137.84 KB - HashTable: 107.08 KB - PeakMemoryUsage: 821.65 KB - OpenTime: 19.783us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.918us - RuntimeFilterComputeTime: 102.789us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 313.04 KB - CloseTime: 5.996us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 607.515us - ExecTime: 181.689us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 30.362us - ProjectionTime: 0ns - RowsProduced: 8.821K (8821) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s572ms PipelineXTask (index=15):(Active: 1.508ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.435ms - CloseTime: 7.268us - GetBlockTime: 187.670us - OpenTime: 1.543us - PrepareTime: 59.304us - SinkTime: 1.142ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.477ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.520ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.215us - BuildRows: 9.306K (9306) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 700.483us - BuildTableInsertTime: 184.143us - BuildTableTime: 187.568us - CloseTime: 0ns - ExecTime: 1.155ms - InputRows: 9.305K (9305) - MemoryUsage: - BuildBlocks: 608.48 KB - BuildKeyArena: 145.41 KB - HashTable: 109.44 KB - PeakMemoryUsage: 863.33 KB - OpenTime: 18.39us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.73us - RuntimeFilterComputeTime: 181.482us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 330.28 KB - CloseTime: 5.670us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 637.567us - ExecTime: 195.626us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 200.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 14.557us - ProjectionTime: 0ns - RowsProduced: 9.305K (9305) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s572ms PipelineXTask (index=17):(Active: 1.337ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.274ms - CloseTime: 9.877us - GetBlockTime: 191.400us - OpenTime: 2.266us - PrepareTime: 46.567us - SinkTime: 986.53us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.306ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.82ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.515us - BuildRows: 10.21K (10210) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 660.992us - BuildTableInsertTime: 120.26us - BuildTableTime: 123.62us - CloseTime: 0ns - ExecTime: 997.508us - InputRows: 10.209K (10209) - MemoryUsage: - BuildBlocks: 667.60 KB - BuildKeyArena: 159.53 KB - HashTable: 113.86 KB - PeakMemoryUsage: 940.99 KB - OpenTime: 16.480us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.127us - RuntimeFilterComputeTime: 125.517us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 357.23 KB - CloseTime: 7.847us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 643.678us - ExecTime: 200.589us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 128.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 12.794us - ProjectionTime: 0ns - RowsProduced: 10.209K (10209) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s572ms PipelineXTask (index=19):(Active: 970.17us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 919.470us - CloseTime: 3.280us - GetBlockTime: 152.212us - OpenTime: 1.533us - PrepareTime: 41.445us - SinkTime: 676.216us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 947.11us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.338ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.870us - BuildRows: 6.497K (6497) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 443.789us - BuildTableInsertTime: 69.357us - BuildTableTime: 70.917us - CloseTime: 0ns - ExecTime: 686.912us - InputRows: 6.496K (6496) - MemoryUsage: - BuildBlocks: 424.85 KB - BuildKeyArena: 101.52 KB - HashTable: 63.73 KB - PeakMemoryUsage: 590.08 KB - OpenTime: 16.212us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.382us - RuntimeFilterComputeTime: 91.485us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 229.72 KB - CloseTime: 2.619us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 593.765us - ExecTime: 151.884us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 72.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 7.828us - ProjectionTime: 0ns - RowsProduced: 6.496K (6496) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s571ms PipelineXTask (index=21):(Active: 831.36us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 768.500us - CloseTime: 6.239us - GetBlockTime: 133.37us - OpenTime: 1.760us - PrepareTime: 50.295us - SinkTime: 559.250us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 806.259us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.379ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.58us - BuildRows: 3.729K (3729) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 262.700us - BuildTableInsertTime: 66.285us - BuildTableTime: 68.226us - CloseTime: 0ns - ExecTime: 567.979us - InputRows: 3.728K (3728) - MemoryUsage: - BuildBlocks: 243.67 KB - BuildKeyArena: 58.27 KB - HashTable: 50.21 KB - PeakMemoryUsage: 352.14 KB - OpenTime: 12.597us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 114.65us - RuntimeFilterComputeTime: 41.970us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 139.93 KB - CloseTime: 4.763us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 528.708us - ExecTime: 145.974us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 56.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 17.910us - ProjectionTime: 0ns - RowsProduced: 3.728K (3728) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s572ms PipelineXTask (index=23):(Active: 2.384ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.311ms - CloseTime: 14.590us - GetBlockTime: 216.270us - OpenTime: 1.646us - PrepareTime: 51.761us - SinkTime: 1.981ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.344ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.455ms HASH_JOIN_SINK_OPERATOR (id=248): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.607us - BuildRows: 18.0K (18000) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.501ms - BuildTableInsertTime: 207.713us - BuildTableTime: 210.249us - CloseTime: 0ns - ExecTime: 1.993ms - InputRows: 17.999K (17999) - MemoryUsage: - BuildBlocks: 1.15 MB - BuildKeyArena: 281.25 KB - HashTable: 215.89 KB - PeakMemoryUsage: 1.63 MB - OpenTime: 16.624us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.379us - RuntimeFilterComputeTime: 206.994us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=245): - BlocksProduced: 24 - BytesReceived: 625.28 KB - CloseTime: 12.969us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.7ms - ExecTime: 230.544us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 256.00 KB - PeakMemoryUsage: 6.27 KB - OpenTime: 14.646us - ProjectionTime: 0ns - RowsProduced: 17.999K (17999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s573ms Fragment 57: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.25ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.433ms - CloseTime: 63.351us - GetBlockTime: 50.837us - OpenTime: 263.981us - PrepareTime: 255.405us - SinkTime: 1.84ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.950ms - WaitBfTime: 787.598ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.548ms DATA_STREAM_SINK_OPERATOR (id=247,dst_id=247): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.11 KB - CloseTime: 17.946us - CompressTime: 0ns - ExecTime: 1.194ms - InputRows: 5.62K (5620) - LocalBytesSent: 51.25 KB - LocalSendTime: 91.341us - LocalSentRows: 2.828K (2828) - MemoryUsage: - PeakMemoryUsage: 141.00 KB - MergeBlockTime: 0ns - OpenTime: 93.117us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 288.297ms - RowsProduced: 5.62K (5620) - RpcAvgTime: 279.451ms - RpcCount: 12 - RpcMaxTime: 279.520ms - RpcMinTime: 279.395ms - RpcSumTime: 3s353ms - SerializeBatchTime: 134.65us - SplitBlockDistributeByChannelTime: 300.948us - SplitBlockHashComputeTime: 89.128us - UncompressedRowBatchSize: 53.83 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 11.962us - BlocksProduced: 2 - CloseTime: 40.876us - ExecTime: 10.524ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 351.647us - ProcessConjunctTime: 62.411us - ProjectionTime: 227.786us - RowsProduced: 5.62K (5620) - RowsRead: 5.62K (5620) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.859ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 9.853ms - 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.765us, ] - PerScannerRowsRead: [5.62K, ] - PerScannerWaitTime: [8.859ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 33.977us - MemoryUsage: - FreeBlocks: 212.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 466.116us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 117ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 995.425us - ScannerCtxSchedTime: 8.857ms - ScannerFilterTime: 2.461us - ScannerGetBlockTime: 54.23us - ScannerInitTime: 152.331us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 6.641us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.431us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.980us - BlockInitTime: 50.423us - BlockLoadTime: 358.109us - BlocksLoad: 3 - CachedPagesNum: 3 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4 - FirstReadSeekTime: 77.713us - FirstReadTime: 247.7us - IOTimer: 0ns - InvertedIndexFilterTime: 652ns - 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: 619ns - OutputIndexResultColumnTimer: 422ns - 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.87, port:9060)): PipelineXTask (index=0):(Active: 926.313us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 721.429us - CloseTime: 14.140us - GetBlockTime: 128.808us - OpenTime: 7.170us - PrepareTime: 176.944us - SinkTime: 540.862us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 902.814us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 612.404us DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.725us - CompressTime: 0ns - ExecTime: 662.867us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 121.880us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 114.667us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.649ms - RowsProduced: 0 - RpcAvgTime: 1.595ms - RpcCount: 12 - RpcMaxTime: 1.817ms - RpcMinTime: 525.332us - RpcSumTime: 19.145ms - 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=244): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.113us - ExecTime: 96.713us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 32.841us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.429us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 51.908us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s262ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 64.860us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.30 MB - OpenTime: 2.254us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 831.306ms PipelineXTask (index=3):(Active: 831.381us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 610.183us - CloseTime: 23.87us - GetBlockTime: 40.75us - OpenTime: 3.900us - PrepareTime: 189.330us - SinkTime: 546.166us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 801.151us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.563ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.449us - CompressTime: 0ns - ExecTime: 669.195us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 96.658us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 111.226us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.693ms - RowsProduced: 0 - RpcAvgTime: 1.663ms - RpcCount: 12 - RpcMaxTime: 1.826ms - RpcMinTime: 634.339us - RpcSumTime: 19.966ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 497ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 8.60us - ExecTime: 87.89us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 40.650us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 10.763us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 25.695us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s140ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.819us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 822ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.756ms PipelineXTask (index=6):(Active: 682.937us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 464.815us - CloseTime: 36.334us - GetBlockTime: 21.413us - OpenTime: 3.850us - PrepareTime: 170.384us - SinkTime: 421.397us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 637.339us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.112ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.24us - CompressTime: 0ns - ExecTime: 532.634us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 78.836us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 92.561us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.232ms - RowsProduced: 0 - RpcAvgTime: 1.701ms - RpcCount: 12 - RpcMaxTime: 2.286ms - RpcMinTime: 1.421ms - RpcSumTime: 20.412ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 325ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 12.490us - ExecTime: 69.673us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 37.418us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.299us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.861us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s140ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.334us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 604ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.734ms PipelineXTask (index=9):(Active: 1.333ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.127ms - CloseTime: 13.842us - GetBlockTime: 105.564us - OpenTime: 2.920us - PrepareTime: 184.297us - SinkTime: 976.517us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.308ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.602ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.434us - CompressTime: 0ns - ExecTime: 1.89ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 228.430us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 106.717us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.107ms - RowsProduced: 0 - RpcAvgTime: 1.755ms - RpcCount: 12 - RpcMaxTime: 2.276ms - RpcMinTime: 1.480ms - RpcSumTime: 21.61ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1000ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 4.134us - ExecTime: 130.578us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 25.156us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 30.936us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 67.203us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s140ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.332us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 662ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.724ms PipelineXTask (index=12):(Active: 630.530us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 427.914us - CloseTime: 18.148us - GetBlockTime: 20.242us - OpenTime: 3.780us - PrepareTime: 176.668us - SinkTime: 382.949us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 605.188us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.554ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.17us - CompressTime: 0ns - ExecTime: 494.341us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 67.691us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 102.119us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.910ms - RowsProduced: 0 - RpcAvgTime: 2.33ms - RpcCount: 12 - RpcMaxTime: 2.166ms - RpcMinTime: 1.787ms - RpcSumTime: 24.404ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 305ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 5.790us - ExecTime: 48.30us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 23.77us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.752us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.218us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s149ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.353us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 818ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.457ms PipelineXTask (index=15):(Active: 622.476us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 410.956us - CloseTime: 20.570us - GetBlockTime: 24.490us - OpenTime: 3.440us - PrepareTime: 182.257us - SinkTime: 365.598us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 594.890us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.96ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.792us - CompressTime: 0ns - ExecTime: 487.95us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 71.676us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 109.997us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.223ms - RowsProduced: 0 - RpcAvgTime: 1.688ms - RpcCount: 12 - RpcMaxTime: 2.287ms - RpcMinTime: 1.400ms - RpcSumTime: 20.263ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 400ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 6.211us - ExecTime: 46.200us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.357us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 9.173us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.3us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s140ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.634us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 836ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.720ms PipelineXTask (index=18):(Active: 781.774us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 605.375us - CloseTime: 26.503us - GetBlockTime: 35.540us - OpenTime: 3.425us - PrepareTime: 141.695us - SinkTime: 549.152us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 748.254us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.816ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.310us - CompressTime: 0ns - ExecTime: 647.836us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 103.56us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 84.928us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.720ms - RowsProduced: 0 - RpcAvgTime: 1.560ms - RpcCount: 12 - RpcMaxTime: 1.832ms - RpcMinTime: 575.0us - RpcSumTime: 18.728ms - 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 HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.235us - ExecTime: 61.553us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.818us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.574us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 23.104us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s140ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.612us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 581ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.467ms PipelineXTask (index=21):(Active: 1.186ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 992.529us - CloseTime: 23.115us - GetBlockTime: 72.221us - OpenTime: 6.508us - PrepareTime: 159.476us - SinkTime: 886.295us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.568us DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.361us - CompressTime: 0ns - ExecTime: 1.3ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 212.669us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 104.542us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.148ms - RowsProduced: 0 - RpcAvgTime: 1.692ms - RpcCount: 12 - RpcMaxTime: 2.271ms - RpcMinTime: 1.462ms - RpcSumTime: 20.308ms - 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 HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.320us - ExecTime: 95.83us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.179us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 16.202us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 49.868us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s149ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.155us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 540ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.954ms PipelineXTask (index=24):(Active: 943.698us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 731.932us - CloseTime: 24.103us - GetBlockTime: 71.571us - OpenTime: 6.783us - PrepareTime: 175.366us - SinkTime: 627.213us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 910.298us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.207ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.658us - CompressTime: 0ns - ExecTime: 731.615us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 115.657us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 90.652us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.605ms - RowsProduced: 0 - RpcAvgTime: 1.651ms - RpcCount: 12 - RpcMaxTime: 1.819ms - RpcMinTime: 846.136us - RpcSumTime: 19.812ms - 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 HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.873us - ExecTime: 102.457us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 27.8us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 24.714us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 41.450us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s143ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.143us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 623ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 943.949ms PipelineXTask (index=27):(Active: 1.226ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.32ms - CloseTime: 18.908us - GetBlockTime: 146.917us - OpenTime: 4.588us - PrepareTime: 164.986us - SinkTime: 849.752us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.196ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 338.678us DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.447us - CompressTime: 0ns - ExecTime: 948.523us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 174.704us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 94.718us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.158ms - RowsProduced: 0 - RpcAvgTime: 1.668ms - RpcCount: 12 - RpcMaxTime: 2.268ms - RpcMinTime: 1.451ms - RpcSumTime: 20.24ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 907ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 5.973us - ExecTime: 159.550us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.752us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 19.10us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 109.233us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s149ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 6.622us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 841ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.811ms PipelineXTask (index=30):(Active: 784.577us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 606.701us - CloseTime: 24.135us - GetBlockTime: 36.875us - OpenTime: 5.189us - PrepareTime: 143.244us - SinkTime: 544.68us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 735.595us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.879ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.260us - CompressTime: 0ns - ExecTime: 643.683us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 93.88us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 89.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.5ms - RowsProduced: 0 - RpcAvgTime: 2.75ms - RpcCount: 12 - RpcMaxTime: 2.280ms - RpcMinTime: 1.365ms - RpcSumTime: 24.906ms - 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 HASH_JOIN_OPERATOR (id=244): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 10.285us - ExecTime: 62.98us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.536us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.907us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 24.498us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s143ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.97us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 654ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 943.936ms PipelineXTask (index=33):(Active: 1.28ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 846.949us - CloseTime: 14.410us - GetBlockTime: 34.379us - OpenTime: 6.905us - PrepareTime: 154.907us - SinkTime: 784.645us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.6ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 784.76us DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.215us - CompressTime: 0ns - ExecTime: 896.228us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 214.39us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 105.88us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.816ms - RowsProduced: 0 - RpcAvgTime: 2.101ms - RpcCount: 12 - RpcMaxTime: 2.271ms - RpcMinTime: 1.466ms - RpcSumTime: 25.222ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 538ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 0 - BuildOutputBlock: 0ns - CloseTime: 5.701us - ExecTime: 57.250us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.212us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.231us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 21.988us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s149ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.720us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 597ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 944.915ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 750.523us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 329.694us - CloseTime: 55.943us - GetBlockTime: 67.241us - OpenTime: 212.825us - PrepareTime: 136.367us - SinkTime: 22.292us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 675.946us - WaitBfTime: 788.828ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.830ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 22.32us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.175us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.643us - BlocksProduced: 0 - CloseTime: 52.398us - ExecTime: 47.848ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 287.975us - ProcessConjunctTime: 62.583us - ProjectionTime: 2.791us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 12.784ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 47.439ms - 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.451us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [12.784ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 34.535ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 113ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.897ms - ScannerCtxSchedTime: 12.782ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.526us - ScannerInitTime: 127.502us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 292ns - BlockConditionsFilteredBloomFilterTime: 558ns - BlockConditionsFilteredDictTime: 409ns - BlockConditionsFilteredTime: 7.330us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 498ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.675us - BlockInitTime: 49.582us - BlockLoadTime: 34.295ms - BlocksLoad: 62 - CachedPagesNum: 47 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 30.293ms - FirstReadSeekCount: 61 - FirstReadSeekTime: 15.645us - FirstReadTime: 782.972us - IOTimer: 0ns - InvertedIndexFilterTime: 390ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.849ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 465.486us - OutputIndexResultColumnTimer: 3.817us - RawRowsRead: 245.246K (245246) - 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.909ms - ShortPredEvalTime: 319.218us - TotalPagesNum: 47 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 27.951us PipelineXTask (index=4):(Active: 668.261us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 270.376us - CloseTime: 43.844us - GetBlockTime: 50.994us - OpenTime: 172.178us - PrepareTime: 173.148us - SinkTime: 23.623us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 614.328us - WaitBfTime: 788.908ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.632ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.905us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.278us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.87us - BlocksProduced: 0 - CloseTime: 40.722us - ExecTime: 51.773ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 285.868us - ProcessConjunctTime: 82.613us - ProjectionTime: 2.826us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.667ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 51.393ms - 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: [10.924us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [9.667ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 41.599ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 165ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.359ms - ScannerCtxSchedTime: 9.666ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.492us - ScannerInitTime: 61.636us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 348ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.923us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.897us - BlockInitTime: 48.617us - BlockLoadTime: 41.405ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 35.965ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 59.810us - FirstReadTime: 4.199ms - IOTimer: 0ns - InvertedIndexFilterTime: 605ns - 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: 60.646us - OutputIndexResultColumnTimer: 8.839us - RawRowsRead: 341.69K (341690) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 850.594us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 371.694us - CloseTime: 35.280us - GetBlockTime: 48.172us - OpenTime: 275.865us - PrepareTime: 158.469us - SinkTime: 24.290us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 804.971us - WaitBfTime: 797.778ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.622ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 24.667us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.190us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.680us - BlocksProduced: 0 - CloseTime: 31.949us - ExecTime: 106.805ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 370.414us - ProcessConjunctTime: 106.433us - ProjectionTime: 2.311us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.126ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 106.353ms - 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.021us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [6.126ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 100.122ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 140ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.202ms - ScannerCtxSchedTime: 6.124ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.741us - ScannerInitTime: 118.852us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 275ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.348us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 13.223us - BlockInitTime: 47.120us - BlockLoadTime: 99.920ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 94.518ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 88.323us - FirstReadTime: 4.311ms - IOTimer: 0ns - InvertedIndexFilterTime: 401ns - 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: 38.702us - OutputIndexResultColumnTimer: 9.876us - RawRowsRead: 343.677K (343677) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 748.591us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 317.632us - CloseTime: 26.566us - GetBlockTime: 13.933us - OpenTime: 272.755us - PrepareTime: 123.921us - SinkTime: 3.760us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 706.140us - WaitBfTime: 798.199ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.600ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 4.782us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.156us - 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: [15313] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.927us - BlocksProduced: 0 - CloseTime: 25.398us - ExecTime: 101.322ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 345.287us - ProcessConjunctTime: 42.355us - ProjectionTime: 2.147us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.341ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.935ms - 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: [7.294us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [10.341ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 90.497ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 95ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 28.172ms - ScannerCtxSchedTime: 10.339ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.160us - ScannerInitTime: 208.738us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 380ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.211us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.234us - BlockInitTime: 59.859us - BlockLoadTime: 90.277ms - BlocksLoad: 93 - CachedPagesNum: 71 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 28.622ms - FirstReadSeekCount: 184 - FirstReadSeekTime: 71.142us - FirstReadTime: 60.452ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.906us - 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: 41.906us - OutputIndexResultColumnTimer: 10.713us - RawRowsRead: 372.571K (372571) - 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 PipelineXTask (index=13):(Active: 594.981us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 235.156us - CloseTime: 41.545us - GetBlockTime: 56.790us - OpenTime: 136.317us - PrepareTime: 173.115us - SinkTime: 19.880us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 543.950us - WaitBfTime: 798.291ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.374ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.252us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.274us - 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: [15315] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.169us - BlocksProduced: 0 - CloseTime: 38.85us - ExecTime: 55.846ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 241.393us - ProcessConjunctTime: 49.545us - ProjectionTime: 3.165us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.834ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 55.507ms - 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: [10.353us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [7.834ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 47.580ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 47ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.665ms - ScannerCtxSchedTime: 7.832ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.593us - ScannerInitTime: 54.983us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 185ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.40us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 7.199us - BlockInitTime: 30.396us - BlockLoadTime: 47.406ms - BlocksLoad: 95 - CachedPagesNum: 73 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 43.57ms - FirstReadSeekCount: 188 - FirstReadSeekTime: 52.684us - FirstReadTime: 3.439ms - 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: 28.815us - OutputIndexResultColumnTimer: 6.945us - RawRowsRead: 379.18K (379180) - 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: 73 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=16):(Active: 847.388us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 368.429us - CloseTime: 41.223us - GetBlockTime: 40.773us - OpenTime: 280.562us - PrepareTime: 150.475us - SinkTime: 26.817us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 538.945us - WaitBfTime: 798.200ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.757ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 27.73us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.127us - 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: [15331] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.108us - BlocksProduced: 0 - CloseTime: 37.818us - ExecTime: 26.67ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 363.179us - ProcessConjunctTime: 55.234us - ProjectionTime: 2.195us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.490ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 25.623ms - 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.762us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [11.490ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 14.51ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 48ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.4ms - ScannerCtxSchedTime: 11.488ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.414us - ScannerInitTime: 189.309us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 287ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.441us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 17.47us - BlockInitTime: 51.822us - BlockLoadTime: 13.869ms - BlocksLoad: 71 - CachedPagesNum: 56 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 10.731ms - FirstReadSeekCount: 140 - FirstReadSeekTime: 39.639us - FirstReadTime: 2.425ms - 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: 19.54us - OutputIndexResultColumnTimer: 6.505us - RawRowsRead: 280.538K (280538) - 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: 56 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=19):(Active: 449.495us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 175.33us - CloseTime: 36.384us - GetBlockTime: 31.785us - OpenTime: 108.609us - PrepareTime: 123.709us - SinkTime: 16.151us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 406.594us - WaitBfTime: 798.880ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.508ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.749us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.121us - 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: [15317] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.922us - BlocksProduced: 0 - CloseTime: 33.115us - ExecTime: 90.929ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 181.844us - ProcessConjunctTime: 46.65us - ProjectionTime: 2.722us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 16.702ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 90.680ms - 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.603us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [16.702ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 73.875ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 117ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.956ms - ScannerCtxSchedTime: 16.701ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.134us - ScannerInitTime: 40.956us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 365ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.632us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.588us - BlockInitTime: 43.683us - BlockLoadTime: 73.652ms - BlocksLoad: 84 - CachedPagesNum: 64 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 68.533ms - FirstReadSeekCount: 166 - FirstReadSeekTime: 51.752us - FirstReadTime: 3.920ms - IOTimer: 0ns - InvertedIndexFilterTime: 474ns - 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: 66.459us - OutputIndexResultColumnTimer: 8.433us - RawRowsRead: 334.289K (334289) - 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: 64 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=22):(Active: 538.717us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 224.693us - CloseTime: 41.654us - GetBlockTime: 54.89us - OpenTime: 127.998us - PrepareTime: 135.782us - SinkTime: 19.543us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 487.697us - WaitBfTime: 798.556ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.483ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.731us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.83us - 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: [15319] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.154us - BlocksProduced: 0 - CloseTime: 37.963us - ExecTime: 78.421ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 207.433us - ProcessConjunctTime: 48.94us - ProjectionTime: 2.896us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 52.803ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 78.119ms - 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: [10.134us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [52.803ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 25.215ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 41ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.696ms - ScannerCtxSchedTime: 52.801ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.417us - ScannerInitTime: 59.193us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 221ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.400us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.571us - BlockInitTime: 36.835us - BlockLoadTime: 25.36ms - BlocksLoad: 85 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 21.572ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 47.589us - FirstReadTime: 2.682ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.622us - 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.410us - OutputIndexResultColumnTimer: 5.803us - RawRowsRead: 338.501K (338501) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=25):(Active: 528.399us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 182.192us - CloseTime: 94.991us - GetBlockTime: 33.804us - OpenTime: 113.148us - PrepareTime: 129.303us - SinkTime: 13.871us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 424.377us - WaitBfTime: 798.939ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.81ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.399us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.79us - 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: [15325] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.702us - BlocksProduced: 0 - CloseTime: 92.730us - ExecTime: 115.383ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 190.146us - ProcessConjunctTime: 42.884us - ProjectionTime: 3.157us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 15.65ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 115.63ms - 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: [10.052us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [15.065ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 99.884ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 125ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.996ms - ScannerCtxSchedTime: 15.63ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.363us - ScannerInitTime: 44.211us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 417ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.324us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.538us - BlockInitTime: 72.588us - BlockLoadTime: 99.623ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 94.399ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 49.487us - FirstReadTime: 4.57ms - IOTimer: 0ns - InvertedIndexFilterTime: 800ns - 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.432us - OutputIndexResultColumnTimer: 8.132us - RawRowsRead: 341.787K (341787) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=28):(Active: 536.989us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 190.932us - CloseTime: 27.494us - GetBlockTime: 28.803us - OpenTime: 128.224us - PrepareTime: 181.492us - SinkTime: 14.49us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 500.531us - WaitBfTime: 799.40ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.522ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.789us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.960us - 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: [15349] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.540us - BlocksProduced: 0 - CloseTime: 24.798us - ExecTime: 100.886ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 239.160us - ProcessConjunctTime: 40.523us - ProjectionTime: 2.301us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 24.700ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.590ms - 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: [7.892us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [24.700ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 75.781ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.352ms - ScannerCtxSchedTime: 24.698ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.263us - ScannerInitTime: 59.650us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 391ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.802us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.768us - BlockInitTime: 36.554us - BlockLoadTime: 75.610ms - BlocksLoad: 106 - CachedPagesNum: 80 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 59.119ms - FirstReadSeekCount: 210 - FirstReadSeekTime: 50.593us - FirstReadTime: 15.619ms - IOTimer: 0ns - InvertedIndexFilterTime: 419ns - 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: 29.727us - OutputIndexResultColumnTimer: 6.524us - RawRowsRead: 423.736K (423736) - 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: 80 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=31):(Active: 515.353us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 180.956us - CloseTime: 35.543us - GetBlockTime: 20.549us - OpenTime: 133.3us - PrepareTime: 156.516us - SinkTime: 8.323us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 471.141us - WaitBfTime: 799.395ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.31ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.123us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.109us - 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: [15351] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 7.238us - BlocksProduced: 0 - CloseTime: 32.942us - ExecTime: 128.740ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 208.672us - ProcessConjunctTime: 55.9us - ProjectionTime: 6.461us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 52.917ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 128.472ms - 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.365us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [52.917ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 75.465ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 38ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.768ms - ScannerCtxSchedTime: 52.915ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.364us - ScannerInitTime: 47.777us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 264ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.504us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.614us - BlockInitTime: 35.511us - BlockLoadTime: 75.292ms - BlocksLoad: 104 - CachedPagesNum: 79 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 70.975ms - FirstReadSeekCount: 206 - FirstReadSeekTime: 43.99us - FirstReadTime: 3.531ms - IOTimer: 0ns - InvertedIndexFilterTime: 584ns - 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.419us - OutputIndexResultColumnTimer: 6.129us - RawRowsRead: 416.268K (416268) - 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: 79 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=34):(Active: 2.793ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.363ms - CloseTime: 35.488us - GetBlockTime: 21.700us - OpenTime: 1.266ms - PrepareTime: 121.484us - SinkTime: 60.66us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 493.905us - WaitBfTime: 798.964ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 985.704us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 60.510us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.530us - 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: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.87us - BlocksProduced: 0 - CloseTime: 32.679us - ExecTime: 145.901ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.336ms - ProcessConjunctTime: 44.393us - ProjectionTime: 2.294us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 53.148ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 144.508ms - 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.768us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [53.148ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 91.271ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 146ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.181ms - ScannerCtxSchedTime: 53.146ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.773us - ScannerInitTime: 1.190ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 347ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.743us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 13.527us - BlockInitTime: 49.281us - BlockLoadTime: 91.44ms - BlocksLoad: 100 - CachedPagesNum: 76 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 76.206ms - FirstReadSeekCount: 198 - FirstReadSeekTime: 59.642us - FirstReadTime: 4.558ms - IOTimer: 0ns - InvertedIndexFilterTime: 614ns - 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: 40.52us - OutputIndexResultColumnTimer: 9.78us - RawRowsRead: 399.553K (399553) - 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: 76 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 33.769ms, % non-child: 0.00%) - CoreChangeTimes: 43 - ExecuteTime: 33.675ms - CloseTime: 15.535us - GetBlockTime: 2.605ms - OpenTime: 1.926us - PrepareTime: 54.845us - SinkTime: 29.933ms - GetBlockCounter: 165 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 115 - NumBlockedTimes: 117 - NumScheduleTimes: 117 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.459ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.905ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 101.602us - BuildRows: 664.042K (664042) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.667ms - BuildTableInsertTime: 6.673ms - BuildTableTime: 7.279ms - CloseTime: 0ns - ExecTime: 29.872ms - InputRows: 664.041K (664041) - MemoryUsage: - BuildBlocks: 20.90 MB - BuildKeyArena: 0.00 - HashTable: 6.53 MB - PeakMemoryUsage: 27.43 MB - OpenTime: 19.777us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.360us - RuntimeFilterComputeTime: 3.433ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=242): - BlocksProduced: 184 - BytesReceived: 1.61 MB - CloseTime: 12.372us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.696ms - ExecTime: 2.469ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.43 MB - MemoryUsage: - Blocks: 2.73 MB - PeakMemoryUsage: 480.00 KB - OpenTime: 16.396us - ProjectionTime: 0ns - RowsProduced: 664.041K (664041) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s942ms PipelineXTask (index=5):(Active: 174.831us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 99.489us - CloseTime: 10.780us - GetBlockTime: 0ns - OpenTime: 1.465us - PrepareTime: 59.604us - SinkTime: 73.860us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 157.211us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 576.168us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 90.449us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.282us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.750us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.346us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.931us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 118.643us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 44.142us - CloseTime: 11.394us - GetBlockTime: 0ns - OpenTime: 1.135us - PrepareTime: 58.360us - SinkTime: 26.710us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.978us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 683.859us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.999us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.672us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.136us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.135us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.433us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 183.740us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 103.975us - CloseTime: 21.246us - GetBlockTime: 0ns - OpenTime: 1.523us - PrepareTime: 52.581us - SinkTime: 75.193us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 149.20us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 347.290us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 87.45us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.941us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 17.440us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.359us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.940us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 111.531us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.919us - CloseTime: 4.163us - GetBlockTime: 0ns - OpenTime: 1.543us - PrepareTime: 72.662us - SinkTime: 16.175us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.228us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 638.296us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.600us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.380us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.837us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.239us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.775us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 101.637us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 40.126us - CloseTime: 5.572us - GetBlockTime: 0ns - OpenTime: 1.615us - PrepareTime: 51.61us - SinkTime: 26.708us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.867us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 726.887us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.494us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.29us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.881us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.22us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.296us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 147.143us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 59.1us - CloseTime: 21.452us - GetBlockTime: 0ns - OpenTime: 2.158us - PrepareTime: 51.110us - SinkTime: 41.657us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 101.846us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 188.6us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.698us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.331us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 19.825us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.865us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.505us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 133.861us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 66.294us - CloseTime: 7.110us - GetBlockTime: 0ns - OpenTime: 2.47us - PrepareTime: 54.392us - SinkTime: 50.946us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.82us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.624us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 64.580us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.76us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.237us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.194us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.426us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 1.382ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 73.479us - CloseTime: 1.215ms - GetBlockTime: 0ns - OpenTime: 1.739us - PrepareTime: 86.989us - SinkTime: 49.152us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 158.624us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 190.699us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 65.478us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.864us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.213ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.265ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 51.688us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 131.617us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 52.835us - CloseTime: 7.937us - GetBlockTime: 0ns - OpenTime: 1.534us - PrepareTime: 65.714us - SinkTime: 35.978us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.227us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 139.467us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 64.153us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.610us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.49us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.135us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 168.96us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 88.497us - CloseTime: 16.290us - GetBlockTime: 0ns - OpenTime: 2.200us - PrepareTime: 56.565us - SinkTime: 62.87us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 143.103us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.104ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 80.509us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.343us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s92ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.184us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.880us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.15us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 96.597us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.475us - CloseTime: 4.856us - GetBlockTime: 0ns - OpenTime: 1.587us - PrepareTime: 57.5us - SinkTime: 16.27us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.275us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 259.203us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8556 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.761us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.42us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s93ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.649us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.646us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.409us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 12.938ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 12.667ms - CloseTime: 64.474us - GetBlockTime: 6.915ms - OpenTime: 7.916us - PrepareTime: 190.787us - SinkTime: 5.642ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.862ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.589ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 535.56 KB - CloseTime: 18.556us - CompressTime: 0ns - ExecTime: 5.767ms - InputRows: 24.497K (24497) - LocalBytesSent: 593.52 KB - LocalSendTime: 161.139us - LocalSentRows: 9.077K (9077) - MemoryUsage: - PeakMemoryUsage: 2.32 MB - MergeBlockTime: 0ns - OpenTime: 119.184us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.500ms - RowsProduced: 24.497K (24497) - RpcAvgTime: 8.185ms - RpcCount: 12 - RpcMaxTime: 11.340ms - RpcMinTime: 5.819ms - RpcSumTime: 98.220ms - SerializeBatchTime: 768.670us - SplitBlockDistributeByChannelTime: 3.148ms - SplitBlockHashComputeTime: 303.298us - UncompressedRowBatchSize: 1.04 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 41.235us - ExecTime: 6.820ms - InitProbeSideTime: 332.122us - JoinFilterTimer: 996ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.247us - OtherJoinConjunctTime: 1.690ms - ProbeExprCallTime: 3.419us - ProbeFindNextTime: 0ns - ProbeRows: 36.373K (36373) - ProbeTime: 5.586ms - ProbeWhenBuildSideOutputTime: 1.238ms - ProbeWhenProbeSideOutputTime: 1.149ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 828.72us - ProjectionTime: 1.119ms - RowsProduced: 24.497K (24497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 99.814us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 3.37 MB - OpenTime: 762ns - ProjectionTime: 0ns - RowsProduced: 36.373K (36373) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.401ms PipelineXTask (index=3):(Active: 21.609ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.429ms - CloseTime: 25.522us - GetBlockTime: 12.39ms - OpenTime: 6.473us - PrepareTime: 140.885us - SinkTime: 9.273ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 21.553ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.851ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 532.85 KB - CloseTime: 8.772us - CompressTime: 0ns - ExecTime: 9.365ms - InputRows: 25.609K (25609) - LocalBytesSent: 669.34 KB - LocalSendTime: 215.317us - LocalSentRows: 10.24K (10240) - MemoryUsage: - PeakMemoryUsage: 2.36 MB - MergeBlockTime: 0ns - OpenTime: 95.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.329ms - RowsProduced: 25.609K (25609) - RpcAvgTime: 25.90ms - RpcCount: 12 - RpcMaxTime: 26.656ms - RpcMinTime: 21.966ms - RpcSumTime: 301.89ms - SerializeBatchTime: 845.449us - SplitBlockDistributeByChannelTime: 5.737ms - SplitBlockHashComputeTime: 571.629us - UncompressedRowBatchSize: 1.04 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 15.202us - ExecTime: 11.920ms - InitProbeSideTime: 600.560us - JoinFilterTimer: 2.188us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.991us - OtherJoinConjunctTime: 2.923ms - ProbeExprCallTime: 5.988us - ProbeFindNextTime: 0ns - ProbeRows: 36.43K (36430) - ProbeTime: 9.657ms - ProbeWhenBuildSideOutputTime: 2.229ms - ProbeWhenProbeSideOutputTime: 2.83ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.284ms - ProjectionTime: 2.159ms - RowsProduced: 25.609K (25609) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 68.416us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 639ns - ProjectionTime: 0ns - RowsProduced: 36.43K (36430) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.358ms PipelineXTask (index=6):(Active: 11.772ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.528ms - CloseTime: 35.456us - GetBlockTime: 6.599ms - OpenTime: 7.754us - PrepareTime: 193.718us - SinkTime: 4.850ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 11.727ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.316ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 440.27 KB - CloseTime: 13.449us - CompressTime: 0ns - ExecTime: 4.967ms - InputRows: 21.345K (21345) - LocalBytesSent: 567.55 KB - LocalSendTime: 109.87us - LocalSentRows: 8.677K (8677) - MemoryUsage: - PeakMemoryUsage: 1.96 MB - MergeBlockTime: 0ns - OpenTime: 111.479us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.850ms - RowsProduced: 21.345K (21345) - RpcAvgTime: 18.382ms - RpcCount: 12 - RpcMaxTime: 21.532ms - RpcMinTime: 14.812ms - RpcSumTime: 220.593ms - SerializeBatchTime: 602.254us - SplitBlockDistributeByChannelTime: 2.801ms - SplitBlockHashComputeTime: 240.380us - UncompressedRowBatchSize: 877.62 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 18.790us - ExecTime: 6.512ms - InitProbeSideTime: 460.119us - JoinFilterTimer: 1.11us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.947us - OtherJoinConjunctTime: 1.691ms - ProbeExprCallTime: 4.798us - ProbeFindNextTime: 0ns - ProbeRows: 36.405K (36405) - ProbeTime: 5.458ms - ProbeWhenBuildSideOutputTime: 1.83ms - ProbeWhenProbeSideOutputTime: 984.255us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 955.307us - ProjectionTime: 957.85us - RowsProduced: 21.345K (21345) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 56.852us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 570ns - ProjectionTime: 0ns - RowsProduced: 36.405K (36405) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.324ms PipelineXTask (index=9):(Active: 19.41ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.831ms - CloseTime: 35.282us - GetBlockTime: 10.566ms - OpenTime: 5.833us - PrepareTime: 162.124us - SinkTime: 8.168ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.978ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.950ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 428.91 KB - CloseTime: 12.2us - CompressTime: 0ns - ExecTime: 8.271ms - InputRows: 20.489K (20489) - LocalBytesSent: 529.14 KB - LocalSendTime: 198.477us - LocalSentRows: 8.09K (8090) - MemoryUsage: - PeakMemoryUsage: 1.93 MB - MergeBlockTime: 0ns - OpenTime: 102.272us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.827ms - RowsProduced: 20.489K (20489) - RpcAvgTime: 19.643ms - RpcCount: 12 - RpcMaxTime: 23.783ms - RpcMinTime: 14.571ms - RpcSumTime: 235.716ms - SerializeBatchTime: 982.652us - SplitBlockDistributeByChannelTime: 4.574ms - SplitBlockHashComputeTime: 419.889us - UncompressedRowBatchSize: 859.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.247us - ExecTime: 10.451ms - InitProbeSideTime: 564.980us - JoinFilterTimer: 1.912us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.310us - OtherJoinConjunctTime: 2.902ms - ProbeExprCallTime: 5.733us - ProbeFindNextTime: 0ns - ProbeRows: 36.356K (36356) - ProbeTime: 8.466ms - ProbeWhenBuildSideOutputTime: 1.494ms - ProbeWhenProbeSideOutputTime: 1.797ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.206ms - ProjectionTime: 1.866ms - RowsProduced: 20.489K (20489) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 69.472us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 609ns - ProjectionTime: 0ns - RowsProduced: 36.356K (36356) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.289ms PipelineXTask (index=12):(Active: 9.689ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.479ms - CloseTime: 34.139us - GetBlockTime: 5.264ms - OpenTime: 8.640us - PrepareTime: 161.293us - SinkTime: 4.129ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.646ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 764.490us DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 354.98 KB - CloseTime: 12.679us - CompressTime: 0ns - ExecTime: 4.245ms - InputRows: 16.287K (16287) - LocalBytesSent: 406.53 KB - LocalSendTime: 147.346us - LocalSentRows: 6.214K (6214) - MemoryUsage: - PeakMemoryUsage: 1.47 MB - MergeBlockTime: 0ns - OpenTime: 109.623us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.333ms - RowsProduced: 16.287K (16287) - RpcAvgTime: 5.931ms - RpcCount: 12 - RpcMaxTime: 7.663ms - RpcMinTime: 3.16ms - RpcSumTime: 71.173ms - SerializeBatchTime: 749.252us - SplitBlockDistributeByChannelTime: 1.950ms - SplitBlockHashComputeTime: 179.49us - UncompressedRowBatchSize: 699.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.931us - ExecTime: 5.225ms - InitProbeSideTime: 392.942us - JoinFilterTimer: 854ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.647us - OtherJoinConjunctTime: 1.329ms - ProbeExprCallTime: 3.237us - ProbeFindNextTime: 0ns - ProbeRows: 36.025K (36025) - ProbeTime: 4.471ms - ProbeWhenBuildSideOutputTime: 751.751us - ProbeWhenProbeSideOutputTime: 937.868us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 779.945us - ProjectionTime: 677.670us - RowsProduced: 16.287K (16287) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 42.302us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 784ns - ProjectionTime: 0ns - RowsProduced: 36.025K (36025) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.910ms PipelineXTask (index=15):(Active: 12.672ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 12.455ms - CloseTime: 56.330us - GetBlockTime: 6.658ms - OpenTime: 4.557us - PrepareTime: 150.420us - SinkTime: 5.728ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.607ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 660.192us DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 314.33 KB - CloseTime: 13.748us - CompressTime: 0ns - ExecTime: 5.838ms - InputRows: 14.358K (14358) - LocalBytesSent: 360.56 KB - LocalSendTime: 124.723us - LocalSentRows: 5.512K (5512) - MemoryUsage: - PeakMemoryUsage: 1.35 MB - MergeBlockTime: 0ns - OpenTime: 104.152us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.546ms - RowsProduced: 14.358K (14358) - RpcAvgTime: 8.784ms - RpcCount: 12 - RpcMaxTime: 11.865ms - RpcMinTime: 5.750ms - RpcSumTime: 105.413ms - SerializeBatchTime: 701.14us - SplitBlockDistributeByChannelTime: 3.216ms - SplitBlockHashComputeTime: 209.638us - UncompressedRowBatchSize: 614.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.47us - ExecTime: 6.599ms - InitProbeSideTime: 586.222us - JoinFilterTimer: 901ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.292us - OtherJoinConjunctTime: 1.520ms - ProbeExprCallTime: 3.471us - ProbeFindNextTime: 0ns - ProbeRows: 36.576K (36576) - ProbeTime: 5.546ms - ProbeWhenBuildSideOutputTime: 978.52us - ProbeWhenProbeSideOutputTime: 1.30ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.57ms - ProjectionTime: 951.7us - RowsProduced: 14.358K (14358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 53.476us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.03 MB - OpenTime: 691ns - ProjectionTime: 0ns - RowsProduced: 36.576K (36576) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.920ms PipelineXTask (index=18):(Active: 14.191ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 13.990ms - CloseTime: 51.397us - GetBlockTime: 7.680ms - OpenTime: 4.258us - PrepareTime: 139.405us - SinkTime: 6.212ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.100ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 835.397us DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 385.06 KB - CloseTime: 24.984us - CompressTime: 0ns - ExecTime: 6.313ms - InputRows: 16.49K (16490) - LocalBytesSent: 366.11 KB - LocalSendTime: 145.284us - LocalSentRows: 5.596K (5596) - MemoryUsage: - PeakMemoryUsage: 1.55 MB - MergeBlockTime: 0ns - OpenTime: 86.492us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.502ms - RowsProduced: 16.49K (16490) - RpcAvgTime: 12.428ms - RpcCount: 12 - RpcMaxTime: 13.176ms - RpcMinTime: 10.610ms - RpcSumTime: 149.143ms - SerializeBatchTime: 935.993us - SplitBlockDistributeByChannelTime: 3.89ms - SplitBlockHashComputeTime: 289.415us - UncompressedRowBatchSize: 755.56 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 22.414us - ExecTime: 7.607ms - InitProbeSideTime: 470.38us - JoinFilterTimer: 1.546us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.103us - OtherJoinConjunctTime: 1.829ms - ProbeExprCallTime: 5.79us - ProbeFindNextTime: 0ns - ProbeRows: 29.979K (29979) - ProbeTime: 6.227ms - ProbeWhenBuildSideOutputTime: 1.152ms - ProbeWhenProbeSideOutputTime: 1.330ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 960.737us - ProjectionTime: 1.284ms - RowsProduced: 16.49K (16490) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 56.209us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 668ns - ProjectionTime: 0ns - RowsProduced: 29.979K (29979) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.904ms PipelineXTask (index=21):(Active: 7.20ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.780ms - CloseTime: 43.408us - GetBlockTime: 3.355ms - OpenTime: 4.686us - PrepareTime: 186.847us - SinkTime: 3.375ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.969ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.247ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 269.25 KB - CloseTime: 15.961us - CompressTime: 0ns - ExecTime: 3.515ms - InputRows: 12.342K (12342) - LocalBytesSent: 310.26 KB - LocalSendTime: 210.439us - LocalSentRows: 4.749K (4749) - MemoryUsage: - PeakMemoryUsage: 1.15 MB - MergeBlockTime: 0ns - OpenTime: 128.453us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.471ms - RowsProduced: 12.342K (12342) - RpcAvgTime: 1.525ms - RpcCount: 12 - RpcMaxTime: 2.675ms - RpcMinTime: 508.14us - RpcSumTime: 18.301ms - SerializeBatchTime: 437.802us - SplitBlockDistributeByChannelTime: 1.528ms - SplitBlockHashComputeTime: 124.453us - UncompressedRowBatchSize: 527.69 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 22.885us - ExecTime: 3.328ms - InitProbeSideTime: 170.374us - JoinFilterTimer: 371ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.958us - OtherJoinConjunctTime: 928.999us - ProbeExprCallTime: 1.517us - ProbeFindNextTime: 0ns - ProbeRows: 18.263K (18263) - ProbeTime: 2.732ms - ProbeWhenBuildSideOutputTime: 501.327us - ProbeWhenProbeSideOutputTime: 592.350us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 374.160us - ProjectionTime: 534.107us - RowsProduced: 12.342K (12342) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 48.588us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 595ns - ProjectionTime: 0ns - RowsProduced: 18.263K (18263) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.906ms PipelineXTask (index=24):(Active: 7.158ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.901ms - CloseTime: 53.180us - GetBlockTime: 3.532ms - OpenTime: 6.96us - PrepareTime: 191.611us - SinkTime: 3.307ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.96ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.179ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 269.52 KB - CloseTime: 15.528us - CompressTime: 0ns - ExecTime: 3.434ms - InputRows: 12.359K (12359) - LocalBytesSent: 311.27 KB - LocalSendTime: 130.544us - LocalSentRows: 4.761K (4761) - MemoryUsage: - PeakMemoryUsage: 1.19 MB - MergeBlockTime: 0ns - OpenTime: 116.322us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.299ms - RowsProduced: 12.359K (12359) - RpcAvgTime: 13.604ms - RpcCount: 12 - RpcMaxTime: 14.748ms - RpcMinTime: 12.908ms - RpcSumTime: 163.256ms - SerializeBatchTime: 416.837us - SplitBlockDistributeByChannelTime: 1.615ms - SplitBlockHashComputeTime: 149.812us - UncompressedRowBatchSize: 528.22 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 34.260us - ExecTime: 3.523ms - InitProbeSideTime: 245.397us - JoinFilterTimer: 543ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.263us - OtherJoinConjunctTime: 877.335us - ProbeExprCallTime: 2.123us - ProbeFindNextTime: 0ns - ProbeRows: 18.194K (18194) - ProbeTime: 2.936ms - ProbeWhenBuildSideOutputTime: 610.66us - ProbeWhenProbeSideOutputTime: 593.372us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 452.671us - ProjectionTime: 495.675us - RowsProduced: 12.359K (12359) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 23.227us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 586ns - ProjectionTime: 0ns - RowsProduced: 18.194K (18194) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.368ms PipelineXTask (index=27):(Active: 6.801ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.586ms - CloseTime: 45.450us - GetBlockTime: 3.548ms - OpenTime: 5.673us - PrepareTime: 156.921us - SinkTime: 2.988ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.729ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.239ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 262.34 KB - CloseTime: 13.777us - CompressTime: 0ns - ExecTime: 3.107ms - InputRows: 11.957K (11957) - LocalBytesSent: 300.84 KB - LocalSendTime: 139.638us - LocalSentRows: 4.6K (4600) - MemoryUsage: - PeakMemoryUsage: 1.14 MB - MergeBlockTime: 0ns - OpenTime: 108.660us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.594ms - RowsProduced: 11.957K (11957) - RpcAvgTime: 14.927ms - RpcCount: 12 - RpcMaxTime: 15.833ms - RpcMinTime: 13.712ms - RpcSumTime: 179.127ms - SerializeBatchTime: 431.73us - SplitBlockDistributeByChannelTime: 1.433ms - SplitBlockHashComputeTime: 138.865us - UncompressedRowBatchSize: 511.85 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 27.696us - ExecTime: 3.548ms - InitProbeSideTime: 197.402us - JoinFilterTimer: 433ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.443us - OtherJoinConjunctTime: 881.778us - ProbeExprCallTime: 1.470us - ProbeFindNextTime: 0ns - ProbeRows: 18.06K (18060) - ProbeTime: 3.28ms - ProbeWhenBuildSideOutputTime: 687.522us - ProbeWhenProbeSideOutputTime: 639.941us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 488.165us - ProjectionTime: 457.421us - RowsProduced: 11.957K (11957) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 21.58us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 612ns - ProjectionTime: 0ns - RowsProduced: 18.06K (18060) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.322ms PipelineXTask (index=30):(Active: 8.828ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.608ms - CloseTime: 44.287us - GetBlockTime: 4.527ms - OpenTime: 7.474us - PrepareTime: 162.273us - SinkTime: 4.16ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.773ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.278ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 258.63 KB - CloseTime: 14.564us - CompressTime: 0ns - ExecTime: 4.115ms - InputRows: 11.761K (11761) - LocalBytesSent: 294.66 KB - LocalSendTime: 213.10us - LocalSentRows: 4.505K (4505) - MemoryUsage: - PeakMemoryUsage: 1.17 MB - MergeBlockTime: 0ns - OpenTime: 89.312us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.222ms - RowsProduced: 11.761K (11761) - RpcAvgTime: 3.821ms - RpcCount: 12 - RpcMaxTime: 5.390ms - RpcMinTime: 2.340ms - RpcSumTime: 45.860ms - SerializeBatchTime: 568.842us - SplitBlockDistributeByChannelTime: 1.811ms - SplitBlockHashComputeTime: 192.174us - UncompressedRowBatchSize: 505.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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.777us - ExecTime: 4.516ms - InitProbeSideTime: 204.400us - JoinFilterTimer: 1.40us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.15us - OtherJoinConjunctTime: 1.69ms - ProbeExprCallTime: 2.526us - ProbeFindNextTime: 0ns - ProbeRows: 18.053K (18053) - ProbeTime: 3.644ms - ProbeWhenBuildSideOutputTime: 883.564us - ProbeWhenProbeSideOutputTime: 698.301us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 584.466us - ProjectionTime: 798.472us - RowsProduced: 11.761K (11761) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 28.995us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 1.54us - ProjectionTime: 0ns - RowsProduced: 18.053K (18053) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.811ms PipelineXTask (index=33):(Active: 6.583ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.273ms - CloseTime: 50.73us - GetBlockTime: 3.287ms - OpenTime: 7.673us - PrepareTime: 245.671us - SinkTime: 2.933ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.523ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.656ms DATA_STREAM_SINK_OPERATOR (id=245,dst_id=245): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 280.92 KB - CloseTime: 14.950us - CompressTime: 0ns - ExecTime: 3.122ms - InputRows: 12.499K (12499) - LocalBytesSent: 300.01 KB - LocalSendTime: 133.962us - LocalSentRows: 4.587K (4587) - MemoryUsage: - PeakMemoryUsage: 1.18 MB - MergeBlockTime: 0ns - OpenTime: 178.486us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.973ms - RowsProduced: 12.499K (12499) - RpcAvgTime: 16.921ms - RpcCount: 12 - RpcMaxTime: 19.315ms - RpcMinTime: 14.223ms - RpcSumTime: 203.60ms - SerializeBatchTime: 373.273us - SplitBlockDistributeByChannelTime: 1.397ms - SplitBlockHashComputeTime: 121.857us - UncompressedRowBatchSize: 549.94 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 31.335us - ExecTime: 3.299ms - InitProbeSideTime: 202.197us - JoinFilterTimer: 266ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.682us - OtherJoinConjunctTime: 762.57us - ProbeExprCallTime: 1.485us - ProbeFindNextTime: 0ns - ProbeRows: 17.953K (17953) - ProbeTime: 2.727ms - ProbeWhenBuildSideOutputTime: 613.362us - ProbeWhenProbeSideOutputTime: 561.161us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 443.470us - ProjectionTime: 494.5us - RowsProduced: 12.499K (12499) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s738ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 5 - CloseTime: 0ns - ExecTime: 21.838us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 694ns - ProjectionTime: 0ns - RowsProduced: 17.953K (17953) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 790.328ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.458ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 778.974us - CloseTime: 155.935us - GetBlockTime: 227.564us - OpenTime: 313.692us - PrepareTime: 195.2us - SinkTime: 169.835us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.284ms - WaitBfTime: 745.1ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.948ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 166.120us - InputRows: 68.654K (68654) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.203us - 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, 15333, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.84us - BlocksProduced: 19 - CloseTime: 153.496us - ExecTime: 65.993ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 396.589us - ProcessConjunctTime: 117.515us - ProjectionTime: 2.95ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 16.98ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 63.116ms - 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: [6.343us, 15.513us, 33.946ms, ] - PerScannerRowsRead: [0, 0, 68.65K, ] - PerScannerWaitTime: [2.268ms, 6.401ms, 7.428ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 33.363ms - MemoryUsage: - FreeBlocks: 4.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 92.716ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 863ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.348ms - ScannerCtxSchedTime: 16.82ms - ScannerFilterTime: 28.707us - ScannerGetBlockTime: 33.897ms - ScannerInitTime: 149.154us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 797ns - BlockConditionsFilteredBloomFilterTime: 435ns - BlockConditionsFilteredDictTime: 290ns - BlockConditionsFilteredTime: 22.766us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 252ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 39.619us - BlockInitTime: 188.987us - BlockLoadTime: 125.798ms - BlocksLoad: 155 - CachedPagesNum: 172 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 94.597ms - FirstReadSeekCount: 241 - FirstReadSeekTime: 144.674us - FirstReadTime: 22.933ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.400us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.763ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 544.329us - OutputIndexResultColumnTimer: 18.874us - RawRowsRead: 604.659K (604659) - 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.866ms - ShortPredEvalTime: 573.732us - TotalPagesNum: 172 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 27.478us PipelineXTask (index=4):(Active: 1.239ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 777.187us - CloseTime: 118.958us - GetBlockTime: 268.669us - OpenTime: 189.703us - PrepareTime: 129.551us - SinkTime: 250.925us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.91ms - WaitBfTime: 745.261ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.775ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 247.429us - InputRows: 67.716K (67716) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.196us - 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, 15335, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.410us - BlocksProduced: 19 - CloseTime: 115.923us - ExecTime: 77.107ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 264.677us - ProcessConjunctTime: 45.313us - ProjectionTime: 2.90ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 58.781ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 74.385ms - 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: [33.089us, 15.837us, 22.377ms, ] - PerScannerRowsRead: [0, 0, 67.72K, ] - PerScannerWaitTime: [14.703ms, 21.485ms, 22.592ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 21.921ms - MemoryUsage: - FreeBlocks: 4.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 107.478ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.2us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.578ms - ScannerCtxSchedTime: 58.775ms - ScannerFilterTime: 27.39us - ScannerGetBlockTime: 22.325ms - ScannerInitTime: 116.208us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.116us - BlockConditionsFilteredBloomFilterTime: 658ns - BlockConditionsFilteredDictTime: 344ns - BlockConditionsFilteredTime: 13.543us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 406ns - BlockInitSeekCount: 49 - BlockInitSeekTime: 62.488us - BlockInitTime: 207.700us - BlockLoadTime: 128.894ms - BlocksLoad: 160 - CachedPagesNum: 177 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 95.743ms - FirstReadSeekCount: 248 - FirstReadSeekTime: 134.605us - FirstReadTime: 4.809ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.252us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 14.704ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 963.539us - OutputIndexResultColumnTimer: 18.581us - RawRowsRead: 624.718K (624718) - 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: 12.405ms - ShortPredEvalTime: 1.174ms - TotalPagesNum: 177 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 41.458us PipelineXTask (index=7):(Active: 1.407ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 815.156us - CloseTime: 207.541us - GetBlockTime: 210.359us - OpenTime: 217.486us - PrepareTime: 155.860us - SinkTime: 331.638us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.184ms - WaitBfTime: 745.628ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.677ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 328.949us - InputRows: 66.761K (66761) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.237us - 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, 15321, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.432us - BlocksProduced: 19 - CloseTime: 204.153us - ExecTime: 63.265ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 284.858us - ProcessConjunctTime: 53.276us - ProjectionTime: 1.261ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 80.342ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 61.305ms - 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.841us, 12.428us, 10.295ms, ] - PerScannerRowsRead: [0, 0, 66.76K, ] - PerScannerWaitTime: [22.189ms, 28.339ms, 29.813ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 9.825ms - MemoryUsage: - FreeBlocks: 4.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 57.487ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 850ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.355ms - ScannerCtxSchedTime: 80.338ms - ScannerFilterTime: 25.557us - ScannerGetBlockTime: 10.249ms - ScannerInitTime: 114.825us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.35us - BlockConditionsFilteredBloomFilterTime: 540ns - BlockConditionsFilteredDictTime: 274ns - BlockConditionsFilteredTime: 12.369us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 393ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 37.799us - BlockInitTime: 194.512us - BlockLoadTime: 66.940ms - BlocksLoad: 165 - CachedPagesNum: 181 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 53.763ms - FirstReadSeekCount: 262 - FirstReadSeekTime: 122.24us - FirstReadTime: 4.363ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.742us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.991ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 719.982us - OutputIndexResultColumnTimer: 15.627us - RawRowsRead: 645.772K (645772) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 242.615K (242615) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 3.177ms - ShortPredEvalTime: 1.92ms - TotalPagesNum: 181 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 35.796us PipelineXTask (index=10):(Active: 1.141ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 622.826us - CloseTime: 125.115us - GetBlockTime: 186.804us - OpenTime: 225.597us - PrepareTime: 157.435us - SinkTime: 156.794us - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.3ms - WaitBfTime: 763.797ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 63.691ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 158.602us - InputRows: 68.072K (68072) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.779us - 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, 15323, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.501us - BlocksProduced: 19 - CloseTime: 122.50us - ExecTime: 248.634ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 306.696us - ProcessConjunctTime: 59.640us - ProjectionTime: 4.915ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 140.354ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 243.100ms - 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.962us, 12.331us, 182.250ms, ] - PerScannerRowsRead: [0, 0, 68.07K, ] - PerScannerWaitTime: [46.283ms, 46.676ms, 47.394ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 47.71ms - MemoryUsage: - FreeBlocks: 4.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 80.677ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 868ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 65.603ms - ScannerCtxSchedTime: 140.350ms - ScannerFilterTime: 29.142us - ScannerGetBlockTime: 182.195ms - ScannerInitTime: 125.821us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.145us - BlockConditionsFilteredBloomFilterTime: 613ns - BlockConditionsFilteredDictTime: 288ns - BlockConditionsFilteredTime: 9.620us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 396ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 42.116us - BlockInitTime: 176.900us - BlockLoadTime: 262.12ms - BlocksLoad: 167 - CachedPagesNum: 181 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 215.770ms - FirstReadSeekCount: 307 - FirstReadSeekTime: 161.283us - FirstReadTime: 7.569ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.830us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 17.336ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 323.828us - OutputIndexResultColumnTimer: 18.707us - RawRowsRead: 650.634K (650634) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 75.379K (75379) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 14.375ms - ShortPredEvalTime: 192.749us - TotalPagesNum: 181 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 11.627us PipelineXTask (index=13):(Active: 669.624us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 282.865us - CloseTime: 75.913us - GetBlockTime: 115.431us - OpenTime: 116.39us - PrepareTime: 185.299us - SinkTime: 19.293us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 582.353us - WaitBfTime: 745.800ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.655ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 18.896us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.74us - 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, 15347] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.10us - BlocksProduced: 0 - CloseTime: 72.755us - ExecTime: 68.727ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 196.776us - ProcessConjunctTime: 39.708us - ProjectionTime: 4.810us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 69.967ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 68.339ms - 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.675us, 12.604us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [34.575ms, 35.391ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 68.209ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 247ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.287ms - ScannerCtxSchedTime: 69.963ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.988us - ScannerInitTime: 53.119us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 661ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.565us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 30 - BlockInitSeekTime: 24.822us - BlockInitTime: 104.143us - BlockLoadTime: 67.806ms - BlocksLoad: 191 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 52.63ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 149.463us - FirstReadTime: 13.826ms - IOTimer: 0ns - InvertedIndexFilterTime: 862ns - 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: 56.980us - OutputIndexResultColumnTimer: 13.280us - RawRowsRead: 761.668K (761668) - 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: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=16):(Active: 761.494us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 327.638us - CloseTime: 49.692us - GetBlockTime: 72.356us - OpenTime: 207.107us - PrepareTime: 168.447us - SinkTime: 18.518us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 701.561us - WaitBfTime: 763.976ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.131ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.292us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.119us - 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, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 7.834us - BlocksProduced: 0 - CloseTime: 47.178us - ExecTime: 80.424ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 311.59us - ProcessConjunctTime: 60.520us - ProjectionTime: 3.883us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 97.793ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 79.990ms - 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: [7.350us, 7.273us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [48.156ms, 49.636ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 61.93ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 88ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.261ms - ScannerCtxSchedTime: 97.789ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.473us - ScannerInitTime: 106.612us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 545ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.543us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.713us - BlockInitTime: 106.55us - BlockLoadTime: 60.726ms - BlocksLoad: 192 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 50.990ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 126.709us - FirstReadTime: 7.662ms - IOTimer: 0ns - InvertedIndexFilterTime: 690ns - 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: 68.779us - OutputIndexResultColumnTimer: 15.285us - RawRowsRead: 765.16K (765160) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=19):(Active: 835.780us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 365.503us - CloseTime: 69.327us - GetBlockTime: 86.40us - OpenTime: 218.985us - PrepareTime: 172.141us - SinkTime: 17.963us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 745.284us - WaitBfTime: 764.155ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.363ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.328us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.515us - 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, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.604us - BlocksProduced: 0 - CloseTime: 66.409us - ExecTime: 126.564ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 315.851us - ProcessConjunctTime: 84.219us - ProjectionTime: 4.806us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 112.980ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 126.92ms - 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: [7.310us, 24.413us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [53.183ms, 59.796ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 113.867ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 287ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.565ms - ScannerCtxSchedTime: 112.976ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.787us - ScannerInitTime: 98.88us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 682ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.576us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 20.998us - BlockInitTime: 86.304us - BlockLoadTime: 113.387ms - BlocksLoad: 193 - CachedPagesNum: 149 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 100.282ms - FirstReadSeekCount: 382 - FirstReadSeekTime: 143.33us - FirstReadTime: 10.777ms - IOTimer: 0ns - InvertedIndexFilterTime: 918ns - 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.836us - OutputIndexResultColumnTimer: 21.985us - RawRowsRead: 772.394K (772394) - 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: 149 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=22):(Active: 1.58ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 472.42us - CloseTime: 81.249us - GetBlockTime: 64.296us - OpenTime: 361.473us - PrepareTime: 132.428us - SinkTime: 8.593us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 963.251us - WaitBfTime: 759.506ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.984ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.119us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.177us - 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, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.120us - BlocksProduced: 0 - CloseTime: 79.480us - ExecTime: 112.454ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 436.281us - ProcessConjunctTime: 115.869us - ProjectionTime: 5.610us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 75.644ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 111.870ms - 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.568us, 11.257us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [36.803ms, 38.840ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 109.927ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 378ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.644ms - ScannerCtxSchedTime: 75.641ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.137us - ScannerInitTime: 182.186us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 695ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.563us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 15 - BlockInitSeekTime: 21.405us - BlockInitTime: 87.764us - BlockLoadTime: 109.407ms - BlocksLoad: 192 - CachedPagesNum: 147 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 75.555ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 158.355us - FirstReadTime: 9.651ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.266us - 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: 117.15us - OutputIndexResultColumnTimer: 19.129us - RawRowsRead: 767.593K (767593) - 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: 147 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=25):(Active: 941.168us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 401.266us - CloseTime: 88.96us - GetBlockTime: 69.927us - OpenTime: 266.954us - PrepareTime: 175.94us - SinkTime: 23.761us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 841.693us - WaitBfTime: 765.764ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.519ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.354us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.295us - 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, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 19.85us - BlocksProduced: 0 - CloseTime: 84.895us - ExecTime: 102.166ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 387.397us - ProcessConjunctTime: 95.130us - ProjectionTime: 4.913us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 130.372ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 101.620ms - 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: [7.777us, 13.590us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [64.056ms, 66.316ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 76.70ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 218ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.269ms - ScannerCtxSchedTime: 130.370ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.816us - ScannerInitTime: 118.827us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 550ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.541us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 32.460us - BlockInitTime: 106.315us - BlockLoadTime: 75.662ms - BlocksLoad: 192 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 65.944ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 136.982us - FirstReadTime: 7.750ms - IOTimer: 0ns - InvertedIndexFilterTime: 745ns - 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: 69.33us - OutputIndexResultColumnTimer: 15.10us - RawRowsRead: 769.413K (769413) - 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: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=28):(Active: 631.637us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 249.966us - CloseTime: 72.85us - GetBlockTime: 62.111us - OpenTime: 131.40us - PrepareTime: 167.953us - SinkTime: 20.758us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 546.29us - WaitBfTime: 765.951ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.599ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.527us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.69us - 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: [15311, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.352us - BlocksProduced: 0 - CloseTime: 68.665us - ExecTime: 104.859ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 240.375us - ProcessConjunctTime: 34.846us - ProjectionTime: 5.321us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 138.494ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 104.483ms - 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.365us, 10.050us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [67.978ms, 70.516ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 70.672ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 102ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.2ms - ScannerCtxSchedTime: 138.491ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.914us - ScannerInitTime: 62.968us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 419ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.521us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 36.615us - BlockInitTime: 82.79us - BlockLoadTime: 70.317ms - BlocksLoad: 190 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 59.494ms - FirstReadSeekCount: 376 - FirstReadSeekTime: 104.843us - FirstReadTime: 8.752ms - IOTimer: 0ns - InvertedIndexFilterTime: 706ns - 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: 83.365us - OutputIndexResultColumnTimer: 24.474us - RawRowsRead: 759.906K (759906) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=31):(Active: 702.717us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 256.574us - CloseTime: 88.362us - GetBlockTime: 58.934us - OpenTime: 152.188us - PrepareTime: 196.388us - SinkTime: 16.670us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 602.677us - WaitBfTime: 760.758ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.345ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.833us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.135us - 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: [15327, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.47us - BlocksProduced: 0 - CloseTime: 85.469us - ExecTime: 124.643ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 276.876us - ProcessConjunctTime: 49.202us - ProjectionTime: 4.747us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 120.372ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 124.218ms - 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.644us, 8.894us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [60.101ms, 60.271ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 196.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 112.346ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 224ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.207ms - ScannerCtxSchedTime: 120.369ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.491us - ScannerInitTime: 74.163us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 556ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.466us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 16 - BlockInitSeekTime: 16.813us - BlockInitTime: 65.640us - BlockLoadTime: 112.14ms - BlocksLoad: 170 - CachedPagesNum: 132 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 93.562ms - FirstReadSeekCount: 336 - FirstReadSeekTime: 102.502us - FirstReadTime: 16.697ms - IOTimer: 0ns - InvertedIndexFilterTime: 683ns - 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: 80.643us - OutputIndexResultColumnTimer: 13.17us - RawRowsRead: 681.79K (681790) - 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: 132 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=34):(Active: 1.152ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 674.507us - CloseTime: 139.720us - GetBlockTime: 203.140us - OpenTime: 167.511us - PrepareTime: 161.431us - SinkTime: 242.775us - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 999.258us - WaitBfTime: 764.510ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.751ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 238.111us - InputRows: 67.464K (67464) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.118us - 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: [15329, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.324us - BlocksProduced: 19 - CloseTime: 136.439us - ExecTime: 129.609ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 273.548us - ProcessConjunctTime: 51.410us - ProjectionTime: 2.724ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 125.935ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 126.281ms - 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: [13.912us, 13.402ms, ] - PerScannerRowsRead: [0, 67.46K, ] - PerScannerWaitTime: [62.238ms, 63.697ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 12.881ms - MemoryUsage: - FreeBlocks: 4.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 66.9ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 934ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.761ms - ScannerCtxSchedTime: 125.932ms - ScannerFilterTime: 24.549us - ScannerGetBlockTime: 13.358ms - ScannerInitTime: 87.509us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 799ns - BlockConditionsFilteredBloomFilterTime: 195ns - BlockConditionsFilteredDictTime: 100ns - BlockConditionsFilteredTime: 7.539us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 289ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 28.878us - BlockInitTime: 146.824us - BlockLoadTime: 36.808ms - BlocksLoad: 95 - CachedPagesNum: 126 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 27.547ms - FirstReadSeekCount: 165 - FirstReadSeekTime: 111.325us - FirstReadTime: 3.876ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.920us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.612ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 219.489us - OutputIndexResultColumnTimer: 12.10us - RawRowsRead: 366.774K (366774) - 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.117ms - ShortPredEvalTime: 132.755us - TotalPagesNum: 126 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.79us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 51.576ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 51.482ms - CloseTime: 13.612us - GetBlockTime: 3.321ms - OpenTime: 2.560us - PrepareTime: 52.594us - SinkTime: 46.433ms - GetBlockCounter: 165 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 156 - NumBlockedTimes: 158 - NumScheduleTimes: 158 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 51.185ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.922ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 181.131us - BuildRows: 664.042K (664042) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.640ms - BuildTableInsertTime: 17.987ms - BuildTableTime: 19.194ms - CloseTime: 0ns - ExecTime: 46.354ms - InputRows: 664.041K (664041) - MemoryUsage: - BuildBlocks: 20.90 MB - BuildKeyArena: 0.00 - HashTable: 6.53 MB - PeakMemoryUsage: 27.43 MB - OpenTime: 13.160us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 19.585us - RuntimeFilterComputeTime: 4.784ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=242): - BlocksProduced: 308 - BytesReceived: 11.32 MB - CloseTime: 9.686us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 13.240ms - ExecTime: 3.169ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.04 MB - MemoryUsage: - Blocks: 880.00 KB - PeakMemoryUsage: 160.00 KB - OpenTime: 15.180us - ProjectionTime: 0ns - RowsProduced: 664.041K (664041) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s453ms PipelineXTask (index=5):(Active: 186.251us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 99.709us - CloseTime: 10.480us - GetBlockTime: 0ns - OpenTime: 2.510us - PrepareTime: 67.508us - SinkTime: 77.502us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 145.198us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 869.633us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 108.70us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.283us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.685us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.300us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.820us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 125.117us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 43.730us - CloseTime: 20.687us - GetBlockTime: 0ns - OpenTime: 2.247us - PrepareTime: 53.176us - SinkTime: 25.650us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.232us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.25ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.93us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.656us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 19.415us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.950us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.849us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 203.130us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 124.71us - CloseTime: 20.577us - GetBlockTime: 0ns - OpenTime: 2.382us - PrepareTime: 51.280us - SinkTime: 95.901us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.840us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 332.627us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 113.830us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.23us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 16.924us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.362us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.561us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 148.520us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.426us - CloseTime: 5.50us - GetBlockTime: 0ns - OpenTime: 2.470us - PrepareTime: 86.3us - SinkTime: 30.282us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.443us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.84ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.433us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.323us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.835us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.411us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 50.888us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 124.173us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 55.413us - CloseTime: 9.214us - GetBlockTime: 0ns - OpenTime: 1.933us - PrepareTime: 52.969us - SinkTime: 35.282us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.998us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 516.9us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 50.692us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.964us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.463us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.876us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.450us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 118.564us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 44.278us - CloseTime: 4.917us - GetBlockTime: 0ns - OpenTime: 2.0us - PrepareTime: 62.450us - SinkTime: 27.834us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 107.368us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 604.45us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 56.751us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.313us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.262us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.512us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.388us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 153.850us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 80.96us - CloseTime: 10.517us - GetBlockTime: 0ns - OpenTime: 1.886us - PrepareTime: 56.554us - SinkTime: 59.268us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.230us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 676.342us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 71.891us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.224us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.864us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.871us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 100.791us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 27.907us - CloseTime: 3.459us - GetBlockTime: 0ns - OpenTime: 2.416us - PrepareTime: 61.172us - SinkTime: 11.185us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.144us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.147ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - 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: 14.269us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.78us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.81us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.124us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 115.971us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.643us - CloseTime: 3.905us - GetBlockTime: 0ns - OpenTime: 3.70us - PrepareTime: 65.522us - SinkTime: 15.206us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.936us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.207ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.707us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.539us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.963us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.476us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.807us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=32):(Active: 150.479us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 66.940us - CloseTime: 20.313us - GetBlockTime: 0ns - OpenTime: 3.411us - PrepareTime: 54.934us - SinkTime: 39.272us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 120.737us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.565ms HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 56.963us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.410us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s528ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 17.335us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.506us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.169us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=35):(Active: 134.5us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 30.488us - CloseTime: 4.763us - GetBlockTime: 0ns - OpenTime: 2.46us - PrepareTime: 74.917us - SinkTime: 15.554us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.569us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 612.510us HASH_JOIN_SINK_OPERATOR (id=244): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8562 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.151us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.693us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 19s529ms EXCHANGE_OPERATOR (id=242): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.196us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.218us - 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: 120.56ms, % non-child: 0.00%) - CoreChangeTimes: 38 - ExecuteTime: 119.811ms - CloseTime: 70.734us - GetBlockTime: 109.784ms - OpenTime: 4.33us - PrepareTime: 113.540us - SinkTime: 6.89ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 320 - NumBlockedTimes: 322 - NumScheduleTimes: 323 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 119.184ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.30ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.62 MB - CloseTime: 21.158us - CompressTime: 0ns - ExecTime: 5.865ms - InputRows: 40.327K (40327) - LocalBytesSent: 1.27 MB - LocalSendTime: 473.674us - LocalSentRows: 40.327K (40327) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.976ms - OpenTime: 37.912us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 259.631ms - RowsProduced: 40.327K (40327) - RpcAvgTime: 308.339ms - RpcCount: 10 - RpcMaxTime: 3s83ms - RpcMinTime: 3s83ms - RpcSumTime: 3s83ms - SerializeBatchTime: 1.601ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.65 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 31.949us - ExecTime: 102.384ms - InitProbeSideTime: 29.367ms - JoinFilterTimer: 58.979us - MemoryUsage: - PeakMemoryUsage: 69.27 KB - ProbeKeyArena: 69.27 KB - OpenTime: 14.535us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 199.823us - ProbeFindNextTime: 0ns - ProbeRows: 3.296164M (3296164) - ProbeTime: 97.680ms - ProbeWhenBuildSideOutputTime: 8.650ms - ProbeWhenProbeSideOutputTime: 812.814us - ProbeWhenProcessHashTableTime: 134.160us - ProbeWhenSearchHashTableTime: 51.485ms - ProjectionTime: 2.226ms - RowsProduced: 40.327K (40327) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s454ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 1.491K (1491) - BytesReceived: 15.67 MB - CloseTime: 12.789us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 14.471ms - ExecTime: 6.269ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.68 MB - MemoryUsage: - Blocks: 19.91 MB - PeakMemoryUsage: 4.68 MB - OpenTime: 28.724us - ProjectionTime: 0ns - RowsProduced: 3.296164M (3296164) - SendersBlockedTotalTimer(*): 30s921ms - WaitForDependencyTime: 0ns - WaitForData0: 4s272ms PipelineXTask (index=2):(Active: 114.646ms, % non-child: 0.00%) - CoreChangeTimes: 31 - ExecuteTime: 114.422ms - CloseTime: 67.134us - GetBlockTime: 104.775ms - OpenTime: 6.343us - PrepareTime: 89.767us - SinkTime: 5.779ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 347 - NumBlockedTimes: 349 - NumScheduleTimes: 350 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 113.794ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.622ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.61 MB - CloseTime: 23.90us - CompressTime: 0ns - ExecTime: 5.519ms - InputRows: 40.004K (40004) - LocalBytesSent: 1.26 MB - LocalSendTime: 392.809us - LocalSentRows: 40.004K (40004) - MemoryUsage: - PeakMemoryUsage: 176.00 KB - MergeBlockTime: 1.874ms - OpenTime: 30.461us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 249.834ms - RowsProduced: 40.004K (40004) - RpcAvgTime: 306.871ms - RpcCount: 10 - RpcMaxTime: 3s68ms - RpcMinTime: 3s68ms - RpcSumTime: 3s68ms - SerializeBatchTime: 1.513ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.63 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 23.33us - ExecTime: 97.845ms - InitProbeSideTime: 28.458ms - JoinFilterTimer: 55.173us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 14.3us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 193.643us - ProbeFindNextTime: 0ns - ProbeRows: 3.296292M (3296292) - ProbeTime: 93.461ms - ProbeWhenBuildSideOutputTime: 7.339ms - ProbeWhenProbeSideOutputTime: 692.491us - ProbeWhenProcessHashTableTime: 97.996us - ProbeWhenSearchHashTableTime: 49.851ms - ProjectionTime: 2.29ms - RowsProduced: 40.004K (40004) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s456ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 1.488K (1488) - BytesReceived: 15.67 MB - CloseTime: 14.940us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 13.493ms - ExecTime: 5.748ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.55 MB - MemoryUsage: - Blocks: 19.90 MB - PeakMemoryUsage: 4.55 MB - OpenTime: 12.691us - ProjectionTime: 0ns - RowsProduced: 3.296292M (3296292) - SendersBlockedTotalTimer(*): 35s661ms - WaitForDependencyTime: 0ns - WaitForData0: 4s283ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.641ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.502ms - CloseTime: 11.35us - GetBlockTime: 225.792us - OpenTime: 2.60us - PrepareTime: 117.955us - SinkTime: 2.133ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.597ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.234ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 29.345us - BuildRows: 40.328K (40328) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.174ms - BuildTableInsertTime: 506.698us - BuildTableTime: 510.673us - CloseTime: 0ns - ExecTime: 2.181ms - InputRows: 40.327K (40327) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 630.13 KB - HashTable: 452.92 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 56.904us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.720us - RuntimeFilterComputeTime: 306.241us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 21 - BytesReceived: 629.66 KB - CloseTime: 8.975us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 740.881us - ExecTime: 222.702us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 396.00 KB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 160.00 KB - OpenTime: 12.390us - ProjectionTime: 0ns - RowsProduced: 40.327K (40327) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s244ms PipelineXTask (index=3):(Active: 3.121ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.31ms - CloseTime: 6.510us - GetBlockTime: 252.201us - OpenTime: 2.620us - PrepareTime: 53.947us - SinkTime: 2.609ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.58ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.138ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.683us - BuildRows: 40.005K (40005) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.609ms - BuildTableInsertTime: 512.16us - BuildTableTime: 514.298us - CloseTime: 0ns - ExecTime: 2.617ms - InputRows: 40.004K (40004) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 625.08 KB - HashTable: 451.34 KB - PeakMemoryUsage: 2.31 MB - OpenTime: 17.732us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 48.944us - RuntimeFilterComputeTime: 328.880us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 21 - BytesReceived: 621.10 KB - CloseTime: 5.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 654.239us - ExecTime: 256.19us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 388.00 KB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 160.00 KB - OpenTime: 14.398us - ProjectionTime: 0ns - RowsProduced: 40.004K (40004) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s264ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 122.269ms, % non-child: 0.00%) - CoreChangeTimes: 45 - ExecuteTime: 122.89ms - CloseTime: 20.764us - GetBlockTime: 113.571ms - OpenTime: 5.795us - PrepareTime: 126.227us - SinkTime: 6.374ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 114 - NumBlockedTimes: 116 - NumScheduleTimes: 117 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 121.889ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.110ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.62 MB - CloseTime: 7.460us - CompressTime: 0ns - ExecTime: 6.169ms - InputRows: 40.373K (40373) - LocalBytesSent: 1.27 MB - LocalSendTime: 477.720us - LocalSentRows: 40.373K (40373) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.928ms - OpenTime: 41.942us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.57ms - RowsProduced: 40.373K (40373) - RpcAvgTime: 17.361ms - RpcCount: 10 - RpcMaxTime: 173.613ms - RpcMinTime: 173.613ms - RpcSumTime: 173.613ms - SerializeBatchTime: 1.686ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.65 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 7.687us - ExecTime: 107.406ms - InitProbeSideTime: 33.385ms - JoinFilterTimer: 67.420us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 17.659us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 157.991us - ProbeFindNextTime: 0ns - ProbeRows: 3.296829M (3296829) - ProbeTime: 102.339ms - ProbeWhenBuildSideOutputTime: 7.996ms - ProbeWhenProbeSideOutputTime: 647.27us - ProbeWhenProcessHashTableTime: 112.874us - ProbeWhenSearchHashTableTime: 53.542ms - ProjectionTime: 2.405ms - RowsProduced: 40.373K (40373) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s429ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 875 - BytesReceived: 1.87 MB - CloseTime: 4.154us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.815ms - ExecTime: 5.126ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.52 MB - MemoryUsage: - Blocks: 19.61 MB - PeakMemoryUsage: 19.14 MB - OpenTime: 18.676us - ProjectionTime: 0ns - RowsProduced: 3.296829M (3296829) - SendersBlockedTotalTimer(*): 1s443ms - WaitForDependencyTime: 0ns - WaitForData0: 8s950ms PipelineXTask (index=2):(Active: 262.32ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 261.848ms - CloseTime: 53.645us - GetBlockTime: 238.676ms - OpenTime: 2.805us - PrepareTime: 106.454us - SinkTime: 20.915ms - GetBlockCounter: 830 - NumBlockedBySinkTimes: 11 - NumBlockedBySrcTimes: 81 - NumBlockedTimes: 94 - NumScheduleTimes: 97 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 155.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.724ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 109 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.05 MB - CloseTime: 15.936us - CompressTime: 0ns - ExecTime: 20.678ms - InputRows: 221.017K (221017) - LocalBytesSent: 6.96 MB - LocalSendTime: 3.164ms - LocalSentRows: 221.017K (221017) - MemoryUsage: - PeakMemoryUsage: 304.00 KB - MergeBlockTime: 3.143ms - OpenTime: 47.361us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 421.526ms - RowsProduced: 221.017K (221017) - RpcAvgTime: 4.859ms - RpcCount: 54 - RpcMaxTime: 262.418ms - RpcMinTime: 262.418ms - RpcSumTime: 262.418ms - SerializeBatchTime: 11.328ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 14.53 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 181.447ms - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 829 - BuildOutputBlock: 0ns - CloseTime: 18.38us - ExecTime: 203.12ms - InitProbeSideTime: 76.385ms - JoinFilterTimer: 84.135us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 14.53us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 140.462us - ProbeFindNextTime: 0ns - ProbeRows: 3.295456M (3295456) - ProbeTime: 195.844ms - ProbeWhenBuildSideOutputTime: 21.89ms - ProbeWhenProbeSideOutputTime: 695.138us - ProbeWhenProcessHashTableTime: 7.499ms - ProbeWhenSearchHashTableTime: 79.301ms - ProjectionTime: 4.430ms - RowsProduced: 221.017K (221017) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s393ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 870 - BytesReceived: 1.86 MB - CloseTime: 14.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.462ms - ExecTime: 34.713ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.36 MB - MemoryUsage: - Blocks: 19.64 MB - PeakMemoryUsage: 19.54 MB - OpenTime: 20.497us - ProjectionTime: 0ns - RowsProduced: 3.295456M (3295456) - SendersBlockedTotalTimer(*): 14s489ms - WaitForDependencyTime: 0ns - WaitForData0: 7s210ms PipelineXTask (index=4):(Active: 140.909ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 140.679ms - CloseTime: 28.720us - GetBlockTime: 132.984ms - OpenTime: 2.712us - PrepareTime: 175.10us - SinkTime: 5.880ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 86 - NumBlockedTimes: 88 - NumScheduleTimes: 89 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 106.67ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.675ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.61 MB - CloseTime: 9.302us - CompressTime: 0ns - ExecTime: 5.677ms - InputRows: 40.2K (40200) - LocalBytesSent: 1.26 MB - LocalSendTime: 477.642us - LocalSentRows: 40.2K (40200) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.874ms - OpenTime: 56.23us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.941ms - RowsProduced: 40.2K (40200) - RpcAvgTime: 20.876ms - RpcCount: 10 - RpcMaxTime: 208.764ms - RpcMinTime: 208.764ms - RpcSumTime: 208.764ms - SerializeBatchTime: 1.605ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.64 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 11.108us - ExecTime: 127.820ms - InitProbeSideTime: 45.293ms - JoinFilterTimer: 58.264us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 19.404us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 153.956us - ProbeFindNextTime: 0ns - ProbeRows: 3.295488M (3295488) - ProbeTime: 123.510ms - ProbeWhenBuildSideOutputTime: 7.26ms - ProbeWhenProbeSideOutputTime: 609.325us - ProbeWhenProcessHashTableTime: 192.618us - ProbeWhenSearchHashTableTime: 64.750ms - ProjectionTime: 2.55ms - RowsProduced: 40.2K (40200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s430ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 871 - BytesReceived: 1.86 MB - CloseTime: 5.681us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.498ms - ExecTime: 4.359ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.37 MB - MemoryUsage: - Blocks: 19.67 MB - PeakMemoryUsage: 19.56 MB - OpenTime: 34.307us - ProjectionTime: 0ns - RowsProduced: 3.295488M (3295488) - SendersBlockedTotalTimer(*): 10s559ms - WaitForDependencyTime: 0ns - WaitForData0: 9s16ms PipelineXTask (index=6):(Active: 139.661ms, % non-child: 0.00%) - CoreChangeTimes: 27 - ExecuteTime: 139.420ms - CloseTime: 27.985us - GetBlockTime: 130.745ms - OpenTime: 4.547us - PrepareTime: 189.95us - SinkTime: 6.715ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 93 - NumBlockedTimes: 95 - NumScheduleTimes: 96 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 123.923ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 103.778ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.62 MB - CloseTime: 10.574us - CompressTime: 0ns - ExecTime: 6.499ms - InputRows: 40.454K (40454) - LocalBytesSent: 1.27 MB - LocalSendTime: 486.98us - LocalSentRows: 40.454K (40454) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.991ms - OpenTime: 79.380us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.172ms - RowsProduced: 40.454K (40454) - RpcAvgTime: 16.661ms - RpcCount: 10 - RpcMaxTime: 166.612ms - RpcMinTime: 166.612ms - RpcSumTime: 166.612ms - SerializeBatchTime: 1.637ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.66 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 9.970us - ExecTime: 124.882ms - InitProbeSideTime: 32.140ms - JoinFilterTimer: 71.368us - MemoryUsage: - PeakMemoryUsage: 69.14 KB - ProbeKeyArena: 69.14 KB - OpenTime: 17.258us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 164.329us - ProbeFindNextTime: 0ns - ProbeRows: 3.295205M (3295205) - ProbeTime: 119.883ms - ProbeWhenBuildSideOutputTime: 8.157ms - ProbeWhenProbeSideOutputTime: 750.623us - ProbeWhenProcessHashTableTime: 116.158us - ProbeWhenSearchHashTableTime: 56.875ms - ProjectionTime: 2.526ms - RowsProduced: 40.454K (40454) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s431ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 874 - BytesReceived: 1.87 MB - CloseTime: 4.973us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.438ms - ExecTime: 4.890ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.99 MB - MemoryUsage: - Blocks: 19.64 MB - PeakMemoryUsage: 19.43 MB - OpenTime: 28.40us - ProjectionTime: 0ns - RowsProduced: 3.295205M (3295205) - SendersBlockedTotalTimer(*): 8s0ms - WaitForDependencyTime: 0ns - WaitForData0: 9s18ms PipelineXTask (index=8):(Active: 121.378ms, % non-child: 0.00%) - CoreChangeTimes: 36 - ExecuteTime: 121.211ms - CloseTime: 35.312us - GetBlockTime: 112.859ms - OpenTime: 3.240us - PrepareTime: 110.937us - SinkTime: 6.465ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 99 - NumBlockedTimes: 101 - NumScheduleTimes: 102 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 120.990ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 113.442ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.63 MB - CloseTime: 13.160us - CompressTime: 0ns - ExecTime: 6.178ms - InputRows: 40.48K (40480) - LocalBytesSent: 1.27 MB - LocalSendTime: 505.913us - LocalSentRows: 40.48K (40480) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.850ms - OpenTime: 45.327us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.228ms - RowsProduced: 40.48K (40480) - RpcAvgTime: 17.639ms - RpcCount: 10 - RpcMaxTime: 176.395ms - RpcMinTime: 176.395ms - RpcSumTime: 176.395ms - SerializeBatchTime: 1.697ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.66 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 11.325us - ExecTime: 107.83ms - InitProbeSideTime: 30.919ms - JoinFilterTimer: 60.508us - MemoryUsage: - PeakMemoryUsage: 68.88 KB - ProbeKeyArena: 68.88 KB - OpenTime: 10.160us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 143.160us - ProbeFindNextTime: 0ns - ProbeRows: 3.295332M (3295332) - ProbeTime: 102.333ms - ProbeWhenBuildSideOutputTime: 8.22ms - ProbeWhenProbeSideOutputTime: 732.120us - ProbeWhenProcessHashTableTime: 108.454us - ProbeWhenSearchHashTableTime: 56.283ms - ProjectionTime: 2.341ms - RowsProduced: 40.48K (40480) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s430ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 872 - BytesReceived: 1.86 MB - CloseTime: 7.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.404ms - ExecTime: 4.847ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.32 MB - MemoryUsage: - Blocks: 19.62 MB - PeakMemoryUsage: 19.26 MB - OpenTime: 14.626us - ProjectionTime: 0ns - RowsProduced: 3.295332M (3295332) - SendersBlockedTotalTimer(*): 3s746ms - WaitForDependencyTime: 0ns - WaitForData0: 8s977ms PipelineXTask (index=10):(Active: 163.961ms, % non-child: 0.00%) - CoreChangeTimes: 35 - ExecuteTime: 163.769ms - CloseTime: 50.711us - GetBlockTime: 139.714ms - OpenTime: 3.820us - PrepareTime: 104.781us - SinkTime: 21.832ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 110 - NumBlockedTimes: 112 - NumScheduleTimes: 113 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 137.782ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.868ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.61 MB - CloseTime: 19.595us - CompressTime: 0ns - ExecTime: 21.604ms - InputRows: 40.113K (40113) - LocalBytesSent: 1.26 MB - LocalSendTime: 596.196us - LocalSentRows: 40.113K (40113) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 2.330ms - OpenTime: 46.59us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.19ms - RowsProduced: 40.113K (40113) - RpcAvgTime: 18.274ms - RpcCount: 10 - RpcMaxTime: 182.748ms - RpcMinTime: 182.748ms - RpcSumTime: 182.748ms - SerializeBatchTime: 1.783ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.64 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 14.440us - ExecTime: 133.354ms - InitProbeSideTime: 35.672ms - JoinFilterTimer: 93.521us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 8.650us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 162.13us - ProbeFindNextTime: 0ns - ProbeRows: 3.295967M (3295967) - ProbeTime: 127.515ms - ProbeWhenBuildSideOutputTime: 9.121ms - ProbeWhenProbeSideOutputTime: 773.150us - ProbeWhenProcessHashTableTime: 157.679us - ProbeWhenSearchHashTableTime: 74.233ms - ProjectionTime: 3.42ms - RowsProduced: 40.113K (40113) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s430ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 873 - BytesReceived: 1.87 MB - CloseTime: 10.622us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.596ms - ExecTime: 5.288ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.94 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.41 MB - OpenTime: 17.174us - ProjectionTime: 0ns - RowsProduced: 3.295967M (3295967) - SendersBlockedTotalTimer(*): 5s463ms - WaitForDependencyTime: 0ns - WaitForData0: 9s7ms PipelineXTask (index=12):(Active: 131.769ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 131.638ms - CloseTime: 17.137us - GetBlockTime: 123.320ms - OpenTime: 3.681us - PrepareTime: 94.614us - SinkTime: 6.460ms - GetBlockCounter: 786 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 95 - NumBlockedTimes: 97 - NumScheduleTimes: 98 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 118.770ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.411ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.63 MB - CloseTime: 6.243us - CompressTime: 0ns - ExecTime: 6.211ms - InputRows: 40.634K (40634) - LocalBytesSent: 1.28 MB - LocalSendTime: 441.795us - LocalSentRows: 40.634K (40634) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.932ms - OpenTime: 38.106us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.129ms - RowsProduced: 40.634K (40634) - RpcAvgTime: 15.834ms - RpcCount: 10 - RpcMaxTime: 158.344ms - RpcMinTime: 158.344ms - RpcSumTime: 158.344ms - SerializeBatchTime: 1.615ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.67 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 785 - BuildOutputBlock: 0ns - CloseTime: 7.35us - ExecTime: 104.612ms - InitProbeSideTime: 32.174ms - JoinFilterTimer: 61.792us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 11.465us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 176.381us - ProbeFindNextTime: 0ns - ProbeRows: 3.295115M (3295115) - ProbeTime: 99.905ms - ProbeWhenBuildSideOutputTime: 7.637ms - ProbeWhenProbeSideOutputTime: 633.853us - ProbeWhenProcessHashTableTime: 144.374us - ProbeWhenSearchHashTableTime: 52.874ms - ProjectionTime: 2.207ms - RowsProduced: 40.634K (40634) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s429ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 870 - BytesReceived: 1.86 MB - CloseTime: 2.88us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.591ms - ExecTime: 17.717ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.89 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.28 MB - OpenTime: 14.923us - ProjectionTime: 0ns - RowsProduced: 3.295115M (3295115) - SendersBlockedTotalTimer(*): 3s24ms - WaitForDependencyTime: 0ns - WaitForData0: 8s985ms PipelineXTask (index=14):(Active: 158.486ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 158.320ms - CloseTime: 33.420us - GetBlockTime: 149.948ms - OpenTime: 3.892us - PrepareTime: 102.263us - SinkTime: 6.377ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 101 - NumBlockedTimes: 103 - NumScheduleTimes: 104 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 126.448ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.92ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.62 MB - CloseTime: 12.505us - CompressTime: 0ns - ExecTime: 6.150ms - InputRows: 40.225K (40225) - LocalBytesSent: 1.27 MB - LocalSendTime: 440.739us - LocalSentRows: 40.225K (40225) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.974ms - OpenTime: 40.546us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 21.811ms - RowsProduced: 40.225K (40225) - RpcAvgTime: 20.765ms - RpcCount: 10 - RpcMaxTime: 207.659ms - RpcMinTime: 207.659ms - RpcSumTime: 207.659ms - SerializeBatchTime: 1.623ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.64 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 8.930us - ExecTime: 128.115ms - InitProbeSideTime: 45.462ms - JoinFilterTimer: 75.166us - MemoryUsage: - PeakMemoryUsage: 68.92 KB - ProbeKeyArena: 68.92 KB - OpenTime: 13.604us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 136.940us - ProbeFindNextTime: 0ns - ProbeRows: 3.295028M (3295028) - ProbeTime: 123.102ms - ProbeWhenBuildSideOutputTime: 8.360ms - ProbeWhenProbeSideOutputTime: 5.915ms - ProbeWhenProcessHashTableTime: 105.469us - ProbeWhenSearchHashTableTime: 56.603ms - ProjectionTime: 2.425ms - RowsProduced: 40.225K (40225) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s431ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 873 - BytesReceived: 1.86 MB - CloseTime: 8.264us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.603ms - ExecTime: 20.816ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.13 MB - MemoryUsage: - Blocks: 19.29 MB - PeakMemoryUsage: 18.71 MB - OpenTime: 14.636us - ProjectionTime: 0ns - RowsProduced: 3.295028M (3295028) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s872ms PipelineXTask (index=16):(Active: 131.975ms, % non-child: 0.00%) - CoreChangeTimes: 28 - ExecuteTime: 131.788ms - CloseTime: 49.905us - GetBlockTime: 123.358ms - OpenTime: 2.844us - PrepareTime: 114.546us - SinkTime: 6.527ms - GetBlockCounter: 785 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 109 - NumBlockedTimes: 111 - NumScheduleTimes: 112 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 115.568ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.722ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.62 MB - CloseTime: 17.527us - CompressTime: 0ns - ExecTime: 6.268ms - InputRows: 40.237K (40237) - LocalBytesSent: 1.27 MB - LocalSendTime: 648.817us - LocalSentRows: 40.237K (40237) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 1.889ms - OpenTime: 35.85us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 21.972ms - RowsProduced: 40.237K (40237) - RpcAvgTime: 17.786ms - RpcCount: 10 - RpcMaxTime: 177.868ms - RpcMinTime: 177.868ms - RpcSumTime: 177.868ms - SerializeBatchTime: 1.594ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.64 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 784 - BuildOutputBlock: 0ns - CloseTime: 19.731us - ExecTime: 102.161ms - InitProbeSideTime: 31.258ms - JoinFilterTimer: 69.718us - MemoryUsage: - PeakMemoryUsage: 69.20 KB - ProbeKeyArena: 69.20 KB - OpenTime: 9.986us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 149.243us - ProbeFindNextTime: 0ns - ProbeRows: 3.295631M (3295631) - ProbeTime: 97.540ms - ProbeWhenBuildSideOutputTime: 7.945ms - ProbeWhenProbeSideOutputTime: 706.311us - ProbeWhenProcessHashTableTime: 277.679us - ProbeWhenSearchHashTableTime: 51.349ms - ProjectionTime: 2.248ms - RowsProduced: 40.237K (40237) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s431ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 869 - BytesReceived: 1.87 MB - CloseTime: 8.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.654ms - ExecTime: 20.250ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.61 MB - MemoryUsage: - Blocks: 19.69 MB - PeakMemoryUsage: 19.59 MB - OpenTime: 21.814us - ProjectionTime: 0ns - RowsProduced: 3.295631M (3295631) - SendersBlockedTotalTimer(*): 10s550ms - WaitForDependencyTime: 0ns - WaitForData0: 9s40ms PipelineXTask (index=18):(Active: 138.277ms, % non-child: 0.00%) - CoreChangeTimes: 32 - ExecuteTime: 138.128ms - CloseTime: 37.589us - GetBlockTime: 122.997ms - OpenTime: 2.885us - PrepareTime: 85.193us - SinkTime: 13.210ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 96 - NumBlockedTimes: 98 - NumScheduleTimes: 99 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 121.212ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.153ms DATA_STREAM_SINK_OPERATOR (id=242,dst_id=242): - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.61 MB - CloseTime: 9.955us - CompressTime: 0ns - ExecTime: 12.948ms - InputRows: 39.977K (39977) - LocalBytesSent: 1.26 MB - LocalSendTime: 471.126us - LocalSentRows: 39.977K (39977) - MemoryUsage: - PeakMemoryUsage: 240.00 KB - MergeBlockTime: 2.78ms - OpenTime: 30.297us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.44ms - RowsProduced: 39.977K (39977) - RpcAvgTime: 13.963ms - RpcCount: 10 - RpcMaxTime: 139.637ms - RpcMinTime: 139.637ms - RpcSumTime: 139.637ms - SerializeBatchTime: 8.58ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.63 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=241): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 20.420us - ExecTime: 109.942ms - InitProbeSideTime: 31.757ms - JoinFilterTimer: 71.218us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 12.581us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 156.656us - ProbeFindNextTime: 0ns - ProbeRows: 3.295421M (3295421) - ProbeTime: 105.217ms - ProbeWhenBuildSideOutputTime: 7.936ms - ProbeWhenProbeSideOutputTime: 689.414us - ProbeWhenProcessHashTableTime: 106.606us - ProbeWhenSearchHashTableTime: 58.108ms - ProjectionTime: 2.319ms - RowsProduced: 39.977K (39977) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 9s430ms EXCHANGE_OPERATOR (id=240): - BlocksProduced: 872 - BytesReceived: 1.86 MB - CloseTime: 4.693us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.377ms - ExecTime: 12.98ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.00 MB - MemoryUsage: - Blocks: 19.55 MB - PeakMemoryUsage: 19.01 MB - OpenTime: 15.219us - ProjectionTime: 0ns - RowsProduced: 3.295421M (3295421) - SendersBlockedTotalTimer(*): 298.125ms - WaitForDependencyTime: 0ns - WaitForData0: 8s890ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 2.626ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.520ms - CloseTime: 11.292us - GetBlockTime: 184.742us - OpenTime: 1.933us - PrepareTime: 86.507us - SinkTime: 2.212ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.587ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.248ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.819us - BuildRows: 40.374K (40374) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.347ms - BuildTableInsertTime: 471.716us - BuildTableTime: 475.202us - CloseTime: 0ns - ExecTime: 2.243ms - InputRows: 40.373K (40373) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 630.84 KB - HashTable: 453.14 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 38.852us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.839us - RuntimeFilterComputeTime: 285.385us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 211.02 KB - CloseTime: 9.0us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 228.867us - ExecTime: 197.22us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.15 MB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 20.85us - ProjectionTime: 0ns - RowsProduced: 40.373K (40373) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=3):(Active: 20.987ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 20.890ms - CloseTime: 18.214us - GetBlockTime: 1.40ms - OpenTime: 2.251us - PrepareTime: 61.542us - SinkTime: 19.266ms - GetBlockCounter: 57 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 55 - NumBlockedTimes: 57 - NumScheduleTimes: 57 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.411ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.349ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 67.306us - BuildRows: 221.018K (221018) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.938ms - BuildTableInsertTime: 9.543ms - BuildTableTime: 9.551ms - CloseTime: 0ns - ExecTime: 19.242ms - InputRows: 221.017K (221017) - MemoryUsage: - BuildBlocks: 6.96 MB - BuildKeyArena: 3.37 MB - HashTable: 2.05 MB - PeakMemoryUsage: 12.38 MB - OpenTime: 19.508us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 154.799us - RuntimeFilterComputeTime: 2.298ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 70 - BytesReceived: 1.02 MB - CloseTime: 14.865us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.82ms - ExecTime: 1.0ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.58 MB - MemoryUsage: - Blocks: 400.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.611us - ProjectionTime: 0ns - RowsProduced: 221.017K (221017) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s196ms PipelineXTask (index=5):(Active: 2.410ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.292ms - CloseTime: 7.24us - GetBlockTime: 125.530us - OpenTime: 1.401us - PrepareTime: 100.861us - SinkTime: 2.48ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.375ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.546ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.610us - BuildRows: 40.201K (40201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.207ms - BuildTableInsertTime: 500.779us - BuildTableTime: 503.42us - CloseTime: 0ns - ExecTime: 2.84ms - InputRows: 40.2K (40200) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 628.14 KB - HashTable: 452.30 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 41.628us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.303us - RuntimeFilterComputeTime: 261.203us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 206.16 KB - CloseTime: 5.708us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 237.190us - ExecTime: 131.297us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.18 MB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.12us - ProjectionTime: 0ns - RowsProduced: 40.2K (40200) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=7):(Active: 3.13ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.941ms - CloseTime: 7.610us - GetBlockTime: 186.804us - OpenTime: 2.402us - PrepareTime: 55.239us - SinkTime: 2.586ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.970ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.184ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.663us - BuildRows: 40.455K (40455) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.326ms - BuildTableInsertTime: 899.141us - BuildTableTime: 901.475us - CloseTime: 0ns - ExecTime: 2.592ms - InputRows: 40.454K (40454) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 632.11 KB - HashTable: 453.54 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 16.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.565us - RuntimeFilterComputeTime: 267.571us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 207.09 KB - CloseTime: 5.553us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 248.84us - ExecTime: 190.236us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.20 MB - MemoryUsage: - Blocks: 176.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.146us - ProjectionTime: 0ns - RowsProduced: 40.454K (40454) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=9):(Active: 2.388ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.318ms - CloseTime: 4.692us - GetBlockTime: 139.720us - OpenTime: 1.928us - PrepareTime: 57.261us - SinkTime: 2.70ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.358ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.355ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.159us - BuildRows: 40.481K (40481) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.135ms - BuildTableInsertTime: 613.716us - BuildTableTime: 614.922us - CloseTime: 0ns - ExecTime: 2.78ms - InputRows: 40.48K (40480) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 632.52 KB - HashTable: 453.67 KB - PeakMemoryUsage: 2.33 MB - OpenTime: 15.68us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.675us - RuntimeFilterComputeTime: 244.231us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 210.72 KB - CloseTime: 3.786us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 163.976us - ExecTime: 148.286us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.21 MB - MemoryUsage: - Blocks: 176.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.264us - ProjectionTime: 0ns - RowsProduced: 40.48K (40480) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=11):(Active: 2.683ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.622ms - CloseTime: 7.226us - GetBlockTime: 138.571us - OpenTime: 1.727us - PrepareTime: 46.227us - SinkTime: 2.368ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.646ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.545ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.646us - BuildRows: 40.114K (40114) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.40ms - BuildTableInsertTime: 823.112us - BuildTableTime: 826.399us - CloseTime: 0ns - ExecTime: 2.377ms - InputRows: 40.113K (40113) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 626.78 KB - HashTable: 451.87 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 14.536us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.422us - RuntimeFilterComputeTime: 420.290us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 206.17 KB - CloseTime: 5.472us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 169.306us - ExecTime: 137.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.16 MB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 9.165us - ProjectionTime: 0ns - RowsProduced: 40.113K (40113) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=13):(Active: 2.346ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.278ms - CloseTime: 7.621us - GetBlockTime: 126.830us - OpenTime: 2.534us - PrepareTime: 52.678us - SinkTime: 2.44ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.312ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.663ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.528us - BuildRows: 40.635K (40635) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.120ms - BuildTableInsertTime: 581.545us - BuildTableTime: 583.434us - CloseTime: 0ns - ExecTime: 2.51ms - InputRows: 40.634K (40634) - MemoryUsage: - BuildBlocks: 1.28 MB - BuildKeyArena: 634.92 KB - HashTable: 454.42 KB - PeakMemoryUsage: 2.34 MB - OpenTime: 14.552us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.927us - RuntimeFilterComputeTime: 265.163us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 207.98 KB - CloseTime: 6.301us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 161.699us - ExecTime: 135.164us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.24 MB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.230us - ProjectionTime: 0ns - RowsProduced: 40.634K (40634) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=15):(Active: 2.846ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.785ms - CloseTime: 7.370us - GetBlockTime: 144.679us - OpenTime: 1.601us - PrepareTime: 47.655us - SinkTime: 2.513ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.810ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.919ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.11us - BuildRows: 40.226K (40226) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.342ms - BuildTableInsertTime: 646.258us - BuildTableTime: 648.761us - CloseTime: 0ns - ExecTime: 2.513ms - InputRows: 40.225K (40225) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 628.53 KB - HashTable: 452.42 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 10.0us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.781us - RuntimeFilterComputeTime: 440.355us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 209.73 KB - CloseTime: 5.818us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 216.653us - ExecTime: 146.829us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.20 MB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.544us - ProjectionTime: 0ns - RowsProduced: 40.225K (40225) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=17):(Active: 3.30ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 2.968ms - CloseTime: 8.290us - GetBlockTime: 166.764us - OpenTime: 2.590us - PrepareTime: 44.953us - SinkTime: 2.665ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.993ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.848ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.992us - BuildRows: 40.238K (40238) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.257ms - BuildTableInsertTime: 637.206us - BuildTableTime: 640.249us - CloseTime: 0ns - ExecTime: 2.674ms - InputRows: 40.237K (40237) - MemoryUsage: - BuildBlocks: 1.27 MB - BuildKeyArena: 628.72 KB - HashTable: 452.48 KB - PeakMemoryUsage: 2.32 MB - OpenTime: 17.95us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.696us - RuntimeFilterComputeTime: 686.161us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 209.03 KB - CloseTime: 6.207us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 236.673us - ExecTime: 172.290us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.18 MB - MemoryUsage: - Blocks: 176.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.743us - ProjectionTime: 0ns - RowsProduced: 40.237K (40237) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s257ms PipelineXTask (index=19):(Active: 2.272ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 2.208ms - CloseTime: 5.228us - GetBlockTime: 112.573us - OpenTime: 2.667us - PrepareTime: 51.692us - SinkTime: 1.996ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.243ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.398ms HASH_JOIN_SINK_OPERATOR (id=241): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.927us - BuildRows: 39.978K (39978) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.203ms - BuildTableInsertTime: 455.8us - BuildTableTime: 456.260us - CloseTime: 0ns - ExecTime: 1.998ms - InputRows: 39.977K (39977) - MemoryUsage: - BuildBlocks: 1.26 MB - BuildKeyArena: 624.66 KB - HashTable: 451.21 KB - PeakMemoryUsage: 2.31 MB - OpenTime: 15.125us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.863us - RuntimeFilterComputeTime: 266.165us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=238): - BlocksProduced: 15 - BytesReceived: 206.89 KB - CloseTime: 4.312us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 196.610us - ExecTime: 116.899us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.16 MB - MemoryUsage: - Blocks: 160.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.647us - ProjectionTime: 0ns - RowsProduced: 39.977K (39977) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s258ms Fragment 60: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 513.176ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 512.653ms - CloseTime: 69.916us - GetBlockTime: 4.181ms - OpenTime: 79.125us - PrepareTime: 364.519us - SinkTime: 505.629ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 8 - NumScheduleTimes: 12 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 163.279ms - WaitBfTime: 799.111ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.3ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.146K (1146) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.44 MB - CloseTime: 13.388us - CompressTime: 0ns - ExecTime: 505.419ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 34.32 MB - LocalSendTime: 4.181ms - LocalSentRows: 3.999104M (3999104) - MemoryUsage: - PeakMemoryUsage: 51.01 MB - MergeBlockTime: 0ns - OpenTime: 92.444us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s544ms - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 66.155ms - RpcCount: 191 - RpcMaxTime: 6s333ms - RpcMinTime: 6s301ms - RpcSumTime: 12s635ms - SerializeBatchTime: 6.423ms - SplitBlockDistributeByChannelTime: 310.983ms - SplitBlockHashComputeTime: 147.457ms - UncompressedRowBatchSize: 7.31 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.185us - BlocksProduced: 1.183K (1183) - CloseTime: 53.781us - ExecTime: 57.324ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 176.245us - ProcessConjunctTime: 17.89us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 160.295ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 53.249ms - 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: [27.972ms, 38.305ms, 5.336ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [107.988ms, 25.482ms, 26.824ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 45.164ms - MemoryUsage: - FreeBlocks: 25.21 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 560.736us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 76.794us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.323ms - ScannerCtxSchedTime: 160.288ms - ScannerFilterTime: 2.798ms - ScannerGetBlockTime: 68.420ms - ScannerInitTime: 38.537us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 5.815us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 19.233us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 23.112us - BlockInitTime: 247.16us - BlockLoadTime: 45.247ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 589 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 181.304us - FirstReadTime: 42.992ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.230us - 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: 92.911us - OutputIndexResultColumnTimer: 79.230us - 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: 504.410ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 504.22ms - CloseTime: 107.955us - GetBlockTime: 14.231ms - OpenTime: 98.202us - PrepareTime: 174.361us - SinkTime: 487.354ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 150.535ms - WaitBfTime: 799.170ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.91ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.145K (1145) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.44 MB - CloseTime: 20.487us - CompressTime: 0ns - ExecTime: 487.148ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 34.33 MB - LocalSendTime: 3.553ms - LocalSentRows: 3.999284M (3999284) - MemoryUsage: - PeakMemoryUsage: 51.83 MB - MergeBlockTime: 0ns - OpenTime: 61.316us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s535ms - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 66.308ms - RpcCount: 191 - RpcMaxTime: 6s339ms - RpcMinTime: 6s325ms - RpcSumTime: 12s665ms - SerializeBatchTime: 78.180ms - SplitBlockDistributeByChannelTime: 230.202ms - SplitBlockHashComputeTime: 123.284ms - UncompressedRowBatchSize: 7.30 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.762us - BlocksProduced: 1.182K (1182) - CloseTime: 82.547us - ExecTime: 56.591ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 164.23us - ProcessConjunctTime: 15.451us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 180.329ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 42.432ms - 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: [20.813ms, 16.068ms, 26.022ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [32.866ms, 116.182ms, 31.280ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 55.868ms - MemoryUsage: - FreeBlocks: 22.25 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 616.825us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 53.536us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.446ms - ScannerCtxSchedTime: 180.322ms - ScannerFilterTime: 4.991ms - ScannerGetBlockTime: 57.431ms - ScannerInitTime: 48.327us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.168us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.722us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 27.719us - BlockInitTime: 227.49us - BlockLoadTime: 55.923ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 590 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 210.122us - FirstReadTime: 53.229ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.904us - 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.694us - OutputIndexResultColumnTimer: 93.498us - 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: 425.265ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 424.884ms - CloseTime: 90.993us - GetBlockTime: 3.681ms - OpenTime: 114.161us - PrepareTime: 165.425us - SinkTime: 418.834ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 140.112ms - WaitBfTime: 799.358ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.653ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 832 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.66 MB - CloseTime: 19.92us - CompressTime: 0ns - ExecTime: 418.624ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 24.84 MB - LocalSendTime: 3.243ms - LocalSentRows: 2.893495M (2893495) - MemoryUsage: - PeakMemoryUsage: 36.04 MB - MergeBlockTime: 0ns - OpenTime: 65.189us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s417ms - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 86.540ms - RpcCount: 138 - RpcMaxTime: 5s985ms - RpcMinTime: 5s957ms - RpcSumTime: 11s942ms - SerializeBatchTime: 36.678ms - SplitBlockDistributeByChannelTime: 238.256ms - SplitBlockHashComputeTime: 50.299ms - UncompressedRowBatchSize: 5.28 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.807us - BlocksProduced: 856 - CloseTime: 67.654us - ExecTime: 88.629ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 175.828us - ProcessConjunctTime: 12.977us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 130.21ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 85.14ms - 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: [40.091ms, 44.353ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [79.548ms, 50.472ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 80.677ms - MemoryUsage: - FreeBlocks: 19.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 479.159us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 45.613us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 35.389ms - ScannerCtxSchedTime: 130.16ms - ScannerFilterTime: 2.403ms - ScannerGetBlockTime: 81.794ms - ScannerInitTime: 74.430us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.795us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.593us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 48.982us - BlockInitTime: 245.285us - BlockLoadTime: 80.902ms - BlocksLoad: 865 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 115.40us - FirstReadTime: 79.201ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.642us - 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: 66.273us - OutputIndexResultColumnTimer: 59.783us - 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: 444.724ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 444.312ms - CloseTime: 115.450us - GetBlockTime: 14.611ms - OpenTime: 104.26us - PrepareTime: 183.217us - SinkTime: 407.673ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 8 - NumScheduleTimes: 12 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 148.457ms - WaitBfTime: 799.179ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 109.258ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 832 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.66 MB - CloseTime: 21.583us - CompressTime: 0ns - ExecTime: 407.473ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 24.84 MB - LocalSendTime: 3.785ms - LocalSentRows: 2.893488M (2893488) - MemoryUsage: - PeakMemoryUsage: 36.32 MB - MergeBlockTime: 0ns - OpenTime: 67.262us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s216ms - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 88.965ms - RpcCount: 138 - RpcMaxTime: 6s168ms - RpcMinTime: 6s108ms - RpcSumTime: 12s277ms - SerializeBatchTime: 19.280ms - SplitBlockDistributeByChannelTime: 152.873ms - SplitBlockHashComputeTime: 152.575ms - UncompressedRowBatchSize: 5.28 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.367us - BlocksProduced: 856 - CloseTime: 89.253us - ExecTime: 79.810ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 162.307us - ProcessConjunctTime: 10.802us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 153.121ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 65.287ms - 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: [43.623ms, 12.454ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [34.874ms, 118.247ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 49.313ms - MemoryUsage: - FreeBlocks: 19.48 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 417.699us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 46.691us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 38.501ms - ScannerCtxSchedTime: 153.113ms - ScannerFilterTime: 5.300ms - ScannerGetBlockTime: 50.483ms - ScannerInitTime: 70.679us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.117us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.279us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 36.801us - BlockInitTime: 198.477us - BlockLoadTime: 49.491ms - BlocksLoad: 863 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 120.397us - FirstReadTime: 36.947ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.589us - 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: 67.902us - OutputIndexResultColumnTimer: 53.451us - 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: 156.754ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 156.488ms - CloseTime: 60.662us - GetBlockTime: 2.353ms - OpenTime: 51.889us - PrepareTime: 146.127us - SinkTime: 152.545ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 87.779ms - WaitBfTime: 799.335ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 253.374ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 545 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.09 MB - CloseTime: 15.310us - CompressTime: 0ns - ExecTime: 152.441ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 16.16 MB - LocalSendTime: 2.128ms - LocalSentRows: 1.883174M (1883174) - MemoryUsage: - PeakMemoryUsage: 23.42 MB - MergeBlockTime: 0ns - OpenTime: 52.278us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s251ms - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 86.851ms - RpcCount: 91 - RpcMaxTime: 3s960ms - RpcMinTime: 3s942ms - RpcSumTime: 7s903ms - SerializeBatchTime: 3.361ms - SplitBlockDistributeByChannelTime: 53.840ms - SplitBlockHashComputeTime: 75.39ms - UncompressedRowBatchSize: 3.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 847ns - BlocksProduced: 557 - CloseTime: 39.945us - ExecTime: 137.930ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 109.523us - ProcessConjunctTime: 9.640us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 44.247ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 135.592ms - 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: [86.341ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [44.247ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 80.354ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 159.740us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.154us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.390ms - ScannerCtxSchedTime: 44.244ms - ScannerFilterTime: 5.132ms - ScannerGetBlockTime: 81.4ms - ScannerInitTime: 28.964us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 917ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.306us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.439us - BlockInitTime: 50.412us - BlockLoadTime: 80.297ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 94.588us - FirstReadTime: 79.198ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.8us - 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.732us - OutputIndexResultColumnTimer: 53.623us - 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: 137.548ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 137.240ms - CloseTime: 62.322us - GetBlockTime: 1.831ms - OpenTime: 75.246us - PrepareTime: 162.196us - SinkTime: 112.56ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 86.169ms - WaitBfTime: 799.419ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.226ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 544 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.09 MB - CloseTime: 25.14us - CompressTime: 0ns - ExecTime: 111.971ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 16.16 MB - LocalSendTime: 1.698ms - LocalSentRows: 1.883161M (1883161) - MemoryUsage: - PeakMemoryUsage: 23.04 MB - MergeBlockTime: 0ns - OpenTime: 54.452us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s423ms - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 111.326ms - RpcCount: 91 - RpcMaxTime: 5s118ms - RpcMinTime: 5s11ms - RpcSumTime: 10s130ms - SerializeBatchTime: 5.111ms - SplitBlockDistributeByChannelTime: 60.930ms - SplitBlockHashComputeTime: 27.110ms - UncompressedRowBatchSize: 3.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 9s318ms - 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: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 928ns - BlocksProduced: 557 - CloseTime: 33.241us - ExecTime: 192.568ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 125.794us - ProcessConjunctTime: 12.929us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 145.820ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 190.741ms - 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: [30.289ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [145.820ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 16.366ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 227.252us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.789us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.182ms - ScannerCtxSchedTime: 145.818ms - ScannerFilterTime: 158.776us - ScannerGetBlockTime: 29.970ms - ScannerInitTime: 43.541us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.52us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.804us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.633us - BlockInitTime: 70.892us - BlockLoadTime: 16.369ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 80.763us - FirstReadTime: 15.291ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.143us - 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: 54.438us - OutputIndexResultColumnTimer: 40.658us - 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: 53.697ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 53.394ms - CloseTime: 56.128us - GetBlockTime: 762.163us - OpenTime: 77.126us - PrepareTime: 162.328us - SinkTime: 52.163ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 27.633ms - WaitBfTime: 799.262ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.165ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 218 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 830.88 KB - CloseTime: 20.181us - CompressTime: 0ns - ExecTime: 52.195ms - InputRows: 876.727K (876727) - LocalBytesSent: 6.27 MB - LocalSendTime: 13.511ms - LocalSentRows: 730.608K (730608) - MemoryUsage: - PeakMemoryUsage: 9.18 MB - MergeBlockTime: 0ns - OpenTime: 56.437us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s205ms - RowsProduced: 876.727K (876727) - RpcAvgTime: 178.314ms - RpcCount: 36 - RpcMaxTime: 3s213ms - RpcMinTime: 3s206ms - RpcSumTime: 6s419ms - SerializeBatchTime: 1.599ms - SplitBlockDistributeByChannelTime: 11.394ms - SplitBlockHashComputeTime: 20.600ms - UncompressedRowBatchSize: 1.33 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s899ms - 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: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.466us - BlocksProduced: 216 - CloseTime: 31.4us - ExecTime: 79.186ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 138.809us - ProcessConjunctTime: 13.512us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 39.505ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 78.299ms - 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: [36.162ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [39.505ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 35.725ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 225.338us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.346us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.767ms - ScannerCtxSchedTime: 39.504ms - ScannerFilterTime: 69.226us - ScannerGetBlockTime: 36.21ms - ScannerInitTime: 43.595us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 600ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.687us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 12.518us - BlockInitTime: 60.613us - BlockLoadTime: 35.742ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 32.118us - FirstReadTime: 35.231ms - 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: 21.689us - OutputIndexResultColumnTimer: 22.633us - 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=7):(Active: 455.443ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 455.106ms - CloseTime: 86.861us - GetBlockTime: 3.458ms - OpenTime: 72.464us - PrepareTime: 169.228us - SinkTime: 449.559ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 10 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 129.360ms - WaitBfTime: 799.462ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.138ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 808 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.92 MB - CloseTime: 18.863us - CompressTime: 0ns - ExecTime: 449.373ms - InputRows: 3.390145M (3390145) - LocalBytesSent: 24.24 MB - LocalSendTime: 2.830ms - LocalSentRows: 2.824668M (2824668) - MemoryUsage: - PeakMemoryUsage: 39.11 MB - MergeBlockTime: 0ns - OpenTime: 69.771us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s271ms - RowsProduced: 3.390145M (3390145) - RpcAvgTime: 90.121ms - RpcCount: 134 - RpcMaxTime: 6s51ms - RpcMinTime: 6s24ms - RpcSumTime: 12s76ms - SerializeBatchTime: 5.124ms - SplitBlockDistributeByChannelTime: 196.576ms - SplitBlockHashComputeTime: 173.523ms - UncompressedRowBatchSize: 5.16 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.166us - BlocksProduced: 836 - CloseTime: 64.169us - ExecTime: 65.758ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 129.988us - ProcessConjunctTime: 13.496us - ProjectionTime: 0ns - RowsProduced: 3.390145M (3390145) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 118.992ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 62.334ms - 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: [14.670ms, 19.193ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [65.018ms, 53.974ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.719ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 459.32us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44.254us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 33.604ms - ScannerCtxSchedTime: 119.13ms - ScannerFilterTime: 9.42ms - ScannerGetBlockTime: 24.533ms - ScannerInitTime: 36.86us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.367us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.127us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 15.713us - BlockInitTime: 158.798us - BlockLoadTime: 23.803ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 105.582us - FirstReadTime: 22.373ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.728us - 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: 65.686us - OutputIndexResultColumnTimer: 44.574us - 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=8):(Active: 492.50ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 491.705ms - CloseTime: 97.553us - GetBlockTime: 4.812ms - OpenTime: 72.245us - PrepareTime: 166.951us - SinkTime: 483.958ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 8 - NumScheduleTimes: 11 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 175.551ms - WaitBfTime: 799.257ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.582ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.188K (1188) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.61 MB - CloseTime: 26.123us - CompressTime: 0ns - ExecTime: 483.695ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 35.59 MB - LocalSendTime: 4.49ms - LocalSentRows: 4.146804M (4146804) - MemoryUsage: - PeakMemoryUsage: 53.98 MB - MergeBlockTime: 0ns - OpenTime: 58.330us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s588ms - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 64.154ms - RpcCount: 198 - RpcMaxTime: 6s355ms - RpcMinTime: 6s346ms - RpcSumTime: 12s702ms - SerializeBatchTime: 6.387ms - SplitBlockDistributeByChannelTime: 258.224ms - SplitBlockHashComputeTime: 145.411ms - UncompressedRowBatchSize: 7.58 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.300us - BlocksProduced: 1.227K (1227) - CloseTime: 68.5us - ExecTime: 57.934ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 144.633us - ProcessConjunctTime: 10.183us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 128.622ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 53.226ms - 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: [27.399ms, 43.448ms, 9.057ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [43.048ms, 43.749ms, 41.824ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 73.776ms - MemoryUsage: - FreeBlocks: 24.57 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 623.880us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 61.879us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 51.783ms - ScannerCtxSchedTime: 128.615ms - ScannerFilterTime: 4.85ms - ScannerGetBlockTime: 75.364ms - ScannerInitTime: 41.769us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.728us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 18.214us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 45.337us - BlockInitTime: 294.980us - BlockLoadTime: 73.901ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 170.180us - FirstReadTime: 71.443ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.594us - 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: 131.504us - OutputIndexResultColumnTimer: 83.846us - 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=9):(Active: 459.298ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 458.860ms - CloseTime: 104.753us - GetBlockTime: 4.740ms - OpenTime: 157.593us - PrepareTime: 162.162us - SinkTime: 451.206ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 8 - NumScheduleTimes: 12 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 180.78ms - WaitBfTime: 797.377ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 39.518ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.189K (1189) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.61 MB - CloseTime: 25.914us - CompressTime: 0ns - ExecTime: 450.946ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 35.59 MB - LocalSendTime: 3.999ms - LocalSentRows: 4.146797M (4146797) - MemoryUsage: - PeakMemoryUsage: 54.59 MB - MergeBlockTime: 0ns - OpenTime: 61.886us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s395ms - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 64.582ms - RpcCount: 198 - RpcMaxTime: 6s410ms - RpcMinTime: 6s376ms - RpcSumTime: 12s787ms - SerializeBatchTime: 7.317ms - SplitBlockDistributeByChannelTime: 279.162ms - SplitBlockHashComputeTime: 109.122ms - UncompressedRowBatchSize: 7.57 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 11s2ms - 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: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.690us - BlocksProduced: 1.228K (1228) - CloseTime: 73.40us - ExecTime: 73.16ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 214.605us - ProcessConjunctTime: 33.27us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 144.354ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 68.338ms - 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: [95.104ms, 58.120ms, 4.452ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [98.281ms, 22.597ms, 23.475ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 121.232ms - MemoryUsage: - FreeBlocks: 23.41 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 926.896us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 59.797us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.892ms - ScannerCtxSchedTime: 144.348ms - ScannerFilterTime: 355.501us - ScannerGetBlockTime: 156.927ms - ScannerInitTime: 98.217us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 5.39us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 19.805us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 58.740us - BlockInitTime: 368.192us - BlockLoadTime: 121.541ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 620 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 191.733us - FirstReadTime: 108.37ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.116us - 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: 112.359us - OutputIndexResultColumnTimer: 85.564us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 220.506ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 219.935ms - CloseTime: 75.214us - GetBlockTime: 1.280ms - OpenTime: 247.16us - PrepareTime: 235.874us - SinkTime: 217.918ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 44.137ms - WaitBfTime: 753.378ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.149ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 226 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.06 MB - CloseTime: 27.451us - CompressTime: 0ns - ExecTime: 217.908ms - InputRows: 876.719K (876719) - LocalBytesSent: 1.25 MB - LocalSendTime: 489.240us - LocalSentRows: 146.137K (146137) - MemoryUsage: - PeakMemoryUsage: 2.38 MB - MergeBlockTime: 0ns - OpenTime: 63.515us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14s691ms - RowsProduced: 876.719K (876719) - RpcAvgTime: 579.725ms - RpcCount: 180 - RpcMaxTime: 12s446ms - RpcMinTime: 7s520ms - RpcSumTime: 1m44s - SerializeBatchTime: 24.63ms - SplitBlockDistributeByChannelTime: 99.322ms - SplitBlockHashComputeTime: 83.622ms - UncompressedRowBatchSize: 6.67 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 4.98us - BlocksProduced: 216 - CloseTime: 42.109us - ExecTime: 48.458ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 349.238us - ProcessConjunctTime: 52.485us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 34.109ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 46.882ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [8.506ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [34.109ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.77ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 139.990us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.81us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.731ms - ScannerCtxSchedTime: 34.107ms - ScannerFilterTime: 65.691us - ScannerGetBlockTime: 8.382ms - ScannerInitTime: 151.257us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 326ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.379us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 8.84us - BlockInitTime: 31.305us - BlockLoadTime: 8.103ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 39.16us - FirstReadTime: 7.541ms - IOTimer: 0ns - InvertedIndexFilterTime: 425ns - 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: 44.803us - OutputIndexResultColumnTimer: 23.57us - 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=1):(Active: 410.854ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 410.372ms - CloseTime: 71.510us - GetBlockTime: 4.18ms - OpenTime: 118.227us - PrepareTime: 271.874us - SinkTime: 404.699ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 8 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 150.1ms - WaitBfTime: 755.375ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.741ms DATA_STREAM_SINK_OPERATOR (id=240,dst_id=240): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 818 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.57 MB - CloseTime: 16.242us - CompressTime: 0ns - ExecTime: 404.509ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 4.85 MB - LocalSendTime: 13.574ms - LocalSentRows: 565.314K (565314) - MemoryUsage: - PeakMemoryUsage: 8.25 MB - MergeBlockTime: 0ns - OpenTime: 110.394us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17s527ms - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 209.704ms - RpcCount: 673 - RpcMaxTime: 17s115ms - RpcMinTime: 10s189ms - RpcSumTime: 2m21s - SerializeBatchTime: 167.799ms - SplitBlockDistributeByChannelTime: 93.163ms - SplitBlockHashComputeTime: 98.561ms - UncompressedRowBatchSize: 25.79 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.58us - BlocksProduced: 836 - CloseTime: 52.7us - ExecTime: 60.732ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 235.808us - ProcessConjunctTime: 21.955us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 74.381ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 56.727ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 76, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 77, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 4096 VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [81.939ms, 16.428ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [37.150ms, 37.231ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 96.721ms - MemoryUsage: - FreeBlocks: 17.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 380.21us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 55.866us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 33.160ms - ScannerCtxSchedTime: 74.374ms - ScannerFilterTime: 277.475us - ScannerGetBlockTime: 97.821ms - ScannerInitTime: 62.694us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.285us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.908us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 20.144us - BlockInitTime: 172.755us - BlockLoadTime: 96.792ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 140.203us - FirstReadTime: 94.966ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.590us - 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: 86.933us - OutputIndexResultColumnTimer: 79.504us - 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 Fragment 61: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 235.499ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 234.903ms - CloseTime: 106.982us - GetBlockTime: 208.550ms - OpenTime: 237.638us - PrepareTime: 239.531us - SinkTime: 24.831ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 235.239ms - WaitBfTime: 798.221ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.623ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 49 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 412.00 KB - CloseTime: 33.27us - CompressTime: 0ns - ExecTime: 24.774ms - InputRows: 165.278K (165278) - LocalBytesSent: 4.57 MB - LocalSendTime: 696.92us - LocalSentRows: 145.38K (145380) - MemoryUsage: - PeakMemoryUsage: 6.73 MB - MergeBlockTime: 0ns - OpenTime: 68.477us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 34.670ms - RowsProduced: 165.278K (165278) - RpcAvgTime: 28.583ms - RpcCount: 6 - RpcMaxTime: 85.752ms - RpcMinTime: 85.747ms - RpcSumTime: 171.499ms - SerializeBatchTime: 660.757us - SplitBlockDistributeByChannelTime: 14.160ms - SplitBlockHashComputeTime: 3.630ms - UncompressedRowBatchSize: 669.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 22.588us - ExecTime: 206.376ms - InitProbeSideTime: 49.175ms - JoinFilterTimer: 61.180us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 18.674us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 76.907us - ProbeFindNextTime: 0ns - ProbeRows: 2.082156M (2082156) - ProbeTime: 203.106ms - ProbeWhenBuildSideOutputTime: 6.682ms - ProbeWhenProbeSideOutputTime: 3.126ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 138.859ms - ProjectionTime: 1.860ms - RowsProduced: 165.278K (165278) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s667ms 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: 3.857us - BlocksProduced: 514 - CloseTime: 46.886us - ExecTime: 131.5ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 310.761us - ProcessConjunctTime: 38.535us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.249ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 128.924ms - 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: 0 - 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: [121.963ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [8.249ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 103.523ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 882.754us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.715us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 94.462ms - ScannerCtxSchedTime: 8.222ms - ScannerFilterTime: 16.961ms - ScannerGetBlockTime: 104.808ms - ScannerInitTime: 148.447us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.408us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.253us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 17.714us - BlockInitTime: 120.252us - BlockLoadTime: 104.537ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 783.542us - FirstReadTime: 102.836ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.720us - 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: 102.841us - OutputIndexResultColumnTimer: 45.49us - 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: 294.262ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 293.825ms - CloseTime: 68.611us - GetBlockTime: 261.728ms - OpenTime: 129.101us - PrepareTime: 229.538us - SinkTime: 30.187ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 294.105ms - WaitBfTime: 798.479ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.160ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 49 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 421.98 KB - CloseTime: 15.83us - CompressTime: 0ns - ExecTime: 30.38ms - InputRows: 166.579K (166579) - LocalBytesSent: 4.60 MB - LocalSendTime: 745.712us - LocalSentRows: 146.204K (146204) - MemoryUsage: - PeakMemoryUsage: 6.68 MB - MergeBlockTime: 0ns - OpenTime: 57.617us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.718ms - RowsProduced: 166.579K (166579) - RpcAvgTime: 20.401ms - RpcCount: 6 - RpcMaxTime: 63.947ms - RpcMinTime: 58.462ms - RpcSumTime: 122.409ms - SerializeBatchTime: 881.796us - SplitBlockDistributeByChannelTime: 16.183ms - SplitBlockHashComputeTime: 4.800ms - UncompressedRowBatchSize: 685.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 11.963us - ExecTime: 258.998ms - InitProbeSideTime: 66.566ms - JoinFilterTimer: 78.563us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 10.907us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 109.257us - ProbeFindNextTime: 0ns - ProbeRows: 2.087045M (2087045) - ProbeTime: 254.862ms - ProbeWhenBuildSideOutputTime: 7.933ms - ProbeWhenProbeSideOutputTime: 3.680ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 170.188ms - ProjectionTime: 2.406ms - RowsProduced: 166.579K (166579) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s903ms 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: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.674us - BlocksProduced: 515 - CloseTime: 37.331us - ExecTime: 113.912ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 218.757us - ProcessConjunctTime: 21.537us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.924ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 111.573ms - 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: 0 - 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: [103.476ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [9.924ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 86.701ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 696.564us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.805us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 97.274ms - ScannerCtxSchedTime: 9.910ms - ScannerFilterTime: 15.53ms - ScannerGetBlockTime: 88.155ms - ScannerInitTime: 79.817us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.110us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.651us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.341us - BlockInitTime: 114.706us - BlockLoadTime: 87.614ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 702.829us - FirstReadTime: 85.720ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.654us - 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: 121.937us - OutputIndexResultColumnTimer: 67.177us - 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=4):(Active: 307.195ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 306.672ms - CloseTime: 85.868us - GetBlockTime: 274.897ms - OpenTime: 187.22us - PrepareTime: 240.928us - SinkTime: 29.806ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 306.41ms - WaitBfTime: 815.884ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.458ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 49 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 415.84 KB - CloseTime: 18.353us - CompressTime: 0ns - ExecTime: 29.680ms - InputRows: 166.235K (166235) - LocalBytesSent: 4.60 MB - LocalSendTime: 635.817us - LocalSentRows: 146.14K (146140) - MemoryUsage: - PeakMemoryUsage: 6.79 MB - MergeBlockTime: 0ns - OpenTime: 62.937us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.673ms - RowsProduced: 166.235K (166235) - RpcAvgTime: 16.160ms - RpcCount: 6 - RpcMaxTime: 49.100ms - RpcMinTime: 47.862ms - RpcSumTime: 96.963ms - SerializeBatchTime: 701.936us - SplitBlockDistributeByChannelTime: 16.616ms - SplitBlockHashComputeTime: 4.588ms - UncompressedRowBatchSize: 676.32 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 14.192us - ExecTime: 272.128ms - InitProbeSideTime: 61.342ms - JoinFilterTimer: 78.222us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 14.682us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 93.782us - ProbeFindNextTime: 0ns - ProbeRows: 2.086892M (2086892) - ProbeTime: 268.184ms - ProbeWhenBuildSideOutputTime: 7.931ms - ProbeWhenProbeSideOutputTime: 3.761ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 188.667ms - ProjectionTime: 2.276ms - RowsProduced: 166.235K (166235) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s951ms 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: 3.440us - BlocksProduced: 515 - CloseTime: 48.345us - ExecTime: 188.214ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 286.482us - ProcessConjunctTime: 42.221us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 38.887ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 185.740ms - 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: 0 - 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: [148.831ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [38.887ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 124.613ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 937.845us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.444us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 106.603ms - ScannerCtxSchedTime: 38.872ms - ScannerFilterTime: 22.674ms - ScannerGetBlockTime: 125.958ms - ScannerInitTime: 107.995us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.125us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.0us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 16.636us - BlockInitTime: 96.87us - BlockLoadTime: 125.680ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 936.922us - FirstReadTime: 123.837ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.447us - 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.458us - OutputIndexResultColumnTimer: 53.5us - 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.87, port:9060)): PipelineXTask (index=1):(Active: 32.713ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 32.614ms - CloseTime: 18.132us - GetBlockTime: 862.186us - OpenTime: 2.256us - PrepareTime: 70.288us - SinkTime: 31.324ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 32.605ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.115ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 36.48us - BuildRows: 166.382K (166382) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.971ms - BuildTableInsertTime: 13.122ms - BuildTableTime: 13.128ms - CloseTime: 0ns - ExecTime: 31.326ms - InputRows: 166.381K (166381) - MemoryUsage: - BuildBlocks: 9.52 MB - BuildKeyArena: 5.72 MB - HashTable: 1.63 MB - PeakMemoryUsage: 16.87 MB - OpenTime: 27.831us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.262us - RuntimeFilterComputeTime: 3.994ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 68 - BytesReceived: 4.59 MB - CloseTime: 14.482us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.842ms - ExecTime: 834.72us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.44 MB - MemoryUsage: - Blocks: 1.34 MB - PeakMemoryUsage: 1.34 MB - OpenTime: 17.313us - ProjectionTime: 0ns - RowsProduced: 166.381K (166381) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s472ms PipelineXTask (index=3):(Active: 37.498ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 37.412ms - CloseTime: 20.63us - GetBlockTime: 796.383us - OpenTime: 1.810us - PrepareTime: 54.570us - SinkTime: 36.187ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 39 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.379ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.123ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 36.894us - BuildRows: 167.617K (167617) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.828ms - BuildTableInsertTime: 10.632ms - BuildTableTime: 10.638ms - CloseTime: 0ns - ExecTime: 36.176ms - InputRows: 167.616K (167616) - MemoryUsage: - BuildBlocks: 9.59 MB - BuildKeyArena: 5.76 MB - HashTable: 1.64 MB - PeakMemoryUsage: 16.99 MB - OpenTime: 18.38us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.27us - RuntimeFilterComputeTime: 6.492ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 68 - BytesReceived: 4.61 MB - CloseTime: 15.83us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.774ms - ExecTime: 775.824us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.44 MB - MemoryUsage: - Blocks: 1.14 MB - PeakMemoryUsage: 1.14 MB - OpenTime: 16.339us - ProjectionTime: 0ns - RowsProduced: 167.616K (167616) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s694ms PipelineXTask (index=5):(Active: 40.459ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 40.362ms - CloseTime: 22.701us - GetBlockTime: 747.338us - OpenTime: 2.325us - PrepareTime: 61.693us - SinkTime: 39.184ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 40.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.961ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.431us - BuildRows: 167.329K (167329) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.377ms - BuildTableInsertTime: 10.527ms - BuildTableTime: 10.536ms - CloseTime: 0ns - ExecTime: 39.169ms - InputRows: 167.328K (167328) - MemoryUsage: - BuildBlocks: 9.57 MB - BuildKeyArena: 5.75 MB - HashTable: 1.64 MB - PeakMemoryUsage: 16.96 MB - OpenTime: 14.908us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 27.102us - RuntimeFilterComputeTime: 11.15ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 68 - BytesReceived: 4.62 MB - CloseTime: 16.802us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.878ms - ExecTime: 744.641us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.44 MB - MemoryUsage: - Blocks: 1.14 MB - PeakMemoryUsage: 1.14 MB - OpenTime: 24.842us - ProjectionTime: 0ns - RowsProduced: 167.328K (167328) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s819ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 470.690ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 470.44ms - CloseTime: 162.284us - GetBlockTime: 385.177ms - OpenTime: 184.779us - PrepareTime: 282.718us - SinkTime: 83.78ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 376.2ms - WaitBfTime: 759.869ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 121.462ms DATA_STREAM_SINK_OPERATOR (id=238,dst_id=238): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 57 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.85 MB - CloseTime: 29.0us - CompressTime: 0ns - ExecTime: 82.977ms - InputRows: 165.949K (165949) - LocalBytesSent: 643.27 KB - LocalSendTime: 92.95us - LocalSentRows: 19.963K (19963) - MemoryUsage: - PeakMemoryUsage: 2.42 MB - MergeBlockTime: 0ns - OpenTime: 65.324us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s589ms - RowsProduced: 165.949K (165949) - RpcAvgTime: 1s865ms - RpcCount: 41 - RpcMaxTime: 11s100ms - RpcMinTime: 7s260ms - RpcSumTime: 1m16s - SerializeBatchTime: 6.472ms - SplitBlockDistributeByChannelTime: 62.993ms - SplitBlockHashComputeTime: 4.426ms - UncompressedRowBatchSize: 4.80 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=237): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 26.945us - ExecTime: 381.954ms - InitProbeSideTime: 114.616ms - JoinFilterTimer: 104.773us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 15.278us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 123.926us - ProbeFindNextTime: 0ns - ProbeRows: 2.086234M (2086234) - ProbeTime: 377.161ms - ProbeWhenBuildSideOutputTime: 10.203ms - ProbeWhenProbeSideOutputTime: 4.775ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 238.496ms - ProjectionTime: 3.12ms - RowsProduced: 165.949K (165949) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 75.255ms 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.784us - BlocksProduced: 514 - CloseTime: 98.810us - ExecTime: 210.918ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 316.468us - ProcessConjunctTime: 33.308us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.549ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 208.61ms - 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: 0 - 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: [155.015ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [56.549ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 137.178ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 728.467us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.444us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.157ms - ScannerCtxSchedTime: 56.532ms - ScannerFilterTime: 15.662ms - ScannerGetBlockTime: 139.93ms - ScannerInitTime: 111.56us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.141us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.286us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.531us - BlockInitTime: 110.775us - BlockLoadTime: 138.287ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.127ms - FirstReadTime: 136.8ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.409us - 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: 175.964us - OutputIndexResultColumnTimer: 77.475us - 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 Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 79.595ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 79.494ms - CloseTime: 17.74us - GetBlockTime: 10.607ms - OpenTime: 3.664us - PrepareTime: 71.456us - SinkTime: 68.587ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 46.597ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.631ms HASH_JOIN_SINK_OPERATOR (id=237): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 33.809us - BuildRows: 167.085K (167085) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.2ms - BuildTableInsertTime: 40.372ms - BuildTableTime: 40.379ms - CloseTime: 0ns - ExecTime: 68.583ms - InputRows: 167.084K (167084) - MemoryUsage: - BuildBlocks: 9.56 MB - BuildKeyArena: 5.74 MB - HashTable: 1.64 MB - PeakMemoryUsage: 16.94 MB - OpenTime: 18.50us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.258us - RuntimeFilterComputeTime: 6.17ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=235): - BlocksProduced: 52 - BytesReceived: 1.87 MB - CloseTime: 12.674us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.877ms - ExecTime: 10.612ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.78 MB - MemoryUsage: - Blocks: 2.04 MB - PeakMemoryUsage: 0.00 - OpenTime: 32.511us - ProjectionTime: 0ns - RowsProduced: 167.084K (167084) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 833.333ms Fragment 62: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 21.616ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 21.454ms - CloseTime: 47.557us - GetBlockTime: 13.221ms - OpenTime: 4.244us - PrepareTime: 103.429us - SinkTime: 8.59ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.499ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.644ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 439.09 KB - CloseTime: 13.263us - CompressTime: 0ns - ExecTime: 8.100ms - InputRows: 44.846K (44846) - LocalBytesSent: 1.93 MB - LocalSendTime: 75.31us - LocalSentRows: 33.76K (33760) - MemoryUsage: - PeakMemoryUsage: 3.45 MB - MergeBlockTime: 0ns - OpenTime: 40.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 421.954ms - RowsProduced: 44.846K (44846) - RpcAvgTime: 158.330ms - RpcCount: 3 - RpcMaxTime: 474.990ms - RpcMinTime: 474.990ms - RpcSumTime: 474.990ms - SerializeBatchTime: 1.832ms - SplitBlockDistributeByChannelTime: 3.913ms - SplitBlockHashComputeTime: 1.593ms - UncompressedRowBatchSize: 663.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 30.956us - ExecTime: 13.104ms - InitProbeSideTime: 822.688us - JoinFilterTimer: 2.174us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.806us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.298us - ProbeFindNextTime: 0ns - ProbeRows: 44.846K (44846) - ProbeTime: 12.434ms - ProbeWhenBuildSideOutputTime: 72.471us - ProbeWhenProbeSideOutputTime: 10.256ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 939.275us - ProjectionTime: 567.568us - RowsProduced: 44.846K (44846) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 15 - CloseTime: 0ns - ExecTime: 100.483us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 944.00 KB - OpenTime: 839ns - ProjectionTime: 0ns - RowsProduced: 44.846K (44846) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 191.750ms PipelineXTask (index=3):(Active: 17.225ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 17.81ms - CloseTime: 45.157us - GetBlockTime: 3.301ms - OpenTime: 3.211us - PrepareTime: 90.718us - SinkTime: 13.654ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.854ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.659ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 387.95 KB - CloseTime: 16.538us - CompressTime: 0ns - ExecTime: 13.699ms - InputRows: 39.502K (39502) - LocalBytesSent: 1.70 MB - LocalSendTime: 156.140us - LocalSentRows: 29.76K (29760) - MemoryUsage: - PeakMemoryUsage: 3.31 MB - MergeBlockTime: 0ns - OpenTime: 36.808us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 448.422ms - RowsProduced: 39.502K (39502) - RpcAvgTime: 167.909ms - RpcCount: 3 - RpcMaxTime: 503.729ms - RpcMinTime: 503.729ms - RpcSumTime: 503.729ms - SerializeBatchTime: 1.785ms - SplitBlockDistributeByChannelTime: 3.279ms - SplitBlockHashComputeTime: 7.781ms - UncompressedRowBatchSize: 583.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 25.182us - ExecTime: 3.224ms - InitProbeSideTime: 727.204us - JoinFilterTimer: 1.697us - MemoryUsage: - PeakMemoryUsage: 108.00 KB - ProbeKeyArena: 108.00 KB - OpenTime: 17.2us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.39us - ProbeFindNextTime: 0ns - ProbeRows: 39.502K (39502) - ProbeTime: 2.649ms - ProbeWhenBuildSideOutputTime: 56.124us - ProbeWhenProbeSideOutputTime: 809.704us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 784.396us - ProjectionTime: 488.693us - RowsProduced: 39.502K (39502) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 11 - CloseTime: 0ns - ExecTime: 74.508us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 780.00 KB - OpenTime: 2.411us - ProjectionTime: 0ns - RowsProduced: 39.502K (39502) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 196.449ms PipelineXTask (index=6):(Active: 10.68ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 9.893ms - CloseTime: 63.644us - GetBlockTime: 3.246ms - OpenTime: 5.658us - PrepareTime: 100.43us - SinkTime: 6.529ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.981ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.332ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 361.89 KB - CloseTime: 27.144us - CompressTime: 0ns - ExecTime: 6.591ms - InputRows: 36.898K (36898) - LocalBytesSent: 1.59 MB - LocalSendTime: 58.619us - LocalSentRows: 27.77K (27770) - MemoryUsage: - PeakMemoryUsage: 3.12 MB - MergeBlockTime: 0ns - OpenTime: 43.894us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 441.854ms - RowsProduced: 36.898K (36898) - RpcAvgTime: 166.50ms - RpcCount: 3 - RpcMaxTime: 498.150ms - RpcMinTime: 498.150ms - RpcSumTime: 498.150ms - SerializeBatchTime: 1.508ms - SplitBlockDistributeByChannelTime: 2.939ms - SplitBlockHashComputeTime: 1.481ms - UncompressedRowBatchSize: 546.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 28.983us - ExecTime: 3.197ms - InitProbeSideTime: 725.687us - JoinFilterTimer: 1.955us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.713us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.521us - ProbeFindNextTime: 0ns - ProbeRows: 36.898K (36898) - ProbeTime: 2.618ms - ProbeWhenBuildSideOutputTime: 49.862us - ProbeWhenProbeSideOutputTime: 801.794us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 764.992us - ProjectionTime: 493.956us - RowsProduced: 36.898K (36898) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 51.689us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 780.00 KB - OpenTime: 682ns - ProjectionTime: 0ns - RowsProduced: 36.898K (36898) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 212.642ms PipelineXTask (index=9):(Active: 10.365ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 10.200ms - CloseTime: 37.900us - GetBlockTime: 3.321ms - OpenTime: 4.692us - PrepareTime: 101.401us - SinkTime: 6.744ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.306ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.849ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 342.63 KB - CloseTime: 13.746us - CompressTime: 0ns - ExecTime: 6.798ms - InputRows: 34.628K (34628) - LocalBytesSent: 1.49 MB - LocalSendTime: 52.402us - LocalSentRows: 25.999K (25999) - MemoryUsage: - PeakMemoryUsage: 2.54 MB - MergeBlockTime: 0ns - OpenTime: 53.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 395.632ms - RowsProduced: 34.628K (34628) - RpcAvgTime: 204.290ms - RpcCount: 2 - RpcMaxTime: 408.581ms - RpcMinTime: 408.581ms - RpcSumTime: 408.581ms - SerializeBatchTime: 1.703ms - SplitBlockDistributeByChannelTime: 3.125ms - SplitBlockHashComputeTime: 1.265ms - UncompressedRowBatchSize: 516.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 18.686us - ExecTime: 3.235ms - InitProbeSideTime: 789.3us - JoinFilterTimer: 1.842us - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 11.782us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.697us - ProbeFindNextTime: 0ns - ProbeRows: 34.628K (34628) - ProbeTime: 2.732ms - ProbeWhenBuildSideOutputTime: 60.191us - ProbeWhenProbeSideOutputTime: 889.950us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 734.491us - ProjectionTime: 431.535us - RowsProduced: 34.628K (34628) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 76.325us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 649ns - ProjectionTime: 0ns - RowsProduced: 34.628K (34628) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 197.891ms PipelineXTask (index=12):(Active: 9.765ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 9.631ms - CloseTime: 48.426us - GetBlockTime: 3.13ms - OpenTime: 3.124us - PrepareTime: 78.559us - SinkTime: 6.537ms - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.702ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.494ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 377.92 KB - CloseTime: 21.989us - CompressTime: 0ns - ExecTime: 6.586ms - InputRows: 37.744K (37744) - LocalBytesSent: 1.62 MB - LocalSendTime: 99.264us - LocalSentRows: 28.227K (28227) - MemoryUsage: - PeakMemoryUsage: 3.12 MB - MergeBlockTime: 0ns - OpenTime: 33.228us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 667.922ms - RowsProduced: 37.744K (37744) - RpcAvgTime: 223.851ms - RpcCount: 3 - RpcMaxTime: 671.555ms - RpcMinTime: 671.555ms - RpcSumTime: 671.555ms - SerializeBatchTime: 1.572ms - SplitBlockDistributeByChannelTime: 3.149ms - SplitBlockHashComputeTime: 1.254ms - UncompressedRowBatchSize: 569.41 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 20.832us - ExecTime: 2.963ms - InitProbeSideTime: 562.831us - JoinFilterTimer: 1.292us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.197us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.991us - ProbeFindNextTime: 0ns - ProbeRows: 37.744K (37744) - ProbeTime: 2.493ms - ProbeWhenBuildSideOutputTime: 64.643us - ProbeWhenProbeSideOutputTime: 1.23ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 651.915us - ProjectionTime: 401.67us - RowsProduced: 37.744K (37744) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 47.322us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 941ns - ProjectionTime: 0ns - RowsProduced: 37.744K (37744) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 198.633ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.241ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 554.440us - CloseTime: 66.882us - GetBlockTime: 46.304us - OpenTime: 463.859us - PrepareTime: 147.384us - SinkTime: 23.334us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.164ms - WaitBfTime: 62.623ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 458.785us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.450us - InputRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.241us - 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: 48.690us - BlocksProduced: 1 - CloseTime: 63.557us - ExecTime: 35.685ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 546.610us - ProcessConjunctTime: 229.687us - ProjectionTime: 13.738us - RowsProduced: 5 - RowsRead: 5 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 30.535ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 35.14ms - 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: [2.820ms, ] - PerScannerRowsRead: [5, ] - PerScannerWaitTime: [30.535ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.196ms - MemoryUsage: - FreeBlocks: 152.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.528ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 63ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.460ms - ScannerCtxSchedTime: 30.534ms - ScannerFilterTime: 4.36us - ScannerGetBlockTime: 2.805ms - ScannerInitTime: 157.189us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 1.996us - BlockConditionsFilteredBloomFilterTime: 7.594us - BlockConditionsFilteredDictTime: 145.408us - BlockConditionsFilteredTime: 250.616us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 65.909us - BlockInitSeekCount: 37 - BlockInitSeekTime: 216.986us - BlockInitTime: 556.341us - BlockLoadTime: 3.895ms - BlocksLoad: 152 - CachedPagesNum: 138 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 441 - FirstReadSeekTime: 73.774us - FirstReadTime: 1.929ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.923us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 42.246us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 24.239us - OutputIndexResultColumnTimer: 6.613us - 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: 412.250us - TotalPagesNum: 138 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 695.863us PipelineXTask (index=4):(Active: 963.807us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 479.946us - CloseTime: 33.43us - GetBlockTime: 77.55us - OpenTime: 301.258us - PrepareTime: 140.399us - SinkTime: 66.781us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 916.377us - WaitBfTime: 66.844ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.103ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 65.211us - InputRows: 19.236K (19236) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.167us - 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: 30.916us - BlocksProduced: 6 - CloseTime: 31.213us - ExecTime: 104.213ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 369.554us - ProcessConjunctTime: 168.574us - ProjectionTime: 1.26ms - RowsProduced: 19.236K (19236) - RowsRead: 19.236K (19236) - RuntimeFilterInfo: - filter id = -1 filtered: 649.228K (649228) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 33.790ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.665ms - 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: [64.886ms, ] - PerScannerRowsRead: [19.24K, ] - PerScannerWaitTime: [33.790ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 62.604ms - MemoryUsage: - FreeBlocks: 568.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 608.606us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 440ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.392ms - ScannerCtxSchedTime: 33.787ms - ScannerFilterTime: 261.973us - ScannerGetBlockTime: 64.484ms - ScannerInitTime: 73.857us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 649228] - BitmapIndexFilterTimer: 1.669us - BlockConditionsFilteredBloomFilterTime: 5.282us - BlockConditionsFilteredDictTime: 287.803us - BlockConditionsFilteredTime: 392.304us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 71.901us - BlockInitSeekCount: 26 - BlockInitSeekTime: 23.133us - BlockInitTime: 504.473us - BlockLoadTime: 64.178ms - BlocksLoad: 405 - CachedPagesNum: 1.36K (1360) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 165.597us - FirstReadTime: 6.164ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.295us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 17.120ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 793.836us - OutputIndexResultColumnTimer: 32.173us - 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: 35.759ms - TotalPagesNum: 1.36K (1360) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.693ms PipelineXTask (index=7):(Active: 2.652ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.348ms - CloseTime: 51.206us - GetBlockTime: 134.233us - OpenTime: 1.107ms - PrepareTime: 135.835us - SinkTime: 60.286us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.343ms - WaitBfTime: 66.765ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.70ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 57.510us - InputRows: 19.364K (19364) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.393us - 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: 46.994us - BlocksProduced: 6 - CloseTime: 48.547us - ExecTime: 125.751ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.191ms - ProcessConjunctTime: 899.839us - ProjectionTime: 1.346ms - RowsProduced: 19.364K (19364) - RowsRead: 19.364K (19364) - RuntimeFilterInfo: - filter id = -1 filtered: 921.434K (921434) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 33.635ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 122.977ms - 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: [74.691ms, ] - PerScannerRowsRead: [19.36K, ] - PerScannerWaitTime: [33.635ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 71.423ms - MemoryUsage: - FreeBlocks: 596.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.377ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 614ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.810ms - ScannerCtxSchedTime: 33.625ms - ScannerFilterTime: 360.968us - ScannerGetBlockTime: 74.138ms - ScannerInitTime: 107.937us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921434] - BitmapIndexFilterTimer: 19.358us - BlockConditionsFilteredBloomFilterTime: 12.895us - BlockConditionsFilteredDictTime: 135.21us - BlockConditionsFilteredTime: 360.836us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 133.639us - BlockInitSeekCount: 31 - BlockInitSeekTime: 47.158us - BlockInitTime: 610.396us - BlockLoadTime: 73.912ms - BlocksLoad: 410 - CachedPagesNum: 1.359K (1359) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 290.47us - FirstReadTime: 7.276ms - IOTimer: 0ns - InvertedIndexFilterTime: 24.982us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 9.812ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.114ms - OutputIndexResultColumnTimer: 53.388us - 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.851ms - TotalPagesNum: 1.359K (1359) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 51.409ms PipelineXTask (index=10):(Active: 1.593ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 944.713us - CloseTime: 62.267us - GetBlockTime: 273.657us - OpenTime: 450.325us - PrepareTime: 126.991us - SinkTime: 155.511us - GetBlockCounter: 36 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.516ms - WaitBfTime: 64.491ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 863.509us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 152.620us - InputRows: 129.028K (129028) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.640us - 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: 47.910us - BlocksProduced: 36 - CloseTime: 59.723us - ExecTime: 160.904ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 523.388us - ProcessConjunctTime: 223.707us - ProjectionTime: 2.261ms - RowsProduced: 129.028K (129028) - RowsRead: 129.028K (129028) - RuntimeFilterInfo: - filter id = -1 filtered: 1.061902M (1061902) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 34.849ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.742ms - 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: [114.893ms, ] - PerScannerRowsRead: [129.03K, ] - PerScannerWaitTime: [34.849ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 89.165ms - MemoryUsage: - FreeBlocks: 4.57 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 851.532us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.216us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.529ms - ScannerCtxSchedTime: 34.842ms - ScannerFilterTime: 293.213us - ScannerGetBlockTime: 114.457ms - ScannerInitTime: 150.766us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1061902] - BitmapIndexFilterTimer: 3.531us - BlockConditionsFilteredBloomFilterTime: 11.70us - BlockConditionsFilteredDictTime: 22.106ms - BlockConditionsFilteredTime: 22.329ms - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 127.639us - BlockInitSeekCount: 35 - BlockInitSeekTime: 27.754us - BlockInitTime: 22.501ms - BlockLoadTime: 113.995ms - BlocksLoad: 345 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 212.308us - FirstReadTime: 13.743ms - IOTimer: 0ns - InvertedIndexFilterTime: 35.224us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 68.77ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.637ms - OutputIndexResultColumnTimer: 36.466us - 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.960ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.826ms PipelineXTask (index=13):(Active: 1.94ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 522.762us - CloseTime: 66.634us - GetBlockTime: 94.280us - OpenTime: 364.483us - PrepareTime: 133.47us - SinkTime: 40.333us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.19ms - WaitBfTime: 65.926ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.802ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 39.689us - InputRows: 25.985K (25985) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.215us - 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: 47.272us - BlocksProduced: 7 - CloseTime: 63.55us - ExecTime: 94.245ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 448.934us - ProcessConjunctTime: 216.483us - ProjectionTime: 374.338us - RowsProduced: 25.985K (25985) - RowsRead: 25.985K (25985) - RuntimeFilterInfo: - filter id = -1 filtered: 349.77K (349770) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 31.663ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.257ms - 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: [58.937ms, ] - PerScannerRowsRead: [25.98K, ] - PerScannerWaitTime: [31.663ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 58.719ms - MemoryUsage: - FreeBlocks: 1.84 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 726.874us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 415ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.516ms - ScannerCtxSchedTime: 31.662ms - ScannerFilterTime: 55.534us - ScannerGetBlockTime: 58.846ms - ScannerInitTime: 75.956us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 349770] - BitmapIndexFilterTimer: 678ns - BlockConditionsFilteredBloomFilterTime: 1.813us - BlockConditionsFilteredDictTime: 20.336us - BlockConditionsFilteredTime: 53.204us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 23.907us - BlockInitSeekCount: 8 - BlockInitSeekTime: 13.480us - BlockInitTime: 110.19us - BlockLoadTime: 59.266ms - BlocksLoad: 61 - CachedPagesNum: 199 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 180 - FirstReadSeekTime: 41.10us - FirstReadTime: 1.34ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.103us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.742ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 705.375us - OutputIndexResultColumnTimer: 7.361us - 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: 52.752ms - TotalPagesNum: 199 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 672.464us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 198.2us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 123.676us - CloseTime: 12.605us - GetBlockTime: 5.133us - OpenTime: 1.470us - PrepareTime: 55.647us - SinkTime: 101.940us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 179.284us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 675.221us HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.631us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.677us - BuildTableInsertTime: 18.826us - BuildTableTime: 24.473us - CloseTime: 0ns - ExecTime: 116.76us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 14.671us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.438us - RuntimeFilterComputeTime: 17.45us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=232): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.75us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 18.143us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 62.99ms PipelineXTask (index=5):(Active: 143.87us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.583us - CloseTime: 9.823us - GetBlockTime: 0ns - OpenTime: 2.643us - PrepareTime: 74.911us - SinkTime: 33.62us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.785us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.93ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc852e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 57.751us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.833us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 62.771ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.338us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.213us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 34.4us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 97.609us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.711us - CloseTime: 7.582us - GetBlockTime: 0ns - OpenTime: 1.705us - PrepareTime: 48.354us - SinkTime: 21.643us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.369us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.34ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc852e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.931us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.692us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 62.323ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.951us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.114us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.465us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 123.766us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.155us - CloseTime: 5.157us - GetBlockTime: 0ns - OpenTime: 2.89us - PrepareTime: 83.101us - SinkTime: 15.53us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 113.130us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.845ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc852e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.506us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.457us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 62.725ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.799us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.198us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.684us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 120.166us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 49.651us - CloseTime: 11.20us - GetBlockTime: 0ns - OpenTime: 2.110us - PrepareTime: 53.481us - SinkTime: 33.480us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.667us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.782ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc852e - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.645us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.732us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 62.733ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.972us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.73us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.260us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 100.581ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 100.383ms - CloseTime: 59.396us - GetBlockTime: 7.922ms - OpenTime: 7.663us - PrepareTime: 122.605us - SinkTime: 92.247ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 29.341ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.19ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.31 MB - CloseTime: 12.576us - CompressTime: 0ns - ExecTime: 92.310ms - InputRows: 79.441K (79441) - LocalBytesSent: 1.14 MB - LocalSendTime: 73.444us - LocalSentRows: 19.989K (19989) - MemoryUsage: - PeakMemoryUsage: 3.18 MB - MergeBlockTime: 0ns - OpenTime: 74.680us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s444ms - RowsProduced: 79.441K (79441) - RpcAvgTime: 1s871ms - RpcCount: 15 - RpcMaxTime: 9s490ms - RpcMinTime: 9s227ms - RpcSumTime: 28s73ms - SerializeBatchTime: 80.439ms - SplitBlockDistributeByChannelTime: 5.801ms - SplitBlockHashComputeTime: 4.361ms - UncompressedRowBatchSize: 3.47 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 21 - BuildOutputBlock: 0ns - CloseTime: 42.953us - ExecTime: 7.688ms - InitProbeSideTime: 1.736ms - JoinFilterTimer: 5.19us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.580us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.952us - ProbeFindNextTime: 0ns - ProbeRows: 79.441K (79441) - ProbeTime: 6.544ms - ProbeWhenBuildSideOutputTime: 149.256us - ProbeWhenProbeSideOutputTime: 2.236ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.761ms - ProjectionTime: 985.541us - RowsProduced: 79.441K (79441) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 21 - CloseTime: 0ns - ExecTime: 181.11us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 1.52 MB - OpenTime: 650ns - ProjectionTime: 0ns - RowsProduced: 79.441K (79441) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 314.257ms PipelineXTask (index=3):(Active: 84.954ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 84.736ms - CloseTime: 50.524us - GetBlockTime: 51.301ms - OpenTime: 12.374us - PrepareTime: 145.995us - SinkTime: 33.158ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 32.926ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.400ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.03 MB - CloseTime: 16.692us - CompressTime: 0ns - ExecTime: 33.177ms - InputRows: 69.757K (69757) - LocalBytesSent: 1.01 MB - LocalSendTime: 57.730us - LocalSentRows: 17.607K (17607) - MemoryUsage: - PeakMemoryUsage: 2.93 MB - MergeBlockTime: 0ns - OpenTime: 29.741us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s540ms - RowsProduced: 69.757K (69757) - RpcAvgTime: 2s168ms - RpcCount: 12 - RpcMaxTime: 8s692ms - RpcMinTime: 8s663ms - RpcSumTime: 26s27ms - SerializeBatchTime: 21.565ms - SplitBlockDistributeByChannelTime: 7.124ms - SplitBlockHashComputeTime: 2.788ms - UncompressedRowBatchSize: 3.05 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 28.638us - ExecTime: 51.100ms - InitProbeSideTime: 2.5ms - JoinFilterTimer: 5.62us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 36.263us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.184us - ProbeFindNextTime: 0ns - ProbeRows: 69.757K (69757) - ProbeTime: 26.963ms - ProbeWhenBuildSideOutputTime: 156.283us - ProbeWhenProbeSideOutputTime: 9.323ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.738ms - ProjectionTime: 23.957ms - RowsProduced: 69.757K (69757) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 149.458us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 748.00 KB - OpenTime: 595ns - ProjectionTime: 0ns - RowsProduced: 69.757K (69757) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 344.23ms PipelineXTask (index=6):(Active: 42.508ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 42.324ms - CloseTime: 52.632us - GetBlockTime: 8.308ms - OpenTime: 5.577us - PrepareTime: 99.61us - SinkTime: 33.726ms - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.356ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.907ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.09 MB - CloseTime: 18.509us - CompressTime: 0ns - ExecTime: 33.762ms - InputRows: 71.746K (71746) - LocalBytesSent: 1.03 MB - LocalSendTime: 58.626us - LocalSentRows: 17.926K (17926) - MemoryUsage: - PeakMemoryUsage: 2.93 MB - MergeBlockTime: 0ns - OpenTime: 41.594us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s596ms - RowsProduced: 71.746K (71746) - RpcAvgTime: 2s176ms - RpcCount: 12 - RpcMaxTime: 8s723ms - RpcMinTime: 8s694ms - RpcSumTime: 26s119ms - SerializeBatchTime: 7.963ms - SplitBlockDistributeByChannelTime: 5.507ms - SplitBlockHashComputeTime: 2.570ms - UncompressedRowBatchSize: 3.14 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 30.604us - ExecTime: 8.55ms - InitProbeSideTime: 1.846ms - JoinFilterTimer: 4.331us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.595us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.2us - ProbeFindNextTime: 0ns - ProbeRows: 71.746K (71746) - ProbeTime: 6.694ms - ProbeWhenBuildSideOutputTime: 212.70us - ProbeWhenProbeSideOutputTime: 2.361ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.655ms - ProjectionTime: 1.220ms - RowsProduced: 71.746K (71746) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 181.116us - GetBlockFailedTime: 15 - MemoryUsage: - PeakMemoryUsage: 780.00 KB - OpenTime: 599ns - ProjectionTime: 0ns - RowsProduced: 71.746K (71746) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 363.316ms PipelineXTask (index=9):(Active: 41.578ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 41.396ms - CloseTime: 52.817us - GetBlockTime: 7.509ms - OpenTime: 5.170us - PrepareTime: 115.629us - SinkTime: 33.676ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 23.321ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.750ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.87 MB - CloseTime: 20.480us - CompressTime: 0ns - ExecTime: 33.724ms - InputRows: 64.492K (64492) - LocalBytesSent: 951.47 KB - LocalSendTime: 46.774us - LocalSentRows: 16.24K (16240) - MemoryUsage: - PeakMemoryUsage: 2.80 MB - MergeBlockTime: 0ns - OpenTime: 46.750us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s561ms - RowsProduced: 64.492K (64492) - RpcAvgTime: 2s172ms - RpcCount: 12 - RpcMaxTime: 8s692ms - RpcMinTime: 8s689ms - RpcSumTime: 26s72ms - SerializeBatchTime: 24.663ms - SplitBlockDistributeByChannelTime: 5.454ms - SplitBlockHashComputeTime: 2.74ms - UncompressedRowBatchSize: 2.82 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 27.583us - ExecTime: 7.323ms - InitProbeSideTime: 1.400ms - JoinFilterTimer: 3.441us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 32.382us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.92us - ProbeFindNextTime: 0ns - ProbeRows: 64.492K (64492) - ProbeTime: 6.235ms - ProbeWhenBuildSideOutputTime: 175.171us - ProbeWhenProbeSideOutputTime: 1.707ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.208ms - ProjectionTime: 951.716us - RowsProduced: 64.492K (64492) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 152.252us - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 780.00 KB - OpenTime: 582ns - ProjectionTime: 0ns - RowsProduced: 64.492K (64492) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 362.791ms PipelineXTask (index=12):(Active: 44.975ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 44.808ms - CloseTime: 54.918us - GetBlockTime: 23.163ms - OpenTime: 4.937us - PrepareTime: 99.909us - SinkTime: 21.381ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.468ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.365ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 21 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.06 MB - CloseTime: 28.557us - CompressTime: 0ns - ExecTime: 21.423ms - InputRows: 70.67K (70670) - LocalBytesSent: 1.01 MB - LocalSendTime: 62.892us - LocalSentRows: 17.621K (17621) - MemoryUsage: - PeakMemoryUsage: 3.12 MB - MergeBlockTime: 0ns - OpenTime: 31.806us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s317ms - RowsProduced: 70.67K (70670) - RpcAvgTime: 2s64ms - RpcCount: 13 - RpcMaxTime: 9s427ms - RpcMinTime: 8s692ms - RpcSumTime: 26s833ms - SerializeBatchTime: 8.376ms - SplitBlockDistributeByChannelTime: 8.840ms - SplitBlockHashComputeTime: 2.699ms - UncompressedRowBatchSize: 3.10 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 20.911us - ExecTime: 7.345ms - InitProbeSideTime: 1.618ms - JoinFilterTimer: 4.58us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.187us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.444us - ProbeFindNextTime: 0ns - ProbeRows: 70.67K (70670) - ProbeTime: 6.142ms - ProbeWhenBuildSideOutputTime: 187.557us - ProbeWhenProbeSideOutputTime: 2.33ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.670ms - ProjectionTime: 1.76ms - RowsProduced: 70.67K (70670) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 146.498us - GetBlockFailedTime: 13 - MemoryUsage: - PeakMemoryUsage: 1.02 MB - OpenTime: 3.115us - ProjectionTime: 0ns - RowsProduced: 70.67K (70670) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 358.282ms PipelineXTask (index=15):(Active: 59.366ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 59.208ms - CloseTime: 65.278us - GetBlockTime: 7.563ms - OpenTime: 7.489us - PrepareTime: 76.277us - SinkTime: 51.346ms - GetBlockCounter: 34 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 27.786ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.16ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.89 MB - CloseTime: 16.891us - CompressTime: 0ns - ExecTime: 51.369ms - InputRows: 65.065K (65065) - LocalBytesSent: 955.61 KB - LocalSendTime: 23.947ms - LocalSentRows: 16.31K (16310) - MemoryUsage: - PeakMemoryUsage: 2.71 MB - MergeBlockTime: 0ns - OpenTime: 30.513us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s575ms - RowsProduced: 65.065K (65065) - RpcAvgTime: 2s180ms - RpcCount: 12 - RpcMaxTime: 8s723ms - RpcMinTime: 8s720ms - RpcSumTime: 26s165ms - SerializeBatchTime: 9.798ms - SplitBlockDistributeByChannelTime: 13.240ms - SplitBlockHashComputeTime: 2.577ms - UncompressedRowBatchSize: 2.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 44.963us - ExecTime: 7.355ms - InitProbeSideTime: 1.534ms - JoinFilterTimer: 4.56us - MemoryUsage: - PeakMemoryUsage: 108.00 KB - ProbeKeyArena: 108.00 KB - OpenTime: 14.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.188us - ProbeFindNextTime: 0ns - ProbeRows: 65.065K (65065) - ProbeTime: 6.218ms - ProbeWhenBuildSideOutputTime: 154.729us - ProbeWhenProbeSideOutputTime: 2.65ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.749ms - ProjectionTime: 986.918us - RowsProduced: 65.065K (65065) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 142.698us - GetBlockFailedTime: 14 - MemoryUsage: - PeakMemoryUsage: 780.00 KB - OpenTime: 604ns - ProjectionTime: 0ns - RowsProduced: 65.065K (65065) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 366.448ms PipelineXTask (index=18):(Active: 52.35ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 51.846ms - CloseTime: 43.542us - GetBlockTime: 24.883ms - OpenTime: 5.847us - PrepareTime: 130.874us - SinkTime: 26.734ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 20.43ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.20ms DATA_STREAM_SINK_OPERATOR (id=235,dst_id=235): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 18 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.57 MB - CloseTime: 12.803us - CompressTime: 0ns - ExecTime: 26.773ms - InputRows: 53.62K (53620) - LocalBytesSent: 778.62 KB - LocalSendTime: 44.256us - LocalSentRows: 13.289K (13289) - MemoryUsage: - PeakMemoryUsage: 2.48 MB - MergeBlockTime: 0ns - OpenTime: 41.703us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s635ms - RowsProduced: 53.62K (53620) - RpcAvgTime: 2s182ms - RpcCount: 12 - RpcMaxTime: 8s730ms - RpcMinTime: 8s727ms - RpcSumTime: 26s186ms - SerializeBatchTime: 6.203ms - SplitBlockDistributeByChannelTime: 4.581ms - SplitBlockHashComputeTime: 14.799ms - UncompressedRowBatchSize: 2.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=234): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 27.720us - ExecTime: 24.726ms - InitProbeSideTime: 1.261ms - JoinFilterTimer: 2.949us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 26.942us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.101us - ProbeFindNextTime: 0ns - ProbeRows: 53.62K (53620) - ProbeTime: 23.785ms - ProbeWhenBuildSideOutputTime: 111.242us - ProbeWhenProbeSideOutputTime: 20.901ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.30ms - ProjectionTime: 818.335us - RowsProduced: 53.62K (53620) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 16 - CloseTime: 0ns - ExecTime: 109.591us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 944.00 KB - OpenTime: 613ns - ProjectionTime: 0ns - RowsProduced: 53.62K (53620) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 348.541ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.149ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 495.796us - CloseTime: 35.38us - GetBlockTime: 27.765us - OpenTime: 420.788us - PrepareTime: 188.489us - SinkTime: 19.522us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.103ms - WaitBfTime: 75.576ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.13ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.271us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.469us - 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: 76.718us - BlocksProduced: 0 - CloseTime: 33.410us - ExecTime: 170.367ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 530.447us - ProcessConjunctTime: 242.496us - ProjectionTime: 1.420us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 169.344ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 169.774ms - 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.256us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [169.344ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 384.582us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 180ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 430.532us - ScannerCtxSchedTime: 169.343ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.10us - ScannerInitTime: 74.332us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 516ns - BlockConditionsFilteredBloomFilterTime: 1.726us - BlockConditionsFilteredDictTime: 124.191us - BlockConditionsFilteredTime: 166.891us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 33.769us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.414us - BlockInitTime: 201.880us - BlockLoadTime: 218.923us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 530ns - IOTimer: 0ns - InvertedIndexFilterTime: 3.426us - 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: 939.553us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 528.233us - CloseTime: 39.599us - GetBlockTime: 157.176us - OpenTime: 222.86us - PrepareTime: 139.228us - SinkTime: 92.892us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 882.211us - WaitBfTime: 90.193ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.614ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 79.434us - InputRows: 11.715K (11715) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.198us - 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: 30.442us - BlocksProduced: 6 - CloseTime: 37.73us - ExecTime: 275.479ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 307.377us - ProcessConjunctTime: 123.571us - ProjectionTime: 940.128us - RowsProduced: 11.715K (11715) - RowsRead: 11.715K (11715) - RuntimeFilterInfo: - filter id = -1 filtered: 656.744K (656744) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 181.100ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 274.4ms - 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: [88.823ms, ] - PerScannerRowsRead: [11.71K, ] - PerScannerWaitTime: [181.100ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 63.745ms - MemoryUsage: - FreeBlocks: 780.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 730.272us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 642ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.973ms - ScannerCtxSchedTime: 181.95ms - ScannerFilterTime: 288.484us - ScannerGetBlockTime: 64.835ms - ScannerInitTime: 49.717us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656744] - BitmapIndexFilterTimer: 1.482us - BlockConditionsFilteredBloomFilterTime: 3.221us - BlockConditionsFilteredDictTime: 66.203us - BlockConditionsFilteredTime: 163.669us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 75.962us - BlockInitSeekCount: 17 - BlockInitSeekTime: 15.649us - BlockInitTime: 239.845us - BlockLoadTime: 64.665ms - BlocksLoad: 367 - CachedPagesNum: 1.245K (1245) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 224.617us - FirstReadTime: 5.962ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.668us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 52.971ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 791.769us - OutputIndexResultColumnTimer: 48.641us - 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: 974.361us - TotalPagesNum: 1.245K (1245) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.505ms PipelineXTask (index=7):(Active: 1.103ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 634.388us - CloseTime: 52.76us - GetBlockTime: 216.522us - OpenTime: 219.163us - PrepareTime: 187.393us - SinkTime: 138.627us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.32ms - WaitBfTime: 90.369ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.296ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 133.220us - InputRows: 42.659K (42659) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.15us - 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: 20.711us - BlocksProduced: 14 - CloseTime: 49.799us - ExecTime: 249.676ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 340.863us - ProcessConjunctTime: 131.402us - ProjectionTime: 862.744us - RowsProduced: 42.659K (42659) - RowsRead: 42.659K (42659) - RuntimeFilterInfo: - filter id = -1 filtered: 916.15K (916150) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 181.151ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 248.170ms - 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: [60.432ms, ] - PerScannerRowsRead: [42.66K, ] - PerScannerWaitTime: [181.151ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 58.334ms - MemoryUsage: - FreeBlocks: 1.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.232ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 865ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 28.348ms - ScannerCtxSchedTime: 181.147ms - ScannerFilterTime: 244.664us - ScannerGetBlockTime: 60.69ms - ScannerInitTime: 46.297us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 916150] - BitmapIndexFilterTimer: 2.255us - BlockConditionsFilteredBloomFilterTime: 5.447us - BlockConditionsFilteredDictTime: 140.323us - BlockConditionsFilteredTime: 258.647us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 79.677us - BlockInitSeekCount: 25 - BlockInitSeekTime: 43.890us - BlockInitTime: 396.489us - BlockLoadTime: 60.374ms - BlocksLoad: 384 - CachedPagesNum: 1.289K (1289) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 159.813us - FirstReadTime: 5.643ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.83us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 48.714ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 982.689us - OutputIndexResultColumnTimer: 29.28us - 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.343ms - TotalPagesNum: 1.289K (1289) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.303ms PipelineXTask (index=10):(Active: 1.499ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 983.319us - CloseTime: 91.220us - GetBlockTime: 420.853us - OpenTime: 212.302us - PrepareTime: 186.453us - SinkTime: 245.123us - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.384ms - WaitBfTime: 90.541ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.995ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 235.810us - InputRows: 95.875K (95875) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.148us - 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: 22.217us - BlocksProduced: 27 - CloseTime: 87.490us - ExecTime: 291.861ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 352.453us - ProcessConjunctTime: 111.69us - ProjectionTime: 1.930ms - RowsProduced: 95.875K (95875) - RowsRead: 95.875K (95875) - RuntimeFilterInfo: - filter id = -1 filtered: 1.157826M (1157826) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 172.620ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 289.45ms - 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: [107.947ms, ] - PerScannerRowsRead: [95.88K, ] - PerScannerWaitTime: [172.620ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 86.4ms - MemoryUsage: - FreeBlocks: 2.34 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.73ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.603us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.123ms - ScannerCtxSchedTime: 172.613ms - ScannerFilterTime: 398.281us - ScannerGetBlockTime: 107.361ms - ScannerInitTime: 65.752us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1157826] - BitmapIndexFilterTimer: 4.24us - BlockConditionsFilteredBloomFilterTime: 8.624us - BlockConditionsFilteredDictTime: 166.295us - BlockConditionsFilteredTime: 359.390us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 143.125us - BlockInitSeekCount: 33 - BlockInitSeekTime: 46.295us - BlockInitTime: 544.244us - BlockLoadTime: 88.879ms - BlocksLoad: 382 - CachedPagesNum: 1.263K (1263) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 287.331us - FirstReadTime: 18.496ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.353us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 60.105ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.558ms - OutputIndexResultColumnTimer: 48.523us - 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: 2.635ms - TotalPagesNum: 1.263K (1263) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.902ms PipelineXTask (index=13):(Active: 1.507ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 952.154us - CloseTime: 84.935us - GetBlockTime: 298.335us - OpenTime: 276.997us - PrepareTime: 183.716us - SinkTime: 281.637us - GetBlockCounter: 36 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.405ms - WaitBfTime: 90.686ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.459ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 273.461us - InputRows: 131.262K (131262) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.185us - 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: 27.149us - BlocksProduced: 36 - CloseTime: 81.94us - ExecTime: 303.861ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 393.736us - ProcessConjunctTime: 152.451us - ProjectionTime: 2.147ms - RowsProduced: 131.262K (131262) - RowsRead: 131.262K (131262) - RuntimeFilterInfo: - filter id = -1 filtered: 932.61K (932610) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 181.834ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 300.903ms - 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.724ms, ] - PerScannerRowsRead: [131.26K, ] - PerScannerWaitTime: [181.834ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 29.414ms - MemoryUsage: - FreeBlocks: 3.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.304ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.555us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.456ms - ScannerCtxSchedTime: 181.830ms - ScannerFilterTime: 260.669us - ScannerGetBlockTime: 57.333ms - ScannerInitTime: 73.275us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 932610] - BitmapIndexFilterTimer: 2.77us - BlockConditionsFilteredBloomFilterTime: 4.786us - BlockConditionsFilteredDictTime: 55.873us - BlockConditionsFilteredTime: 153.117us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 74.737us - BlockInitSeekCount: 25 - BlockInitSeekTime: 248.246us - BlockInitTime: 475.464us - BlockLoadTime: 31.4ms - BlocksLoad: 260 - CachedPagesNum: 875 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 771 - FirstReadSeekTime: 166.815us - FirstReadTime: 4.718ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.87us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 17.447ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.642ms - OutputIndexResultColumnTimer: 29.85us - 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.587ms - TotalPagesNum: 875 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.99ms PipelineXTask (index=16):(Active: 1.437ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 951.891us - CloseTime: 48.877us - GetBlockTime: 364.782us - OpenTime: 264.88us - PrepareTime: 161.778us - SinkTime: 241.2us - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.372ms - WaitBfTime: 89.718ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.371ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 233.79us - InputRows: 171.007K (171007) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.83us - 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: 36.209us - BlocksProduced: 48 - CloseTime: 46.200us - ExecTime: 355.913ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 358.361us - ProcessConjunctTime: 127.120us - ProjectionTime: 26.392ms - RowsProduced: 171.007K (171007) - RowsRead: 171.007K (171007) - RuntimeFilterInfo: - filter id = -1 filtered: 1.006286M (1006286) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 174.181ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 328.711ms - 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: [115.381ms, ] - PerScannerRowsRead: [171.01K, ] - PerScannerWaitTime: [174.181ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 113.38ms - MemoryUsage: - FreeBlocks: 4.84 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 920.754us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.724us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.463ms - ScannerCtxSchedTime: 174.168ms - ScannerFilterTime: 304.392us - ScannerGetBlockTime: 114.934ms - ScannerInitTime: 81.487us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 1006286] - BitmapIndexFilterTimer: 2.887us - BlockConditionsFilteredBloomFilterTime: 8.544us - BlockConditionsFilteredDictTime: 131.312us - BlockConditionsFilteredTime: 249.718us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 73.741us - BlockInitSeekCount: 26 - BlockInitSeekTime: 267.810us - BlockInitTime: 618.361us - BlockLoadTime: 114.595ms - BlocksLoad: 291 - CachedPagesNum: 985 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 864 - FirstReadSeekTime: 192.864us - FirstReadTime: 5.509ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.488us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 80.267ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.241ms - OutputIndexResultColumnTimer: 38.316us - 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.334ms - TotalPagesNum: 985 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 20.326ms PipelineXTask (index=19):(Active: 1.88ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 499.85us - CloseTime: 30.205us - GetBlockTime: 27.621us - OpenTime: 377.122us - PrepareTime: 161.391us - SinkTime: 61.548us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.49ms - WaitBfTime: 89.296ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.939ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 61.628us - InputRows: 22.273K (22273) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.109us - 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: 41.15us - BlocksProduced: 6 - CloseTime: 27.968us - ExecTime: 162.403ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 473.834us - ProcessConjunctTime: 207.640us - ProjectionTime: 288.288us - RowsProduced: 22.273K (22273) - RowsRead: 22.273K (22273) - RuntimeFilterInfo: - filter id = -1 filtered: 338.22K (338220) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 153.401ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 161.577ms - 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.546ms, ] - PerScannerRowsRead: [22.27K, ] - PerScannerWaitTime: [153.401ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.331ms - MemoryUsage: - FreeBlocks: 1.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 611.478us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 173ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.145ms - ScannerCtxSchedTime: 153.399ms - ScannerFilterTime: 45.766us - ScannerGetBlockTime: 5.469ms - ScannerInitTime: 96.427us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 338220] - BitmapIndexFilterTimer: 567ns - BlockConditionsFilteredBloomFilterTime: 1.765us - BlockConditionsFilteredDictTime: 21.178us - BlockConditionsFilteredTime: 51.497us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 20.23us - BlockInitSeekCount: 9 - BlockInitSeekTime: 12.209us - BlockInitTime: 95.195us - BlockLoadTime: 5.830ms - BlocksLoad: 57 - CachedPagesNum: 184 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 168 - FirstReadSeekTime: 46.689us - FirstReadTime: 1.75ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.908us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.44ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 422.31us - OutputIndexResultColumnTimer: 5.898us - 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: 502.665us - TotalPagesNum: 184 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 459.869us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 18.322ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 18.240ms - CloseTime: 16.714us - GetBlockTime: 9.922us - OpenTime: 2.534us - PrepareTime: 56.798us - SinkTime: 18.210ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 245.578us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.802ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.357us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.100us - BuildTableInsertTime: 18.90ms - BuildTableTime: 18.98ms - CloseTime: 0ns - ExecTime: 18.227ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 17.948us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.868us - RuntimeFilterComputeTime: 16.123us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=232): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 12.375us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.980us - ExecTime: 33.280us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.435us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 69.900ms PipelineXTask (index=5):(Active: 119.395us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.688us - CloseTime: 3.851us - GetBlockTime: 0ns - OpenTime: 3.573us - PrepareTime: 75.245us - SinkTime: 13.138us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.0us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.649ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8533 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.12us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.964us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 89.303ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.911us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.156us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 33.577us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 106.915us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.333us - CloseTime: 3.605us - GetBlockTime: 0ns - OpenTime: 2.613us - PrepareTime: 58.400us - SinkTime: 18.439us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.584us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.705ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8533 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.644us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.492us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 89.265ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.513us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.102us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 112.528us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.71us - CloseTime: 3.200us - GetBlockTime: 0ns - OpenTime: 2.270us - PrepareTime: 74.868us - SinkTime: 10.237us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.539us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.773ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8533 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.914us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.663us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 89.217ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.296us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.156us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.236us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 103.889us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 28.691us - CloseTime: 3.256us - GetBlockTime: 0ns - OpenTime: 2.490us - PrepareTime: 62.517us - SinkTime: 10.316us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.164us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.861ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8533 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.234us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.52us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 89.152ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.136us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.668us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.730us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 164.817us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 52.795us - CloseTime: 4.584us - GetBlockTime: 0ns - OpenTime: 2.225us - PrepareTime: 99.496us - SinkTime: 36.38us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.584us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.782ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8533 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 53.884us - 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: 89.119ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.466us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.564us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 51.281us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 124.303us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.631us - CloseTime: 4.728us - GetBlockTime: 0ns - OpenTime: 2.997us - PrepareTime: 76.550us - SinkTime: 16.297us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.562us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.937ms HASH_JOIN_SINK_OPERATOR (id=234): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8533 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 57.705us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 41.624us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 89.98ms EXCHANGE_OPERATOR (id=232): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.502us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.613us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.285us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 63: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 40.77ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 20.16ms - CloseTime: 61.168us - GetBlockTime: 34.280us - OpenTime: 19.849ms - PrepareTime: 143.742us - SinkTime: 99.410us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 597.87us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.482ms DATA_STREAM_SINK_OPERATOR (id=232,dst_id=232): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 19.567us - CompressTime: 0ns - ExecTime: 161.673us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 6.964us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 3.254us - OpenTime: 43.264us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.293ms - RowsProduced: 80 - RpcAvgTime: 6.14ms - RpcCount: 1 - RpcMaxTime: 6.14ms - RpcMinTime: 6.14ms - RpcSumTime: 6.14ms - SerializeBatchTime: 14.157us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 346ns - BlocksProduced: 1 - CloseTime: 36.811us - ExecTime: 61.201ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 19.920ms - ProcessConjunctTime: 31.957us - ProjectionTime: 3.62us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 41.31ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 41.207ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [17.436us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [41.031ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.865us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 130.118us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 123ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 181.206us - ScannerCtxSchedTime: 41.30ms - ScannerFilterTime: 449ns - ScannerGetBlockTime: 12.373us - ScannerInitTime: 19.784ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 228ns - BlockConditionsFilteredBloomFilterTime: 1.434us - BlockConditionsFilteredDictTime: 2.847us - BlockConditionsFilteredTime: 13.902us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 4.470us - BlockInitSeekCount: 6 - BlockInitSeekTime: 9.99us - BlockInitTime: 35.990us - BlockLoadTime: 58.716us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 2.430us - FirstReadTime: 3.692us - IOTimer: 0ns - InvertedIndexFilterTime: 2.897us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.74us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.213us - OutputIndexResultColumnTimer: 127ns - 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: 59ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.778us Fragment 64: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 576.49us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 418.719us - CloseTime: 23.904us - GetBlockTime: 99.749us - OpenTime: 2.786us - PrepareTime: 125.141us - SinkTime: 299.85us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 545.391us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 925.916us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.87 KB - CloseTime: 19.26us - CompressTime: 0ns - ExecTime: 406.259us - InputRows: 288 - LocalBytesSent: 11.82 KB - LocalSendTime: 111.887us - LocalSentRows: 243 - MemoryUsage: - PeakMemoryUsage: 23.94 KB - MergeBlockTime: 0ns - OpenTime: 88.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.601ms - RowsProduced: 288 - RpcAvgTime: 36.400ms - RpcCount: 2 - RpcMaxTime: 36.441ms - RpcMinTime: 36.359ms - RpcSumTime: 72.801ms - SerializeBatchTime: 11.997us - SplitBlockDistributeByChannelTime: 48.374us - SplitBlockHashComputeTime: 10.300us - UncompressedRowBatchSize: 2.36 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 1.317us - DeserializeAndMergeTime: 0ns - ExecTime: 110.249us - GetResultsTime: 38.285us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.744us - HashTableSize: 288 - InsertKeysToColumnTime: 18.851us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.382us - ProjectionTime: 46.821us - RowsProduced: 288 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s127ms PipelineXTask (index=2):(Active: 478.847us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 364.153us - CloseTime: 15.983us - GetBlockTime: 93.387us - OpenTime: 3.7us - PrepareTime: 91.538us - SinkTime: 249.60us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 444.328us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 240.681us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.97 KB - CloseTime: 13.578us - CompressTime: 0ns - ExecTime: 322.257us - InputRows: 296 - LocalBytesSent: 11.94 KB - LocalSendTime: 78.17us - LocalSentRows: 245 - MemoryUsage: - PeakMemoryUsage: 25.56 KB - MergeBlockTime: 0ns - OpenTime: 60.74us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.465ms - RowsProduced: 296 - RpcAvgTime: 36.240ms - RpcCount: 2 - RpcMaxTime: 36.254ms - RpcMinTime: 36.225ms - RpcSumTime: 72.480ms - SerializeBatchTime: 18.346us - SplitBlockDistributeByChannelTime: 33.224us - SplitBlockHashComputeTime: 13.100us - UncompressedRowBatchSize: 2.69 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 486ns - DeserializeAndMergeTime: 0ns - ExecTime: 101.311us - GetResultsTime: 35.817us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.102us - HashTableSize: 296 - InsertKeysToColumnTime: 20.298us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.227us - ProjectionTime: 38.556us - RowsProduced: 296 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms PipelineXTask (index=4):(Active: 454.160us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 327.31us - CloseTime: 15.713us - GetBlockTime: 90.127us - OpenTime: 1.950us - PrepareTime: 105.229us - SinkTime: 220.376us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 432.448us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 240.502us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.66 KB - CloseTime: 12.743us - CompressTime: 0ns - ExecTime: 295.404us - InputRows: 275 - LocalBytesSent: 11.41 KB - LocalSendTime: 61.868us - LocalSentRows: 234 - MemoryUsage: - PeakMemoryUsage: 22.81 KB - MergeBlockTime: 0ns - OpenTime: 62.653us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.491ms - RowsProduced: 275 - RpcAvgTime: 36.233ms - RpcCount: 2 - RpcMaxTime: 36.245ms - RpcMinTime: 36.222ms - RpcSumTime: 72.467ms - SerializeBatchTime: 13.718us - SplitBlockDistributeByChannelTime: 28.86us - SplitBlockHashComputeTime: 10.883us - UncompressedRowBatchSize: 2.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 958ns - DeserializeAndMergeTime: 0ns - ExecTime: 96.99us - GetResultsTime: 33.983us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.597us - HashTableSize: 275 - InsertKeysToColumnTime: 17.362us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.739us - ProjectionTime: 35.496us - RowsProduced: 275 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms PipelineXTask (index=6):(Active: 424.371us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 318.589us - CloseTime: 7.868us - GetBlockTime: 76.450us - OpenTime: 2.527us - PrepareTime: 90.692us - SinkTime: 223.909us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 410.304us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 129.851us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.95 KB - CloseTime: 6.910us - CompressTime: 0ns - ExecTime: 288.673us - InputRows: 268 - LocalBytesSent: 10.67 KB - LocalSendTime: 75.28us - LocalSentRows: 219 - MemoryUsage: - PeakMemoryUsage: 22.81 KB - MergeBlockTime: 0ns - OpenTime: 58.282us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.553ms - RowsProduced: 268 - RpcAvgTime: 36.262ms - RpcCount: 2 - RpcMaxTime: 36.288ms - RpcMinTime: 36.236ms - RpcSumTime: 72.525ms - SerializeBatchTime: 15.279us - SplitBlockDistributeByChannelTime: 30.370us - SplitBlockHashComputeTime: 9.86us - UncompressedRowBatchSize: 2.58 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 206ns - DeserializeAndMergeTime: 0ns - ExecTime: 81.475us - GetResultsTime: 39.617us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.809us - HashTableSize: 268 - InsertKeysToColumnTime: 26.999us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.228us - ProjectionTime: 29.345us - RowsProduced: 268 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms PipelineXTask (index=8):(Active: 481.669us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 353.33us - CloseTime: 13.610us - GetBlockTime: 85.742us - OpenTime: 2.279us - PrepareTime: 108.667us - SinkTime: 252.408us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 461.989us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.678ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.25 KB - CloseTime: 12.214us - CompressTime: 0ns - ExecTime: 338.114us - InputRows: 324 - LocalBytesSent: 12.73 KB - LocalSendTime: 57.937us - LocalSentRows: 261 - MemoryUsage: - PeakMemoryUsage: 27.13 KB - MergeBlockTime: 0ns - OpenTime: 73.709us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.769ms - RowsProduced: 324 - RpcAvgTime: 35.506ms - RpcCount: 2 - RpcMaxTime: 35.528ms - RpcMinTime: 35.485ms - RpcSumTime: 71.13ms - SerializeBatchTime: 16.873us - SplitBlockDistributeByChannelTime: 42.343us - SplitBlockHashComputeTime: 12.96us - UncompressedRowBatchSize: 3.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 360ns - DeserializeAndMergeTime: 0ns - ExecTime: 94.492us - GetResultsTime: 38.871us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.895us - HashTableSize: 324 - InsertKeysToColumnTime: 22.286us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.202us - ProjectionTime: 39.982us - RowsProduced: 324 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s127ms PipelineXTask (index=10):(Active: 864.114us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 734.373us - CloseTime: 13.951us - GetBlockTime: 91.525us - OpenTime: 3.569us - PrepareTime: 107.735us - SinkTime: 623.380us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 471.364us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.231us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.06 KB - CloseTime: 11.647us - CompressTime: 0ns - ExecTime: 701.634us - InputRows: 313 - LocalBytesSent: 12.67 KB - LocalSendTime: 468.916us - LocalSentRows: 261 - MemoryUsage: - PeakMemoryUsage: 26.81 KB - MergeBlockTime: 0ns - OpenTime: 67.203us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.522ms - RowsProduced: 313 - RpcAvgTime: 35.508ms - RpcCount: 2 - RpcMaxTime: 35.671ms - RpcMinTime: 35.345ms - RpcSumTime: 71.17ms - SerializeBatchTime: 13.993us - SplitBlockDistributeByChannelTime: 35.116us - SplitBlockHashComputeTime: 10.984us - UncompressedRowBatchSize: 2.72 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 630ns - DeserializeAndMergeTime: 0ns - ExecTime: 95.931us - GetResultsTime: 33.274us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.260us - HashTableSize: 313 - InsertKeysToColumnTime: 16.575us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.964us - ProjectionTime: 46.637us - RowsProduced: 313 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms PipelineXTask (index=12):(Active: 404.43us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 306.56us - CloseTime: 7.134us - GetBlockTime: 86.889us - OpenTime: 1.428us - PrepareTime: 85.600us - SinkTime: 207.71us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 391.920us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 416.443us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.71 KB - CloseTime: 6.198us - CompressTime: 0ns - ExecTime: 271.989us - InputRows: 255 - LocalBytesSent: 10.37 KB - LocalSendTime: 76.134us - LocalSentRows: 213 - MemoryUsage: - PeakMemoryUsage: 21.56 KB - MergeBlockTime: 0ns - OpenTime: 59.150us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.585ms - RowsProduced: 255 - RpcAvgTime: 35.351ms - RpcCount: 2 - RpcMaxTime: 35.369ms - RpcMinTime: 35.334ms - RpcSumTime: 70.703ms - SerializeBatchTime: 10.159us - SplitBlockDistributeByChannelTime: 28.864us - SplitBlockHashComputeTime: 7.536us - UncompressedRowBatchSize: 2.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 265ns - DeserializeAndMergeTime: 0ns - ExecTime: 95.886us - GetResultsTime: 23.926us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.659us - HashTableSize: 255 - InsertKeysToColumnTime: 13.1us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.180us - ProjectionTime: 58.87us - RowsProduced: 255 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms PipelineXTask (index=14):(Active: 351.442us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 249.832us - CloseTime: 12.522us - GetBlockTime: 48.975us - OpenTime: 1.430us - PrepareTime: 83.852us - SinkTime: 187.721us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 333.329us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 183.433us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.79 KB - CloseTime: 10.2us - CompressTime: 0ns - ExecTime: 252.230us - InputRows: 235 - LocalBytesSent: 9.17 KB - LocalSendTime: 66.642us - LocalSentRows: 188 - MemoryUsage: - PeakMemoryUsage: 20.56 KB - MergeBlockTime: 0ns - OpenTime: 54.940us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.831ms - RowsProduced: 235 - RpcAvgTime: 35.595ms - RpcCount: 2 - RpcMaxTime: 35.639ms - RpcMinTime: 35.551ms - RpcSumTime: 71.190ms - SerializeBatchTime: 11.889us - SplitBlockDistributeByChannelTime: 23.26us - SplitBlockHashComputeTime: 7.601us - UncompressedRowBatchSize: 2.53 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 753ns - DeserializeAndMergeTime: 0ns - ExecTime: 54.365us - GetResultsTime: 20.333us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.782us - HashTableSize: 235 - InsertKeysToColumnTime: 10.992us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.207us - ProjectionTime: 22.770us - RowsProduced: 235 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms PipelineXTask (index=16):(Active: 526.105us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 371.480us - CloseTime: 9.383us - GetBlockTime: 90.825us - OpenTime: 2.358us - PrepareTime: 137.694us - SinkTime: 262.895us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 483.278us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 582.112us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.64 KB - CloseTime: 8.337us - CompressTime: 0ns - ExecTime: 369.104us - InputRows: 251 - LocalBytesSent: 10.25 KB - LocalSendTime: 83.203us - LocalSentRows: 211 - MemoryUsage: - PeakMemoryUsage: 20.50 KB - MergeBlockTime: 0ns - OpenTime: 98.250us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.557ms - RowsProduced: 251 - RpcAvgTime: 35.333ms - RpcCount: 2 - RpcMaxTime: 35.366ms - RpcMinTime: 35.301ms - RpcSumTime: 70.667ms - SerializeBatchTime: 11.904us - SplitBlockDistributeByChannelTime: 36.571us - SplitBlockHashComputeTime: 7.673us - UncompressedRowBatchSize: 2.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 336ns - DeserializeAndMergeTime: 0ns - ExecTime: 96.288us - GetResultsTime: 38.485us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.711us - HashTableSize: 251 - InsertKeysToColumnTime: 21.935us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.507us - ProjectionTime: 42.551us - RowsProduced: 251 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms PipelineXTask (index=18):(Active: 414.48us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 300.187us - CloseTime: 13.132us - GetBlockTime: 96.836us - OpenTime: 2.522us - PrepareTime: 93.2us - SinkTime: 186.196us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 394.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 585.717us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.63 KB - CloseTime: 10.774us - CompressTime: 0ns - ExecTime: 252.301us - InputRows: 337 - LocalBytesSent: 14.48 KB - LocalSendTime: 44.334us - LocalSentRows: 298 - MemoryUsage: - PeakMemoryUsage: 27.31 KB - MergeBlockTime: 0ns - OpenTime: 55.770us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.566ms - RowsProduced: 337 - RpcAvgTime: 35.330ms - RpcCount: 2 - RpcMaxTime: 35.346ms - RpcMinTime: 35.313ms - RpcSumTime: 70.660ms - SerializeBatchTime: 14.228us - SplitBlockDistributeByChannelTime: 29.920us - SplitBlockHashComputeTime: 10.542us - UncompressedRowBatchSize: 2.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 622ns - DeserializeAndMergeTime: 0ns - ExecTime: 106.824us - GetResultsTime: 47.94us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.62us - HashTableSize: 337 - InsertKeysToColumnTime: 17.942us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.943us - ProjectionTime: 33.623us - RowsProduced: 337 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s128ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.26ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 956.282us - CloseTime: 8.367us - GetBlockTime: 101.921us - OpenTime: 2.235us - PrepareTime: 54.664us - SinkTime: 788.266us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 997.735us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.92ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 834ns - DeserializeAndMergeTime: 483.324us - ExecTime: 809.513us - ExprTime: 0ns - HashTableComputeTime: 265.301us - HashTableEmplaceTime: 133.201us - HashTableInputCount: 1.454K (1454) - InputRows: 1.454K (1454) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 773.872us - OpenTime: 23.74us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 14.22 KB - CloseTime: 6.256us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 48.461us - ExecTime: 119.16us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 176.00 KB - MemoryUsage: - Blocks: 20.50 KB - PeakMemoryUsage: 20.50 KB - OpenTime: 16.786us - ProjectionTime: 0ns - RowsProduced: 1.454K (1454) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s125ms PipelineXTask (index=3):(Active: 991.695us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 897.14us - CloseTime: 12.453us - GetBlockTime: 85.957us - OpenTime: 1.966us - PrepareTime: 59.571us - SinkTime: 740.134us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 959.40us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 607.110us AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 9.477us - DeserializeAndMergeTime: 439.974us - ExecTime: 770.498us - ExprTime: 0ns - HashTableComputeTime: 257.343us - HashTableEmplaceTime: 151.30us - HashTableInputCount: 1.453K (1453) - InputRows: 1.453K (1453) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 728.29us - OpenTime: 24.87us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 13.26 KB - CloseTime: 2.168us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 103.160us - ExecTime: 96.306us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 142.00 KB - MemoryUsage: - Blocks: 34.00 KB - PeakMemoryUsage: 34.00 KB - OpenTime: 13.883us - ProjectionTime: 0ns - RowsProduced: 1.453K (1453) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s126ms PipelineXTask (index=5):(Active: 966.771us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 893.923us - CloseTime: 19.461us - GetBlockTime: 91.913us - OpenTime: 1.871us - PrepareTime: 46.380us - SinkTime: 731.223us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 924.430us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.552ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 1.455us - DeserializeAndMergeTime: 446.993us - ExecTime: 743.438us - ExprTime: 0ns - HashTableComputeTime: 234.170us - HashTableEmplaceTime: 156.465us - HashTableInputCount: 1.282K (1282) - InputRows: 1.282K (1282) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 705.249us - OpenTime: 14.386us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 10.56 KB - CloseTime: 15.545us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 65.166us - ExecTime: 118.183us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 118.50 KB - MemoryUsage: - Blocks: 27.00 KB - PeakMemoryUsage: 27.00 KB - OpenTime: 16.898us - ProjectionTime: 0ns - RowsProduced: 1.282K (1282) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s125ms PipelineXTask (index=7):(Active: 887.377us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 770.210us - CloseTime: 6.435us - GetBlockTime: 69.885us - OpenTime: 2.197us - PrepareTime: 103.841us - SinkTime: 631.991us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 861.62us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.36ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 782ns - DeserializeAndMergeTime: 367.935us - ExecTime: 680.135us - ExprTime: 0ns - HashTableComputeTime: 218.694us - HashTableEmplaceTime: 132.7us - HashTableInputCount: 1.25K (1250) - InputRows: 1.25K (1250) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 608.764us - OpenTime: 50.77us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 10.65 KB - CloseTime: 4.663us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 57.94us - ExecTime: 86.379us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 114.75 KB - MemoryUsage: - Blocks: 23.00 KB - PeakMemoryUsage: 23.00 KB - OpenTime: 16.843us - ProjectionTime: 0ns - RowsProduced: 1.25K (1250) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s125ms PipelineXTask (index=9):(Active: 997.275us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 928.103us - CloseTime: 8.955us - GetBlockTime: 77.814us - OpenTime: 1.703us - PrepareTime: 53.758us - SinkTime: 781.98us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 959.645us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.168ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 4.466us - DeserializeAndMergeTime: 513.490us - ExecTime: 809.392us - ExprTime: 0ns - HashTableComputeTime: 234.511us - HashTableEmplaceTime: 147.696us - HashTableInputCount: 1.623K (1623) - InputRows: 1.623K (1623) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 769.864us - OpenTime: 26.786us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 14.49 KB - CloseTime: 3.854us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 70.554us - ExecTime: 89.346us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.00 KB - MemoryUsage: - Blocks: 41.00 KB - PeakMemoryUsage: 41.00 KB - OpenTime: 13.726us - ProjectionTime: 0ns - RowsProduced: 1.623K (1623) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s125ms PipelineXTask (index=11):(Active: 963.674us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 908.622us - CloseTime: 2.838us - GetBlockTime: 125.66us - OpenTime: 2.29us - PrepareTime: 45.488us - SinkTime: 718.428us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 937.463us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 492.493us AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 513ns - DeserializeAndMergeTime: 442.567us - ExecTime: 736.243us - ExprTime: 0ns - HashTableComputeTime: 231.850us - HashTableEmplaceTime: 140.709us - HashTableInputCount: 1.496K (1496) - InputRows: 1.496K (1496) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 699.372us - OpenTime: 19.896us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 13.49 KB - CloseTime: 1.838us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 74.629us - ExecTime: 130.657us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 169.00 KB - MemoryUsage: - Blocks: 36.00 KB - PeakMemoryUsage: 38.00 KB - OpenTime: 9.660us - ProjectionTime: 0ns - RowsProduced: 1.496K (1496) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s127ms PipelineXTask (index=13):(Active: 690.816us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 604.80us - CloseTime: 2.800us - GetBlockTime: 66.300us - OpenTime: 2.523us - PrepareTime: 75.454us - SinkTime: 479.606us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 669.808us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 435.241us AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 381ns - DeserializeAndMergeTime: 283.77us - ExecTime: 498.816us - ExprTime: 0ns - HashTableComputeTime: 169.807us - HashTableEmplaceTime: 106.851us - HashTableInputCount: 1.223K (1223) - InputRows: 1.223K (1223) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 470.666us - OpenTime: 21.392us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 10.46 KB - CloseTime: 1.892us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 51.38us - ExecTime: 82.815us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 114.25 KB - MemoryUsage: - Blocks: 11.50 KB - PeakMemoryUsage: 23.00 KB - OpenTime: 18.843us - ProjectionTime: 0ns - RowsProduced: 1.223K (1223) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s127ms PipelineXTask (index=15):(Active: 671.526us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 578.479us - CloseTime: 5.907us - GetBlockTime: 63.478us - OpenTime: 2.526us - PrepareTime: 78.801us - SinkTime: 453.42us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 645.953us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 627.132us AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 854ns - DeserializeAndMergeTime: 270.973us - ExecTime: 478.429us - ExprTime: 0ns - HashTableComputeTime: 148.368us - HashTableEmplaceTime: 88.852us - HashTableInputCount: 1.202K (1202) - InputRows: 1.202K (1202) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 443.596us - OpenTime: 26.475us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 11.46 KB - CloseTime: 4.40us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 38.713us - ExecTime: 80.680us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 117.25 KB - MemoryUsage: - Blocks: 27.00 KB - PeakMemoryUsage: 27.00 KB - OpenTime: 17.159us - ProjectionTime: 0ns - RowsProduced: 1.202K (1202) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s127ms PipelineXTask (index=17):(Active: 835.383us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 724.547us - CloseTime: 4.434us - GetBlockTime: 64.741us - OpenTime: 2.223us - PrepareTime: 99.157us - SinkTime: 599.341us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 812.164us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 473.595us AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 786ns - DeserializeAndMergeTime: 348.452us - ExecTime: 617.111us - ExprTime: 0ns - HashTableComputeTime: 191.258us - HashTableEmplaceTime: 120.640us - HashTableInputCount: 1.238K (1238) - InputRows: 1.238K (1238) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 567.994us - OpenTime: 19.507us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 10.10 KB - CloseTime: 2.817us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 41.520us - ExecTime: 82.545us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 118.25 KB - MemoryUsage: - Blocks: 27.00 KB - PeakMemoryUsage: 27.00 KB - OpenTime: 19.354us - ProjectionTime: 0ns - RowsProduced: 1.238K (1238) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s127ms PipelineXTask (index=19):(Active: 760.885us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 677.703us - CloseTime: 2.744us - GetBlockTime: 51.319us - OpenTime: 2.362us - PrepareTime: 72.427us - SinkTime: 574.41us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 741.347us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 852.410us AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 417ns - DeserializeAndMergeTime: 351.113us - ExecTime: 593.692us - ExprTime: 0ns - HashTableComputeTime: 196.234us - HashTableEmplaceTime: 127.737us - HashTableInputCount: 1.509K (1509) - InputRows: 1.509K (1509) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 565.339us - OpenTime: 21.589us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 14 - BytesReceived: 12.89 KB - CloseTime: 1.799us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 50.828us - ExecTime: 81.229us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 149.00 KB - MemoryUsage: - Blocks: 28.00 KB - PeakMemoryUsage: 28.00 KB - OpenTime: 32.82us - ProjectionTime: 0ns - RowsProduced: 1.509K (1509) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s127ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 802.145us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 660.358us - CloseTime: 35.829us - GetBlockTime: 167.506us - OpenTime: 3.446us - PrepareTime: 94.625us - SinkTime: 459.603us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 755.58us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 621.748us DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.86 KB - CloseTime: 30.481us - CompressTime: 0ns - ExecTime: 552.251us - InputRows: 268 - LocalBytesSent: 2.34 KB - LocalSendTime: 47.80us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 22.00 KB - MergeBlockTime: 0ns - OpenTime: 62.260us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 527.830ms - RowsProduced: 268 - RpcAvgTime: 508.663ms - RpcCount: 10 - RpcMaxTime: 508.880ms - RpcMinTime: 508.539ms - RpcSumTime: 5s86ms - SerializeBatchTime: 63.44us - SplitBlockDistributeByChannelTime: 79.454us - SplitBlockHashComputeTime: 14.537us - UncompressedRowBatchSize: 11.56 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 1.69us - DeserializeAndMergeTime: 0ns - ExecTime: 177.564us - GetResultsTime: 75.686us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.80us - HashTableSize: 268 - InsertKeysToColumnTime: 28.796us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.142us - ProjectionTime: 67.457us - RowsProduced: 268 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s139ms PipelineXTask (index=2):(Active: 571.508us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 388.499us - CloseTime: 22.924us - GetBlockTime: 89.456us - OpenTime: 3.987us - PrepareTime: 134.296us - SinkTime: 278.697us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 525.951us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.192ms DATA_STREAM_SINK_OPERATOR (id=230,dst_id=230): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.74 KB - CloseTime: 19.327us - CompressTime: 0ns - ExecTime: 398.791us - InputRows: 255 - LocalBytesSent: 2.38 KB - LocalSendTime: 25.756us - LocalSentRows: 49 - MemoryUsage: - PeakMemoryUsage: 21.25 KB - MergeBlockTime: 0ns - OpenTime: 101.142us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 528.84ms - RowsProduced: 255 - RpcAvgTime: 508.718ms - RpcCount: 10 - RpcMaxTime: 508.736ms - RpcMinTime: 508.704ms - RpcSumTime: 5s87ms - SerializeBatchTime: 33.545us - SplitBlockDistributeByChannelTime: 26.77us - SplitBlockHashComputeTime: 13.467us - UncompressedRowBatchSize: 10.82 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=229): - BlocksProduced: 1 - CloseTime: 1.179us - DeserializeAndMergeTime: 0ns - ExecTime: 96.520us - GetResultsTime: 39.293us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.347us - HashTableSize: 255 - InsertKeysToColumnTime: 27.131us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.490us - ProjectionTime: 38.294us - RowsProduced: 255 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 13s136ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 927.13us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 803.330us - CloseTime: 12.244us - GetBlockTime: 90.678us - OpenTime: 4.566us - PrepareTime: 100.536us - SinkTime: 657.617us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 901.269us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.253ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 1.382us - DeserializeAndMergeTime: 340.819us - ExecTime: 683.13us - ExprTime: 0ns - HashTableComputeTime: 261.390us - HashTableEmplaceTime: 160.16us - HashTableInputCount: 1.238K (1238) - InputRows: 1.238K (1238) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 626.545us - OpenTime: 26.592us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 22 - BytesReceived: 52.53 KB - CloseTime: 9.455us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 267.279us - ExecTime: 153.59us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.00 KB - MemoryUsage: - Blocks: 34.25 KB - PeakMemoryUsage: 11.50 KB - OpenTime: 56.652us - ProjectionTime: 0ns - RowsProduced: 1.238K (1238) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s135ms PipelineXTask (index=3):(Active: 936.402us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 861.893us - CloseTime: 4.203us - GetBlockTime: 83.898us - OpenTime: 3.373us - PrepareTime: 61.421us - SinkTime: 728.693us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 918.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.279ms AGGREGATION_SINK_OPERATOR (id=229): - BuildTime: 0ns - CloseTime: 598ns - DeserializeAndMergeTime: 422.377us - ExecTime: 748.294us - ExprTime: 0ns - HashTableComputeTime: 261.477us - HashTableEmplaceTime: 159.373us - HashTableInputCount: 1.198K (1198) - InputRows: 1.198K (1198) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 11.98 KB - PeakMemoryUsage: 803.98 KB - SerializeKeyArena: 792.00 KB - MergeTime: 707.922us - OpenTime: 21.532us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=228): - BlocksProduced: 22 - BytesReceived: 53.64 KB - CloseTime: 2.943us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 214.647us - ExecTime: 103.87us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 23.00 KB - PeakMemoryUsage: 11.50 KB - OpenTime: 20.633us - ProjectionTime: 0ns - RowsProduced: 1.198K (1198) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s135ms Fragment 65: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 8.766ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.130ms - CloseTime: 336.716us - GetBlockTime: 7.303ms - OpenTime: 30.156us - PrepareTime: 260.169us - SinkTime: 708.386us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.406ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.82ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 60.76 KB - CloseTime: 22.560us - CompressTime: 0ns - ExecTime: 871.192us - InputRows: 1.353K (1353) - LocalBytesSent: 16.80 KB - LocalSendTime: 33.772us - LocalSentRows: 203 - MemoryUsage: - PeakMemoryUsage: 167.25 KB - MergeBlockTime: 0ns - OpenTime: 140.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 497.874ms - RowsProduced: 1.353K (1353) - RpcAvgTime: 468.842ms - RpcCount: 10 - RpcMaxTime: 469.361ms - RpcMinTime: 468.641ms - RpcSumTime: 4s688ms - SerializeBatchTime: 246.846us - SplitBlockDistributeByChannelTime: 145.469us - SplitBlockHashComputeTime: 29.876us - UncompressedRowBatchSize: 100.80 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.478ms - CloseTime: 258.837us - DeserializeAndMergeTime: 0ns - ExecTime: 3.135ms - ExprTime: 21.252us - GetResultsTime: 338.814us - HashTableComputeTime: 1.164ms - HashTableEmplaceTime: 883.840us - HashTableInputCount: 7.661K (7661) - HashTableIterateTime: 8.636us - HashTableSize: 1.353K (1353) - InsertKeysToColumnTime: 49.752us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 33.107us - ProjectionTime: 0ns - RowsProduced: 1.353K (1353) - SerializeDataTime: 262.617us - SerializeKeyTime: 0ns - SerializeResultTime: 341.196us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 40.18us - ExecTime: 4.262ms - InitProbeSideTime: 681.992us - JoinFilterTimer: 875ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 20.980us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.786us - ProbeFindNextTime: 0ns - ProbeRows: 12.163K (12163) - ProbeTime: 2.173ms - ProbeWhenBuildSideOutputTime: 44.506us - ProbeWhenProbeSideOutputTime: 449.179us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 757.669us - ProjectionTime: 1.961ms - RowsProduced: 7.661K (7661) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 22 - BytesReceived: 357.08 KB - CloseTime: 9.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 696.888us - ExecTime: 186.998us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 440.00 KB - MemoryUsage: - Blocks: 236.00 KB - PeakMemoryUsage: 236.00 KB - OpenTime: 15.666us - ProjectionTime: 0ns - RowsProduced: 12.163K (12163) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s650ms PipelineXTask (index=2):(Active: 9.139ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.613ms - CloseTime: 301.895us - GetBlockTime: 7.850ms - OpenTime: 8.415us - PrepareTime: 207.617us - SinkTime: 662.473us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.812ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.687ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 60.18 KB - CloseTime: 12.662us - CompressTime: 0ns - ExecTime: 741.818us - InputRows: 1.358K (1358) - LocalBytesSent: 17.65 KB - LocalSendTime: 22.110us - LocalSentRows: 215 - MemoryUsage: - PeakMemoryUsage: 171.50 KB - MergeBlockTime: 0ns - OpenTime: 67.607us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 497.763ms - RowsProduced: 1.358K (1358) - RpcAvgTime: 469.158ms - RpcCount: 10 - RpcMaxTime: 469.435ms - RpcMinTime: 468.717ms - RpcSumTime: 4s691ms - SerializeBatchTime: 191.480us - SplitBlockDistributeByChannelTime: 191.361us - SplitBlockHashComputeTime: 31.729us - UncompressedRowBatchSize: 100.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=227): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.599ms - CloseTime: 257.929us - DeserializeAndMergeTime: 0ns - ExecTime: 3.207ms - ExprTime: 15.830us - GetResultsTime: 296.765us - HashTableComputeTime: 1.156ms - HashTableEmplaceTime: 851.813us - HashTableInputCount: 7.723K (7723) - HashTableIterateTime: 13.133us - HashTableSize: 1.358K (1358) - InsertKeysToColumnTime: 52.75us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 27.123us - ProjectionTime: 0ns - RowsProduced: 1.358K (1358) - SerializeDataTime: 216.993us - SerializeKeyTime: 0ns - SerializeResultTime: 298.180us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 17.705us - ExecTime: 4.660ms - InitProbeSideTime: 784.274us - JoinFilterTimer: 1.746us - MemoryUsage: - PeakMemoryUsage: 240.00 KB - ProbeKeyArena: 240.00 KB - OpenTime: 17.613us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.53us - ProbeFindNextTime: 0ns - ProbeRows: 12.591K (12591) - ProbeTime: 2.334ms - ProbeWhenBuildSideOutputTime: 41.190us - ProbeWhenProbeSideOutputTime: 418.195us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 803.190us - ProjectionTime: 2.229ms - RowsProduced: 7.723K (7723) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 22 - BytesReceived: 377.24 KB - CloseTime: 8.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 794.105us - ExecTime: 191.558us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 330.00 KB - MemoryUsage: - Blocks: 362.00 KB - PeakMemoryUsage: 204.00 KB - OpenTime: 33.307us - ProjectionTime: 0ns - RowsProduced: 12.591K (12591) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s648ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 47.341ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 47.196ms - CloseTime: 23.196us - GetBlockTime: 139.168us - OpenTime: 2.54us - PrepareTime: 112.513us - SinkTime: 46.968ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.235ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.574ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.473us - BuildRows: 31.23K (31230) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.353ms - BuildTableInsertTime: 6.36ms - BuildTableTime: 6.92ms - CloseTime: 0ns - ExecTime: 47.27ms - InputRows: 31.229K (31229) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 378.00 KB - PeakMemoryUsage: 4.45 MB - OpenTime: 65.720us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.294us - RuntimeFilterComputeTime: 3.867ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 12 - BytesReceived: 211.46 KB - CloseTime: 19.398us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 228.815us - ExecTime: 166.719us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.49 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 456.00 KB - OpenTime: 21.892us - ProjectionTime: 0ns - RowsProduced: 31.229K (31229) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 263.591ms PipelineXTask (index=3):(Active: 13.436ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 13.330ms - CloseTime: 12.316us - GetBlockTime: 154.586us - OpenTime: 3.923us - PrepareTime: 82.509us - SinkTime: 13.66ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.291ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.824ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.121us - BuildRows: 31.177K (31177) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.3ms - BuildTableInsertTime: 5.686ms - BuildTableTime: 5.734ms - CloseTime: 0ns - ExecTime: 13.98ms - InputRows: 31.176K (31176) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.79 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 38.608us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 564.493us - RuntimeFilterComputeTime: 3.638ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 12 - BytesReceived: 207.01 KB - CloseTime: 9.109us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 346.419us - ExecTime: 162.743us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.57 MB - MemoryUsage: - Blocks: 912.00 KB - PeakMemoryUsage: 456.00 KB - OpenTime: 13.414us - ProjectionTime: 0ns - RowsProduced: 31.176K (31176) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 287.832ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 9.227ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.694ms - CloseTime: 299.996us - GetBlockTime: 7.796ms - OpenTime: 6.954us - PrepareTime: 218.438us - SinkTime: 767.821us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.899ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.487ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.82 KB - CloseTime: 22.652us - CompressTime: 0ns - ExecTime: 856.434us - InputRows: 1.306K (1306) - LocalBytesSent: 94.63 KB - LocalSendTime: 207.847us - LocalSentRows: 1.115K (1115) - MemoryUsage: - PeakMemoryUsage: 158.75 KB - MergeBlockTime: 0ns - OpenTime: 67.3us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.594ms - RowsProduced: 1.306K (1306) - RpcAvgTime: 36.666ms - RpcCount: 2 - RpcMaxTime: 36.669ms - RpcMinTime: 36.664ms - RpcSumTime: 73.333ms - SerializeBatchTime: 84.544us - SplitBlockDistributeByChannelTime: 217.614us - SplitBlockHashComputeTime: 62.692us - UncompressedRowBatchSize: 16.32 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.346ms - CloseTime: 210.584us - DeserializeAndMergeTime: 0ns - ExecTime: 3.68ms - ExprTime: 19.221us - GetResultsTime: 448.481us - HashTableComputeTime: 1.73ms - HashTableEmplaceTime: 778.200us - HashTableInputCount: 7.554K (7554) - HashTableIterateTime: 19.120us - HashTableSize: 1.306K (1306) - InsertKeysToColumnTime: 122.790us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 28.70us - ProjectionTime: 0ns - RowsProduced: 1.306K (1306) - SerializeDataTime: 280.726us - SerializeKeyTime: 0ns - SerializeResultTime: 452.90us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 24.738us - ExecTime: 4.626ms - InitProbeSideTime: 834.681us - JoinFilterTimer: 872ns - MemoryUsage: - PeakMemoryUsage: 216.00 KB - ProbeKeyArena: 216.00 KB - OpenTime: 29.992us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.586us - ProbeFindNextTime: 0ns - ProbeRows: 11.745K (11745) - ProbeTime: 2.412ms - ProbeWhenBuildSideOutputTime: 51.298us - ProbeWhenProbeSideOutputTime: 573.877us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 699.505us - ProjectionTime: 2.103ms - RowsProduced: 7.554K (7554) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 72.93 KB - CloseTime: 33.452us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 197.88us - ExecTime: 262.529us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.54 MB - MemoryUsage: - Blocks: 792.00 KB - PeakMemoryUsage: 792.00 KB - OpenTime: 14.60us - ProjectionTime: 0ns - RowsProduced: 11.745K (11745) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s85ms PipelineXTask (index=2):(Active: 9.611ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.43ms - CloseTime: 366.855us - GetBlockTime: 8.216ms - OpenTime: 7.976us - PrepareTime: 186.444us - SinkTime: 706.758us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.147ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.862ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.36 KB - CloseTime: 18.940us - CompressTime: 0ns - ExecTime: 796.851us - InputRows: 1.341K (1341) - LocalBytesSent: 95.87 KB - LocalSendTime: 138.447us - LocalSentRows: 1.148K (1148) - MemoryUsage: - PeakMemoryUsage: 162.25 KB - MergeBlockTime: 0ns - OpenTime: 71.711us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.227ms - RowsProduced: 1.341K (1341) - RpcAvgTime: 36.248ms - RpcCount: 2 - RpcMaxTime: 36.269ms - RpcMinTime: 36.228ms - RpcSumTime: 72.497ms - SerializeBatchTime: 77.279us - SplitBlockDistributeByChannelTime: 240.897us - SplitBlockHashComputeTime: 60.577us - UncompressedRowBatchSize: 16.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.505ms - CloseTime: 302.638us - DeserializeAndMergeTime: 0ns - ExecTime: 3.251ms - ExprTime: 19.488us - GetResultsTime: 380.75us - HashTableComputeTime: 1.148ms - HashTableEmplaceTime: 814.267us - HashTableInputCount: 7.453K (7453) - HashTableIterateTime: 21.11us - HashTableSize: 1.341K (1341) - InsertKeysToColumnTime: 91.540us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 30.86us - ProjectionTime: 0ns - RowsProduced: 1.341K (1341) - SerializeDataTime: 249.432us - SerializeKeyTime: 0ns - SerializeResultTime: 382.611us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 29.994us - ExecTime: 5.20ms - InitProbeSideTime: 940.138us - JoinFilterTimer: 1.252us - MemoryUsage: - PeakMemoryUsage: 240.00 KB - ProbeKeyArena: 240.00 KB - OpenTime: 28.903us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.864us - ProbeFindNextTime: 0ns - ProbeRows: 13.016K (13016) - ProbeTime: 2.702ms - ProbeWhenBuildSideOutputTime: 49.489us - ProbeWhenProbeSideOutputTime: 625.898us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 811.294us - ProjectionTime: 2.188ms - RowsProduced: 7.453K (7453) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 86.57 KB - CloseTime: 8.540us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 152.72us - ExecTime: 218.541us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.87 MB - MemoryUsage: - Blocks: 612.00 KB - PeakMemoryUsage: 612.00 KB - OpenTime: 13.232us - ProjectionTime: 0ns - RowsProduced: 13.016K (13016) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s87ms PipelineXTask (index=4):(Active: 11.74ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 10.591ms - CloseTime: 302.761us - GetBlockTime: 9.787ms - OpenTime: 6.696us - PrepareTime: 167.296us - SinkTime: 689.256us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.749ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.721ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.37 KB - CloseTime: 8.182us - CompressTime: 0ns - ExecTime: 748.781us - InputRows: 1.356K (1356) - LocalBytesSent: 98.00 KB - LocalSendTime: 111.383us - LocalSentRows: 1.161K (1161) - MemoryUsage: - PeakMemoryUsage: 165.75 KB - MergeBlockTime: 0ns - OpenTime: 52.276us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.691ms - RowsProduced: 1.356K (1356) - RpcAvgTime: 35.193ms - RpcCount: 2 - RpcMaxTime: 35.206ms - RpcMinTime: 35.180ms - RpcSumTime: 70.387ms - SerializeBatchTime: 91.510us - SplitBlockDistributeByChannelTime: 207.126us - SplitBlockHashComputeTime: 64.480us - UncompressedRowBatchSize: 16.93 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.910ms - CloseTime: 263.163us - DeserializeAndMergeTime: 0ns - ExecTime: 3.671ms - ExprTime: 17.396us - GetResultsTime: 433.590us - HashTableComputeTime: 1.299ms - HashTableEmplaceTime: 958.75us - HashTableInputCount: 7.72K (7720) - HashTableIterateTime: 20.29us - HashTableSize: 1.356K (1356) - InsertKeysToColumnTime: 87.55us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 26.232us - ProjectionTime: 0ns - RowsProduced: 1.356K (1356) - SerializeDataTime: 297.427us - SerializeKeyTime: 0ns - SerializeResultTime: 436.99us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 23.62us - ExecTime: 6.29ms - InitProbeSideTime: 1.120ms - JoinFilterTimer: 1.745us - MemoryUsage: - PeakMemoryUsage: 204.00 KB - ProbeKeyArena: 204.00 KB - OpenTime: 18.799us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.38us - ProbeFindNextTime: 0ns - ProbeRows: 13.078K (13078) - ProbeTime: 3.136ms - ProbeWhenBuildSideOutputTime: 66.267us - ProbeWhenProbeSideOutputTime: 758.274us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 894.872us - ProjectionTime: 2.780ms - RowsProduced: 7.72K (7720) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 90.25 KB - CloseTime: 5.881us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 231.658us - ExecTime: 246.686us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.70 MB - MemoryUsage: - Blocks: 494.00 KB - PeakMemoryUsage: 494.00 KB - OpenTime: 15.47us - ProjectionTime: 0ns - RowsProduced: 13.078K (13078) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s87ms PipelineXTask (index=6):(Active: 10.513ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 10.125ms - CloseTime: 222.529us - GetBlockTime: 9.458ms - OpenTime: 5.286us - PrepareTime: 155.92us - SinkTime: 568.878us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.60ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.5ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.91 KB - CloseTime: 11.457us - CompressTime: 0ns - ExecTime: 633.865us - InputRows: 1.298K (1298) - LocalBytesSent: 90.05 KB - LocalSendTime: 127.536us - LocalSentRows: 1.078K (1078) - MemoryUsage: - PeakMemoryUsage: 153.25 KB - MergeBlockTime: 0ns - OpenTime: 54.842us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.922ms - RowsProduced: 1.298K (1298) - RpcAvgTime: 35.199ms - RpcCount: 2 - RpcMaxTime: 35.216ms - RpcMinTime: 35.182ms - RpcSumTime: 70.399ms - SerializeBatchTime: 56.800us - SplitBlockDistributeByChannelTime: 186.116us - SplitBlockHashComputeTime: 47.474us - UncompressedRowBatchSize: 18.66 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.439ms - CloseTime: 180.301us - DeserializeAndMergeTime: 0ns - ExecTime: 3.72ms - ExprTime: 17.547us - GetResultsTime: 396.678us - HashTableComputeTime: 1.133ms - HashTableEmplaceTime: 820.460us - HashTableInputCount: 7.146K (7146) - HashTableIterateTime: 12.388us - HashTableSize: 1.298K (1298) - InsertKeysToColumnTime: 97.105us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 26.82us - ProjectionTime: 0ns - RowsProduced: 1.298K (1298) - SerializeDataTime: 254.450us - SerializeKeyTime: 0ns - SerializeResultTime: 399.217us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 22.830us - ExecTime: 6.325ms - InitProbeSideTime: 857.735us - JoinFilterTimer: 1.635us - MemoryUsage: - PeakMemoryUsage: 204.00 KB - ProbeKeyArena: 204.00 KB - OpenTime: 12.112us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.574us - ProbeFindNextTime: 0ns - ProbeRows: 12.134K (12134) - ProbeTime: 2.655ms - ProbeWhenBuildSideOutputTime: 41.211us - ProbeWhenProbeSideOutputTime: 621.292us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 821.424us - ProjectionTime: 3.576ms - RowsProduced: 7.146K (7146) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 82.78 KB - CloseTime: 4.360us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 193.10us - ExecTime: 169.70us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.50 MB - MemoryUsage: - Blocks: 642.00 KB - PeakMemoryUsage: 642.00 KB - OpenTime: 14.220us - ProjectionTime: 0ns - RowsProduced: 12.134K (12134) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s83ms PipelineXTask (index=8):(Active: 9.954ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.519ms - CloseTime: 258.14us - GetBlockTime: 8.844ms - OpenTime: 7.767us - PrepareTime: 163.876us - SinkTime: 538.569us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.726ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.34 KB - CloseTime: 14.286us - CompressTime: 0ns - ExecTime: 605.803us - InputRows: 1.304K (1304) - LocalBytesSent: 93.73 KB - LocalSendTime: 108.706us - LocalSentRows: 1.105K (1105) - MemoryUsage: - PeakMemoryUsage: 161.00 KB - MergeBlockTime: 0ns - OpenTime: 53.607us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.746ms - RowsProduced: 1.304K (1304) - RpcAvgTime: 35.894ms - RpcCount: 2 - RpcMaxTime: 35.917ms - RpcMinTime: 35.871ms - RpcSumTime: 71.788ms - SerializeBatchTime: 79.350us - SplitBlockDistributeByChannelTime: 158.263us - SplitBlockHashComputeTime: 41.166us - UncompressedRowBatchSize: 17.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.779ms - CloseTime: 214.607us - DeserializeAndMergeTime: 0ns - ExecTime: 3.388ms - ExprTime: 18.759us - GetResultsTime: 324.598us - HashTableComputeTime: 1.254ms - HashTableEmplaceTime: 944.223us - HashTableInputCount: 7.48K (7480) - HashTableIterateTime: 11.162us - HashTableSize: 1.304K (1304) - InsertKeysToColumnTime: 59.700us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 22.827us - ProjectionTime: 0ns - RowsProduced: 1.304K (1304) - SerializeDataTime: 233.972us - SerializeKeyTime: 0ns - SerializeResultTime: 327.372us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 17.751us - ExecTime: 5.308ms - InitProbeSideTime: 876.475us - JoinFilterTimer: 1.903us - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 13.248us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.426us - ProbeFindNextTime: 0ns - ProbeRows: 12.456K (12456) - ProbeTime: 2.698ms - ProbeWhenBuildSideOutputTime: 59.487us - ProbeWhenProbeSideOutputTime: 680.444us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 753.256us - ProjectionTime: 2.508ms - RowsProduced: 7.48K (7480) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 80.63 KB - CloseTime: 6.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 168.820us - ExecTime: 198.668us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.60 MB - MemoryUsage: - Blocks: 330.00 KB - PeakMemoryUsage: 330.00 KB - OpenTime: 16.358us - ProjectionTime: 0ns - RowsProduced: 12.456K (12456) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s85ms PipelineXTask (index=10):(Active: 9.279ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.854ms - CloseTime: 231.271us - GetBlockTime: 8.67ms - OpenTime: 4.640us - PrepareTime: 183.154us - SinkTime: 665.346us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.26ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.276ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.57 KB - CloseTime: 11.845us - CompressTime: 0ns - ExecTime: 749.461us - InputRows: 1.345K (1345) - LocalBytesSent: 96.33 KB - LocalSendTime: 117.59us - LocalSentRows: 1.142K (1142) - MemoryUsage: - PeakMemoryUsage: 163.75 KB - MergeBlockTime: 0ns - OpenTime: 73.165us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 38.369ms - RowsProduced: 1.345K (1345) - RpcAvgTime: 35.554ms - RpcCount: 2 - RpcMaxTime: 35.577ms - RpcMinTime: 35.531ms - RpcSumTime: 71.109ms - SerializeBatchTime: 68.598us - SplitBlockDistributeByChannelTime: 222.679us - SplitBlockHashComputeTime: 61.580us - UncompressedRowBatchSize: 17.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.574ms - CloseTime: 194.638us - DeserializeAndMergeTime: 0ns - ExecTime: 3.236ms - ExprTime: 18.658us - GetResultsTime: 407.634us - HashTableComputeTime: 1.195ms - HashTableEmplaceTime: 898.470us - HashTableInputCount: 7.361K (7361) - HashTableIterateTime: 13.261us - HashTableSize: 1.345K (1345) - InsertKeysToColumnTime: 84.329us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 26.484us - ProjectionTime: 0ns - RowsProduced: 1.345K (1345) - SerializeDataTime: 297.244us - SerializeKeyTime: 0ns - SerializeResultTime: 410.51us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 14.586us - ExecTime: 4.760ms - InitProbeSideTime: 828.633us - JoinFilterTimer: 1.365us - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 14.824us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.486us - ProbeFindNextTime: 0ns - ProbeRows: 12.184K (12184) - ProbeTime: 2.481ms - ProbeWhenBuildSideOutputTime: 38.670us - ProbeWhenProbeSideOutputTime: 564.755us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 789.658us - ProjectionTime: 2.187ms - RowsProduced: 7.361K (7361) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 77.49 KB - CloseTime: 5.805us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 173.183us - ExecTime: 165.520us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.64 MB - MemoryUsage: - Blocks: 818.00 KB - PeakMemoryUsage: 818.00 KB - OpenTime: 13.360us - ProjectionTime: 0ns - RowsProduced: 12.184K (12184) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s87ms PipelineXTask (index=12):(Active: 8.759ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.361ms - CloseTime: 222.545us - GetBlockTime: 7.188ms - OpenTime: 6.685us - PrepareTime: 162.592us - SinkTime: 1.79ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.840ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.15ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.04 KB - CloseTime: 11.15us - CompressTime: 0ns - ExecTime: 1.137ms - InputRows: 1.39K (1390) - LocalBytesSent: 101.31 KB - LocalSendTime: 737.764us - LocalSentRows: 1.196K (1196) - MemoryUsage: - PeakMemoryUsage: 184.75 KB - MergeBlockTime: 0ns - OpenTime: 48.398us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.740ms - RowsProduced: 1.39K (1390) - RpcAvgTime: 35.628ms - RpcCount: 2 - RpcMaxTime: 35.643ms - RpcMinTime: 35.613ms - RpcSumTime: 71.257ms - SerializeBatchTime: 39.906us - SplitBlockDistributeByChannelTime: 141.962us - SplitBlockHashComputeTime: 33.198us - UncompressedRowBatchSize: 16.53 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.357ms - CloseTime: 186.287us - DeserializeAndMergeTime: 0ns - ExecTime: 2.902ms - ExprTime: 15.163us - GetResultsTime: 289.65us - HashTableComputeTime: 1.104ms - HashTableEmplaceTime: 790.586us - HashTableInputCount: 8.165K (8165) - HashTableIterateTime: 12.968us - HashTableSize: 1.39K (1390) - InsertKeysToColumnTime: 55.197us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 31.767us - ProjectionTime: 0ns - RowsProduced: 1.39K (1390) - SerializeDataTime: 203.542us - SerializeKeyTime: 0ns - SerializeResultTime: 290.604us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 17.9us - ExecTime: 4.268ms - InitProbeSideTime: 740.621us - JoinFilterTimer: 756ns - MemoryUsage: - PeakMemoryUsage: 192.00 KB - ProbeKeyArena: 192.00 KB - OpenTime: 20.234us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.222us - ProbeFindNextTime: 0ns - ProbeRows: 12.655K (12655) - ProbeTime: 2.132ms - ProbeWhenBuildSideOutputTime: 34.307us - ProbeWhenProbeSideOutputTime: 448.547us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 679.131us - ProjectionTime: 2.45ms - RowsProduced: 8.165K (8165) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 80.50 KB - CloseTime: 4.570us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 186.975us - ExecTime: 153.977us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.75 MB - MemoryUsage: - Blocks: 770.00 KB - PeakMemoryUsage: 770.00 KB - OpenTime: 16.714us - ProjectionTime: 0ns - RowsProduced: 12.655K (12655) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s89ms PipelineXTask (index=14):(Active: 9.440ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.953ms - CloseTime: 292.709us - GetBlockTime: 8.30ms - OpenTime: 8.940us - PrepareTime: 178.767us - SinkTime: 793.154us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.126ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.166ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.85 KB - CloseTime: 19.886us - CompressTime: 0ns - ExecTime: 875.760us - InputRows: 1.386K (1386) - LocalBytesSent: 98.48 KB - LocalSendTime: 174.912us - LocalSentRows: 1.18K (1180) - MemoryUsage: - PeakMemoryUsage: 174.75 KB - MergeBlockTime: 0ns - OpenTime: 63.686us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.426ms - RowsProduced: 1.386K (1386) - RpcAvgTime: 35.38ms - RpcCount: 2 - RpcMaxTime: 35.75ms - RpcMinTime: 35.2ms - RpcSumTime: 70.77ms - SerializeBatchTime: 89.729us - SplitBlockDistributeByChannelTime: 247.923us - SplitBlockHashComputeTime: 69.363us - UncompressedRowBatchSize: 17.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.438ms - CloseTime: 236.794us - DeserializeAndMergeTime: 0ns - ExecTime: 3.175ms - ExprTime: 16.726us - GetResultsTime: 437.102us - HashTableComputeTime: 1.108ms - HashTableEmplaceTime: 798.501us - HashTableInputCount: 7.563K (7563) - HashTableIterateTime: 25.104us - HashTableSize: 1.386K (1386) - InsertKeysToColumnTime: 117.702us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 30.691us - ProjectionTime: 0ns - RowsProduced: 1.386K (1386) - SerializeDataTime: 278.372us - SerializeKeyTime: 0ns - SerializeResultTime: 440.219us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 21.314us - ExecTime: 4.759ms - InitProbeSideTime: 904.923us - JoinFilterTimer: 993ns - MemoryUsage: - PeakMemoryUsage: 216.00 KB - ProbeKeyArena: 216.00 KB - OpenTime: 14.38us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.944us - ProbeFindNextTime: 0ns - ProbeRows: 12.747K (12747) - ProbeTime: 2.462ms - ProbeWhenBuildSideOutputTime: 49.248us - ProbeWhenProbeSideOutputTime: 532.720us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 722.428us - ProjectionTime: 2.192ms - RowsProduced: 7.563K (7563) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 76.97 KB - CloseTime: 8.230us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 234.404us - ExecTime: 260.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.86 MB - MemoryUsage: - Blocks: 598.00 KB - PeakMemoryUsage: 598.00 KB - OpenTime: 26.45us - ProjectionTime: 0ns - RowsProduced: 12.747K (12747) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s85ms PipelineXTask (index=16):(Active: 8.994ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.506ms - CloseTime: 304.144us - GetBlockTime: 7.686ms - OpenTime: 4.445us - PrepareTime: 174.164us - SinkTime: 708.119us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.670ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.655ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.82 KB - CloseTime: 9.39us - CompressTime: 0ns - ExecTime: 768.619us - InputRows: 1.352K (1352) - LocalBytesSent: 96.47 KB - LocalSendTime: 157.975us - LocalSentRows: 1.153K (1153) - MemoryUsage: - PeakMemoryUsage: 157.00 KB - MergeBlockTime: 0ns - OpenTime: 52.258us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.166ms - RowsProduced: 1.352K (1352) - RpcAvgTime: 34.867ms - RpcCount: 2 - RpcMaxTime: 34.891ms - RpcMinTime: 34.844ms - RpcSumTime: 69.735ms - SerializeBatchTime: 74.385us - SplitBlockDistributeByChannelTime: 234.244us - SplitBlockHashComputeTime: 62.40us - UncompressedRowBatchSize: 17.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.337ms - CloseTime: 256.316us - DeserializeAndMergeTime: 0ns - ExecTime: 3.111ms - ExprTime: 19.143us - GetResultsTime: 451.158us - HashTableComputeTime: 1.52ms - HashTableEmplaceTime: 764.811us - HashTableInputCount: 7.367K (7367) - HashTableIterateTime: 21.38us - HashTableSize: 1.352K (1352) - InsertKeysToColumnTime: 100.797us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 25.630us - ProjectionTime: 0ns - RowsProduced: 1.352K (1352) - SerializeDataTime: 317.312us - SerializeKeyTime: 0ns - SerializeResultTime: 453.525us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 31.422us - ExecTime: 4.627ms - InitProbeSideTime: 863.920us - JoinFilterTimer: 1.115us - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 27.468us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.492us - ProbeFindNextTime: 0ns - ProbeRows: 12.547K (12547) - ProbeTime: 2.445ms - ProbeWhenBuildSideOutputTime: 45.275us - ProbeWhenProbeSideOutputTime: 519.384us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 750.500us - ProjectionTime: 2.65ms - RowsProduced: 7.367K (7367) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 80.18 KB - CloseTime: 4.312us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 167.36us - ExecTime: 153.520us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.62 MB - MemoryUsage: - Blocks: 660.00 KB - PeakMemoryUsage: 660.00 KB - OpenTime: 14.646us - ProjectionTime: 0ns - RowsProduced: 12.547K (12547) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s91ms PipelineXTask (index=18):(Active: 8.280ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 7.765ms - CloseTime: 332.960us - GetBlockTime: 7.295ms - OpenTime: 4.888us - PrepareTime: 172.625us - SinkTime: 376.792us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.929ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.463ms DATA_STREAM_SINK_OPERATOR (id=228,dst_id=228): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.45 KB - CloseTime: 19.857us - CompressTime: 0ns - ExecTime: 460.373us - InputRows: 1.377K (1377) - LocalBytesSent: 98.03 KB - LocalSendTime: 61.912us - LocalSentRows: 1.159K (1159) - MemoryUsage: - PeakMemoryUsage: 165.00 KB - MergeBlockTime: 0ns - OpenTime: 64.64us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 37.779ms - RowsProduced: 1.377K (1377) - RpcAvgTime: 35.203ms - RpcCount: 2 - RpcMaxTime: 35.224ms - RpcMinTime: 35.183ms - RpcSumTime: 70.407ms - SerializeBatchTime: 59.362us - SplitBlockDistributeByChannelTime: 112.760us - SplitBlockHashComputeTime: 33.579us - UncompressedRowBatchSize: 19.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.235ms - CloseTime: 266.840us - DeserializeAndMergeTime: 0ns - ExecTime: 2.813ms - ExprTime: 14.55us - GetResultsTime: 247.490us - HashTableComputeTime: 1.24ms - HashTableEmplaceTime: 722.837us - HashTableInputCount: 8.122K (8122) - HashTableIterateTime: 14.575us - HashTableSize: 1.377K (1377) - InsertKeysToColumnTime: 49.767us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 47.98 KB - PeakMemoryUsage: 887.98 KB - SerializeKeyArena: 840.00 KB - MergeTime: 0ns - OpenTime: 25.595us - ProjectionTime: 0ns - RowsProduced: 1.377K (1377) - SerializeDataTime: 167.288us - SerializeKeyTime: 0ns - SerializeResultTime: 249.126us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=226): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 30.136us - ExecTime: 4.546ms - InitProbeSideTime: 793.617us - JoinFilterTimer: 1.143us - MemoryUsage: - PeakMemoryUsage: 264.00 KB - ProbeKeyArena: 264.00 KB - OpenTime: 18.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.949us - ProbeFindNextTime: 0ns - ProbeRows: 12.989K (12989) - ProbeTime: 2.395ms - ProbeWhenBuildSideOutputTime: 42.298us - ProbeWhenProbeSideOutputTime: 602.826us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 687.683us - ProjectionTime: 2.48ms - RowsProduced: 8.122K (8122) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=225): - BlocksProduced: 14 - BytesReceived: 81.71 KB - CloseTime: 9.110us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 135.352us - ExecTime: 165.465us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.75 MB - MemoryUsage: - Blocks: 598.00 KB - PeakMemoryUsage: 598.00 KB - OpenTime: 12.706us - ProjectionTime: 0ns - RowsProduced: 12.989K (12989) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s87ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 7.770ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.665ms - CloseTime: 7.858us - GetBlockTime: 198.149us - OpenTime: 1.739us - PrepareTime: 89.683us - SinkTime: 7.345ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.735ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 391.978ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.783us - BuildRows: 31.111K (31111) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.621ms - BuildTableInsertTime: 2.422ms - BuildTableTime: 2.465ms - CloseTime: 0ns - ExecTime: 7.392ms - InputRows: 31.11K (31110) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.02 MB - HashTable: 377.53 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 55.665us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.212us - RuntimeFilterComputeTime: 2.88ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 844.11 KB - CloseTime: 5.822us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 800.571us - ExecTime: 194.525us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 602.00 KB - MemoryUsage: - Blocks: 602.00 KB - PeakMemoryUsage: 602.00 KB - OpenTime: 15.12us - ProjectionTime: 0ns - RowsProduced: 31.11K (31110) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s949ms PipelineXTask (index=3):(Active: 7.335ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.247ms - CloseTime: 10.679us - GetBlockTime: 148.943us - OpenTime: 1.833us - PrepareTime: 70.620us - SinkTime: 6.969ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.297ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.527ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.185us - BuildRows: 31.181K (31181) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.445ms - BuildTableInsertTime: 1.608ms - BuildTableTime: 1.639ms - CloseTime: 0ns - ExecTime: 6.980ms - InputRows: 31.18K (31180) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.80 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 20.20us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 48.906us - RuntimeFilterComputeTime: 1.668ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 841.04 KB - CloseTime: 8.52us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 860.287us - ExecTime: 158.833us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 684.00 KB - MemoryUsage: - Blocks: 684.00 KB - PeakMemoryUsage: 684.00 KB - OpenTime: 15.430us - ProjectionTime: 0ns - RowsProduced: 31.18K (31180) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s330ms PipelineXTask (index=5):(Active: 8.296ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.220ms - CloseTime: 8.254us - GetBlockTime: 179.339us - OpenTime: 1.822us - PrepareTime: 60.423us - SinkTime: 7.908ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.254ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.523ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.394us - BuildRows: 31.171K (31171) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.49ms - BuildTableInsertTime: 2.799ms - BuildTableTime: 2.842ms - CloseTime: 0ns - ExecTime: 7.915ms - InputRows: 31.17K (31170) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.77 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 24.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 58.479us - RuntimeFilterComputeTime: 2.783ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 843.49 KB - CloseTime: 6.1us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 911.256us - ExecTime: 183.243us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 602.00 KB - MemoryUsage: - Blocks: 602.00 KB - PeakMemoryUsage: 602.00 KB - OpenTime: 15.547us - ProjectionTime: 0ns - RowsProduced: 31.17K (31170) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s140ms PipelineXTask (index=7):(Active: 8.365ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 8.279ms - CloseTime: 10.279us - GetBlockTime: 144.524us - OpenTime: 3.262us - PrepareTime: 65.830us - SinkTime: 8.13ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.325ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.359ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.265us - BuildRows: 30.999K (30999) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.549ms - BuildTableInsertTime: 3.821ms - BuildTableTime: 3.872ms - CloseTime: 0ns - ExecTime: 8.29ms - InputRows: 30.998K (30998) - MemoryUsage: - BuildBlocks: 2.04 MB - BuildKeyArena: 2.02 MB - HashTable: 377.09 KB - PeakMemoryUsage: 4.42 MB - OpenTime: 23.922us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 62.244us - RuntimeFilterComputeTime: 2.375ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 839.37 KB - CloseTime: 7.337us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.372ms - ExecTime: 150.787us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 602.00 KB - MemoryUsage: - Blocks: 602.00 KB - PeakMemoryUsage: 602.00 KB - OpenTime: 13.627us - ProjectionTime: 0ns - RowsProduced: 30.998K (30998) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s142ms PipelineXTask (index=9):(Active: 7.838ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 7.771ms - CloseTime: 9.752us - GetBlockTime: 211.367us - OpenTime: 1.966us - PrepareTime: 50.34us - SinkTime: 7.418ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.799ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.734ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.78us - BuildRows: 31.005K (31005) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.438ms - BuildTableInsertTime: 3.247ms - BuildTableTime: 3.287ms - CloseTime: 0ns - ExecTime: 7.426ms - InputRows: 31.004K (31004) - MemoryUsage: - BuildBlocks: 2.04 MB - BuildKeyArena: 2.02 MB - HashTable: 377.12 KB - PeakMemoryUsage: 4.42 MB - OpenTime: 16.435us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 69.107us - RuntimeFilterComputeTime: 2.237ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 837.00 KB - CloseTime: 6.985us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 768.687us - ExecTime: 216.752us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 684.00 KB - MemoryUsage: - Blocks: 684.00 KB - PeakMemoryUsage: 684.00 KB - OpenTime: 14.798us - ProjectionTime: 0ns - RowsProduced: 31.004K (31004) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s342ms PipelineXTask (index=11):(Active: 8.901ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.831ms - CloseTime: 8.348us - GetBlockTime: 168.816us - OpenTime: 2.625us - PrepareTime: 54.937us - SinkTime: 8.531ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.867ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.721ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.787us - BuildRows: 31.514K (31514) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.748ms - BuildTableInsertTime: 3.325ms - BuildTableTime: 3.370ms - CloseTime: 0ns - ExecTime: 8.550ms - InputRows: 31.513K (31513) - MemoryUsage: - BuildBlocks: 2.07 MB - BuildKeyArena: 2.05 MB - HashTable: 379.11 KB - PeakMemoryUsage: 4.49 MB - OpenTime: 27.635us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 70.720us - RuntimeFilterComputeTime: 3.171ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 855.89 KB - CloseTime: 6.815us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 957.564us - ExecTime: 173.301us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 602.00 KB - MemoryUsage: - Blocks: 456.00 KB - PeakMemoryUsage: 456.00 KB - OpenTime: 12.416us - ProjectionTime: 0ns - RowsProduced: 31.513K (31513) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s335ms PipelineXTask (index=13):(Active: 7.208ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.145ms - CloseTime: 6.661us - GetBlockTime: 161.807us - OpenTime: 1.813us - PrepareTime: 49.83us - SinkTime: 6.880ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.177ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.421ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.88us - BuildRows: 30.722K (30722) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.115ms - BuildTableInsertTime: 2.436ms - BuildTableTime: 2.465ms - CloseTime: 0ns - ExecTime: 6.889ms - InputRows: 30.721K (30721) - MemoryUsage: - BuildBlocks: 2.02 MB - BuildKeyArena: 2.00 MB - HashTable: 376.01 KB - PeakMemoryUsage: 4.38 MB - OpenTime: 16.605us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 544.534us - RuntimeFilterComputeTime: 1.533ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 829.38 KB - CloseTime: 5.270us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 752.955us - ExecTime: 167.360us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 604.00 KB - MemoryUsage: - Blocks: 604.00 KB - PeakMemoryUsage: 604.00 KB - OpenTime: 12.521us - ProjectionTime: 0ns - RowsProduced: 30.721K (30721) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s342ms PipelineXTask (index=15):(Active: 7.515ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.452ms - CloseTime: 6.789us - GetBlockTime: 183.833us - OpenTime: 1.915us - PrepareTime: 49.648us - SinkTime: 7.151ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.481ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 268.727ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.373us - BuildRows: 31.213K (31213) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.112ms - BuildTableInsertTime: 1.978ms - BuildTableTime: 2.7ms - CloseTime: 0ns - ExecTime: 7.162ms - InputRows: 31.212K (31212) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.93 KB - PeakMemoryUsage: 4.45 MB - OpenTime: 18.726us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 58.559us - RuntimeFilterComputeTime: 1.801ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 845.04 KB - CloseTime: 5.294us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.131ms - ExecTime: 188.70us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 602.00 KB - MemoryUsage: - Blocks: 602.00 KB - PeakMemoryUsage: 602.00 KB - OpenTime: 13.588us - ProjectionTime: 0ns - RowsProduced: 31.212K (31212) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s77ms PipelineXTask (index=17):(Active: 7.486ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.393ms - CloseTime: 9.481us - GetBlockTime: 193.665us - OpenTime: 2.804us - PrepareTime: 74.522us - SinkTime: 7.67ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.439ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 433.430ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 11.974us - BuildRows: 31.184K (31184) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.208ms - BuildTableInsertTime: 2.778ms - BuildTableTime: 2.810ms - CloseTime: 0ns - ExecTime: 7.94ms - InputRows: 31.183K (31183) - MemoryUsage: - BuildBlocks: 2.05 MB - BuildKeyArena: 2.03 MB - HashTable: 377.82 KB - PeakMemoryUsage: 4.44 MB - OpenTime: 34.801us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 55.415us - RuntimeFilterComputeTime: 1.776ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 844.83 KB - CloseTime: 7.250us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.85ms - ExecTime: 201.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 602.00 KB - MemoryUsage: - Blocks: 456.00 KB - PeakMemoryUsage: 456.00 KB - OpenTime: 14.106us - ProjectionTime: 0ns - RowsProduced: 31.183K (31183) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s912ms PipelineXTask (index=19):(Active: 18.762ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 18.675ms - CloseTime: 12.12us - GetBlockTime: 223.511us - OpenTime: 2.25us - PrepareTime: 68.119us - SinkTime: 18.325ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.710ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 417.341ms HASH_JOIN_SINK_OPERATOR (id=226): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.608us - BuildRows: 31.441K (31441) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.202ms - BuildTableInsertTime: 3.136ms - BuildTableTime: 3.191ms - CloseTime: 0ns - ExecTime: 18.345ms - InputRows: 31.44K (31440) - MemoryUsage: - BuildBlocks: 2.07 MB - BuildKeyArena: 2.04 MB - HashTable: 378.82 KB - PeakMemoryUsage: 4.48 MB - OpenTime: 30.962us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 107.671us - RuntimeFilterComputeTime: 3.621ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=204): - BlocksProduced: 18 - BytesReceived: 848.49 KB - CloseTime: 8.744us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.195ms - ExecTime: 230.109us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 684.00 KB - MemoryUsage: - Blocks: 684.00 KB - PeakMemoryUsage: 684.00 KB - OpenTime: 13.413us - ProjectionTime: 0ns - RowsProduced: 31.44K (31440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s922ms Fragment 66: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 7.200ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.899ms - CloseTime: 106.656us - GetBlockTime: 3.440ms - OpenTime: 5.580us - PrepareTime: 172.388us - SinkTime: 3.366ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.79ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.749ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 74.97 KB - CloseTime: 27.804us - CompressTime: 0ns - ExecTime: 3.457ms - InputRows: 12.075K (12075) - LocalBytesSent: 1.11 MB - LocalSendTime: 104.290us - LocalSentRows: 9.974K (9974) - MemoryUsage: - PeakMemoryUsage: 1.79 MB - MergeBlockTime: 0ns - OpenTime: 70.269us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 87.304ms - RowsProduced: 12.075K (12075) - RpcAvgTime: 85.613ms - RpcCount: 2 - RpcMaxTime: 85.672ms - RpcMinTime: 85.555ms - RpcSumTime: 171.227ms - SerializeBatchTime: 150.982us - SplitBlockDistributeByChannelTime: 2.50ms - SplitBlockHashComputeTime: 631.205us - UncompressedRowBatchSize: 247.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 18.687us - ExecTime: 1.950ms - InitProbeSideTime: 97.963us - JoinFilterTimer: 1.68us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.304us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.343us - ProbeFindNextTime: 0ns - ProbeRows: 6.846K (6846) - ProbeTime: 1.612ms - ProbeWhenBuildSideOutputTime: 258.562us - ProbeWhenProbeSideOutputTime: 722.364us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 312.218us - ProjectionTime: 278.236us - RowsProduced: 12.075K (12075) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 42.11us - ExecTime: 1.442ms - InitProbeSideTime: 164.723us - JoinFilterTimer: 584ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.348us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.355us - ProbeFindNextTime: 0ns - ProbeRows: 6.846K (6846) - ProbeTime: 1.186ms - ProbeWhenBuildSideOutputTime: 39.119us - ProbeWhenProbeSideOutputTime: 236.410us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 577.320us - ProjectionTime: 159.453us - RowsProduced: 6.846K (6846) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s713ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 86.44 KB - CloseTime: 12.661us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 213.487us - ExecTime: 123.355us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 654.50 KB - MemoryUsage: - Blocks: 654.50 KB - PeakMemoryUsage: 448.50 KB - OpenTime: 11.221us - ProjectionTime: 0ns - RowsProduced: 6.846K (6846) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s827ms PipelineXTask (index=3):(Active: 7.426ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 7.161ms - CloseTime: 81.941us - GetBlockTime: 3.248ms - OpenTime: 7.476us - PrepareTime: 170.24us - SinkTime: 3.812ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.333ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.409ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 75.57 KB - CloseTime: 15.790us - CompressTime: 0ns - ExecTime: 3.878ms - InputRows: 12.612K (12612) - LocalBytesSent: 1.17 MB - LocalSendTime: 178.49us - LocalSentRows: 10.505K (10505) - MemoryUsage: - PeakMemoryUsage: 2.07 MB - MergeBlockTime: 0ns - OpenTime: 75.435us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 86.207ms - RowsProduced: 12.612K (12612) - RpcAvgTime: 81.799ms - RpcCount: 2 - RpcMaxTime: 81.888ms - RpcMinTime: 81.709ms - RpcSumTime: 163.598ms - SerializeBatchTime: 193.745us - SplitBlockDistributeByChannelTime: 2.233ms - SplitBlockHashComputeTime: 694.845us - UncompressedRowBatchSize: 247.93 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 20.980us - ExecTime: 1.955ms - InitProbeSideTime: 61.822us - JoinFilterTimer: 1.477us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 27.202us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.591us - ProbeFindNextTime: 0ns - ProbeRows: 6.902K (6902) - ProbeTime: 1.591ms - ProbeWhenBuildSideOutputTime: 243.490us - ProbeWhenProbeSideOutputTime: 737.998us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 314.675us - ProjectionTime: 284.882us - RowsProduced: 12.612K (12612) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 30.535us - ExecTime: 1.227ms - InitProbeSideTime: 112.697us - JoinFilterTimer: 1.605us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.802us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.423us - ProbeFindNextTime: 0ns - ProbeRows: 6.902K (6902) - ProbeTime: 987.632us - ProbeWhenBuildSideOutputTime: 53.341us - ProbeWhenProbeSideOutputTime: 293.690us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 312.432us - ProjectionTime: 155.737us - RowsProduced: 6.902K (6902) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s782ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 88.95 KB - CloseTime: 9.709us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 162.4us - ExecTime: 136.539us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 667.00 KB - MemoryUsage: - Blocks: 873.00 KB - PeakMemoryUsage: 667.00 KB - OpenTime: 15.589us - ProjectionTime: 0ns - RowsProduced: 6.902K (6902) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s786ms PipelineXTask (index=6):(Active: 11.894ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 11.640ms - CloseTime: 76.418us - GetBlockTime: 5.738ms - OpenTime: 9.530us - PrepareTime: 161.631us - SinkTime: 5.754ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 11.775ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.385ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 75.97 KB - CloseTime: 13.478us - CompressTime: 0ns - ExecTime: 5.822ms - InputRows: 11.924K (11924) - LocalBytesSent: 1.09 MB - LocalSendTime: 134.178us - LocalSentRows: 9.804K (9804) - MemoryUsage: - PeakMemoryUsage: 1.91 MB - MergeBlockTime: 0ns - OpenTime: 63.856us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 83.619ms - RowsProduced: 11.924K (11924) - RpcAvgTime: 83.115ms - RpcCount: 2 - RpcMaxTime: 83.465ms - RpcMinTime: 82.765ms - RpcSumTime: 166.230ms - SerializeBatchTime: 237.843us - SplitBlockDistributeByChannelTime: 3.834ms - SplitBlockHashComputeTime: 843.756us - UncompressedRowBatchSize: 249.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 13.684us - ExecTime: 3.414ms - InitProbeSideTime: 139.340us - JoinFilterTimer: 2.69us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 33.487us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.54us - ProbeFindNextTime: 0ns - ProbeRows: 7.035K (7035) - ProbeTime: 2.934ms - ProbeWhenBuildSideOutputTime: 431.879us - ProbeWhenProbeSideOutputTime: 1.499ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 469.247us - ProjectionTime: 388.34us - RowsProduced: 11.924K (11924) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 36.101us - ExecTime: 2.208ms - InitProbeSideTime: 158.973us - JoinFilterTimer: 2.296us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.953us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.202us - ProbeFindNextTime: 0ns - ProbeRows: 7.035K (7035) - ProbeTime: 1.863ms - ProbeWhenBuildSideOutputTime: 78.688us - ProbeWhenProbeSideOutputTime: 368.155us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 933.354us - ProjectionTime: 231.931us - RowsProduced: 7.035K (7035) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s702ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 86.02 KB - CloseTime: 8.443us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 216.524us - ExecTime: 154.536us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 752.50 KB - MemoryUsage: - Blocks: 622.00 KB - PeakMemoryUsage: 416.00 KB - OpenTime: 15.876us - ProjectionTime: 0ns - RowsProduced: 7.035K (7035) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s838ms PipelineXTask (index=9):(Active: 8.43ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.796ms - CloseTime: 90.838us - GetBlockTime: 3.835ms - OpenTime: 6.219us - PrepareTime: 144.626us - SinkTime: 3.863ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.938ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.309ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 76.22 KB - CloseTime: 29.971us - CompressTime: 0ns - ExecTime: 3.951ms - InputRows: 12.796K (12796) - LocalBytesSent: 1.18 MB - LocalSendTime: 97.676us - LocalSentRows: 10.618K (10618) - MemoryUsage: - PeakMemoryUsage: 2.05 MB - MergeBlockTime: 0ns - OpenTime: 68.426us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 84.152ms - RowsProduced: 12.796K (12796) - RpcAvgTime: 82.633ms - RpcCount: 2 - RpcMaxTime: 82.721ms - RpcMinTime: 82.546ms - RpcSumTime: 165.267ms - SerializeBatchTime: 139.692us - SplitBlockDistributeByChannelTime: 2.453ms - SplitBlockHashComputeTime: 720.745us - UncompressedRowBatchSize: 256.46 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 20.342us - ExecTime: 2.166ms - InitProbeSideTime: 90.916us - JoinFilterTimer: 1.549us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.773us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.120us - ProbeFindNextTime: 0ns - ProbeRows: 7.138K (7138) - ProbeTime: 1.746ms - ProbeWhenBuildSideOutputTime: 309.616us - ProbeWhenProbeSideOutputTime: 779.759us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 341.508us - ProjectionTime: 348.409us - RowsProduced: 12.796K (12796) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 23.452us - ExecTime: 1.581ms - InitProbeSideTime: 137.237us - JoinFilterTimer: 1.506us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.997us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.64us - ProbeFindNextTime: 0ns - ProbeRows: 7.138K (7138) - ProbeTime: 1.313ms - ProbeWhenBuildSideOutputTime: 58.383us - ProbeWhenProbeSideOutputTime: 274.712us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 662.448us - ProjectionTime: 188.223us - RowsProduced: 7.138K (7138) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s743ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 92.70 KB - CloseTime: 10.928us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 94.516us - ExecTime: 125.425us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 699.00 KB - MemoryUsage: - Blocks: 473.50 KB - PeakMemoryUsage: 212.50 KB - OpenTime: 15.604us - ProjectionTime: 0ns - RowsProduced: 7.138K (7138) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s796ms PipelineXTask (index=12):(Active: 13.109ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 12.787ms - CloseTime: 168.435us - GetBlockTime: 8.196ms - OpenTime: 6.824us - PrepareTime: 142.682us - SinkTime: 4.495ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.893ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.793ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 71.91 KB - CloseTime: 32.677us - CompressTime: 0ns - ExecTime: 4.588ms - InputRows: 12.367K (12367) - LocalBytesSent: 1.16 MB - LocalSendTime: 196.573us - LocalSentRows: 10.38K (10380) - MemoryUsage: - PeakMemoryUsage: 1.99 MB - MergeBlockTime: 0ns - OpenTime: 67.930us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 87.910ms - RowsProduced: 12.367K (12367) - RpcAvgTime: 85.763ms - RpcCount: 2 - RpcMaxTime: 86.206ms - RpcMinTime: 85.319ms - RpcSumTime: 171.526ms - SerializeBatchTime: 212.116us - SplitBlockDistributeByChannelTime: 2.809ms - SplitBlockHashComputeTime: 792.821us - UncompressedRowBatchSize: 233.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 93.523us - ExecTime: 6.416ms - InitProbeSideTime: 94.999us - JoinFilterTimer: 1.140us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.425us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.872us - ProbeFindNextTime: 0ns - ProbeRows: 7.041K (7041) - ProbeTime: 1.919ms - ProbeWhenBuildSideOutputTime: 294.299us - ProbeWhenProbeSideOutputTime: 894.231us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 394.263us - ProjectionTime: 4.357ms - RowsProduced: 12.367K (12367) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 22.701us - ExecTime: 1.742ms - InitProbeSideTime: 163.335us - JoinFilterTimer: 1.338us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.780us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.785us - ProbeFindNextTime: 0ns - ProbeRows: 7.041K (7041) - ProbeTime: 1.455ms - ProbeWhenBuildSideOutputTime: 44.257us - ProbeWhenProbeSideOutputTime: 313.451us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 758.230us - ProjectionTime: 215.240us - RowsProduced: 7.041K (7041) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s744ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 91.36 KB - CloseTime: 12.207us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 117.399us - ExecTime: 158.0us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 694.50 KB - MemoryUsage: - Blocks: 631.50 KB - PeakMemoryUsage: 425.50 KB - OpenTime: 21.701us - ProjectionTime: 0ns - RowsProduced: 7.041K (7041) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s794ms PipelineXTask (index=15):(Active: 7.300ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 7.85ms - CloseTime: 40.596us - GetBlockTime: 3.662ms - OpenTime: 6.815us - PrepareTime: 162.421us - SinkTime: 3.323ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.152ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.943ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 63.79 KB - CloseTime: 8.877us - CompressTime: 0ns - ExecTime: 3.387ms - InputRows: 11.306K (11306) - LocalBytesSent: 1.07 MB - LocalSendTime: 104.958us - LocalSentRows: 9.579K (9579) - MemoryUsage: - PeakMemoryUsage: 1.78 MB - MergeBlockTime: 0ns - OpenTime: 60.788us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 85.403ms - RowsProduced: 11.306K (11306) - RpcAvgTime: 83.288ms - RpcCount: 2 - RpcMaxTime: 83.372ms - RpcMinTime: 83.205ms - RpcSumTime: 166.577ms - SerializeBatchTime: 122.660us - SplitBlockDistributeByChannelTime: 2.20ms - SplitBlockHashComputeTime: 640.372us - UncompressedRowBatchSize: 203.46 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 10.480us - ExecTime: 2.13ms - InitProbeSideTime: 85.135us - JoinFilterTimer: 1.211us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.962us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.277us - ProbeFindNextTime: 0ns - ProbeRows: 6.756K (6756) - ProbeTime: 1.682ms - ProbeWhenBuildSideOutputTime: 267.246us - ProbeWhenProbeSideOutputTime: 854.70us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 304.152us - ProjectionTime: 284.584us - RowsProduced: 11.306K (11306) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 15.432us - ExecTime: 1.556ms - InitProbeSideTime: 131.136us - JoinFilterTimer: 1.395us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.789us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.241us - ProbeFindNextTime: 0ns - ProbeRows: 6.756K (6756) - ProbeTime: 1.323ms - ProbeWhenBuildSideOutputTime: 41.959us - ProbeWhenProbeSideOutputTime: 341.733us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 617.102us - ProjectionTime: 170.265us - RowsProduced: 6.756K (6756) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s746ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 86.47 KB - CloseTime: 3.301us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 122.454us - ExecTime: 118.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 635.50 KB - MemoryUsage: - Blocks: 523.50 KB - PeakMemoryUsage: 317.50 KB - OpenTime: 15.747us - ProjectionTime: 0ns - RowsProduced: 6.756K (6756) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s793ms PipelineXTask (index=18):(Active: 7.34ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 6.755ms - CloseTime: 82.232us - GetBlockTime: 3.149ms - OpenTime: 6.139us - PrepareTime: 184.857us - SinkTime: 3.528ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.941ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.974ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.79 KB - CloseTime: 16.408us - CompressTime: 0ns - ExecTime: 3.636ms - InputRows: 12.669K (12669) - LocalBytesSent: 1.21 MB - LocalSendTime: 82.355us - LocalSentRows: 10.871K (10871) - MemoryUsage: - PeakMemoryUsage: 2.26 MB - MergeBlockTime: 0ns - OpenTime: 97.630us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 86.703ms - RowsProduced: 12.669K (12669) - RpcAvgTime: 85.389ms - RpcCount: 2 - RpcMaxTime: 85.508ms - RpcMinTime: 85.269ms - RpcSumTime: 170.778ms - SerializeBatchTime: 146.491us - SplitBlockDistributeByChannelTime: 2.271ms - SplitBlockHashComputeTime: 654.145us - UncompressedRowBatchSize: 211.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 42.240us - ExecTime: 1.753ms - InitProbeSideTime: 74.402us - JoinFilterTimer: 984ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.495us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.377us - ProbeFindNextTime: 0ns - ProbeRows: 6.649K (6649) - ProbeTime: 1.447ms - ProbeWhenBuildSideOutputTime: 222.922us - ProbeWhenProbeSideOutputTime: 633.357us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 344.329us - ProjectionTime: 231.24us - RowsProduced: 12.669K (12669) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 16.315us - ExecTime: 1.359ms - InitProbeSideTime: 135.508us - JoinFilterTimer: 762ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.797us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.701us - ProbeFindNextTime: 0ns - ProbeRows: 6.649K (6649) - ProbeTime: 1.134ms - ProbeWhenBuildSideOutputTime: 45.294us - ProbeWhenProbeSideOutputTime: 242.855us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 573.608us - ProjectionTime: 159.347us - RowsProduced: 6.649K (6649) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s745ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 82.71 KB - CloseTime: 3.894us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 148.986us - ExecTime: 110.59us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 605.00 KB - MemoryUsage: - Blocks: 605.00 KB - PeakMemoryUsage: 407.00 KB - OpenTime: 17.91us - ProjectionTime: 0ns - RowsProduced: 6.649K (6649) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s794ms PipelineXTask (index=21):(Active: 8.274ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.43ms - CloseTime: 49.672us - GetBlockTime: 3.892ms - OpenTime: 6.690us - PrepareTime: 170.971us - SinkTime: 4.53ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.212ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.473ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 86.30 KB - CloseTime: 17.962us - CompressTime: 0ns - ExecTime: 4.131ms - InputRows: 13.966K (13966) - LocalBytesSent: 1.28 MB - LocalSendTime: 122.143us - LocalSentRows: 11.476K (11476) - MemoryUsage: - PeakMemoryUsage: 2.33 MB - MergeBlockTime: 0ns - OpenTime: 66.585us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 86.200ms - RowsProduced: 13.966K (13966) - RpcAvgTime: 82.773ms - RpcCount: 2 - RpcMaxTime: 82.879ms - RpcMinTime: 82.668ms - RpcSumTime: 165.547ms - SerializeBatchTime: 193.397us - SplitBlockDistributeByChannelTime: 2.526ms - SplitBlockHashComputeTime: 786.179us - UncompressedRowBatchSize: 292.78 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 11.170us - ExecTime: 2.312ms - InitProbeSideTime: 88.959us - JoinFilterTimer: 1.369us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.7us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.972us - ProbeFindNextTime: 0ns - ProbeRows: 6.972K (6972) - ProbeTime: 1.843ms - ProbeWhenBuildSideOutputTime: 278.593us - ProbeWhenProbeSideOutputTime: 815.486us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 413.188us - ProjectionTime: 401.118us - RowsProduced: 13.966K (13966) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 10.460us - ExecTime: 1.462ms - InitProbeSideTime: 130.517us - JoinFilterTimer: 1.349us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.902us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.341us - ProbeFindNextTime: 0ns - ProbeRows: 6.972K (6972) - ProbeTime: 1.217ms - ProbeWhenBuildSideOutputTime: 54.10us - ProbeWhenProbeSideOutputTime: 277.813us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 575.602us - ProjectionTime: 175.396us - RowsProduced: 6.972K (6972) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s717ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 87.80 KB - CloseTime: 6.650us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 178.895us - ExecTime: 137.360us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 705.00 KB - MemoryUsage: - Blocks: 574.50 KB - PeakMemoryUsage: 368.50 KB - OpenTime: 13.53us - ProjectionTime: 0ns - RowsProduced: 6.972K (6972) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s824ms PipelineXTask (index=24):(Active: 8.898ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.678ms - CloseTime: 66.321us - GetBlockTime: 4.124ms - OpenTime: 5.230us - PrepareTime: 144.196us - SinkTime: 4.458ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.785ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.70ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 69.79 KB - CloseTime: 22.494us - CompressTime: 0ns - ExecTime: 4.547ms - InputRows: 11.621K (11621) - LocalBytesSent: 1.08 MB - LocalSendTime: 142.111us - LocalSentRows: 9.703K (9703) - MemoryUsage: - PeakMemoryUsage: 1.93 MB - MergeBlockTime: 0ns - OpenTime: 74.251us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 84.388ms - RowsProduced: 11.621K (11621) - RpcAvgTime: 83.750ms - RpcCount: 2 - RpcMaxTime: 83.884ms - RpcMinTime: 83.617ms - RpcSumTime: 167.501ms - SerializeBatchTime: 148.478us - SplitBlockDistributeByChannelTime: 2.835ms - SplitBlockHashComputeTime: 750.977us - UncompressedRowBatchSize: 225.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 16.149us - ExecTime: 2.312ms - InitProbeSideTime: 108.313us - JoinFilterTimer: 1.282us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.324us - ProbeFindNextTime: 0ns - ProbeRows: 7.055K (7055) - ProbeTime: 1.946ms - ProbeWhenBuildSideOutputTime: 277.569us - ProbeWhenProbeSideOutputTime: 936.68us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 368.637us - ProjectionTime: 302.398us - RowsProduced: 11.621K (11621) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 17.12us - ExecTime: 1.693ms - InitProbeSideTime: 137.832us - JoinFilterTimer: 1.367us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.107us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.157us - ProbeFindNextTime: 0ns - ProbeRows: 7.055K (7055) - ProbeTime: 1.417ms - ProbeWhenBuildSideOutputTime: 51.581us - ProbeWhenProbeSideOutputTime: 286.471us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 722.15us - ProjectionTime: 197.786us - RowsProduced: 7.055K (7055) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s742ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 86.26 KB - CloseTime: 6.375us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 137.14us - ExecTime: 135.218us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 674.50 KB - MemoryUsage: - Blocks: 674.50 KB - PeakMemoryUsage: 468.50 KB - OpenTime: 10.605us - ProjectionTime: 0ns - RowsProduced: 7.055K (7055) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s798ms PipelineXTask (index=27):(Active: 7.166ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.948ms - CloseTime: 50.385us - GetBlockTime: 3.274ms - OpenTime: 5.900us - PrepareTime: 157.353us - SinkTime: 3.570ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.103ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.320ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 70.76 KB - CloseTime: 8.946us - CompressTime: 0ns - ExecTime: 3.627ms - InputRows: 12.05K (12050) - LocalBytesSent: 1.13 MB - LocalSendTime: 81.323us - LocalSentRows: 10.125K (10125) - MemoryUsage: - PeakMemoryUsage: 1.89 MB - MergeBlockTime: 0ns - OpenTime: 56.521us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 85.930ms - RowsProduced: 12.05K (12050) - RpcAvgTime: 83.115ms - RpcCount: 2 - RpcMaxTime: 83.223ms - RpcMinTime: 83.6ms - RpcSumTime: 166.230ms - SerializeBatchTime: 186.477us - SplitBlockDistributeByChannelTime: 2.205ms - SplitBlockHashComputeTime: 630.82us - UncompressedRowBatchSize: 226.64 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12 - BuildOutputBlock: 0ns - CloseTime: 12.458us - ExecTime: 1.884ms - InitProbeSideTime: 94.684us - JoinFilterTimer: 1.505us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.909us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.505us - ProbeFindNextTime: 0ns - ProbeRows: 6.84K (6840) - ProbeTime: 1.551ms - ProbeWhenBuildSideOutputTime: 277.109us - ProbeWhenProbeSideOutputTime: 665.247us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 292.21us - ProjectionTime: 276.502us - RowsProduced: 12.05K (12050) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 23.617us - ExecTime: 1.305ms - InitProbeSideTime: 106.88us - JoinFilterTimer: 1.309us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.7us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.313us - ProbeFindNextTime: 0ns - ProbeRows: 6.84K (6840) - ProbeTime: 1.47ms - ProbeWhenBuildSideOutputTime: 68.99us - ProbeWhenProbeSideOutputTime: 269.364us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 388.765us - ProjectionTime: 170.651us - RowsProduced: 6.84K (6840) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s752ms EXCHANGE_OPERATOR (id=222): - BlocksProduced: 14 - BytesReceived: 88.55 KB - CloseTime: 3.11us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 149.100us - ExecTime: 113.818us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 667.00 KB - MemoryUsage: - Blocks: 432.00 KB - PeakMemoryUsage: 226.00 KB - OpenTime: 13.679us - ProjectionTime: 0ns - RowsProduced: 6.84K (6840) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s791ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 2.579ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.512ms - CloseTime: 10.964us - GetBlockTime: 157.865us - OpenTime: 2.372us - PrepareTime: 48.243us - SinkTime: 2.215ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.527ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.438ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.413us - BuildRows: 25.276K (25276) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 600.356us - BuildTableInsertTime: 204.21us - BuildTableTime: 235.892us - CloseTime: 0ns - ExecTime: 2.226ms - InputRows: 25.275K (25275) - MemoryUsage: - BuildBlocks: 567.70 KB - BuildKeyArena: 0.00 - HashTable: 226.74 KB - PeakMemoryUsage: 794.43 KB - OpenTime: 21.643us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 268.983us - RuntimeFilterComputeTime: 324.265us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 396.65 KB - CloseTime: 8.993us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 408.809us - ExecTime: 158.910us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 11.37us - ProjectionTime: 0ns - RowsProduced: 25.275K (25275) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s950ms PipelineXTask (index=4):(Active: 4.582ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.510ms - CloseTime: 11.695us - GetBlockTime: 263.692us - OpenTime: 1.902us - PrepareTime: 54.78us - SinkTime: 4.123ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.543ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.453ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.880us - BuildRows: 26.344K (26344) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 496.836us - BuildTableInsertTime: 273.388us - BuildTableTime: 317.102us - CloseTime: 0ns - ExecTime: 4.129ms - InputRows: 26.343K (26343) - MemoryUsage: - BuildBlocks: 591.69 KB - BuildKeyArena: 0.00 - HashTable: 230.91 KB - PeakMemoryUsage: 822.59 KB - OpenTime: 14.512us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 395.834us - RuntimeFilterComputeTime: 438.292us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 412.94 KB - CloseTime: 8.775us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 466.52us - ExecTime: 267.94us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 10.257us - ProjectionTime: 0ns - RowsProduced: 26.343K (26343) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 7s22ms PipelineXTask (index=7):(Active: 3.808ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.752ms - CloseTime: 6.877us - GetBlockTime: 133.258us - OpenTime: 1.811us - PrepareTime: 40.311us - SinkTime: 3.494ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.421ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.531ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.446us - BuildRows: 24.948K (24948) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 457.105us - BuildTableInsertTime: 115.734us - BuildTableTime: 142.59us - CloseTime: 0ns - ExecTime: 3.500ms - InputRows: 24.947K (24947) - MemoryUsage: - BuildBlocks: 560.33 KB - BuildKeyArena: 0.00 - HashTable: 225.46 KB - PeakMemoryUsage: 785.78 KB - OpenTime: 14.614us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 605.833us - RuntimeFilterComputeTime: 461.476us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 390.91 KB - CloseTime: 5.210us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 522.337us - ExecTime: 133.528us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 10.781us - ProjectionTime: 0ns - RowsProduced: 24.947K (24947) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s918ms PipelineXTask (index=10):(Active: 2.850ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.758ms - CloseTime: 10.98us - GetBlockTime: 198.407us - OpenTime: 2.822us - PrepareTime: 72.301us - SinkTime: 2.422ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.808ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 88.531ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.145us - BuildRows: 25.439K (25439) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 500.883us - BuildTableInsertTime: 243.979us - BuildTableTime: 287.124us - CloseTime: 0ns - ExecTime: 2.445ms - InputRows: 25.438K (25438) - MemoryUsage: - BuildBlocks: 571.36 KB - BuildKeyArena: 0.00 - HashTable: 227.38 KB - PeakMemoryUsage: 798.73 KB - OpenTime: 31.554us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 380.135us - RuntimeFilterComputeTime: 401.480us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 399.12 KB - CloseTime: 7.477us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 552.938us - ExecTime: 198.424us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 9.797us - ProjectionTime: 0ns - RowsProduced: 25.438K (25438) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s939ms PipelineXTask (index=13):(Active: 3.908ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.852ms - CloseTime: 6.627us - GetBlockTime: 161.902us - OpenTime: 1.817us - PrepareTime: 40.758us - SinkTime: 3.564ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.874ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 170.243ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.235us - BuildRows: 25.797K (25797) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 899.785us - BuildTableInsertTime: 198.994us - BuildTableTime: 239.924us - CloseTime: 0ns - ExecTime: 3.568ms - InputRows: 25.796K (25796) - MemoryUsage: - BuildBlocks: 579.40 KB - BuildKeyArena: 0.00 - HashTable: 228.77 KB - PeakMemoryUsage: 808.17 KB - OpenTime: 12.709us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 214.596us - RuntimeFilterComputeTime: 431.73us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 404.45 KB - CloseTime: 4.888us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 440.862us - ExecTime: 155.359us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 11.967us - ProjectionTime: 0ns - RowsProduced: 25.796K (25796) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s855ms PipelineXTask (index=16):(Active: 4.11ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.949ms - CloseTime: 7.630us - GetBlockTime: 200.790us - OpenTime: 1.521us - PrepareTime: 48.164us - SinkTime: 3.634ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.978ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.178ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.657us - BuildRows: 24.698K (24698) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 919.261us - BuildTableInsertTime: 163.364us - BuildTableTime: 191.801us - CloseTime: 0ns - ExecTime: 3.638ms - InputRows: 24.697K (24697) - MemoryUsage: - BuildBlocks: 554.72 KB - BuildKeyArena: 0.00 - HashTable: 224.48 KB - PeakMemoryUsage: 779.19 KB - OpenTime: 11.728us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 243.366us - RuntimeFilterComputeTime: 328.629us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 387.19 KB - CloseTime: 5.569us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 454.849us - ExecTime: 206.955us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 13.415us - ProjectionTime: 0ns - RowsProduced: 24.697K (24697) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s961ms PipelineXTask (index=19):(Active: 2.485ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.415ms - CloseTime: 10.969us - GetBlockTime: 168.179us - OpenTime: 1.838us - PrepareTime: 50.982us - SinkTime: 2.119ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.447ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.714ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 14.320us - BuildRows: 26.283K (26283) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 829.392us - BuildTableInsertTime: 152.943us - BuildTableTime: 193.136us - CloseTime: 0ns - ExecTime: 2.128ms - InputRows: 26.282K (26282) - MemoryUsage: - BuildBlocks: 590.32 KB - BuildKeyArena: 0.00 - HashTable: 230.67 KB - PeakMemoryUsage: 820.98 KB - OpenTime: 15.441us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.932us - RuntimeFilterComputeTime: 459.169us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 411.91 KB - CloseTime: 7.968us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 517.845us - ExecTime: 176.528us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 14.981us - ProjectionTime: 0ns - RowsProduced: 26.282K (26282) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s959ms PipelineXTask (index=22):(Active: 6.156ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.65ms - CloseTime: 11.33us - GetBlockTime: 179.494us - OpenTime: 2.498us - PrepareTime: 72.324us - SinkTime: 5.761ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.120ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.281ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.417us - BuildRows: 25.864K (25864) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 418.474us - BuildTableInsertTime: 257.595us - BuildTableTime: 301.140us - CloseTime: 0ns - ExecTime: 5.773ms - InputRows: 25.863K (25863) - MemoryUsage: - BuildBlocks: 580.91 KB - BuildKeyArena: 0.00 - HashTable: 229.04 KB - PeakMemoryUsage: 809.93 KB - OpenTime: 17.648us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.287ms - RuntimeFilterComputeTime: 445.896us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 405.38 KB - CloseTime: 8.244us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 421.494us - ExecTime: 184.782us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 13.59us - ProjectionTime: 0ns - RowsProduced: 25.863K (25863) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s855ms PipelineXTask (index=25):(Active: 3.662ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.562ms - CloseTime: 6.152us - GetBlockTime: 203.267us - OpenTime: 2.388us - PrepareTime: 85.430us - SinkTime: 3.203ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.556ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 246.970ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 12.443us - BuildRows: 25.113K (25113) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.60ms - BuildTableInsertTime: 138.975us - BuildTableTime: 179.803us - CloseTime: 0ns - ExecTime: 3.228ms - InputRows: 25.112K (25112) - MemoryUsage: - BuildBlocks: 564.04 KB - BuildKeyArena: 0.00 - HashTable: 226.10 KB - PeakMemoryUsage: 790.13 KB - OpenTime: 33.35us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 264.545us - RuntimeFilterComputeTime: 262.526us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 394.04 KB - CloseTime: 4.746us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 395.757us - ExecTime: 207.139us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 17.995us - ProjectionTime: 0ns - RowsProduced: 25.112K (25112) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s781ms PipelineXTask (index=28):(Active: 3.227ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.152ms - CloseTime: 6.230us - GetBlockTime: 161.786us - OpenTime: 1.652us - PrepareTime: 62.112us - SinkTime: 2.883ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.198ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.747ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.274us - BuildRows: 26.275K (26275) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 551.660us - BuildTableInsertTime: 161.361us - BuildTableTime: 183.967us - CloseTime: 0ns - ExecTime: 2.892ms - InputRows: 26.274K (26274) - MemoryUsage: - BuildBlocks: 590.14 KB - BuildKeyArena: 0.00 - HashTable: 230.64 KB - PeakMemoryUsage: 820.77 KB - OpenTime: 14.684us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 219.221us - RuntimeFilterComputeTime: 260.0us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 20 - BytesReceived: 411.81 KB - CloseTime: 4.578us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 383.708us - ExecTime: 161.367us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 2.21 KB - OpenTime: 8.552us - ProjectionTime: 0ns - RowsProduced: 26.274K (26274) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s882ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 4.450ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 4.383ms - CloseTime: 14.802us - GetBlockTime: 395.934us - OpenTime: 1.546us - PrepareTime: 40.480us - SinkTime: 3.649ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 47 - NumBlockedTimes: 49 - NumScheduleTimes: 49 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.355ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.705ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 27.351us - BuildRows: 208.5K (208500) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.346ms - BuildTableInsertTime: 1.926ms - BuildTableTime: 2.121ms - CloseTime: 0ns - ExecTime: 3.616ms - InputRows: 208.499K (208499) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 14.337us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 382.79 KB - CloseTime: 11.570us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 306.369us - ExecTime: 345.979us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.04 MB - MemoryUsage: - Blocks: 144.00 KB - PeakMemoryUsage: 144.00 KB - OpenTime: 11.107us - ProjectionTime: 0ns - RowsProduced: 208.499K (208499) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s458ms PipelineXTask (index=5):(Active: 4.36ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 3.962ms - CloseTime: 12.518us - GetBlockTime: 375.115us - OpenTime: 2.496us - PrepareTime: 43.378us - SinkTime: 3.261ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 45 - NumBlockedTimes: 47 - NumScheduleTimes: 47 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.937ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.373ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 28.94us - BuildRows: 208.701K (208701) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.162ms - BuildTableInsertTime: 1.753ms - BuildTableTime: 1.951ms - CloseTime: 0ns - ExecTime: 3.238ms - InputRows: 208.7K (208700) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 11.568us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 384.60 KB - CloseTime: 9.562us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 277.18us - ExecTime: 351.936us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.21 MB - MemoryUsage: - Blocks: 153.00 KB - PeakMemoryUsage: 153.00 KB - OpenTime: 12.605us - ProjectionTime: 0ns - RowsProduced: 208.7K (208700) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s519ms PipelineXTask (index=8):(Active: 7.530ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 7.458ms - CloseTime: 15.705us - GetBlockTime: 356.725us - OpenTime: 2.485us - PrepareTime: 40.312us - SinkTime: 6.782ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 46 - NumBlockedTimes: 48 - NumScheduleTimes: 48 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.239ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.193ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 23.827us - BuildRows: 209.109K (209109) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.896ms - BuildTableInsertTime: 3.533ms - BuildTableTime: 3.757ms - CloseTime: 0ns - ExecTime: 6.768ms - InputRows: 209.108K (209108) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 5.855us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 386.15 KB - CloseTime: 11.624us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 281.21us - ExecTime: 325.217us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.18 MB - MemoryUsage: - Blocks: 184.00 KB - PeakMemoryUsage: 184.00 KB - OpenTime: 15.407us - ProjectionTime: 0ns - RowsProduced: 209.108K (209108) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s438ms PipelineXTask (index=11):(Active: 5.797ms, % non-child: 0.00%) - CoreChangeTimes: 27 - ExecuteTime: 5.722ms - CloseTime: 28.475us - GetBlockTime: 393.0us - OpenTime: 2.191us - PrepareTime: 32.0us - SinkTime: 5.22ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 47 - NumBlockedTimes: 49 - NumScheduleTimes: 49 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.680ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.450ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.187us - BuildRows: 209.196K (209196) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.271ms - BuildTableInsertTime: 3.336ms - BuildTableTime: 3.589ms - CloseTime: 0ns - ExecTime: 5.10ms - InputRows: 209.195K (209195) - MemoryUsage: - BuildBlocks: 1.80 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 7.370us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 385.43 KB - CloseTime: 14.397us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 306.614us - ExecTime: 341.714us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.16 MB - MemoryUsage: - Blocks: 144.00 KB - PeakMemoryUsage: 144.00 KB - OpenTime: 10.69us - ProjectionTime: 0ns - RowsProduced: 209.195K (209195) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s489ms PipelineXTask (index=14):(Active: 6.987ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 6.933ms - CloseTime: 8.811us - GetBlockTime: 374.312us - OpenTime: 2.166us - PrepareTime: 32.38us - SinkTime: 6.201ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 46 - NumBlockedTimes: 48 - NumScheduleTimes: 48 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.876ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.182ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.784us - BuildRows: 209.129K (209129) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.161ms - BuildTableInsertTime: 2.670ms - BuildTableTime: 2.869ms - CloseTime: 0ns - ExecTime: 6.153ms - InputRows: 209.128K (209128) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 7.350us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 386.27 KB - CloseTime: 6.418us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 272.46us - ExecTime: 345.114us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.09 MB - MemoryUsage: - Blocks: 144.00 KB - PeakMemoryUsage: 144.00 KB - OpenTime: 9.628us - ProjectionTime: 0ns - RowsProduced: 209.128K (209128) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s487ms PipelineXTask (index=17):(Active: 5.653ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 5.599ms - CloseTime: 9.563us - GetBlockTime: 348.947us - OpenTime: 1.903us - PrepareTime: 33.19us - SinkTime: 4.966ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 46 - NumBlockedTimes: 48 - NumScheduleTimes: 48 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.565ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.599ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 27.940us - BuildRows: 208.465K (208465) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.364ms - BuildTableInsertTime: 3.239ms - BuildTableTime: 3.480ms - CloseTime: 0ns - ExecTime: 4.952ms - InputRows: 208.464K (208464) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 4.25us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 384.89 KB - CloseTime: 7.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 385.750us - ExecTime: 320.651us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.12 MB - MemoryUsage: - Blocks: 144.00 KB - PeakMemoryUsage: 144.00 KB - OpenTime: 16.101us - ProjectionTime: 0ns - RowsProduced: 208.464K (208464) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s490ms PipelineXTask (index=20):(Active: 8.517ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 8.432ms - CloseTime: 13.671us - GetBlockTime: 368.243us - OpenTime: 1.499us - PrepareTime: 58.261us - SinkTime: 7.763ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 46 - NumBlockedTimes: 48 - NumScheduleTimes: 48 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.418ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.269ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 33.586us - BuildRows: 209.242K (209242) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.578ms - BuildTableInsertTime: 4.795ms - BuildTableTime: 5.40ms - CloseTime: 0ns - ExecTime: 7.756ms - InputRows: 209.241K (209241) - MemoryUsage: - BuildBlocks: 1.80 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 12.185us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 386.77 KB - CloseTime: 10.284us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 284.81us - ExecTime: 358.366us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.16 MB - MemoryUsage: - Blocks: 162.00 KB - PeakMemoryUsage: 162.00 KB - OpenTime: 28.887us - ProjectionTime: 0ns - RowsProduced: 209.241K (209241) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s483ms PipelineXTask (index=23):(Active: 7.424ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 7.363ms - CloseTime: 14.376us - GetBlockTime: 3.94ms - OpenTime: 2.549us - PrepareTime: 35.620us - SinkTime: 3.938ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 44 - NumBlockedTimes: 46 - NumScheduleTimes: 46 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.642ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 37.590ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.392us - BuildRows: 208.881K (208881) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.237ms - BuildTableInsertTime: 2.303ms - BuildTableTime: 2.526ms - CloseTime: 0ns - ExecTime: 3.911ms - InputRows: 208.88K (208880) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 12.305us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 384.78 KB - CloseTime: 10.735us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 266.936us - ExecTime: 3.61ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.08 MB - MemoryUsage: - Blocks: 180.00 KB - PeakMemoryUsage: 180.00 KB - OpenTime: 11.629us - ProjectionTime: 0ns - RowsProduced: 208.88K (208880) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s461ms PipelineXTask (index=26):(Active: 5.300ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 5.240ms - CloseTime: 13.336us - GetBlockTime: 452.255us - OpenTime: 1.584us - PrepareTime: 33.216us - SinkTime: 4.453ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 47 - NumBlockedTimes: 49 - NumScheduleTimes: 49 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.192ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.188ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 39.491us - BuildRows: 209.076K (209076) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.508ms - BuildTableInsertTime: 2.566ms - BuildTableTime: 2.769ms - CloseTime: 0ns - ExecTime: 4.427ms - InputRows: 209.075K (209075) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 6.474us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 385.50 KB - CloseTime: 10.90us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 291.793us - ExecTime: 423.910us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.05 MB - MemoryUsage: - Blocks: 180.00 KB - PeakMemoryUsage: 180.00 KB - OpenTime: 10.402us - ProjectionTime: 0ns - RowsProduced: 209.075K (209075) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s492ms PipelineXTask (index=29):(Active: 13.535ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 13.460ms - CloseTime: 12.278us - GetBlockTime: 8.440ms - OpenTime: 2.133us - PrepareTime: 50.873us - SinkTime: 4.689ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 44 - NumBlockedTimes: 46 - NumScheduleTimes: 46 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.358ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.801ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 37.477us - BuildRows: 208.333K (208333) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.679ms - BuildTableInsertTime: 1.660ms - BuildTableTime: 1.859ms - CloseTime: 0ns - ExecTime: 4.672ms - InputRows: 208.332K (208332) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.79 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 5.873us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 68 - BytesReceived: 384.89 KB - CloseTime: 9.575us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 284.423us - ExecTime: 8.421ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.15 MB - MemoryUsage: - Blocks: 162.00 KB - PeakMemoryUsage: 162.00 KB - OpenTime: 20.285us - ProjectionTime: 0ns - RowsProduced: 208.332K (208332) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s481ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 10.379ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 10.3ms - CloseTime: 137.889us - GetBlockTime: 4.514ms - OpenTime: 9.397us - PrepareTime: 222.176us - SinkTime: 5.374ms - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.217ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.444ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 454.38 KB - CloseTime: 26.54us - CompressTime: 0ns - ExecTime: 5.501ms - InputRows: 15.296K (15296) - LocalBytesSent: 279.91 KB - LocalSendTime: 34.159us - LocalSentRows: 2.45K (2450) - MemoryUsage: - PeakMemoryUsage: 2.66 MB - MergeBlockTime: 0ns - OpenTime: 90.19us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 511.401ms - RowsProduced: 15.296K (15296) - RpcAvgTime: 476.437ms - RpcCount: 10 - RpcMaxTime: 479.288ms - RpcMinTime: 460.15ms - RpcSumTime: 4s764ms - SerializeBatchTime: 932.153us - SplitBlockDistributeByChannelTime: 2.646ms - SplitBlockHashComputeTime: 894.964us - UncompressedRowBatchSize: 1.48 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 23.49us - ExecTime: 2.678ms - InitProbeSideTime: 139.655us - JoinFilterTimer: 930ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 30.636us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.833us - ProbeFindNextTime: 0ns - ProbeRows: 7.238K (7238) - ProbeTime: 1.964ms - ProbeWhenBuildSideOutputTime: 313.660us - ProbeWhenProbeSideOutputTime: 898.250us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 383.765us - ProjectionTime: 626.829us - RowsProduced: 15.296K (15296) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 33.395us - ExecTime: 1.764ms - InitProbeSideTime: 185.960us - JoinFilterTimer: 1.181us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.77us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.175us - ProbeFindNextTime: 0ns - ProbeRows: 7.238K (7238) - ProbeTime: 1.476ms - ProbeWhenBuildSideOutputTime: 44.210us - ProbeWhenProbeSideOutputTime: 297.947us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 740.693us - ProjectionTime: 192.728us - RowsProduced: 7.238K (7238) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 22 - BytesReceived: 286.39 KB - CloseTime: 29.216us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 599.448us - ExecTime: 184.674us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 206.00 KB - MemoryUsage: - Blocks: 557.50 KB - PeakMemoryUsage: 103.00 KB - OpenTime: 34.49us - ProjectionTime: 0ns - RowsProduced: 7.238K (7238) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s608ms PipelineXTask (index=3):(Active: 10.214ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 9.968ms - CloseTime: 88.694us - GetBlockTime: 4.446ms - OpenTime: 6.68us - PrepareTime: 144.782us - SinkTime: 5.419ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.109ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.427ms DATA_STREAM_SINK_OPERATOR (id=225,dst_id=225): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 353.36 KB - CloseTime: 32.928us - CompressTime: 0ns - ExecTime: 5.481ms - InputRows: 11.623K (11623) - LocalBytesSent: 223.03 KB - LocalSendTime: 39.865us - LocalSentRows: 1.953K (1953) - MemoryUsage: - PeakMemoryUsage: 1.86 MB - MergeBlockTime: 0ns - OpenTime: 58.0us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 510.15ms - RowsProduced: 11.623K (11623) - RpcAvgTime: 480.177ms - RpcCount: 10 - RpcMaxTime: 481.29ms - RpcMinTime: 479.317ms - RpcSumTime: 4s801ms - SerializeBatchTime: 922.512us - SplitBlockDistributeByChannelTime: 2.702ms - SplitBlockHashComputeTime: 751.34us - UncompressedRowBatchSize: 1.11 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=224): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 14.885us - ExecTime: 2.408ms - InitProbeSideTime: 129.740us - JoinFilterTimer: 1.871us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.313us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.861us - ProbeFindNextTime: 0ns - ProbeRows: 6.848K (6848) - ProbeTime: 2.37ms - ProbeWhenBuildSideOutputTime: 298.671us - ProbeWhenProbeSideOutputTime: 936.969us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 376.193us - ProjectionTime: 304.859us - RowsProduced: 11.623K (11623) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=223): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 18.984us - ExecTime: 1.899ms - InitProbeSideTime: 241.182us - JoinFilterTimer: 1.668us - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.496us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.883us - ProbeFindNextTime: 0ns - ProbeRows: 6.848K (6848) - ProbeTime: 1.586ms - ProbeWhenBuildSideOutputTime: 47.654us - ProbeWhenProbeSideOutputTime: 257.811us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 829.510us - ProjectionTime: 234.428us - RowsProduced: 6.848K (6848) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=222): - BlocksProduced: 22 - BytesReceived: 274.46 KB - CloseTime: 17.21us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 632.305us - ExecTime: 142.928us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 206.00 KB - MemoryUsage: - Blocks: 499.50 KB - PeakMemoryUsage: 103.00 KB - OpenTime: 10.8us - ProjectionTime: 0ns - RowsProduced: 6.848K (6848) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s610ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 6.575ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 6.462ms - CloseTime: 21.81us - GetBlockTime: 109.633us - OpenTime: 1.957us - PrepareTime: 84.787us - SinkTime: 6.265ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.537ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.276ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.329us - BuildRows: 25.987K (25987) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 772.116us - BuildTableInsertTime: 356.280us - BuildTableTime: 411.683us - CloseTime: 0ns - ExecTime: 6.289ms - InputRows: 25.986K (25986) - MemoryUsage: - BuildBlocks: 583.67 KB - BuildKeyArena: 0.00 - HashTable: 229.52 KB - PeakMemoryUsage: 813.18 KB - OpenTime: 29.107us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.472ms - RuntimeFilterComputeTime: 726.473us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 17.70us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 142.425us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.06 MB - MemoryUsage: - Blocks: 230.00 KB - PeakMemoryUsage: 230.55 KB - OpenTime: 26.497us - ProjectionTime: 0ns - RowsProduced: 25.986K (25986) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 367.565ms PipelineXTask (index=4):(Active: 80.750ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 80.656ms - CloseTime: 8.999us - GetBlockTime: 107.602us - OpenTime: 1.979us - PrepareTime: 77.395us - SinkTime: 80.491ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.957ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.63ms HASH_JOIN_SINK_OPERATOR (id=224): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.437us - BuildRows: 25.555K (25555) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 78.341ms - BuildTableInsertTime: 216.412us - BuildTableTime: 249.435us - CloseTime: 0ns - ExecTime: 80.512ms - InputRows: 25.554K (25554) - MemoryUsage: - BuildBlocks: 573.97 KB - BuildKeyArena: 0.00 - HashTable: 227.83 KB - PeakMemoryUsage: 801.79 KB - OpenTime: 25.787us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.891us - RuntimeFilterComputeTime: 260.144us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=206): - BlocksProduced: 10 - BytesReceived: 0.00 - CloseTime: 7.341us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 131.561us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 971.00 KB - MemoryUsage: - Blocks: 534.00 KB - PeakMemoryUsage: 535.11 KB - OpenTime: 26.429us - ProjectionTime: 0ns - RowsProduced: 25.554K (25554) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 303.226ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 106.324ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 106.232ms - CloseTime: 15.496us - GetBlockTime: 499.523us - OpenTime: 2.243us - PrepareTime: 63.492us - SinkTime: 105.394ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.948ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.469ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 37.319us - BuildRows: 209.102K (209102) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 101.261ms - BuildTableInsertTime: 3.573ms - BuildTableTime: 3.978ms - CloseTime: 0ns - ExecTime: 105.374ms - InputRows: 209.101K (209101) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.80 MB - PeakMemoryUsage: 3.59 MB - OpenTime: 9.392us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 85 - BytesReceived: 770.49 KB - CloseTime: 13.104us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 798.917us - ExecTime: 490.684us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.11 MB - MemoryUsage: - Blocks: 472.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 30.284us - ProjectionTime: 0ns - RowsProduced: 209.101K (209101) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s699ms PipelineXTask (index=5):(Active: 75.149ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 75.65ms - CloseTime: 22.485us - GetBlockTime: 450.227us - OpenTime: 1.809us - PrepareTime: 49.609us - SinkTime: 74.336ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.281ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.363ms HASH_JOIN_SINK_OPERATOR (id=223): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.939us - BuildRows: 208.295K (208295) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 71.442ms - BuildTableInsertTime: 2.545ms - BuildTableTime: 2.743ms - CloseTime: 0ns - ExecTime: 74.326ms - InputRows: 208.294K (208294) - MemoryUsage: - BuildBlocks: 1.79 MB - BuildKeyArena: 0.00 - HashTable: 1.79 MB - PeakMemoryUsage: 3.58 MB - OpenTime: 9.172us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=208): - BlocksProduced: 85 - BytesReceived: 767.44 KB - CloseTime: 19.696us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 561.350us - ExecTime: 439.219us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.04 MB - MemoryUsage: - Blocks: 400.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 23.614us - ProjectionTime: 0ns - RowsProduced: 208.294K (208294) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s765ms Fragment 67: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 148.112ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 147.925ms - CloseTime: 40.606us - GetBlockTime: 133.621ms - OpenTime: 7.70us - PrepareTime: 131.315us - SinkTime: 13.122ms - GetBlockCounter: 527 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 148.58ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 569.763us DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 445.49 KB - CloseTime: 15.705us - CompressTime: 0ns - ExecTime: 13.37ms - InputRows: 10.594K (10594) - LocalBytesSent: 149.80 KB - LocalSendTime: 41.699us - LocalSentRows: 1.638K (1638) - MemoryUsage: - PeakMemoryUsage: 1.26 MB - MergeBlockTime: 0ns - OpenTime: 57.172us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s244ms - RowsProduced: 10.594K (10594) - RpcAvgTime: 1s242ms - RpcCount: 10 - RpcMaxTime: 1s243ms - RpcMinTime: 1s241ms - RpcSumTime: 12s424ms - SerializeBatchTime: 1.326ms - SplitBlockDistributeByChannelTime: 7.659ms - SplitBlockHashComputeTime: 1.273ms - UncompressedRowBatchSize: 837.66 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 526 - BuildOutputBlock: 0ns - CloseTime: 21.773us - ExecTime: 131.606ms - InitProbeSideTime: 43.953ms - JoinFilterTimer: 75.576us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 14.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 58.314us - ProbeFindNextTime: 0ns - ProbeRows: 2.133717M (2133717) - ProbeTime: 127.934ms - ProbeWhenBuildSideOutputTime: 9.349ms - ProbeWhenProbeSideOutputTime: 1.485ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 67.405ms - ProjectionTime: 2.68ms - RowsProduced: 10.594K (10594) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s535ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 526 - CloseTime: 0ns - ExecTime: 1.434ms - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 46.54 MB - OpenTime: 693ns - ProjectionTime: 0ns - RowsProduced: 2.133717M (2133717) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 867.458ms PipelineXTask (index=3):(Active: 139.885ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 139.716ms - CloseTime: 54.802us - GetBlockTime: 125.461ms - OpenTime: 3.790us - PrepareTime: 104.942us - SinkTime: 12.952ms - GetBlockCounter: 527 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 139.562ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 617.994us DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 430.68 KB - CloseTime: 26.487us - CompressTime: 0ns - ExecTime: 12.863ms - InputRows: 10.31K (10310) - LocalBytesSent: 164.63 KB - LocalSendTime: 51.421us - LocalSentRows: 1.798K (1798) - MemoryUsage: - PeakMemoryUsage: 1.20 MB - MergeBlockTime: 0ns - OpenTime: 52.93us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s249ms - RowsProduced: 10.31K (10310) - RpcAvgTime: 1s246ms - RpcCount: 10 - RpcMaxTime: 1s247ms - RpcMinTime: 1s245ms - RpcSumTime: 12s466ms - SerializeBatchTime: 1.211ms - SplitBlockDistributeByChannelTime: 7.26ms - SplitBlockHashComputeTime: 1.408ms - UncompressedRowBatchSize: 796.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=221): - BlocksProduced: 525 - BuildOutputBlock: 0ns - CloseTime: 22.290us - ExecTime: 123.403ms - InitProbeSideTime: 40.994ms - JoinFilterTimer: 68.511us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 10.536us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 89.602us - ProbeFindNextTime: 0ns - ProbeRows: 2.132623M (2132623) - ProbeTime: 119.667ms - ProbeWhenBuildSideOutputTime: 8.817ms - ProbeWhenProbeSideOutputTime: 1.491ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 62.468ms - ProjectionTime: 2.96ms - RowsProduced: 10.31K (10310) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 5s535ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 526 - CloseTime: 0ns - ExecTime: 1.515ms - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 45.93 MB - OpenTime: 687ns - ProjectionTime: 0ns - RowsProduced: 2.132623M (2132623) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 867.453ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.337ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.758ms - CloseTime: 34.175us - GetBlockTime: 561.715us - OpenTime: 311.131us - PrepareTime: 223.715us - SinkTime: 745.957us - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.287ms - WaitBfTime: 775.431ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 222.335ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 715.566us - InputRows: 876.719K (876719) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.248us - 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22113] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.961us - BlocksProduced: 216 - CloseTime: 31.241us - ExecTime: 244.249ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 442.39us - ProcessConjunctTime: 49.365us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 145.205ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 243.242ms - 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 = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [93.601ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [145.205ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 92.612ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.925ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.986us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 81.536ms - ScannerCtxSchedTime: 145.201ms - ScannerFilterTime: 208.357us - ScannerGetBlockTime: 93.271ms - ScannerInitTime: 220.669us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 344ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.712us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 9.500us - BlockInitTime: 2.111ms - BlockLoadTime: 95.339ms - BlocksLoad: 217 - CachedPagesNum: 364 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 639.836us - FirstReadTime: 89.592ms - IOTimer: 0ns - InvertedIndexFilterTime: 762ns - 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: 80.312us - OutputIndexResultColumnTimer: 40.706us - 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=4):(Active: 4.480ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 4.138ms - CloseTime: 54.769us - GetBlockTime: 1.646ms - OpenTime: 99.196us - PrepareTime: 178.842us - SinkTime: 2.36ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.405ms - WaitBfTime: 775.756ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.867ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.932ms - InputRows: 3.389621M (3389621) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.181us - 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22621] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.297us - BlocksProduced: 836 - CloseTime: 50.771us - ExecTime: 278.682ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 195.929us - ProcessConjunctTime: 19.429us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 153.849ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 276.876ms - 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 = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [212.450ms, 214.715ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [79.450ms, 74.399ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 399.287ms - MemoryUsage: - FreeBlocks: 20.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.133ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.215us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 158.240ms - ScannerCtxSchedTime: 153.838ms - ScannerFilterTime: 25.220ms - ScannerGetBlockTime: 401.444ms - ScannerInitTime: 52.824us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 3.3us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.602us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 24.771us - BlockInitTime: 164.884us - BlockLoadTime: 399.908ms - BlocksLoad: 838 - CachedPagesNum: 579 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 976.309us - FirstReadTime: 307.172ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.616us - 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: 285.385us - OutputIndexResultColumnTimer: 118.141us - 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 Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 171.723ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 171.636ms - CloseTime: 17.783us - GetBlockTime: 1.213ms - OpenTime: 2.577us - PrepareTime: 56.744us - SinkTime: 170.80ms - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 21 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 64.357ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.774ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 40.658us - BuildRows: 180.832K (180832) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 144.778ms - BuildTableInsertTime: 18.68ms - BuildTableTime: 18.282ms - CloseTime: 0ns - ExecTime: 170.53ms - InputRows: 180.831K (180831) - MemoryUsage: - BuildBlocks: 17.32 MB - BuildKeyArena: 5.52 MB - HashTable: 1.69 MB - PeakMemoryUsage: 24.53 MB - OpenTime: 19.968us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.492us - RuntimeFilterComputeTime: 6.738ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=219): - BlocksProduced: 46 - BytesReceived: 2.18 MB - CloseTime: 13.46us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.463ms - ExecTime: 1.194ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.24 MB - MemoryUsage: - Blocks: 12.84 MB - PeakMemoryUsage: 4.21 MB - OpenTime: 19.302us - ProjectionTime: 0ns - RowsProduced: 180.831K (180831) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s135ms PipelineXTask (index=5):(Active: 205.911us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 114.920us - CloseTime: 9.424us - GetBlockTime: 0ns - OpenTime: 1.810us - PrepareTime: 74.555us - SinkTime: 94.840us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 188.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 151.29us HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8507 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 124.914us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.904us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 6s403ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.707us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.97us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.680us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 204.292ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 204.117ms - CloseTime: 36.778us - GetBlockTime: 152.206ms - OpenTime: 5.468us - PrepareTime: 124.486us - SinkTime: 50.378ms - GetBlockCounter: 410 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 10 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 100.817ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.718ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 56.26 KB - CloseTime: 15.101us - CompressTime: 0ns - ExecTime: 50.314ms - InputRows: 6.083K (6083) - LocalBytesSent: 459.83 KB - LocalSendTime: 72.417us - LocalSentRows: 5.019K (5019) - MemoryUsage: - PeakMemoryUsage: 769.00 KB - MergeBlockTime: 0ns - OpenTime: 73.806us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.311ms - RowsProduced: 6.083K (6083) - RpcAvgTime: 64.214ms - RpcCount: 2 - RpcMaxTime: 64.619ms - RpcMinTime: 63.809ms - RpcSumTime: 128.428ms - SerializeBatchTime: 174.941us - SplitBlockDistributeByChannelTime: 5.573ms - SplitBlockHashComputeTime: 42.120ms - UncompressedRowBatchSize: 99.83 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 405 - BuildOutputBlock: 0ns - CloseTime: 18.630us - ExecTime: 149.958ms - InitProbeSideTime: 68.600ms - JoinFilterTimer: 58.89us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 13.681us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 61.890us - ProbeFindNextTime: 0ns - ProbeRows: 1.63387M (1633870) - ProbeTime: 146.130ms - ProbeWhenBuildSideOutputTime: 5.239ms - ProbeWhenProbeSideOutputTime: 883.956us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 66.269ms - ProjectionTime: 2.421ms - RowsProduced: 6.083K (6083) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s137ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 405 - CloseTime: 0ns - ExecTime: 1.720ms - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 17.59 MB - OpenTime: 752ns - ProjectionTime: 0ns - RowsProduced: 1.63387M (1633870) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s193ms PipelineXTask (index=3):(Active: 192.514ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 192.347ms - CloseTime: 46.374us - GetBlockTime: 181.744ms - OpenTime: 5.197us - PrepareTime: 109.474us - SinkTime: 9.164ms - GetBlockCounter: 410 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 10 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 102.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.618ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 55.49 KB - CloseTime: 18.474us - CompressTime: 0ns - ExecTime: 9.91ms - InputRows: 6.38K (6380) - LocalBytesSent: 490.81 KB - LocalSendTime: 71.578us - LocalSentRows: 5.355K (5355) - MemoryUsage: - PeakMemoryUsage: 888.50 KB - MergeBlockTime: 0ns - OpenTime: 58.460us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.176ms - RowsProduced: 6.38K (6380) - RpcAvgTime: 64.621ms - RpcCount: 2 - RpcMaxTime: 64.880ms - RpcMinTime: 64.362ms - RpcSumTime: 129.243ms - SerializeBatchTime: 212.127us - SplitBlockDistributeByChannelTime: 5.458ms - SplitBlockHashComputeTime: 1.106ms - UncompressedRowBatchSize: 96.19 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 405 - BuildOutputBlock: 0ns - CloseTime: 24.491us - ExecTime: 169.154ms - InitProbeSideTime: 34.934ms - JoinFilterTimer: 59.880us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 13.132us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 60.622us - ProbeFindNextTime: 0ns - ProbeRows: 1.626535M (1626535) - ProbeTime: 165.949ms - ProbeWhenBuildSideOutputTime: 5.610ms - ProbeWhenProbeSideOutputTime: 881.610us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 108.491ms - ProjectionTime: 1.913ms - RowsProduced: 6.38K (6380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s138ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 405 - CloseTime: 0ns - ExecTime: 12.54ms - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 17.64 MB - OpenTime: 612ns - ProjectionTime: 0ns - RowsProduced: 1.626535M (1626535) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s210ms PipelineXTask (index=6):(Active: 141.405ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 141.230ms - CloseTime: 34.723us - GetBlockTime: 107.477ms - OpenTime: 4.510us - PrepareTime: 128.750us - SinkTime: 7.760ms - GetBlockCounter: 408 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 10 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 78.218ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.960ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 52.07 KB - CloseTime: 15.870us - CompressTime: 0ns - ExecTime: 7.714ms - InputRows: 6.023K (6023) - LocalBytesSent: 463.02 KB - LocalSendTime: 110.747us - LocalSentRows: 5.053K (5053) - MemoryUsage: - PeakMemoryUsage: 751.50 KB - MergeBlockTime: 0ns - OpenTime: 77.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.337ms - RowsProduced: 6.023K (6023) - RpcAvgTime: 64.183ms - RpcCount: 2 - RpcMaxTime: 64.190ms - RpcMinTime: 64.175ms - RpcSumTime: 128.366ms - SerializeBatchTime: 233.614us - SplitBlockDistributeByChannelTime: 4.556ms - SplitBlockHashComputeTime: 914.492us - UncompressedRowBatchSize: 91.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 403 - BuildOutputBlock: 0ns - CloseTime: 15.405us - ExecTime: 83.598ms - InitProbeSideTime: 33.636ms - JoinFilterTimer: 46.392us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.757us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 58.410us - ProbeFindNextTime: 0ns - ProbeRows: 1.622239M (1622239) - ProbeTime: 80.953ms - ProbeWhenBuildSideOutputTime: 4.295ms - ProbeWhenProbeSideOutputTime: 770.594us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.45ms - ProjectionTime: 1.446ms - RowsProduced: 6.023K (6023) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s137ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 403 - CloseTime: 0ns - ExecTime: 23.439ms - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 15.91 MB - OpenTime: 852ns - ProjectionTime: 0ns - RowsProduced: 1.622239M (1622239) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s260ms PipelineXTask (index=9):(Active: 215.653ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 215.474ms - CloseTime: 29.745us - GetBlockTime: 191.637ms - OpenTime: 5.478us - PrepareTime: 137.109us - SinkTime: 22.366ms - GetBlockCounter: 408 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 11 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 107.24ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.341ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 58.26 KB - CloseTime: 9.497us - CompressTime: 0ns - ExecTime: 22.304ms - InputRows: 6.548K (6548) - LocalBytesSent: 499.53 KB - LocalSendTime: 98.556us - LocalSentRows: 5.45K (5450) - MemoryUsage: - PeakMemoryUsage: 936.50 KB - MergeBlockTime: 0ns - OpenTime: 74.225us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.681ms - RowsProduced: 6.548K (6548) - RpcAvgTime: 64.307ms - RpcCount: 2 - RpcMaxTime: 64.352ms - RpcMinTime: 64.261ms - RpcSumTime: 128.614ms - SerializeBatchTime: 191.541us - SplitBlockDistributeByChannelTime: 18.412ms - SplitBlockHashComputeTime: 1.200ms - UncompressedRowBatchSize: 103.05 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 403 - BuildOutputBlock: 0ns - CloseTime: 18.557us - ExecTime: 176.949ms - InitProbeSideTime: 46.506ms - JoinFilterTimer: 66.135us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 15.477us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 72.351us - ProbeFindNextTime: 0ns - ProbeRows: 1.61432M (1614320) - ProbeTime: 173.725ms - ProbeWhenBuildSideOutputTime: 27.184ms - ProbeWhenProbeSideOutputTime: 981.622us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 56.87ms - ProjectionTime: 1.859ms - RowsProduced: 6.548K (6548) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s138ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 403 - CloseTime: 0ns - ExecTime: 14.86ms - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 21.25 MB - OpenTime: 621ns - ProjectionTime: 0ns - RowsProduced: 1.61432M (1614320) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s175ms PipelineXTask (index=12):(Active: 171.556ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 171.417ms - CloseTime: 24.896us - GetBlockTime: 159.822ms - OpenTime: 5.869us - PrepareTime: 101.981us - SinkTime: 10.175ms - GetBlockCounter: 409 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 103.39ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.51ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 55.54 KB - CloseTime: 8.751us - CompressTime: 0ns - ExecTime: 10.87ms - InputRows: 6.386K (6386) - LocalBytesSent: 490.53 KB - LocalSendTime: 75.256us - LocalSentRows: 5.351K (5351) - MemoryUsage: - PeakMemoryUsage: 884.50 KB - MergeBlockTime: 0ns - OpenTime: 55.177us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.283ms - RowsProduced: 6.386K (6386) - RpcAvgTime: 64.378ms - RpcCount: 2 - RpcMaxTime: 64.790ms - RpcMinTime: 63.967ms - RpcSumTime: 128.757ms - SerializeBatchTime: 167.116us - SplitBlockDistributeByChannelTime: 6.424ms - SplitBlockHashComputeTime: 1.171ms - UncompressedRowBatchSize: 97.20 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 400 - BuildOutputBlock: 0ns - CloseTime: 13.977us - ExecTime: 157.777ms - InitProbeSideTime: 55.873ms - JoinFilterTimer: 73.757us - MemoryUsage: - PeakMemoryUsage: 384.00 KB - ProbeKeyArena: 384.00 KB - OpenTime: 12.856us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 67.0us - ProbeFindNextTime: 0ns - ProbeRows: 1.611857M (1611857) - ProbeTime: 154.415ms - ProbeWhenBuildSideOutputTime: 5.327ms - ProbeWhenProbeSideOutputTime: 894.797us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 87.230ms - ProjectionTime: 2.46ms - RowsProduced: 6.386K (6386) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s137ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 403 - CloseTime: 0ns - ExecTime: 1.460ms - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 21.20 MB - OpenTime: 564ns - ProjectionTime: 0ns - RowsProduced: 1.611857M (1611857) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s229ms PipelineXTask (index=15):(Active: 207.427ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 207.195ms - CloseTime: 78.838us - GetBlockTime: 197.388ms - OpenTime: 4.498us - PrepareTime: 141.632us - SinkTime: 8.552ms - GetBlockCounter: 405 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 97.654ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.589ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 53.88 KB - CloseTime: 46.220us - CompressTime: 0ns - ExecTime: 8.538ms - InputRows: 5.891K (5891) - LocalBytesSent: 447.23 KB - LocalSendTime: 81.160us - LocalSentRows: 4.88K (4880) - MemoryUsage: - PeakMemoryUsage: 709.50 KB - MergeBlockTime: 0ns - OpenTime: 80.819us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 65.870ms - RowsProduced: 5.891K (5891) - RpcAvgTime: 61.108ms - RpcCount: 2 - RpcMaxTime: 61.151ms - RpcMinTime: 61.64ms - RpcSumTime: 122.216ms - SerializeBatchTime: 179.741us - SplitBlockDistributeByChannelTime: 5.91ms - SplitBlockHashComputeTime: 1.23ms - UncompressedRowBatchSize: 94.96 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 401 - BuildOutputBlock: 0ns - CloseTime: 26.534us - ExecTime: 195.463ms - InitProbeSideTime: 45.9ms - JoinFilterTimer: 57.33us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 15.723us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 57.520us - ProbeFindNextTime: 0ns - ProbeRows: 1.609143M (1609143) - ProbeTime: 118.339ms - ProbeWhenBuildSideOutputTime: 17.951ms - ProbeWhenProbeSideOutputTime: 881.744us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 49.466ms - ProjectionTime: 75.821ms - RowsProduced: 5.891K (5891) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s142ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 401 - CloseTime: 0ns - ExecTime: 1.401ms - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 24.01 MB - OpenTime: 838ns - ProjectionTime: 0ns - RowsProduced: 1.609143M (1609143) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s175ms PipelineXTask (index=18):(Active: 138.159ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 137.955ms - CloseTime: 39.267us - GetBlockTime: 128.838ms - OpenTime: 3.38us - PrepareTime: 156.385us - SinkTime: 8.33ms - GetBlockCounter: 407 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 80.613ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.63ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 54.30 KB - CloseTime: 11.173us - CompressTime: 0ns - ExecTime: 8.19ms - InputRows: 5.968K (5968) - LocalBytesSent: 450.81 KB - LocalSendTime: 97.667us - LocalSentRows: 4.92K (4920) - MemoryUsage: - PeakMemoryUsage: 689.50 KB - MergeBlockTime: 0ns - OpenTime: 104.232us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.987ms - RowsProduced: 5.968K (5968) - RpcAvgTime: 64.514ms - RpcCount: 2 - RpcMaxTime: 64.559ms - RpcMinTime: 64.468ms - RpcSumTime: 129.28ms - SerializeBatchTime: 202.200us - SplitBlockDistributeByChannelTime: 4.886ms - SplitBlockHashComputeTime: 844.890us - UncompressedRowBatchSize: 98.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 400 - BuildOutputBlock: 0ns - CloseTime: 26.194us - ExecTime: 127.97ms - InitProbeSideTime: 44.113ms - JoinFilterTimer: 38.457us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 15.646us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 50.189us - ProbeFindNextTime: 0ns - ProbeRows: 1.601869M (1601869) - ProbeTime: 124.466ms - ProbeWhenBuildSideOutputTime: 4.230ms - ProbeWhenProbeSideOutputTime: 768.44us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 62.639ms - ProjectionTime: 1.504ms - RowsProduced: 5.968K (5968) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s138ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 400 - CloseTime: 0ns - ExecTime: 1.310ms - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 14.61 MB - OpenTime: 904ns - ProjectionTime: 0ns - RowsProduced: 1.601869M (1601869) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s255ms PipelineXTask (index=21):(Active: 100.417ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 100.200ms - CloseTime: 25.176us - GetBlockTime: 90.574ms - OpenTime: 3.431us - PrepareTime: 179.751us - SinkTime: 8.444ms - GetBlockCounter: 418 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 85.708ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.603ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 60.40 KB - CloseTime: 8.62us - CompressTime: 0ns - ExecTime: 8.437ms - InputRows: 6.605K (6605) - LocalBytesSent: 491.18 KB - LocalSendTime: 116.532us - LocalSentRows: 5.36K (5360) - MemoryUsage: - PeakMemoryUsage: 936.50 KB - MergeBlockTime: 0ns - OpenTime: 130.782us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.877ms - RowsProduced: 6.605K (6605) - RpcAvgTime: 64.486ms - RpcCount: 2 - RpcMaxTime: 64.568ms - RpcMinTime: 64.405ms - RpcSumTime: 128.973ms - SerializeBatchTime: 293.232us - SplitBlockDistributeByChannelTime: 5.66ms - SplitBlockHashComputeTime: 861.750us - UncompressedRowBatchSize: 116.74 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 399 - BuildOutputBlock: 0ns - CloseTime: 15.335us - ExecTime: 88.374ms - InitProbeSideTime: 29.190ms - JoinFilterTimer: 30.54us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 12.420us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 60.4us - ProbeFindNextTime: 0ns - ProbeRows: 1.594166M (1594166) - ProbeTime: 85.627ms - ProbeWhenBuildSideOutputTime: 4.570ms - ProbeWhenProbeSideOutputTime: 814.631us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 44.430ms - ProjectionTime: 1.572ms - RowsProduced: 6.605K (6605) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s136ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 399 - CloseTime: 0ns - ExecTime: 1.703ms - GetBlockFailedTime: 19 - MemoryUsage: - PeakMemoryUsage: 12.84 MB - OpenTime: 719ns - ProjectionTime: 0ns - RowsProduced: 1.594166M (1594166) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s299ms PipelineXTask (index=24):(Active: 135.65ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 134.901ms - CloseTime: 22.574us - GetBlockTime: 122.774ms - OpenTime: 3.217us - PrepareTime: 133.271us - SinkTime: 10.588ms - GetBlockCounter: 406 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 13 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 103.305ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.938ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 59.50 KB - CloseTime: 6.745us - CompressTime: 0ns - ExecTime: 10.496ms - InputRows: 6.47K (6470) - LocalBytesSent: 487.55 KB - LocalSendTime: 138.729us - LocalSentRows: 5.32K (5320) - MemoryUsage: - PeakMemoryUsage: 899.00 KB - MergeBlockTime: 0ns - OpenTime: 66.295us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 71.461ms - RowsProduced: 6.47K (6470) - RpcAvgTime: 64.972ms - RpcCount: 2 - RpcMaxTime: 65.53ms - RpcMinTime: 64.891ms - RpcSumTime: 129.944ms - SerializeBatchTime: 315.687us - SplitBlockDistributeByChannelTime: 6.338ms - SplitBlockHashComputeTime: 1.196ms - UncompressedRowBatchSize: 107.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 397 - BuildOutputBlock: 0ns - CloseTime: 14.220us - ExecTime: 116.955ms - InitProbeSideTime: 45.321ms - JoinFilterTimer: 55.854us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 17.83us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 63.787us - ProbeFindNextTime: 0ns - ProbeRows: 1.594629M (1594629) - ProbeTime: 113.599ms - ProbeWhenBuildSideOutputTime: 16.915ms - ProbeWhenProbeSideOutputTime: 891.278us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.288ms - ProjectionTime: 1.994ms - RowsProduced: 6.47K (6470) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s137ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 398 - CloseTime: 0ns - ExecTime: 5.180ms - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 15.20 MB - OpenTime: 731ns - ProjectionTime: 0ns - RowsProduced: 1.594629M (1594629) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s254ms PipelineXTask (index=27):(Active: 118.111ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 117.831ms - CloseTime: 139.34us - GetBlockTime: 108.403ms - OpenTime: 5.362us - PrepareTime: 127.798us - SinkTime: 7.955ms - GetBlockCounter: 407 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 95.842ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.232ms DATA_STREAM_SINK_OPERATOR (id=222,dst_id=222): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 54.05 KB - CloseTime: 16.196us - CompressTime: 0ns - ExecTime: 7.890ms - InputRows: 6.062K (6062) - LocalBytesSent: 463.49 KB - LocalSendTime: 77.878us - LocalSentRows: 5.058K (5058) - MemoryUsage: - PeakMemoryUsage: 717.00 KB - MergeBlockTime: 0ns - OpenTime: 70.763us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 72.340ms - RowsProduced: 6.062K (6062) - RpcAvgTime: 66.864ms - RpcCount: 2 - RpcMaxTime: 67.282ms - RpcMinTime: 66.447ms - RpcSumTime: 133.729ms - SerializeBatchTime: 178.297us - SplitBlockDistributeByChannelTime: 4.356ms - SplitBlockHashComputeTime: 1.57ms - UncompressedRowBatchSize: 94.34 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 397 - BuildOutputBlock: 0ns - CloseTime: 119.148us - ExecTime: 105.781ms - InitProbeSideTime: 52.416ms - JoinFilterTimer: 52.348us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 16.251us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 64.859us - ProbeFindNextTime: 0ns - ProbeRows: 1.592816M (1592816) - ProbeTime: 102.526ms - ProbeWhenBuildSideOutputTime: 5.10ms - ProbeWhenProbeSideOutputTime: 875.501us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 39.327ms - ProjectionTime: 1.792ms - RowsProduced: 6.062K (6062) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s136ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 398 - CloseTime: 0ns - ExecTime: 2.160ms - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 12.47 MB - OpenTime: 620ns - ProjectionTime: 0ns - RowsProduced: 1.592816M (1592816) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s221ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 5.95ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 4.675ms - CloseTime: 116.979us - GetBlockTime: 2.979ms - OpenTime: 87.69us - PrepareTime: 191.239us - SinkTime: 979.771us - GetBlockCounter: 540 - NumBlockedBySinkTimes: 158 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 171 - NumScheduleTimes: 171 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.830ms - WaitBfTime: 813.337ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 283.437ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 902.227us - InputRows: 2.166912M (2166912) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.577us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.66us - BlocksProduced: 540 - CloseTime: 114.43us - ExecTime: 415.520ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 194.154us - ProcessConjunctTime: 18.694us - ProjectionTime: 0ns - RowsProduced: 2.166912M (2166912) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 289.853ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 412.303ms - 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: 1.864435M (1864435) - expr_input_rows: 2.840241M (2840241) 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: 2.253155M (2253155) - expr_input_rows: 2.632977M (2632977) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [204.055ms, 332.101ms, 318.506ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [110.129ms, 125.700ms, 54.023ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 466.964ms - MemoryUsage: - FreeBlocks: 30.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.769ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 18.536us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 510.695ms - ScannerCtxSchedTime: 289.840ms - ScannerFilterTime: 384.16ms - ScannerGetBlockTime: 469.973ms - ScannerInitTime: 39.908us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 12 SegmentIterator: - BitmapIndexFilterTimer: 4.683us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.477us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 21.934us - BlockInitTime: 207.176us - BlockLoadTime: 467.853ms - 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.272ms - FirstReadTime: 456.895ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.964us - 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: 317.386us - OutputIndexResultColumnTimer: 176.505us - 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.201ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 4.627ms - CloseTime: 109.371us - GetBlockTime: 2.986ms - OpenTime: 258.15us - PrepareTime: 176.768us - SinkTime: 699.837us - GetBlockCounter: 346 - NumBlockedBySinkTimes: 189 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 203 - NumScheduleTimes: 203 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.910ms - WaitBfTime: 816.781ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 314.961ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 642.735us - InputRows: 1.370062M (1370062) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.212us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.902us - BlocksProduced: 346 - CloseTime: 105.573us - ExecTime: 547.527ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 355.246us - ProcessConjunctTime: 62.268us - ProjectionTime: 0ns - RowsProduced: 1.370062M (1370062) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 202.852ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 544.135ms - 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: 2.469519M (2469519) - expr_input_rows: 3.637314M (3637314) 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: 2.95452M (2954520) - expr_input_rows: 3.43005M (3430050) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [472.520ms, 525.632ms, 60.866ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [43.479ms, 49.162ms, 110.210ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 501.848ms - MemoryUsage: - FreeBlocks: 24.11 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.24ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.758us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 645.210ms - ScannerCtxSchedTime: 202.837ms - ScannerFilterTime: 553.134ms - ScannerGetBlockTime: 505.214ms - ScannerInitTime: 143.289us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 13 SegmentIterator: - BitmapIndexFilterTimer: 3.413us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.466us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 21.227us - BlockInitTime: 189.34us - BlockLoadTime: 502.933ms - 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.639ms - FirstReadTime: 485.888ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.611us - 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: 367.253us - OutputIndexResultColumnTimer: 187.359us - 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: 4.234ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 3.824ms - CloseTime: 117.676us - GetBlockTime: 2.574ms - OpenTime: 82.302us - PrepareTime: 186.32us - SinkTime: 730.223us - GetBlockCounter: 450 - NumBlockedBySinkTimes: 95 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 104 - NumScheduleTimes: 104 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.16ms - WaitBfTime: 811.308ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.549ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 666.287us - InputRows: 1.81075M (1810750) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.127us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.901us - BlocksProduced: 450 - CloseTime: 113.131us - ExecTime: 351.24ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 168.300us - ProcessConjunctTime: 10.337us - ProjectionTime: 0ns - RowsProduced: 1.81075M (1810750) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 163.300ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 348.227ms - 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: 1.54455M (1544550) - expr_input_rows: 1.869309M (1869309) 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: 1.601985M (1601985) - expr_input_rows: 1.662043M (1662043) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [275.392ms, 114.046ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [48.663ms, 114.636ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 240.235ms - MemoryUsage: - FreeBlocks: 20.19 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 28.432ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 15.720us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 251.451ms - ScannerCtxSchedTime: 163.290ms - ScannerFilterTime: 145.731ms - ScannerGetBlockTime: 243.277ms - ScannerInitTime: 48.996us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 3.976us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.852us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 43.153us - BlockInitTime: 276.326us - BlockLoadTime: 269.131ms - BlocksLoad: 865 - CachedPagesNum: 539 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.714K (1714) - FirstReadSeekTime: 28.909ms - FirstReadTime: 251.804ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.542us - 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.39us - OutputIndexResultColumnTimer: 122.206us - 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: 5.823ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 5.324ms - CloseTime: 102.616us - GetBlockTime: 3.278ms - OpenTime: 147.948us - PrepareTime: 204.915us - SinkTime: 1.20ms - GetBlockCounter: 465 - NumBlockedBySinkTimes: 284 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 292 - NumScheduleTimes: 292 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.468ms - WaitBfTime: 817.1ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 340.683ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 951.867us - InputRows: 1.874117M (1874117) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.267us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.15us - BlocksProduced: 465 - CloseTime: 98.842us - ExecTime: 292.830ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 274.179us - ProcessConjunctTime: 23.277us - ProjectionTime: 0ns - RowsProduced: 1.874117M (1874117) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 168.265ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 289.252ms - 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: 1.47386M (1473860) - expr_input_rows: 1.805886M (1805886) 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: 1.534965M (1534965) - expr_input_rows: 1.598618M (1598618) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [156.523ms, 235.229ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [121.363ms, 46.902ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 241.703ms - MemoryUsage: - FreeBlocks: 22.33 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.155ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 17.211us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 245.103ms - ScannerCtxSchedTime: 168.256ms - ScannerFilterTime: 147.469ms - ScannerGetBlockTime: 243.891ms - ScannerInitTime: 100.383us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 3.227us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.947us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 34.838us - BlockInitTime: 209.865us - BlockLoadTime: 242.717ms - BlocksLoad: 863 - CachedPagesNum: 537 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.716K (1716) - FirstReadSeekTime: 1.165ms - FirstReadTime: 232.413ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.779us - 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: 162.102us - OutputIndexResultColumnTimer: 104.834us - 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: 2.215ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 1.901ms - CloseTime: 44.672us - GetBlockTime: 1.135ms - OpenTime: 49.836us - PrepareTime: 203.601us - SinkTime: 427.476us - GetBlockCounter: 182 - NumBlockedBySinkTimes: 96 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 107 - NumScheduleTimes: 107 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.89ms - WaitBfTime: 811.372ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 141.847ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 401.100us - InputRows: 716.325K (716325) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.125us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.94us - BlocksProduced: 182 - CloseTime: 41.718us - ExecTime: 636.266ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.525us - ProcessConjunctTime: 9.574us - ProjectionTime: 0ns - RowsProduced: 716.325K (716325) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 145.92ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 634.962ms - 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: 580.241K (580241) - expr_input_rows: 1.751795M (1751795) 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: 1.064622M (1064622) - expr_input_rows: 1.544531M (1544531) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [483.553ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [145.092ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 141.62ms - MemoryUsage: - FreeBlocks: 11.55 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.398ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.635us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 318.662ms - ScannerCtxSchedTime: 145.79ms - ScannerFilterTime: 340.595ms - ScannerGetBlockTime: 142.618ms - ScannerInitTime: 21.801us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - BitmapIndexFilterTimer: 1.158us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.30us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.310us - BlockInitTime: 54.380us - BlockLoadTime: 142.34ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 1.87ms - FirstReadTime: 137.790ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.291us - 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: 200.953us - OutputIndexResultColumnTimer: 85.593us - 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: 2.414ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 2.48ms - CloseTime: 64.971us - GetBlockTime: 982.306us - OpenTime: 85.736us - PrepareTime: 197.3us - SinkTime: 669.186us - GetBlockCounter: 182 - NumBlockedBySinkTimes: 104 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 115 - NumScheduleTimes: 115 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.253ms - WaitBfTime: 815.718ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 79.288ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 634.576us - InputRows: 716.343K (716343) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.248us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.954us - BlocksProduced: 182 - CloseTime: 60.845us - ExecTime: 513.558ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 206.92us - ProcessConjunctTime: 20.623us - ProjectionTime: 0ns - RowsProduced: 716.343K (716343) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 99.278ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 512.340ms - 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: 580.361K (580361) - expr_input_rows: 1.751785M (1751785) 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: 1.065764M (1065764) - expr_input_rows: 1.544521M (1544521) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [408.160ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [99.278ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 128.985ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 956.601us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 7.237us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 305.540ms - ScannerCtxSchedTime: 99.273ms - ScannerFilterTime: 277.371ms - ScannerGetBlockTime: 130.450ms - ScannerInitTime: 46.922us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - BitmapIndexFilterTimer: 759ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.710us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.233us - BlockInitTime: 51.500us - BlockLoadTime: 129.577ms - BlocksLoad: 558 - CachedPagesNum: 870 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 828.602us - FirstReadTime: 124.218ms - IOTimer: 0ns - InvertedIndexFilterTime: 878ns - 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: 185.68us - OutputIndexResultColumnTimer: 75.278us - 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: 1.582ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 1.196ms - CloseTime: 69.668us - GetBlockTime: 759.814us - OpenTime: 93.100us - PrepareTime: 207.43us - SinkTime: 111.341us - GetBlockCounter: 60 - NumBlockedBySinkTimes: 101 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 108 - NumScheduleTimes: 108 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.432ms - WaitBfTime: 816.31ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.794ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 100.633us - InputRows: 233.415K (233415) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.235us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.431us - BlocksProduced: 60 - CloseTime: 66.386us - ExecTime: 352.360ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 203.757us - ProcessConjunctTime: 35.85us - ProjectionTime: 0ns - RowsProduced: 233.415K (233415) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 40.888ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 351.342ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 64, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 82.994K (82994) - expr_input_rows: 414.528K (414528) 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: 464.556K (464556) - expr_input_rows: 645.079K (645079) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [284.613ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [40.888ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 204.479ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.455ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.491us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 154.117ms - ScannerCtxSchedTime: 40.883ms - ScannerFilterTime: 79.319ms - ScannerGetBlockTime: 205.155ms - ScannerInitTime: 35.835us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 470ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.60us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 9.223us - BlockInitTime: 45.451us - BlockLoadTime: 227.590ms - BlocksLoad: 217 - CachedPagesNum: 363 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 22.820ms - FirstReadTime: 226.285ms - IOTimer: 0ns - InvertedIndexFilterTime: 677ns - 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: 97.897us - OutputIndexResultColumnTimer: 46.601us - 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=22):(Active: 4.496ms, % non-child: 0.00%) - CoreChangeTimes: 22 - ExecuteTime: 4.110ms - CloseTime: 91.444us - GetBlockTime: 2.612ms - OpenTime: 54.872us - PrepareTime: 218.953us - SinkTime: 847.470us - GetBlockCounter: 575 - NumBlockedBySinkTimes: 121 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 130 - NumScheduleTimes: 130 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.278ms - WaitBfTime: 816.215ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 204.639ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 775.531us - InputRows: 2.325149M (2325149) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.163us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.294us - BlocksProduced: 575 - CloseTime: 87.681us - ExecTime: 408.6ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 199.960us - ProcessConjunctTime: 11.805us - ProjectionTime: 0ns - RowsProduced: 2.325149M (2325149) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 257.779ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 405.174ms - 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: 946.681K (946681) - expr_input_rows: 1.273572M (1273572) 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: 1.004883M (1004883) - expr_input_rows: 1.065602M (1065602) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [296.573ms, 299.172ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [123.901ms, 133.878ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 474.974ms - MemoryUsage: - FreeBlocks: 21.78 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 986.352us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 19.61us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 194.645ms - ScannerCtxSchedTime: 257.771ms - ScannerFilterTime: 118.911ms - ScannerGetBlockTime: 476.489ms - ScannerInitTime: 24.982us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 2.944us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.433us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 21.883us - BlockInitTime: 154.40us - BlockLoadTime: 475.427ms - BlocksLoad: 838 - CachedPagesNum: 578 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 74.952ms - FirstReadTime: 389.187ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.371us - 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.424us - OutputIndexResultColumnTimer: 81.396us - 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=25):(Active: 6.939ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 6.440ms - CloseTime: 146.364us - GetBlockTime: 4.273ms - OpenTime: 149.79us - PrepareTime: 177.204us - SinkTime: 1.154ms - GetBlockCounter: 728 - NumBlockedBySinkTimes: 208 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 218 - NumScheduleTimes: 218 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.619ms - WaitBfTime: 826.877ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.720ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.68ms - InputRows: 2.93893M (2938930) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.129us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.994us - BlocksProduced: 728 - CloseTime: 143.263us - ExecTime: 268.27ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 228.976us - ProcessConjunctTime: 32.125us - ProjectionTime: 0ns - RowsProduced: 2.93893M (2938930) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 329.942ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 263.463ms - 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: 1.815595M (1815595) - expr_input_rows: 2.245763M (2245763) 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: 1.925722M (1925722) - expr_input_rows: 2.038499M (2038499) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [215.592ms, 198.633ms, 109.398ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [140.887ms, 135.511ms, 53.543ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 354.28ms - MemoryUsage: - FreeBlocks: 36.78 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.375ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.517us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 299.590ms - ScannerCtxSchedTime: 329.931ms - ScannerFilterTime: 156.412ms - ScannerGetBlockTime: 366.651ms - ScannerInitTime: 86.674us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 4.403us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 17.909us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 44.101us - BlockInitTime: 317.481us - BlockLoadTime: 364.582ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 851 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 1.659ms - FirstReadTime: 329.147ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.145us - 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: 263.586us - OutputIndexResultColumnTimer: 136.301us - 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=28):(Active: 5.321ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 4.844ms - CloseTime: 94.667us - GetBlockTime: 3.124ms - OpenTime: 209.257us - PrepareTime: 160.9us - SinkTime: 923.495us - GetBlockCounter: 487 - NumBlockedBySinkTimes: 55 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 66 - NumScheduleTimes: 66 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.89ms - WaitBfTime: 831.213ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 364.753ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 839.534us - InputRows: 1.949441M (1949441) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.136us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 11s95ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 18.182us - BlocksProduced: 487 - CloseTime: 91.265us - ExecTime: 418.261ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 293.131us - ProcessConjunctTime: 23.350us - ProjectionTime: 0ns - RowsProduced: 1.949441M (1949441) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 232.623ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 414.818ms - 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: 2.694715M (2694715) - expr_input_rows: 3.239264M (3239264) 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: 2.859375M (2859375) - expr_input_rows: 3.027936M (3027936) RuntimeFilter: (id = 66, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax - always_true: 1 - expr_filtered_rows: 131 - expr_input_rows: 4.15482M (4154820) RuntimeFilter: (id = 67, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 2 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 - always_true: 0 - expr_filtered_rows: 19.148975M (19148975) - expr_input_rows: 19.189852M (19189852) RuntimeFilter: (id = 70, 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: 12.97054M (12970540) - expr_input_rows: 19.550971M (19550971) RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 - always_true: 0 - expr_filtered_rows: 17.720694M (17720694) - expr_input_rows: 17.91544M (17915440) VScanner: - ReadColumns: [CUS_ID, UNIONID] - PerScannerRunningTime: [445.590ms, 343.927ms, 32.310ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [55.002ms, 59.822ms, 117.799ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 400.167ms - MemoryUsage: - FreeBlocks: 26.74 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.26ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 19.687us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 463.683ms - ScannerCtxSchedTime: 232.613ms - ScannerFilterTime: 415.851ms - ScannerGetBlockTime: 405.279ms - ScannerInitTime: 136.789us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 5.64us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 20.990us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 74.591us - BlockInitTime: 384.12us - BlockLoadTime: 402.622ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 862 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.456K (2456) - FirstReadSeekTime: 2.88ms - FirstReadTime: 351.784ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.447us - 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: 389.320us - OutputIndexResultColumnTimer: 180.244us - 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.87, port:9060)): PipelineXTask (index=2):(Active: 49.731ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 49.613ms - CloseTime: 17.743us - GetBlockTime: 786.27us - OpenTime: 2.147us - PrepareTime: 86.926us - SinkTime: 48.434ms - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 49.622ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.178ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 47.548us - BuildRows: 180.832K (180832) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 24.329ms - BuildTableInsertTime: 14.412ms - BuildTableTime: 14.678ms - CloseTime: 0ns - ExecTime: 48.426ms - InputRows: 180.831K (180831) - MemoryUsage: - BuildBlocks: 17.32 MB - BuildKeyArena: 5.52 MB - HashTable: 1.69 MB - PeakMemoryUsage: 24.53 MB - OpenTime: 17.366us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.437us - RuntimeFilterComputeTime: 9.86ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=219): - BlocksProduced: 56 - BytesReceived: 4.04 MB - CloseTime: 12.516us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.53ms - ExecTime: 763.648us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.89 MB - MemoryUsage: - Blocks: 1.77 MB - PeakMemoryUsage: 664.00 KB - OpenTime: 15.711us - ProjectionTime: 0ns - RowsProduced: 180.831K (180831) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 11s962ms PipelineXTask (index=5):(Active: 139.162us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 70.498us - CloseTime: 6.795us - GetBlockTime: 0ns - OpenTime: 3.197us - PrepareTime: 54.549us - SinkTime: 53.414us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.584us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.726ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 70.441us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.287us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s9ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.210us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.672us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.486us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 131.741us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 50.256us - CloseTime: 6.812us - GetBlockTime: 0ns - OpenTime: 2.716us - PrepareTime: 66.906us - SinkTime: 31.266us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 117.765us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.381ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 62.748us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.575us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s13ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.886us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.3us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.250us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 126.472us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.448us - CloseTime: 4.680us - GetBlockTime: 0ns - OpenTime: 1.688us - PrepareTime: 73.797us - SinkTime: 27.35us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.565us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.758ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 44.119us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.555us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s9ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.221us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.296us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.166us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 152.94us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 75.474us - CloseTime: 6.161us - GetBlockTime: 0ns - OpenTime: 2.115us - PrepareTime: 63.466us - SinkTime: 57.365us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 138.785us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.455ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 74.72us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.774us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s13ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.406us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.655us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.601us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 212.177us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 92.219us - CloseTime: 12.21us - GetBlockTime: 0ns - OpenTime: 1.935us - PrepareTime: 102.353us - SinkTime: 75.273us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 194.220us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.909ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 113.61us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 38.370us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s13ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.474us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.813us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.714us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 128.984us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 67.756us - CloseTime: 6.900us - GetBlockTime: 0ns - OpenTime: 2.70us - PrepareTime: 47.894us - SinkTime: 51.590us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.119us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.306ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 66.52us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.817us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s13ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.952us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.769us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.92us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 137.562us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 53.489us - CloseTime: 9.514us - GetBlockTime: 0ns - OpenTime: 2.234us - PrepareTime: 68.454us - SinkTime: 37.443us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.103us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 183.621us HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 52.19us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.798us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s14ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.612us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.189us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.24us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 152.826us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 85.15us - CloseTime: 8.298us - GetBlockTime: 0ns - OpenTime: 2.91us - PrepareTime: 53.679us - SinkTime: 64.577us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 136.904us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.961ms HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 80.485us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.178us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s12ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.130us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.967us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.158us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 167.478us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 86.962us - CloseTime: 7.120us - GetBlockTime: 0ns - OpenTime: 2.19us - PrepareTime: 67.976us - SinkTime: 70.91us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.939us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 85.862us HASH_JOIN_SINK_OPERATOR (id=221): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc84fd - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 85.308us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.675us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 12s14ms EXCHANGE_OPERATOR (id=219): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.342us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.328us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.465us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 68: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 20.568ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.896ms - CloseTime: 73.650us - GetBlockTime: 8.936ms - OpenTime: 265.747us - PrepareTime: 322.328us - SinkTime: 10.606ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 20.479ms - WaitBfTime: 831.310ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.141ms DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: 25 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.35 MB - CloseTime: 11.762us - CompressTime: 0ns - ExecTime: 10.652ms - InputRows: 63.423K (63423) - LocalBytesSent: 6.08 MB - LocalSendTime: 1.630ms - LocalSentRows: 63.423K (63423) - MemoryUsage: - PeakMemoryUsage: 920.00 KB - MergeBlockTime: 975.438us - OpenTime: 46.377us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s112ms - RowsProduced: 63.423K (63423) - RpcAvgTime: 95.183ms - RpcCount: 12 - RpcMaxTime: 1s142ms - RpcMinTime: 1s142ms - RpcSumTime: 1s142ms - SerializeBatchTime: 7.785ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 12.35 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=218): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 10.26us - ExecTime: 8.646ms - InitProbeSideTime: 3.74ms - JoinFilterTimer: 3.51us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 14.74us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.781us - ProbeFindNextTime: 0ns - ProbeRows: 173.151K (173151) - ProbeTime: 7.796ms - ProbeWhenBuildSideOutputTime: 1.346ms - ProbeWhenProbeSideOutputTime: 1.531ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.350ms - ProjectionTime: 766.813us - RowsProduced: 63.423K (63423) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 4s313ms 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]}, {UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15206] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 6.925us - BlocksProduced: 46 - CloseTime: 47.213us - ExecTime: 109.945ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 415.518us - ProcessConjunctTime: 107.43us - ProjectionTime: 8.482ms - RowsProduced: 173.151K (173151) - RowsRead: 355.894K (355894) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 47.762ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.698ms - 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 = 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) RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 69, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] 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.067ms, ] - PerScannerRowsRead: [355.89K, ] - PerScannerWaitTime: [47.762ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 18.620ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 10.812ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.229us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.143ms - ScannerCtxSchedTime: 47.755ms - ScannerFilterTime: 15.159ms - ScannerGetBlockTime: 18.857ms - ScannerInitTime: 115.691us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 744ns - BlockConditionsFilteredBloomFilterTime: 3.44us - BlockConditionsFilteredDictTime: 779ns - BlockConditionsFilteredTime: 77.904us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 63.980us - BlockInitSeekCount: 9 - BlockInitSeekTime: 161.94us - BlockInitTime: 277.775us - BlockLoadTime: 29.231ms - BlocksLoad: 94 - CachedPagesNum: 212 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 186 - FirstReadSeekTime: 9.818ms - FirstReadTime: 16.62ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.98us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.512ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 4.896ms - OutputIndexResultColumnTimer: 17.811us - 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: 468.119us - TotalPagesNum: 212 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 625.793us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 248.15us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 165.851us - CloseTime: 8.180us - GetBlockTime: 7.268us - OpenTime: 1.914us - PrepareTime: 68.399us - SinkTime: 143.420us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 234.832us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.260us HASH_JOIN_SINK_OPERATOR (id=218): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.378us - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.914us - BuildTableInsertTime: 26.259us - BuildTableTime: 28.939us - CloseTime: 0ns - ExecTime: 162.945us - InputRows: 160 - MemoryUsage: - BuildBlocks: 10.58 KB - BuildKeyArena: 12.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 20.21 KB - OpenTime: 19.928us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.254us - RuntimeFilterComputeTime: 55.870us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=216): - BlocksProduced: 2 - BytesReceived: 6.10 KB - CloseTime: 6.811us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 32.960us - ExecTime: 32.625us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 19.631us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s217ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 69.394ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 68.764ms - CloseTime: 69.219us - GetBlockTime: 48.433ms - OpenTime: 237.803us - PrepareTime: 311.664us - SinkTime: 19.888ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 35.786ms - WaitBfTime: 776.434ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 185.36ms DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.05 MB - CloseTime: 10.115us - CompressTime: 0ns - ExecTime: 19.906ms - InputRows: 59.09K (59090) - LocalBytesSent: 5.66 MB - LocalSendTime: 5.638ms - LocalSentRows: 59.09K (59090) - MemoryUsage: - PeakMemoryUsage: 920.00 KB - MergeBlockTime: 1.939ms - OpenTime: 41.294us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s750ms - RowsProduced: 59.09K (59090) - RpcAvgTime: 999.798ms - RpcCount: 11 - RpcMaxTime: 10s997ms - RpcMinTime: 10s997ms - RpcSumTime: 10s997ms - SerializeBatchTime: 11.865ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 11.49 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=218): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 9.9us - ExecTime: 47.769ms - InitProbeSideTime: 4.522ms - JoinFilterTimer: 6.873us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 24.632us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.358us - ProbeFindNextTime: 0ns - ProbeRows: 173.412K (173412) - ProbeTime: 45.743ms - ProbeWhenBuildSideOutputTime: 2.6ms - ProbeWhenProbeSideOutputTime: 3.519ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 34.905ms - ProjectionTime: 1.866ms - RowsProduced: 59.09K (59090) - 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]}, {UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15208] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.714us - BlocksProduced: 46 - CloseTime: 45.891us - ExecTime: 240.528ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 362.337us - ProcessConjunctTime: 90.36us - ProjectionTime: 52.724ms - RowsProduced: 173.412K (173412) - RowsRead: 345.71K (345710) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 109.53ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 186.770ms - 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 = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: in - InFilterSize: 147 - always_true: 0 - expr_filtered_rows: 172.298K (172298) - expr_input_rows: 207.941K (207941) RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 69, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 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: [22.314ms, ] - PerScannerRowsRead: [345.71K, ] - PerScannerWaitTime: [109.053ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 14.109ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.117ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.716us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 33.337ms - ScannerCtxSchedTime: 109.51ms - ScannerFilterTime: 7.953ms - ScannerGetBlockTime: 14.317ms - ScannerInitTime: 104.345us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 856ns - BlockConditionsFilteredBloomFilterTime: 2.658us - BlockConditionsFilteredDictTime: 655ns - BlockConditionsFilteredTime: 85.195us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 71.298us - BlockInitSeekCount: 9 - BlockInitSeekTime: 172.190us - BlockInitTime: 286.952us - BlockLoadTime: 16.71ms - BlocksLoad: 92 - CachedPagesNum: 205 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 182 - FirstReadSeekTime: 672.276us - FirstReadTime: 6.253ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.228us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.829ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 3.587ms - OutputIndexResultColumnTimer: 11.226us - 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: 319.252us - TotalPagesNum: 205 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 447.946us PipelineXTask (index=2):(Active: 47.216ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.710ms - CloseTime: 91.756us - GetBlockTime: 29.449ms - OpenTime: 142.449us - PrepareTime: 262.37us - SinkTime: 16.977ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 28.914ms - WaitBfTime: 776.386ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.780ms DATA_STREAM_SINK_OPERATOR (id=219,dst_id=219): - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.02 MB - CloseTime: 18.760us - CompressTime: 0ns - ExecTime: 17.18ms - InputRows: 58.318K (58318) - LocalBytesSent: 5.58 MB - LocalSendTime: 4.397ms - LocalSentRows: 58.318K (58318) - MemoryUsage: - PeakMemoryUsage: 920.00 KB - MergeBlockTime: 1.823ms - OpenTime: 40.406us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s780ms - RowsProduced: 58.318K (58318) - RpcAvgTime: 986.643ms - RpcCount: 11 - RpcMaxTime: 10s853ms - RpcMinTime: 10s853ms - RpcSumTime: 10s853ms - SerializeBatchTime: 10.6ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 11.34 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=218): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 20.44us - ExecTime: 11.881ms - InitProbeSideTime: 3.658ms - JoinFilterTimer: 6.115us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 12.725us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.59us - ProbeFindNextTime: 0ns - ProbeRows: 172.143K (172143) - ProbeTime: 10.332ms - ProbeWhenBuildSideOutputTime: 2.60ms - ProbeWhenProbeSideOutputTime: 2.506ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.436ms - ProjectionTime: 1.411ms - RowsProduced: 58.318K (58318) - 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]}, {UNIONID is [not null]}] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [15210] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.136us - BlocksProduced: 47 - CloseTime: 48.297us - ExecTime: 530.484ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 218.573us - ProcessConjunctTime: 42.665us - ProjectionTime: 172.612ms - RowsProduced: 172.143K (172143) - RowsRead: 344.73K (344730) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 88.245ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 340.46ms - 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 = 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) RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 69, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 RuntimeFilter: (id = 70, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 71, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 524288 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: [70.063ms, ] - PerScannerRowsRead: [344.73K, ] - PerScannerWaitTime: [88.245ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 58.548ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.375ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.215us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.596ms - ScannerCtxSchedTime: 88.241ms - ScannerFilterTime: 8.740ms - ScannerGetBlockTime: 61.253ms - ScannerInitTime: 70.350us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 2.623us - BlockConditionsFilteredBloomFilterTime: 6.624us - BlockConditionsFilteredDictTime: 1.396us - BlockConditionsFilteredTime: 139.177us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 107.846us - BlockInitSeekCount: 25 - BlockInitSeekTime: 132.639us - BlockInitTime: 414.804us - BlockLoadTime: 62.958ms - BlocksLoad: 95 - CachedPagesNum: 189 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 184 - FirstReadSeekTime: 1.560ms - FirstReadTime: 11.450ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.402us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 44.735ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 4.764ms - OutputIndexResultColumnTimer: 17.843us - 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: 397.647us - TotalPagesNum: 189 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 558.930us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 227.65us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 141.743us - CloseTime: 6.85us - GetBlockTime: 5.8us - OpenTime: 19.364us - PrepareTime: 54.497us - SinkTime: 101.347us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 214.553us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.55ms HASH_JOIN_SINK_OPERATOR (id=218): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.30us - BuildRows: 148 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.54us - BuildTableInsertTime: 8.480us - BuildTableTime: 10.212us - CloseTime: 0ns - ExecTime: 114.916us - InputRows: 147 - MemoryUsage: - BuildBlocks: 9.69 KB - BuildKeyArena: 12.00 KB - HashTable: 1.58 KB - PeakMemoryUsage: 19.27 KB - OpenTime: 13.961us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.217us - RuntimeFilterComputeTime: 41.783us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=216): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.498us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.372us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.50 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 15.50 KB - OpenTime: 16.448us - ProjectionTime: 0ns - RowsProduced: 147 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 905.515ms PipelineXTask (index=3):(Active: 261.921us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 163.562us - CloseTime: 17.463us - GetBlockTime: 5.976us - OpenTime: 2.477us - PrepareTime: 73.478us - SinkTime: 137.859us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 237.407us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.956ms HASH_JOIN_SINK_OPERATOR (id=218): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 892ns - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.96us - BuildTableInsertTime: 28.482us - BuildTableTime: 30.124us - CloseTime: 0ns - ExecTime: 157.628us - InputRows: 139 - MemoryUsage: - BuildBlocks: 9.18 KB - BuildKeyArena: 12.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 18.72 KB - OpenTime: 20.81us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.37us - RuntimeFilterComputeTime: 57.129us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=216): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 16.65us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 54.558us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.50 KB - MemoryUsage: - Blocks: 15.50 KB - PeakMemoryUsage: 15.50 KB - OpenTime: 33.130us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 904.595ms Fragment 69: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 467.317us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 316.593us - CloseTime: 35.776us - GetBlockTime: 169.431us - OpenTime: 6.767us - PrepareTime: 100.513us - SinkTime: 122.146us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 423.549us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.106ms DATA_STREAM_SINK_OPERATOR (id=216,dst_id=216): - Partitioner: Crc32HashPartitioner(3) - BlocksProduced: 4 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.06 KB - CloseTime: 15.158us - CompressTime: 0ns - ExecTime: 165.890us - InputRows: 446 - LocalBytesSent: 18.87 KB - LocalSendTime: 12.13us - LocalSentRows: 286 - MemoryUsage: - PeakMemoryUsage: 46.50 KB - MergeBlockTime: 0ns - OpenTime: 29.99us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s328ms - RowsProduced: 446 - RpcAvgTime: 4s312ms - RpcCount: 1 - RpcMaxTime: 4s312ms - RpcMinTime: 4s312ms - RpcSumTime: 4s312ms - SerializeBatchTime: 36.346us - SplitBlockDistributeByChannelTime: 16.859us - SplitBlockHashComputeTime: 22.293us - UncompressedRowBatchSize: 10.92 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=215): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 13.774us - ExecTime: 157.79us - InitProbeSideTime: 14.43us - JoinFilterTimer: 71ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 16.52us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.44us - ProbeFindNextTime: 0ns - ProbeRows: 447 - ProbeTime: 104.723us - ProbeWhenBuildSideOutputTime: 7.904us - ProbeWhenProbeSideOutputTime: 16.501us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.996us - ProjectionTime: 17.256us - RowsProduced: 446 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=214): - BlocksProduced: 1 - CloseTime: 1.728us - DeserializeAndMergeTime: 0ns - ExecTime: 50.341us - GetResultsTime: 35.286us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.307us - HashTableSize: 447 - InsertKeysToColumnTime: 8.895us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.602us - ProjectionTime: 0ns - RowsProduced: 447 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 902.648ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 36.118ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.43ms - CloseTime: 15.220us - GetBlockTime: 7.616us - OpenTime: 3.403us - PrepareTime: 50.425us - SinkTime: 36.7ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 192.149us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.382ms HASH_JOIN_SINK_OPERATOR (id=215): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.150us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.598us - BuildTableInsertTime: 35.965ms - BuildTableTime: 35.972ms - CloseTime: 0ns - ExecTime: 36.20ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 13.684us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=210): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 10.917us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 24.226us - ExecTime: 33.467us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.525us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 144.357us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 315.71us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 189.340us - CloseTime: 27.34us - GetBlockTime: 9.920us - OpenTime: 3.311us - PrepareTime: 90.159us - SinkTime: 158.943us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 282.34us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.192ms AGGREGATION_SINK_OPERATOR (id=214): - BuildTime: 0ns - CloseTime: 15.968us - DeserializeAndMergeTime: 9.577us - ExecTime: 228.43us - ExprTime: 0ns - HashTableComputeTime: 133.504us - HashTableEmplaceTime: 118.73us - HashTableInputCount: 447 - InputRows: 447 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 40.28 KB - PeakMemoryUsage: 784.28 KB - SerializeKeyArena: 744.00 KB - MergeTime: 153.940us - OpenTime: 53.566us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=213): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 9.730us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.973us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 56.00 KB - MemoryUsage: - Blocks: 56.00 KB - PeakMemoryUsage: 30.00 KB - OpenTime: 24.932us - ProjectionTime: 0ns - RowsProduced: 447 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 895.309ms Fragment 70: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.251ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 576.382us - CloseTime: 74.492us - GetBlockTime: 266.446us - OpenTime: 264.283us - PrepareTime: 325.789us - SinkTime: 17.492us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.165ms - WaitBfTime: 781.107ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.928ms DATA_STREAM_SINK_OPERATOR (id=213,dst_id=213): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 1 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.259us - CompressTime: 0ns - ExecTime: 58.398us - InputRows: 447 - LocalBytesSent: 24.36 KB - LocalSendTime: 13.184us - LocalSentRows: 447 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 26.223us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 0ns - RowsProduced: 447 - 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: 163.981us - CloseTime: 14.264us - DeserializeAndMergeTime: 0ns - ExecTime: 284.254us - ExprTime: 2.542us - GetResultsTime: 62.289us - HashTableComputeTime: 149.198us - HashTableEmplaceTime: 139.446us - HashTableInputCount: 447 - HashTableIterateTime: 3.142us - HashTableSize: 447 - InsertKeysToColumnTime: 15.871us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 40.28 KB - PeakMemoryUsage: 784.28 KB - SerializeKeyArena: 744.00 KB - MergeTime: 0ns - OpenTime: 38.80us - ProjectionTime: 0ns - RowsProduced: 447 - SerializeDataTime: 31.218us - SerializeKeyTime: 0ns - SerializeResultTime: 63.890us - 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]}] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [18523] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.503us - BlocksProduced: 1 - CloseTime: 42.270us - ExecTime: 90.450ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 400.965us - ProcessConjunctTime: 92.612us - ProjectionTime: 36.627us - RowsProduced: 447 - RowsRead: 447 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 87.644ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 89.937ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 68, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 69, 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: [956.223us, ] - PerScannerRowsRead: [447, ] - PerScannerWaitTime: [87.644ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 918.863us - MemoryUsage: - FreeBlocks: 116.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.144ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 115ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 2.297ms - ScannerCtxSchedTime: 87.642ms - ScannerFilterTime: 2.922us - ScannerGetBlockTime: 947.286us - ScannerInitTime: 120.640us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 299ns - BlockConditionsFilteredBloomFilterTime: 1.583us - BlockConditionsFilteredDictTime: 224ns - BlockConditionsFilteredTime: 11.992us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 6.425us - BlockInitSeekCount: 8 - BlockInitSeekTime: 61.158us - BlockInitTime: 112.363us - BlockLoadTime: 1.924ms - BlocksLoad: 7 - CachedPagesNum: 11 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 232.108us - FirstReadSeekCount: 6 - FirstReadSeekTime: 17.316us - FirstReadTime: 55.958us - IOTimer: 0ns - InvertedIndexFilterTime: 1.462us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.394ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 25.23us - OutputIndexResultColumnTimer: 692ns - 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: 873.393us - ShortPredEvalTime: 217ns - TotalPagesNum: 11 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 40.327us Fragment 71: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 607.470us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 285.150us - CloseTime: 56.49us - GetBlockTime: 25.230us - OpenTime: 119.460us - PrepareTime: 140.887us - SinkTime: 128.761us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 545.44us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.243ms DATA_STREAM_SINK_OPERATOR (id=210,dst_id=210): - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 924.00 B - CloseTime: 14.42us - CompressTime: 0ns - ExecTime: 181.859us - InputRows: 80 - LocalBytesSent: 0.00 - LocalSendTime: 0ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 4.315us - OpenTime: 39.246us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.739ms - RowsProduced: 80 - RpcAvgTime: 1.292ms - RpcCount: 1 - RpcMaxTime: 1.292ms - RpcMinTime: 1.292ms - RpcSumTime: 1.292ms - SerializeBatchTime: 14.669us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 1.30 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 322ns - BlocksProduced: 1 - CloseTime: 38.835us - ExecTime: 1.27ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 183.316us - ProcessConjunctTime: 40.882us - ProjectionTime: 4.620us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 540.408us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 775.57us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [26.705us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [540.408us, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.228us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 173.679us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 67ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 242.484us - ScannerCtxSchedTime: 539.600us - ScannerFilterTime: 964ns - ScannerGetBlockTime: 20.248us - ScannerInitTime: 51.360us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 413ns - BlockConditionsFilteredBloomFilterTime: 1.271us - BlockConditionsFilteredDictTime: 4.421us - BlockConditionsFilteredTime: 16.593us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.264us - BlockInitSeekCount: 6 - BlockInitSeekTime: 11.165us - BlockInitTime: 52.774us - BlockLoadTime: 101.578us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 3.800us - FirstReadTime: 5.922us - IOTimer: 0ns - InvertedIndexFilterTime: 1.692us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.188us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 9.33us - OutputIndexResultColumnTimer: 291ns - 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: 100ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.727us Fragment 72: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 102.811ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 97.336ms - CloseTime: 56.454us - GetBlockTime: 917.884us - OpenTime: 5.213ms - PrepareTime: 182.12us - SinkTime: 90.627ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 41.369ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.507ms DATA_STREAM_SINK_OPERATOR (id=208,dst_id=208): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 206 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 768.56 KB - CloseTime: 22.336us - CompressTime: 0ns - ExecTime: 90.640ms - InputRows: 835.868K (835868) - LocalBytesSent: 5.98 MB - LocalSendTime: 1.476ms - LocalSentRows: 696.749K (696749) - MemoryUsage: - PeakMemoryUsage: 10.97 MB - MergeBlockTime: 0ns - OpenTime: 71.511us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s750ms - RowsProduced: 835.868K (835868) - RpcAvgTime: 161.610ms - RpcCount: 34 - RpcMaxTime: 2s751ms - RpcMinTime: 2s743ms - RpcSumTime: 5s494ms - SerializeBatchTime: 1.143ms - SplitBlockDistributeByChannelTime: 11.96ms - SplitBlockHashComputeTime: 66.802ms - UncompressedRowBatchSize: 1.27 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 310ns - BlocksProduced: 206 - CloseTime: 30.13us - ExecTime: 43.410ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 5.277ms - ProcessConjunctTime: 17.637us - ProjectionTime: 0ns - RowsProduced: 835.868K (835868) - RowsRead: 835.868K (835868) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 30.101ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 37.261ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [5.516ms, ] - PerScannerRowsRead: [835.87K, ] - PerScannerWaitTime: [30.101ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.122ms - MemoryUsage: - FreeBlocks: 7.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 85.486us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 15.776us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.950ms - ScannerCtxSchedTime: 30.95ms - ScannerFilterTime: 65.547us - ScannerGetBlockTime: 5.387ms - ScannerInitTime: 5.172ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 435ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.768us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 8.910us - BlockInitTime: 28.565us - BlockLoadTime: 5.119ms - BlocksLoad: 207 - CachedPagesNum: 104 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 206 - FirstReadSeekTime: 31.247us - FirstReadTime: 4.684ms - IOTimer: 0ns - InvertedIndexFilterTime: 523ns - 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: 23.188us - OutputIndexResultColumnTimer: 19.155us - 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: 64.108ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 63.694ms - CloseTime: 76.454us - GetBlockTime: 1.23ms - OpenTime: 109.274us - PrepareTime: 221.918us - SinkTime: 62.143ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 31.697ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.611ms DATA_STREAM_SINK_OPERATOR (id=208,dst_id=208): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 206 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 768.04 KB - CloseTime: 30.803us - CompressTime: 0ns - ExecTime: 62.171ms - InputRows: 834.234K (834234) - LocalBytesSent: 5.97 MB - LocalSendTime: 1.35ms - LocalSentRows: 695.175K (695175) - MemoryUsage: - PeakMemoryUsage: 10.57 MB - MergeBlockTime: 0ns - OpenTime: 60.876us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s512ms - RowsProduced: 834.234K (834234) - RpcAvgTime: 140.941ms - RpcCount: 34 - RpcMaxTime: 2s473ms - RpcMinTime: 2s318ms - RpcSumTime: 4s792ms - SerializeBatchTime: 810.520us - SplitBlockDistributeByChannelTime: 8.486ms - SplitBlockHashComputeTime: 44.992ms - UncompressedRowBatchSize: 1.27 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 464ns - BlocksProduced: 206 - CloseTime: 40.100us - ExecTime: 17.662ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 240.634us - ProcessConjunctTime: 22.426us - ProjectionTime: 0ns - RowsProduced: 834.234K (834234) - RowsRead: 834.234K (834234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.879ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 16.415ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [7.295ms, ] - PerScannerRowsRead: [834.23K, ] - PerScannerWaitTime: [6.879ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.828ms - MemoryUsage: - FreeBlocks: 7.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 143.209us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.96us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.503ms - ScannerCtxSchedTime: 6.876ms - ScannerFilterTime: 86.263us - ScannerGetBlockTime: 7.132ms - ScannerInitTime: 52.410us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 751ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.970us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.830us - BlockInitTime: 44.649us - BlockLoadTime: 6.830ms - BlocksLoad: 207 - CachedPagesNum: 103 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 206 - FirstReadSeekTime: 35.543us - FirstReadTime: 6.245ms - IOTimer: 0ns - InvertedIndexFilterTime: 885ns - 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: 25.183us - OutputIndexResultColumnTimer: 36.601us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 69.790ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 69.369ms - CloseTime: 69.567us - GetBlockTime: 891.509us - OpenTime: 183.933us - PrepareTime: 159.601us - SinkTime: 68.5ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 29.627ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.255ms DATA_STREAM_SINK_OPERATOR (id=208,dst_id=208): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 214 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.76 MB - CloseTime: 19.772us - CompressTime: 0ns - ExecTime: 68.40ms - InputRows: 835.915K (835915) - LocalBytesSent: 1.19 MB - LocalSendTime: 225.499us - LocalSentRows: 139.217K (139217) - MemoryUsage: - PeakMemoryUsage: 2.85 MB - MergeBlockTime: 0ns - OpenTime: 62.791us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12s335ms - RowsProduced: 835.915K (835915) - RpcAvgTime: 719.66ms - RpcCount: 170 - RpcMaxTime: 12s286ms - RpcMinTime: 12s193ms - RpcSumTime: 2m2s - SerializeBatchTime: 18.394ms - SplitBlockDistributeByChannelTime: 36.624ms - SplitBlockHashComputeTime: 7.546ms - UncompressedRowBatchSize: 6.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 600ns - BlocksProduced: 206 - CloseTime: 46.25us - ExecTime: 184.918ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 253.349us - ProcessConjunctTime: 45.667us - ProjectionTime: 0ns - RowsProduced: 835.915K (835915) - RowsRead: 835.915K (835915) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 105.633us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 183.774ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [161.701ms, ] - PerScannerRowsRead: [835.91K, ] - PerScannerWaitTime: [105.633us, ] - BlockConvertTime: 0ns - BlockFetchTime: 161.113ms - MemoryUsage: - FreeBlocks: 7.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 227.700us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.702us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.285ms - ScannerCtxSchedTime: 102.355us - ScannerFilterTime: 56.792us - ScannerGetBlockTime: 161.584ms - ScannerInitTime: 95.413us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 788ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.209us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 15.590us - BlockInitTime: 67.897us - BlockLoadTime: 161.187ms - BlocksLoad: 207 - CachedPagesNum: 104 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 206 - FirstReadSeekTime: 70.95us - FirstReadTime: 160.630ms - IOTimer: 0ns - InvertedIndexFilterTime: 963ns - 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.646us - OutputIndexResultColumnTimer: 17.232us - 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.87, port:9060)): PipelineXTask (index=0):(Active: 833.326us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 449.783us - CloseTime: 58.118us - GetBlockTime: 44.568us - OpenTime: 110.77us - PrepareTime: 209.713us - SinkTime: 273.462us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 767.466us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.321ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.127us - CompressTime: 0ns - ExecTime: 358.950us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 101.259us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 72.803us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 31.934ms - RowsProduced: 0 - RpcAvgTime: 18.926ms - RpcCount: 2 - RpcMaxTime: 18.939ms - RpcMinTime: 18.912ms - RpcSumTime: 37.852ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 482ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 311ns - BlocksProduced: 0 - CloseTime: 42.268us - ExecTime: 45.568ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 184.39us - ProcessConjunctTime: 40.356us - ProjectionTime: 2.144us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 916.36us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 45.295ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.074us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [916.036us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 44.296ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 104ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.49ms - ScannerCtxSchedTime: 914.522us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.240us - ScannerInitTime: 47.828us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 219ns - BlockConditionsFilteredBloomFilterTime: 206ns - BlockConditionsFilteredDictTime: 170ns - BlockConditionsFilteredTime: 4.166us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 232ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 8.409us - BlockInitTime: 35.26us - BlockLoadTime: 44.127ms - BlocksLoad: 62 - CachedPagesNum: 63 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 35.848ms - FirstReadSeekCount: 61 - FirstReadSeekTime: 26.680us - FirstReadTime: 808.912us - IOTimer: 0ns - InvertedIndexFilterTime: 329ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.33ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 594.24us - OutputIndexResultColumnTimer: 6.755us - RawRowsRead: 245.246K (245246) - 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: 5.114ms - ShortPredEvalTime: 519.382us - TotalPagesNum: 63 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 38.286us PipelineXTask (index=1):(Active: 43.624ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.812ms - CloseTime: 46.802us - GetBlockTime: 41.444us - OpenTime: 21.481ms - PrepareTime: 277.536us - SinkTime: 260.720us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 573.477us DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.910us - CompressTime: 0ns - ExecTime: 433.47us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 58.178us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 162.978us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 43.759ms - RowsProduced: 0 - RpcAvgTime: 36.892ms - RpcCount: 2 - RpcMaxTime: 36.948ms - RpcMinTime: 36.836ms - RpcSumTime: 73.784ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 17.260us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 358ns - BlocksProduced: 0 - CloseTime: 35.95us - ExecTime: 93.447ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 21.543ms - ProcessConjunctTime: 58.543us - ProjectionTime: 1.505us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 39.252ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 71.826ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [6.048us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [39.252ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 32.494ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 73ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.558ms - ScannerCtxSchedTime: 39.251ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.50us - ScannerInitTime: 21.391ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 197ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 958ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.304us - BlockInitTime: 23.319us - BlockLoadTime: 32.366ms - BlocksLoad: 86 - CachedPagesNum: 87 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 27.50ms - FirstReadSeekCount: 255 - FirstReadSeekTime: 43.604us - FirstReadTime: 4.763ms - IOTimer: 0ns - InvertedIndexFilterTime: 283ns - 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: 19.479us - OutputIndexResultColumnTimer: 5.748us - RawRowsRead: 341.69K (341690) - 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: 87 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 3.345ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.653ms - CloseTime: 52.393us - GetBlockTime: 39.120us - OpenTime: 1.392ms - PrepareTime: 242.315us - SinkTime: 199.318us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 836.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.731ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.420us - CompressTime: 0ns - ExecTime: 270.328us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 70.547us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 62.572us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 137.17ms - RowsProduced: 0 - RpcAvgTime: 123.86ms - RpcCount: 2 - RpcMaxTime: 123.111ms - RpcMinTime: 123.60ms - RpcSumTime: 246.172ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 728ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 254ns - BlocksProduced: 0 - CloseTime: 41.103us - ExecTime: 169.766ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.455ms - ProcessConjunctTime: 74.250us - ProjectionTime: 1.840us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.552ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 168.229ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [7.834us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [5.552ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 162.566ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 127ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 57.980ms - ScannerCtxSchedTime: 5.550ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.281us - ScannerInitTime: 1.292ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 254ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.367us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.625us - BlockInitTime: 42.741us - BlockLoadTime: 162.329ms - BlocksLoad: 86 - CachedPagesNum: 87 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 154.288ms - FirstReadSeekCount: 255 - FirstReadSeekTime: 90.518us - FirstReadTime: 7.2ms - IOTimer: 0ns - InvertedIndexFilterTime: 440ns - 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: 42.196us - OutputIndexResultColumnTimer: 10.241us - RawRowsRead: 343.677K (343677) - 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: 87 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 681.390us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 342.923us - CloseTime: 34.510us - GetBlockTime: 28.787us - OpenTime: 130.954us - PrepareTime: 168.294us - SinkTime: 166.139us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 640.644us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 751.500us DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.318us - CompressTime: 0ns - ExecTime: 239.991us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.772us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 66.960us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 125.587ms - RowsProduced: 0 - RpcAvgTime: 122.907ms - RpcCount: 2 - RpcMaxTime: 122.925ms - RpcMinTime: 122.889ms - RpcSumTime: 245.815ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 539ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15313] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 480ns - BlocksProduced: 0 - CloseTime: 25.756us - ExecTime: 190.496ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 188.17us - ProcessConjunctTime: 54.297us - ProjectionTime: 1.400us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 494.769us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 190.252ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [5.887us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [494.769us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 189.701ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.619ms - ScannerCtxSchedTime: 494.205us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.40us - ScannerInitTime: 49.564us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 261ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.423us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.487us - BlockInitTime: 40.138us - BlockLoadTime: 189.540ms - BlocksLoad: 93 - CachedPagesNum: 95 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 139.861ms - FirstReadSeekCount: 276 - FirstReadSeekTime: 103.542us - FirstReadTime: 48.753ms - IOTimer: 0ns - InvertedIndexFilterTime: 499ns - 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: 31.291us - OutputIndexResultColumnTimer: 8.63us - RawRowsRead: 372.571K (372571) - 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: 95 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=4):(Active: 688.683us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 251.861us - CloseTime: 77.135us - GetBlockTime: 39.954us - OpenTime: 88.72us - PrepareTime: 265.944us - SinkTime: 107.648us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 604.664us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.809ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.557us - CompressTime: 0ns - ExecTime: 188.314us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 36.568us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 60.665us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 70.302ms - RowsProduced: 0 - RpcAvgTime: 69.449ms - RpcCount: 2 - RpcMaxTime: 69.508ms - RpcMinTime: 69.390ms - RpcSumTime: 138.898ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 604ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15315] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 185ns - BlocksProduced: 0 - CloseTime: 51.971us - ExecTime: 161.206ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 156.46us - ProcessConjunctTime: 29.412us - ProjectionTime: 3.7us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 721.631us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 160.955ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [16.760us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [721.631us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 160.151ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 41ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 68.596ms - ScannerCtxSchedTime: 721.31us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.746us - ScannerInitTime: 36.113us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 417ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.856us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.564us - BlockInitTime: 48.729us - BlockLoadTime: 159.947ms - BlocksLoad: 95 - CachedPagesNum: 98 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 150.483ms - FirstReadSeekCount: 282 - FirstReadSeekTime: 122.952us - FirstReadTime: 8.327ms - IOTimer: 0ns - InvertedIndexFilterTime: 485ns - 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: 45.164us - OutputIndexResultColumnTimer: 10.47us - RawRowsRead: 379.18K (379180) - 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: 98 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 65.507ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.711ms - CloseTime: 46.462us - GetBlockTime: 39.374us - OpenTime: 32.546ms - PrepareTime: 196.540us - SinkTime: 108.785us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 678.983us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.635ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.25us - CompressTime: 0ns - ExecTime: 201.255us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 34.820us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 82.728us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 133.391ms - RowsProduced: 0 - RpcAvgTime: 118.683ms - RpcCount: 2 - RpcMaxTime: 118.744ms - RpcMinTime: 118.622ms - RpcSumTime: 237.367ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 559ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15331] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 297ns - BlocksProduced: 0 - CloseTime: 34.888us - ExecTime: 181.233ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 32.609ms - ProcessConjunctTime: 28.882us - ProjectionTime: 2.250us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 44.313ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.547ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.743us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [44.313ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 104.169ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 41ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.206ms - ScannerCtxSchedTime: 44.312ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.652us - ScannerInitTime: 32.474ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 360ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.433us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 12.720us - BlockInitTime: 43.103us - BlockLoadTime: 104.3ms - BlocksLoad: 71 - CachedPagesNum: 75 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 94.200ms - FirstReadSeekCount: 210 - FirstReadSeekTime: 101.98us - FirstReadTime: 8.799ms - IOTimer: 0ns - InvertedIndexFilterTime: 402ns - 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: 34.509us - OutputIndexResultColumnTimer: 9.644us - RawRowsRead: 280.538K (280538) - 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: 75 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 1.8ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 421.876us - CloseTime: 88.442us - GetBlockTime: 29.171us - OpenTime: 227.950us - PrepareTime: 264.926us - SinkTime: 150.473us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 676.808us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.810ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.652us - CompressTime: 0ns - ExecTime: 229.213us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 51.630us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 63.707us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 139.288ms - RowsProduced: 0 - RpcAvgTime: 136.514ms - RpcCount: 2 - RpcMaxTime: 136.527ms - RpcMinTime: 136.501ms - RpcSumTime: 273.28ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 628ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15317] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 337ns - BlocksProduced: 0 - CloseTime: 69.316us - ExecTime: 197.883ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 286.629us - ProcessConjunctTime: 46.160us - ProjectionTime: 2.74us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.899ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 197.496ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [9.757us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [5.899ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 191.496ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 49ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 66.277ms - ScannerCtxSchedTime: 5.897ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.165us - ScannerInitTime: 159.894us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 492ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.402us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 12.738us - BlockInitTime: 55.676us - BlockLoadTime: 191.282ms - BlocksLoad: 84 - CachedPagesNum: 86 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 109.907ms - FirstReadSeekCount: 249 - FirstReadSeekTime: 137.329us - FirstReadTime: 80.150ms - IOTimer: 0ns - InvertedIndexFilterTime: 668ns - 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.671us - OutputIndexResultColumnTimer: 12.897us - RawRowsRead: 334.289K (334289) - 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: 86 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 655.926us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 268.826us - CloseTime: 79.837us - GetBlockTime: 42.952us - OpenTime: 94.339us - PrepareTime: 208.623us - SinkTime: 116.911us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 570.818us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.108ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.560us - CompressTime: 0ns - ExecTime: 205.363us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.717us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 65.391us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 147.500ms - RowsProduced: 0 - RpcAvgTime: 146.749ms - RpcCount: 2 - RpcMaxTime: 146.780ms - RpcMinTime: 146.719ms - RpcSumTime: 293.499ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 491ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15319] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 286ns - BlocksProduced: 0 - CloseTime: 51.628us - ExecTime: 202.634ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 183.971us - ProcessConjunctTime: 31.824us - ProjectionTime: 1.927us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.322ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 202.354ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.397us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [1.322ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 200.902ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 136ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 76.815ms - ScannerCtxSchedTime: 1.318ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.568us - ScannerInitTime: 34.403us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 513ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.570us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 15.518us - BlockInitTime: 62.76us - BlockLoadTime: 200.625ms - BlocksLoad: 85 - CachedPagesNum: 87 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 153.837ms - FirstReadSeekCount: 252 - FirstReadSeekTime: 111.354us - FirstReadTime: 45.434ms - IOTimer: 0ns - InvertedIndexFilterTime: 727ns - 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: 55.891us - OutputIndexResultColumnTimer: 18.247us - RawRowsRead: 338.501K (338501) - 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: 87 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 1.647ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 802.773us - CloseTime: 36.217us - GetBlockTime: 28.813us - OpenTime: 628.212us - PrepareTime: 175.47us - SinkTime: 129.66us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 541.501us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.4ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.721us - CompressTime: 0ns - ExecTime: 196.533us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 41.212us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 58.888us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 136.863ms - RowsProduced: 0 - RpcAvgTime: 122.909ms - RpcCount: 2 - RpcMaxTime: 122.928ms - RpcMinTime: 122.889ms - RpcSumTime: 245.818ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 270ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15325] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 420ns - BlocksProduced: 0 - CloseTime: 25.240us - ExecTime: 175.739ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 680.866us - ProcessConjunctTime: 33.818us - ProjectionTime: 2.612us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.169ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 175.2ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [12.542us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [7.169ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 167.723ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.475us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 65.87ms - ScannerCtxSchedTime: 7.167ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.992us - ScannerInitTime: 570.672us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 407ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.927us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 16.598us - BlockInitTime: 58.527us - BlockLoadTime: 167.482ms - BlocksLoad: 86 - CachedPagesNum: 87 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 153.273ms - FirstReadSeekCount: 255 - FirstReadSeekTime: 104.510us - FirstReadTime: 13.108ms - IOTimer: 0ns - InvertedIndexFilterTime: 514ns - 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: 39.733us - OutputIndexResultColumnTimer: 9.937us - RawRowsRead: 341.787K (341787) - 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: 87 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 66.810ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.401ms - CloseTime: 66.528us - GetBlockTime: 38.936us - OpenTime: 33.127ms - PrepareTime: 208.531us - SinkTime: 212.257us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 804.570us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 451.591us DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.474us - CompressTime: 0ns - ExecTime: 322.459us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 76.566us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 93.19us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 156.200ms - RowsProduced: 0 - RpcAvgTime: 154.521ms - RpcCount: 2 - RpcMaxTime: 154.549ms - RpcMinTime: 154.494ms - RpcSumTime: 309.43ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 430ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15349] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 311ns - BlocksProduced: 0 - CloseTime: 45.343us - ExecTime: 225.225ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 33.186ms - ProcessConjunctTime: 58.83us - ProjectionTime: 1.935us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 46.521ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 191.952ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.430us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [46.521ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 145.331ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 47ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 73.311ms - ScannerCtxSchedTime: 46.519ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.302us - ScannerInitTime: 33.45ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 389ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.146us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 24.7us - BlockInitTime: 76.180us - BlockLoadTime: 145.69ms - BlocksLoad: 106 - CachedPagesNum: 107 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 134.561ms - FirstReadSeekCount: 315 - FirstReadSeekTime: 135.801us - FirstReadTime: 9.42ms - IOTimer: 0ns - InvertedIndexFilterTime: 766ns - 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.31us - OutputIndexResultColumnTimer: 13.362us - RawRowsRead: 423.736K (423736) - 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=10):(Active: 70.998ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 35.527ms - CloseTime: 56.402us - GetBlockTime: 51.316us - OpenTime: 35.221ms - PrepareTime: 185.630us - SinkTime: 231.883us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 890.709us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 822.660us DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.677us - CompressTime: 0ns - ExecTime: 315.957us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 62.256us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 75.250us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 44.354ms - RowsProduced: 0 - RpcAvgTime: 38.458ms - RpcCount: 2 - RpcMaxTime: 38.517ms - RpcMinTime: 38.399ms - RpcSumTime: 76.916ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 591ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15351] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 683ns - BlocksProduced: 0 - CloseTime: 44.674us - ExecTime: 150.639ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 35.291ms - ProcessConjunctTime: 55.508us - ProjectionTime: 2.9us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 47.970ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 115.250ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.923us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [47.970ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 67.197ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 156ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 66.945ms - ScannerCtxSchedTime: 47.969ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.633us - ScannerInitTime: 35.134ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 226ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.130us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 5.974us - BlockInitTime: 29.381us - BlockLoadTime: 67.27ms - BlocksLoad: 104 - CachedPagesNum: 106 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 57.597ms - FirstReadSeekCount: 309 - FirstReadSeekTime: 101.831us - FirstReadTime: 8.277ms - IOTimer: 0ns - InvertedIndexFilterTime: 315ns - 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.539us - OutputIndexResultColumnTimer: 11.825us - RawRowsRead: 416.268K (416268) - 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=11):(Active: 775.477us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 279.961us - CloseTime: 107.619us - GetBlockTime: 15.781us - OpenTime: 174.299us - PrepareTime: 207.121us - SinkTime: 67.315us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 636.426us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.773ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.719us - CompressTime: 0ns - ExecTime: 160.713us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 19.176us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 73.838us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 133.237ms - RowsProduced: 0 - RpcAvgTime: 118.429ms - RpcCount: 2 - RpcMaxTime: 118.456ms - RpcMinTime: 118.403ms - RpcSumTime: 236.859ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 315ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 277ns - BlocksProduced: 0 - CloseTime: 83.904us - ExecTime: 173.201ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 237.634us - ProcessConjunctTime: 54.799us - ProjectionTime: 2.203us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 400.838us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 172.861ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [9.522us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [400.838us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 172.336ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 152ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 83.793ms - ScannerCtxSchedTime: 398.737us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.643us - ScannerInitTime: 81.68us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 640ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.977us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 16.435us - BlockInitTime: 86.270us - BlockLoadTime: 172.48ms - BlocksLoad: 100 - CachedPagesNum: 102 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 160.758ms - FirstReadSeekCount: 297 - FirstReadSeekTime: 196.702us - FirstReadTime: 9.807ms - IOTimer: 0ns - InvertedIndexFilterTime: 882ns - 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: 75.774us - OutputIndexResultColumnTimer: 14.51us - RawRowsRead: 399.553K (399553) - 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: 102 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.347ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.668ms - CloseTime: 179.524us - GetBlockTime: 306.666us - OpenTime: 252.536us - PrepareTime: 238.487us - SinkTime: 5.44ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.155ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.525ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 808.80 KB - CloseTime: 27.624us - CompressTime: 0ns - ExecTime: 5.136ms - InputRows: 62.352K (62352) - LocalBytesSent: 241.07 KB - LocalSendTime: 39.854us - LocalSentRows: 10.733K (10733) - MemoryUsage: - PeakMemoryUsage: 2.16 MB - MergeBlockTime: 0ns - OpenTime: 71.214us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s661ms - RowsProduced: 62.352K (62352) - RpcAvgTime: 3s207ms - RpcCount: 20 - RpcMaxTime: 6s640ms - RpcMinTime: 6s294ms - RpcSumTime: 1m4s - SerializeBatchTime: 636.753us - SplitBlockDistributeByChannelTime: 2.202ms - SplitBlockHashComputeTime: 970.521us - UncompressedRowBatchSize: 1.21 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15333, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 597ns - BlocksProduced: 19 - CloseTime: 146.952us - ExecTime: 138.143ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 348.20us - ProcessConjunctTime: 64.951us - ProjectionTime: 372.112us - RowsProduced: 62.352K (62352) - RowsRead: 62.352K (62352) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.832ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 136.974ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [7.240us, 11.269us, 136.083ms, ] - PerScannerRowsRead: [0, 0, 62.35K, ] - PerScannerWaitTime: [669.412us, 916.159us, 1.247ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 135.616ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 146.666ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.493us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 151.901ms - ScannerCtxSchedTime: 2.822ms - ScannerFilterTime: 22.638us - ScannerGetBlockTime: 136.26ms - ScannerInitTime: 124.887us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.435us - BlockConditionsFilteredBloomFilterTime: 643ns - BlockConditionsFilteredDictTime: 335ns - BlockConditionsFilteredTime: 13.617us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 525ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 54.985us - BlockInitTime: 218.492us - BlockLoadTime: 281.779ms - BlocksLoad: 155 - CachedPagesNum: 182 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 253.853ms - FirstReadSeekCount: 331 - FirstReadSeekTime: 197.854us - FirstReadTime: 18.138ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.88us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.689ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 773.557us - OutputIndexResultColumnTimer: 31.899us - RawRowsRead: 604.659K (604659) - 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: 4.990ms - ShortPredEvalTime: 1.24ms - TotalPagesNum: 182 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 34.701us PipelineXTask (index=1):(Active: 5.708ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.999ms - CloseTime: 207.702us - GetBlockTime: 256.789us - OpenTime: 318.662us - PrepareTime: 173.851us - SinkTime: 4.362ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.487ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.631ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 800.01 KB - CloseTime: 18.334us - CompressTime: 0ns - ExecTime: 4.425ms - InputRows: 61.293K (61293) - LocalBytesSent: 228.99 KB - LocalSendTime: 32.276us - LocalSentRows: 10.195K (10195) - MemoryUsage: - PeakMemoryUsage: 2.12 MB - MergeBlockTime: 0ns - OpenTime: 50.397us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s134ms - RowsProduced: 61.293K (61293) - RpcAvgTime: 1s794ms - RpcCount: 20 - RpcMaxTime: 4s96ms - RpcMinTime: 2s897ms - RpcSumTime: 35s887ms - SerializeBatchTime: 499.465us - SplitBlockDistributeByChannelTime: 1.896ms - SplitBlockHashComputeTime: 607.228us - UncompressedRowBatchSize: 1.19 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15335, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 314ns - BlocksProduced: 19 - CloseTime: 185.315us - ExecTime: 112.941ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 381.118us - ProcessConjunctTime: 67.751us - ProjectionTime: 328.778us - RowsProduced: 61.293K (61293) - RowsRead: 61.293K (61293) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.515ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 111.790ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [11.404us, 8.039us, 52.508ms, ] - PerScannerRowsRead: [0, 0, 61.29K, ] - PerScannerWaitTime: [1.083ms, 1.104ms, 1.327ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 51.928ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 172.243ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.15us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 137.915ms - ScannerCtxSchedTime: 3.509ms - ScannerFilterTime: 24.24us - ScannerGetBlockTime: 52.460ms - ScannerInitTime: 161.221us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.389us - BlockConditionsFilteredBloomFilterTime: 462ns - BlockConditionsFilteredDictTime: 243ns - BlockConditionsFilteredTime: 12.60us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 464ns - BlockInitSeekCount: 49 - BlockInitSeekTime: 58.45us - BlockInitTime: 209.585us - BlockLoadTime: 223.917ms - BlocksLoad: 160 - CachedPagesNum: 188 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 187.859ms - FirstReadSeekCount: 340 - FirstReadSeekTime: 176.379us - FirstReadTime: 10.403ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.829us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 21.462ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 954.841us - OutputIndexResultColumnTimer: 20.409us - RawRowsRead: 624.718K (624718) - 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.373ms - ShortPredEvalTime: 1.408ms - TotalPagesNum: 188 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 45.675us PipelineXTask (index=2):(Active: 111.467ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 108.77ms - CloseTime: 230.150us - GetBlockTime: 228.815us - OpenTime: 2.948ms - PrepareTime: 169.143us - SinkTime: 104.803ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 6.276ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.6ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 789.58 KB - CloseTime: 20.330us - CompressTime: 0ns - ExecTime: 104.869ms - InputRows: 60.76K (60760) - LocalBytesSent: 231.12 KB - LocalSendTime: 48.419us - LocalSentRows: 10.29K (10290) - MemoryUsage: - PeakMemoryUsage: 2.08 MB - MergeBlockTime: 0ns - OpenTime: 56.913us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s645ms - RowsProduced: 60.76K (60760) - RpcAvgTime: 3s403ms - RpcCount: 20 - RpcMaxTime: 6s809ms - RpcMinTime: 6s806ms - RpcSumTime: 1m8s - SerializeBatchTime: 575.751us - SplitBlockDistributeByChannelTime: 101.907ms - SplitBlockHashComputeTime: 850.917us - UncompressedRowBatchSize: 1.18 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15321, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 736ns - BlocksProduced: 19 - CloseTime: 205.634us - ExecTime: 281.473ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 3.15ms - ProcessConjunctTime: 89.55us - ProjectionTime: 217.820us - RowsProduced: 60.76K (60760) - RowsRead: 60.76K (60760) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 245.775ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 277.810ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [10.177us, 20.683us, 13.920ms, ] - PerScannerRowsRead: [0, 0, 60.76K, ] - PerScannerWaitTime: [75.745ms, 83.839ms, 86.190ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 13.498ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 335.526ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.387us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.348ms - ScannerCtxSchedTime: 245.770ms - ScannerFilterTime: 15.301us - ScannerGetBlockTime: 13.895ms - ScannerInitTime: 2.824ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 998ns - BlockConditionsFilteredBloomFilterTime: 322ns - BlockConditionsFilteredDictTime: 200ns - BlockConditionsFilteredTime: 9.99us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 313ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 50.33us - BlockInitTime: 170.247us - BlockLoadTime: 348.760ms - BlocksLoad: 165 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 181.147ms - FirstReadSeekCount: 363 - FirstReadSeekTime: 187.732us - FirstReadTime: 121.563ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.476us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.700ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 660.534us - OutputIndexResultColumnTimer: 32.718us - RawRowsRead: 645.772K (645772) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 242.615K (242615) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 4.251ms - ShortPredEvalTime: 835.842us - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 29.93us PipelineXTask (index=3):(Active: 15.526ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 12.355ms - CloseTime: 168.313us - GetBlockTime: 353.284us - OpenTime: 2.815ms - PrepareTime: 179.202us - SinkTime: 9.76ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.445ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.538ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 802.28 KB - CloseTime: 20.9us - CompressTime: 0ns - ExecTime: 9.152ms - InputRows: 61.616K (61616) - LocalBytesSent: 232.88 KB - LocalSendTime: 65.209us - LocalSentRows: 10.368K (10368) - MemoryUsage: - PeakMemoryUsage: 2.14 MB - MergeBlockTime: 0ns - OpenTime: 66.410us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s615ms - RowsProduced: 61.616K (61616) - RpcAvgTime: 3s342ms - RpcCount: 20 - RpcMaxTime: 6s688ms - RpcMinTime: 6s678ms - RpcSumTime: 1m6s - SerializeBatchTime: 1.749ms - SplitBlockDistributeByChannelTime: 4.431ms - SplitBlockHashComputeTime: 984.168us - UncompressedRowBatchSize: 1.20 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15323, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 620ns - BlocksProduced: 19 - CloseTime: 144.330us - ExecTime: 242.153ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 2.871ms - ProcessConjunctTime: 77.186us - ProjectionTime: 363.170us - RowsProduced: 61.616K (61616) - RowsRead: 61.616K (61616) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 210.134ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 238.426ms - 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: [20.057us, 9.464us, 80.826ms, ] - PerScannerRowsRead: [0, 0, 61.62K, ] - PerScannerWaitTime: [68.457ms, 69.908ms, 71.768ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 55.208ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 293.116ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.301us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 119.989ms - ScannerCtxSchedTime: 210.129ms - ScannerFilterTime: 30.920us - ScannerGetBlockTime: 80.781ms - ScannerInitTime: 2.655ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.211us - BlockConditionsFilteredBloomFilterTime: 516ns - BlockConditionsFilteredDictTime: 302ns - BlockConditionsFilteredTime: 11.573us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 514ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 40.706us - BlockInitTime: 184.411us - BlockLoadTime: 373.68ms - BlocksLoad: 167 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 337.120ms - FirstReadSeekCount: 451 - FirstReadSeekTime: 189.944us - FirstReadTime: 11.795ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.896us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 21.723ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 332.847us - OutputIndexResultColumnTimer: 16.797us - RawRowsRead: 650.634K (650634) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 75.379K (75379) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 20.979ms - ShortPredEvalTime: 248.373us - TotalPagesNum: 194 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 12.498us PipelineXTask (index=4):(Active: 1.244ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 546.589us - CloseTime: 203.858us - GetBlockTime: 69.142us - OpenTime: 303.699us - PrepareTime: 181.969us - SinkTime: 139.327us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.28ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.272ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.792us - CompressTime: 0ns - ExecTime: 223.416us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 7.85us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 65.900us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s264ms - RowsProduced: 0 - RpcAvgTime: 1s239ms - RpcCount: 10 - RpcMaxTime: 1s239ms - RpcMinTime: 1s239ms - RpcSumTime: 12s395ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 627ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15347] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 800ns - BlocksProduced: 0 - CloseTime: 180.631us - ExecTime: 143.427ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 378.100us - ProcessConjunctTime: 94.82us - ProjectionTime: 3.723us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.134ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.796ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.338us, 6.086us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [3.505ms, 3.629ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 226.418ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 273ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 131.358ms - ScannerCtxSchedTime: 7.131ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.824us - ScannerInitTime: 156.604us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 797ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.640us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 30 - BlockInitSeekTime: 31.719us - BlockInitTime: 107.259us - BlockLoadTime: 183.527ms - BlocksLoad: 191 - CachedPagesNum: 195 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 158.558ms - FirstReadSeekCount: 567 - FirstReadSeekTime: 183.96us - FirstReadTime: 23.82ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.92us - 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: 61.788us - OutputIndexResultColumnTimer: 21.209us - RawRowsRead: 761.668K (761668) - 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: 195 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 72.436ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 36.168ms - CloseTime: 145.50us - GetBlockTime: 46.309us - OpenTime: 35.956ms - PrepareTime: 161.127us - SinkTime: 141.456us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 696.893us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.179ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.384us - CompressTime: 0ns - ExecTime: 214.853us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 14.514us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 65.310us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s427ms - RowsProduced: 0 - RpcAvgTime: 2s402ms - RpcCount: 10 - RpcMaxTime: 2s402ms - RpcMinTime: 2s402ms - RpcSumTime: 24s26ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 713ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 645ns - BlocksProduced: 0 - CloseTime: 133.668us - ExecTime: 236.269ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 36.12ms - ProcessConjunctTime: 54.51us - ProjectionTime: 2.928us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 285.288ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 200.75ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [7.210us, 6.945us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [159.915ms, 125.373ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 133.233ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 89ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 84.139ms - ScannerCtxSchedTime: 285.285ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.94us - ScannerInitTime: 66.785us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 474ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.256us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.460us - BlockInitTime: 71.12us - BlockLoadTime: 132.882ms - BlocksLoad: 192 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 114.506ms - FirstReadSeekCount: 570 - FirstReadSeekTime: 172.41us - FirstReadTime: 16.717ms - IOTimer: 0ns - InvertedIndexFilterTime: 637ns - 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: 63.570us - OutputIndexResultColumnTimer: 17.689us - RawRowsRead: 765.16K (765160) - 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=6):(Active: 994.939us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 448.589us - CloseTime: 130.184us - GetBlockTime: 38.971us - OpenTime: 249.597us - PrepareTime: 158.890us - SinkTime: 128.238us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 848.291us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.152ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 33.895us - CompressTime: 0ns - ExecTime: 206.845us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 9.316us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 44.995us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s606ms - RowsProduced: 0 - RpcAvgTime: 1s590ms - RpcCount: 10 - RpcMaxTime: 1s590ms - RpcMinTime: 1s590ms - RpcSumTime: 15s902ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 363ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 600ns - BlocksProduced: 0 - CloseTime: 93.107us - ExecTime: 187.935ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 304.799us - ProcessConjunctTime: 95.979us - ProjectionTime: 3.181us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 14.569ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 187.496ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [25.070us, 6.377us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [7.282ms, 7.287ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 289.167ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 159ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 143.199ms - ScannerCtxSchedTime: 14.562ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.352us - ScannerInitTime: 101.6us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.267us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.638us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 27.127us - BlockInitTime: 137.784us - BlockLoadTime: 288.625ms - BlocksLoad: 193 - CachedPagesNum: 200 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 234.923ms - FirstReadSeekCount: 573 - FirstReadSeekTime: 194.194us - FirstReadTime: 51.405ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.719us - 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: 75.255us - OutputIndexResultColumnTimer: 28.291us - RawRowsRead: 772.394K (772394) - 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: 200 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 994.791us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 417.794us - CloseTime: 164.961us - GetBlockTime: 33.928us - OpenTime: 191.167us - PrepareTime: 214.399us - SinkTime: 164.244us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 821.286us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.973ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 40.682us - CompressTime: 0ns - ExecTime: 254.83us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 12.495us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 49.643us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s468ms - RowsProduced: 0 - RpcAvgTime: 1s453ms - RpcCount: 10 - RpcMaxTime: 1s453ms - RpcMinTime: 1s453ms - RpcSumTime: 14s538ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 828ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 498ns - BlocksProduced: 0 - CloseTime: 119.654us - ExecTime: 174.68ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 311.792us - ProcessConjunctTime: 62.523us - ProjectionTime: 3.559us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.756ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 173.599ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [9.940us, 6.132us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [3.609ms, 4.147ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 272.854ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 193ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 169.606ms - ScannerCtxSchedTime: 7.752ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.774us - ScannerInitTime: 80.507us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.124us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.379us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 15 - BlockInitSeekTime: 48.336us - BlockInitTime: 150.748us - BlockLoadTime: 240.379ms - BlocksLoad: 192 - CachedPagesNum: 197 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 191.603ms - FirstReadSeekCount: 570 - FirstReadSeekTime: 207.773us - FirstReadTime: 46.142ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.485us - 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: 88.656us - OutputIndexResultColumnTimer: 26.171us - RawRowsRead: 767.593K (767593) - 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: 197 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 1.60ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 494.164us - CloseTime: 114.311us - GetBlockTime: 59.159us - OpenTime: 267.363us - PrepareTime: 176.946us - SinkTime: 142.208us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 936.481us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.812ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.862us - CompressTime: 0ns - ExecTime: 214.192us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 7.456us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 61.550us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s306ms - RowsProduced: 0 - RpcAvgTime: 1s293ms - RpcCount: 10 - RpcMaxTime: 1s293ms - RpcMinTime: 1s292ms - RpcSumTime: 12s930ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 357ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 753ns - BlocksProduced: 0 - CloseTime: 101.211us - ExecTime: 147.824ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 322.968us - ProcessConjunctTime: 87.714us - ProjectionTime: 4.422us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.504ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 147.337ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [8.823us, 9.089us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [1.257ms, 1.247ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 261.827ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 372ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 201.565ms - ScannerCtxSchedTime: 2.498ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.178us - ScannerInitTime: 109.334us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.338us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.707us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 48.365us - BlockInitTime: 170.856us - BlockLoadTime: 261.299ms - BlocksLoad: 192 - CachedPagesNum: 198 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 234.544ms - FirstReadSeekCount: 570 - FirstReadSeekTime: 247.634us - FirstReadTime: 24.52ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.711us - 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: 92.746us - OutputIndexResultColumnTimer: 42.412us - RawRowsRead: 769.413K (769413) - 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=9):(Active: 4.220ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.150ms - CloseTime: 75.497us - GetBlockTime: 51.288us - OpenTime: 1.832ms - PrepareTime: 153.959us - SinkTime: 233.908us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.200ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.550ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.46us - CompressTime: 0ns - ExecTime: 308.722us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 10.485us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 68.442us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 367.615ms - RowsProduced: 0 - RpcAvgTime: 343.6ms - RpcCount: 10 - RpcMaxTime: 343.144ms - RpcMinTime: 342.844ms - RpcSumTime: 3s430ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 788ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15311, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 560ns - BlocksProduced: 0 - CloseTime: 67.199us - ExecTime: 116.723ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 1.877ms - ProcessConjunctTime: 123.526us - ProjectionTime: 3.418us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.84ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.724ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [5.456us, 7.274us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [2.671ms, 3.413ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 180.995ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 284ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 105.28ms - ScannerCtxSchedTime: 6.80ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.887us - ScannerInitTime: 1.652ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 925ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.448us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 20.149us - BlockInitTime: 107.26us - BlockLoadTime: 169.716ms - BlocksLoad: 190 - CachedPagesNum: 194 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 154.795ms - FirstReadSeekCount: 564 - FirstReadSeekTime: 150.22us - FirstReadTime: 13.420ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.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: 49.124us - OutputIndexResultColumnTimer: 19.729us - RawRowsRead: 759.906K (759906) - 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=10):(Active: 1.208ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 649.332us - CloseTime: 141.749us - GetBlockTime: 65.870us - OpenTime: 270.683us - PrepareTime: 139.639us - SinkTime: 282.403us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.55ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.369ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.460us - CompressTime: 0ns - ExecTime: 354.472us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.263us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 384.00 B - MergeBlockTime: 0ns - OpenTime: 53.314us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 368.37ms - RowsProduced: 0 - RpcAvgTime: 343.496ms - RpcCount: 10 - RpcMaxTime: 343.563ms - RpcMinTime: 343.408ms - RpcSumTime: 3s434ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 695ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15327, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 624ns - BlocksProduced: 0 - CloseTime: 118.594us - ExecTime: 113.339ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 319.121us - ProcessConjunctTime: 95.87us - ProjectionTime: 4.115us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 521.338us - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 112.832ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, ORDER_STATUS_ID, PAY_STATUS] - PerScannerRunningTime: [7.164us, 7.848us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [106.813us, 414.525us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 92.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 222.230ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 219ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 139.62ms - ScannerCtxSchedTime: 515.44us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.75us - ScannerInitTime: 125.473us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.237us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.532us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 16 - BlockInitSeekTime: 32.651us - BlockInitTime: 132.843us - BlockLoadTime: 221.663ms - BlocksLoad: 170 - CachedPagesNum: 177 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 172.847ms - FirstReadSeekCount: 504 - FirstReadSeekTime: 196.665us - FirstReadTime: 46.859ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.523us - 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: 68.395us - OutputIndexResultColumnTimer: 33.795us - RawRowsRead: 681.79K (681790) - 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: 177 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 118.415ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 117.170ms - CloseTime: 210.164us - GetBlockTime: 330.515us - OpenTime: 620.199us - PrepareTime: 405.194us - SinkTime: 116.126ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 9.404ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.129ms DATA_STREAM_SINK_OPERATOR (id=206,dst_id=206): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 807.30 KB - CloseTime: 17.965us - CompressTime: 0ns - ExecTime: 116.198ms - InputRows: 61.546K (61546) - LocalBytesSent: 223.58 KB - LocalSendTime: 76.678us - LocalSentRows: 9.954K (9954) - MemoryUsage: - PeakMemoryUsage: 1.96 MB - MergeBlockTime: 0ns - OpenTime: 64.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s203ms - RowsProduced: 61.546K (61546) - RpcAvgTime: 2s335ms - RpcCount: 20 - RpcMaxTime: 5s169ms - RpcMinTime: 4s185ms - RpcSumTime: 46s701ms - SerializeBatchTime: 1.332ms - SplitBlockDistributeByChannelTime: 111.387ms - SplitBlockHashComputeTime: 1.172ms - UncompressedRowBatchSize: 1.21 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=205. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15329, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 460ns - BlocksProduced: 19 - CloseTime: 188.599us - ExecTime: 30.989ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 900.823us - ProcessConjunctTime: 75.513us - ProjectionTime: 277.614us - RowsProduced: 61.546K (61546) - RowsRead: 61.546K (61546) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.492ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 29.299ms - 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: [11.518us, 26.429ms, ] - PerScannerRowsRead: [0, 61.55K, ] - PerScannerWaitTime: [670.705us, 821.590us, ] - BlockConvertTime: 0ns - BlockFetchTime: 25.956ms - MemoryUsage: - FreeBlocks: 1.80 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 57.499ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.350us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 73.796ms - ScannerCtxSchedTime: 1.485ms - ScannerFilterTime: 20.25us - ScannerGetBlockTime: 26.394ms - ScannerInitTime: 476.62us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 889ns - BlockConditionsFilteredBloomFilterTime: 367ns - BlockConditionsFilteredDictTime: 217ns - BlockConditionsFilteredTime: 8.433us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 351ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 43.351us - BlockInitTime: 148.160us - BlockLoadTime: 83.346ms - BlocksLoad: 95 - CachedPagesNum: 120 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 71.35ms - FirstReadSeekCount: 238 - FirstReadSeekTime: 108.765us - FirstReadTime: 7.172ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.259us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.305ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 267.313us - OutputIndexResultColumnTimer: 13.94us - RawRowsRead: 366.774K (366774) - 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.717ms - ShortPredEvalTime: 168.204us - TotalPagesNum: 120 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 11.550us Fragment 74: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 113.174ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 66.286ms - CloseTime: 35.777us - GetBlockTime: 257.374us - OpenTime: 46.682ms - PrepareTime: 161.428us - SinkTime: 19.233ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.306ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.149ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 26 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 418.33 KB - CloseTime: 10.867us - CompressTime: 0ns - ExecTime: 19.301ms - InputRows: 73.951K (73951) - LocalBytesSent: 4.05 MB - LocalSendTime: 154.972us - LocalSentRows: 61.54K (61540) - MemoryUsage: - PeakMemoryUsage: 7.01 MB - MergeBlockTime: 0ns - OpenTime: 65.991us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 77.556ms - RowsProduced: 73.951K (73951) - RpcAvgTime: 34.178ms - RpcCount: 4 - RpcMaxTime: 70.424ms - RpcMinTime: 66.288ms - RpcSumTime: 136.712ms - SerializeBatchTime: 4.931ms - SplitBlockDistributeByChannelTime: 7.753ms - SplitBlockHashComputeTime: 5.191ms - UncompressedRowBatchSize: 846.54 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 530ns - BlocksProduced: 20 - CloseTime: 23.338us - ExecTime: 97.765ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 46.743ms - ProcessConjunctTime: 37.629us - ProjectionTime: 0ns - RowsProduced: 73.951K (73951) - RowsRead: 73.951K (73951) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 42.291ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 50.751ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [7.294ms, ] - PerScannerRowsRead: [73.95K, ] - PerScannerWaitTime: [42.291ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.194ms - MemoryUsage: - FreeBlocks: 5.62 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 891.425us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.529us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.438ms - ScannerCtxSchedTime: 42.289ms - ScannerFilterTime: 13.810us - ScannerGetBlockTime: 7.270ms - ScannerInitTime: 46.597ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 370ns - BlockConditionsFilteredBloomFilterTime: 1.40us - BlockConditionsFilteredDictTime: 484ns - BlockConditionsFilteredTime: 18.522us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 11.932us - BlockInitSeekCount: 7 - BlockInitSeekTime: 31.851us - BlockInitTime: 68.893us - BlockLoadTime: 7.983ms - BlocksLoad: 21 - CachedPagesNum: 31 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 20 - FirstReadSeekTime: 289.31us - FirstReadTime: 1.893ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.653us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.259ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.517ms - OutputIndexResultColumnTimer: 4.22us - 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: 134.287us - TotalPagesNum: 31 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 13.350us Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 70.757ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 70.284ms - CloseTime: 56.178us - GetBlockTime: 256.623us - OpenTime: 236.413us - PrepareTime: 172.996us - SinkTime: 30.565ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 23.731ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.877ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.15 MB - CloseTime: 17.830us - CompressTime: 0ns - ExecTime: 30.630ms - InputRows: 78.716K (78716) - LocalBytesSent: 894.64 KB - LocalSendTime: 54.324us - LocalSentRows: 13.277K (13277) - MemoryUsage: - PeakMemoryUsage: 5.76 MB - MergeBlockTime: 0ns - OpenTime: 60.723us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s842ms - RowsProduced: 78.716K (78716) - RpcAvgTime: 3s420ms - RpcCount: 20 - RpcMaxTime: 6s841ms - RpcMinTime: 6s839ms - RpcSumTime: 1m8s - SerializeBatchTime: 7.338ms - SplitBlockDistributeByChannelTime: 16.450ms - SplitBlockHashComputeTime: 4.223ms - UncompressedRowBatchSize: 4.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 634ns - BlocksProduced: 21 - CloseTime: 34.537us - ExecTime: 165.766ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 307.947us - ProcessConjunctTime: 81.188us - ProjectionTime: 0ns - RowsProduced: 78.716K (78716) - RowsRead: 78.716K (78716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 375.942us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 165.175ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [162.946ms, ] - PerScannerRowsRead: [78.72K, ] - PerScannerWaitTime: [375.942us, ] - BlockConvertTime: 0ns - BlockFetchTime: 162.813ms - MemoryUsage: - FreeBlocks: 6.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.471ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 777ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.468ms - ScannerCtxSchedTime: 372.808us - ScannerFilterTime: 18.723us - ScannerGetBlockTime: 162.912ms - ScannerInitTime: 110.21us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 840ns - BlockConditionsFilteredBloomFilterTime: 2.647us - BlockConditionsFilteredDictTime: 863ns - BlockConditionsFilteredTime: 37.578us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 24.103us - BlockInitSeekCount: 9 - BlockInitSeekTime: 54.434us - BlockInitTime: 133.907us - BlockLoadTime: 164.85ms - BlocksLoad: 22 - CachedPagesNum: 35 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 21 - FirstReadSeekTime: 455.576us - FirstReadTime: 2.281ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.660us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 125.177ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 36.166ms - OutputIndexResultColumnTimer: 3.972us - 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: 192.445us - TotalPagesNum: 35 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 16.248us PipelineXTask (index=1):(Active: 98.524ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 94.424ms - CloseTime: 58.216us - GetBlockTime: 20.240ms - OpenTime: 3.865ms - PrepareTime: 169.33us - SinkTime: 32.691ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.574ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.691ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.96 MB - CloseTime: 18.465us - CompressTime: 0ns - ExecTime: 32.766ms - InputRows: 71.341K (71341) - LocalBytesSent: 810.08 KB - LocalSendTime: 37.176us - LocalSentRows: 12.022K (12022) - MemoryUsage: - PeakMemoryUsage: 5.38 MB - MergeBlockTime: 0ns - OpenTime: 67.621us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s362ms - RowsProduced: 71.341K (71341) - RpcAvgTime: 2s705ms - RpcCount: 20 - RpcMaxTime: 6s381ms - RpcMinTime: 4s356ms - RpcSumTime: 54s100ms - SerializeBatchTime: 17.664ms - SplitBlockDistributeByChannelTime: 7.433ms - SplitBlockHashComputeTime: 4.670ms - UncompressedRowBatchSize: 3.95 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 579ns - BlocksProduced: 19 - CloseTime: 35.903us - ExecTime: 141.527ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 3.919ms - ProcessConjunctTime: 67.973us - ProjectionTime: 0ns - RowsProduced: 71.341K (71341) - RowsRead: 71.341K (71341) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 107.760ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 117.342ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [7.414ms, ] - PerScannerRowsRead: [71.34K, ] - PerScannerWaitTime: [107.760ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.316ms - MemoryUsage: - FreeBlocks: 5.46 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.834ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.393us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.546ms - ScannerCtxSchedTime: 107.758ms - ScannerFilterTime: 13.73us - ScannerGetBlockTime: 7.390ms - ScannerInitTime: 3.769ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 440ns - BlockConditionsFilteredBloomFilterTime: 1.508us - BlockConditionsFilteredDictTime: 437ns - BlockConditionsFilteredTime: 30.697us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.725us - BlockInitSeekCount: 8 - BlockInitSeekTime: 50.290us - BlockInitTime: 105.82us - BlockLoadTime: 9.58ms - BlocksLoad: 20 - CachedPagesNum: 30 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 19 - FirstReadSeekTime: 683.543us - FirstReadTime: 2.794ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.494us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.351ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.524ms - OutputIndexResultColumnTimer: 3.145us - 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: 180.481us - TotalPagesNum: 30 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 11.292us PipelineXTask (index=2):(Active: 57.359ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 56.893ms - CloseTime: 67.784us - GetBlockTime: 314.700us - OpenTime: 241.680us - PrepareTime: 148.993us - SinkTime: 56.239ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 32.277ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 608.74us DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.07 MB - CloseTime: 17.988us - CompressTime: 0ns - ExecTime: 56.291ms - InputRows: 75.346K (75346) - LocalBytesSent: 842.15 KB - LocalSendTime: 59.172us - LocalSentRows: 12.498K (12498) - MemoryUsage: - PeakMemoryUsage: 5.71 MB - MergeBlockTime: 0ns - OpenTime: 47.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s46ms - RowsProduced: 75.346K (75346) - RpcAvgTime: 3s520ms - RpcCount: 20 - RpcMaxTime: 7s42ms - RpcMinTime: 7s39ms - RpcSumTime: 1m10s - SerializeBatchTime: 12.589ms - SplitBlockDistributeByChannelTime: 35.318ms - SplitBlockHashComputeTime: 5.655ms - UncompressedRowBatchSize: 4.19 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 773ns - BlocksProduced: 20 - CloseTime: 44.792us - ExecTime: 253.764ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 318.961us - ProcessConjunctTime: 70.747us - ProjectionTime: 0ns - RowsProduced: 75.346K (75346) - RowsRead: 75.346K (75346) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 281.167us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 253.96ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [30.573ms, ] - PerScannerRowsRead: [75.35K, ] - PerScannerWaitTime: [281.167us, ] - BlockConvertTime: 0ns - BlockFetchTime: 30.397ms - MemoryUsage: - FreeBlocks: 5.75 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 221.567ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.426us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.160ms - ScannerCtxSchedTime: 277.980us - ScannerFilterTime: 21.224us - ScannerGetBlockTime: 30.530ms - ScannerInitTime: 131.523us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.3us - BlockConditionsFilteredBloomFilterTime: 2.754us - BlockConditionsFilteredDictTime: 981ns - BlockConditionsFilteredTime: 42.305us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 26.717us - BlockInitSeekCount: 9 - BlockInitSeekTime: 60.961us - BlockInitTime: 145.326us - BlockLoadTime: 251.739ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 20 - FirstReadSeekTime: 121.624ms - FirstReadTime: 222.525ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.89us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 26.195ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.461ms - OutputIndexResultColumnTimer: 5.901us - 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: 157.337us - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 11.312us PipelineXTask (index=3):(Active: 223.9ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 222.351ms - CloseTime: 69.772us - GetBlockTime: 268.231us - OpenTime: 451.540us - PrepareTime: 129.27us - SinkTime: 183.901ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 26.548ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.220ms DATA_STREAM_SINK_OPERATOR (id=204,dst_id=204): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 34 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.05 MB - CloseTime: 20.665us - CompressTime: 0ns - ExecTime: 183.958ms - InputRows: 74.582K (74582) - LocalBytesSent: 821.87 KB - LocalSendTime: 53.163us - LocalSentRows: 12.197K (12197) - MemoryUsage: - PeakMemoryUsage: 5.31 MB - MergeBlockTime: 0ns - OpenTime: 45.529us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s785ms - RowsProduced: 74.582K (74582) - RpcAvgTime: 3s376ms - RpcCount: 20 - RpcMaxTime: 6s808ms - RpcMinTime: 6s729ms - RpcSumTime: 1m7s - SerializeBatchTime: 5.912ms - SplitBlockDistributeByChannelTime: 170.603ms - SplitBlockHashComputeTime: 5.256ms - UncompressedRowBatchSize: 4.16 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 790ns - BlocksProduced: 20 - CloseTime: 44.667us - ExecTime: 23.728ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 505.125us - ProcessConjunctTime: 48.261us - ProjectionTime: 0ns - RowsProduced: 74.582K (74582) - RowsRead: 74.582K (74582) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.689ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 22.921ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CHAT_ID, UNIONID] - ShortCircuitPredicates: NullPredicate(not_null), column_id=1, opposite=false - PerScannerRunningTime: [18.717ms, ] - PerScannerRowsRead: [74.58K, ] - PerScannerWaitTime: [2.689ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 18.593ms - MemoryUsage: - FreeBlocks: 5.68 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.419ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.301us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.173ms - ScannerCtxSchedTime: 2.686ms - ScannerFilterTime: 20.481us - ScannerGetBlockTime: 18.678ms - ScannerInitTime: 70.457us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 650ns - BlockConditionsFilteredBloomFilterTime: 1.829us - BlockConditionsFilteredDictTime: 831ns - BlockConditionsFilteredTime: 34.214us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 22.891us - BlockInitSeekCount: 9 - BlockInitSeekTime: 49.594us - BlockInitTime: 116.681us - BlockLoadTime: 19.819ms - BlocksLoad: 21 - CachedPagesNum: 32 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 20 - FirstReadSeekTime: 393.932us - FirstReadTime: 2.523ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.563us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.249ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 13.465ms - OutputIndexResultColumnTimer: 4.112us - 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: 323.408us - TotalPagesNum: 32 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 16.561us Fragment 75: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.976ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.862ms - CloseTime: 22.330us - GetBlockTime: 1.98ms - OpenTime: 1.957us - PrepareTime: 83.239us - SinkTime: 736.593us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.944ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.728ms DATA_STREAM_SINK_OPERATOR (id=202,dst_id=202): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 163.39 KB - CloseTime: 16.681us - CompressTime: 0ns - ExecTime: 791.675us - InputRows: 4.04K (4040) - LocalBytesSent: 195.32 KB - LocalSendTime: 167.191us - LocalSentRows: 4.04K (4040) - MemoryUsage: - PeakMemoryUsage: 236.00 KB - MergeBlockTime: 199.556us - OpenTime: 39.97us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 965.998ms - RowsProduced: 4.04K (4040) - RpcAvgTime: 949.781ms - RpcCount: 1 - RpcMaxTime: 949.781ms - RpcMinTime: 949.781ms - RpcSumTime: 949.781ms - SerializeBatchTime: 240.531us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 410.65 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=201): - BlocksProduced: 1 - CloseTime: 1.684us - DeserializeAndMergeTime: 0ns - ExecTime: 1.109ms - GetResultsTime: 494.401us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 41.125us - HashTableSize: 4.04K (4040) - InsertKeysToColumnTime: 187.326us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.379us - ProjectionTime: 591.799us - RowsProduced: 4.04K (4040) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 149.584ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 21.994ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 21.900ms - CloseTime: 29.222us - GetBlockTime: 27.136us - OpenTime: 2.767us - PrepareTime: 56.611us - SinkTime: 21.812ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.518ms AGGREGATION_SINK_OPERATOR (id=201): - BuildTime: 0ns - CloseTime: 1.591us - DeserializeAndMergeTime: 88.73us - ExecTime: 21.834ms - ExprTime: 0ns - HashTableComputeTime: 21.537ms - HashTableEmplaceTime: 21.118ms - HashTableInputCount: 4.04K (4040) - InputRows: 4.04K (4040) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 967.98 KB - SerializeKeyArena: 776.00 KB - MergeTime: 21.799ms - OpenTime: 22.795us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=200): - BlocksProduced: 3 - BytesReceived: 28.25 KB - CloseTime: 26.572us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 35.303ms - ExecTime: 70.835us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 232.00 KB - MemoryUsage: - Blocks: 232.00 KB - PeakMemoryUsage: 52.00 KB - OpenTime: 19.527us - ProjectionTime: 0ns - RowsProduced: 4.04K (4040) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 125.274ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.854ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.698ms - CloseTime: 36.292us - GetBlockTime: 1.726ms - OpenTime: 1.482us - PrepareTime: 93.230us - SinkTime: 925.358us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.790ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.440ms DATA_STREAM_SINK_OPERATOR (id=202,dst_id=202): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 170.01 KB - CloseTime: 29.548us - CompressTime: 0ns - ExecTime: 998.427us - InputRows: 4.177K (4177) - LocalBytesSent: 202.31 KB - LocalSendTime: 215.32us - LocalSentRows: 4.177K (4177) - MemoryUsage: - PeakMemoryUsage: 236.00 KB - MergeBlockTime: 210.619us - OpenTime: 46.115us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 574.493ms - RowsProduced: 4.177K (4177) - RpcAvgTime: 264.677ms - RpcCount: 2 - RpcMaxTime: 529.355ms - RpcMinTime: 529.355ms - RpcSumTime: 529.355ms - SerializeBatchTime: 313.66us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 425.56 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=201): - BlocksProduced: 2 - CloseTime: 1.795us - DeserializeAndMergeTime: 0ns - ExecTime: 1.720ms - GetResultsTime: 774.264us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 48.866us - HashTableSize: 4.177K (4177) - InsertKeysToColumnTime: 374.792us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.375us - ProjectionTime: 910.590us - RowsProduced: 4.177K (4177) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 971.213ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 2.908ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.812ms - CloseTime: 17.640us - GetBlockTime: 38.109us - OpenTime: 3.254us - PrepareTime: 69.499us - SinkTime: 2.724ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.879ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.690ms AGGREGATION_SINK_OPERATOR (id=201): - BuildTime: 0ns - CloseTime: 4.268us - DeserializeAndMergeTime: 122.347us - ExecTime: 2.753ms - ExprTime: 0ns - HashTableComputeTime: 2.358ms - HashTableEmplaceTime: 1.994ms - 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.709ms - OpenTime: 27.418us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=200): - BlocksProduced: 3 - BytesReceived: 32.63 KB - CloseTime: 11.106us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 223.7us - ExecTime: 66.79us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 180.00 KB - MemoryUsage: - Blocks: 232.00 KB - PeakMemoryUsage: 180.00 KB - OpenTime: 20.23us - ProjectionTime: 0ns - RowsProduced: 4.177K (4177) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 964.936ms Fragment 76: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 6.423ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.448ms - CloseTime: 203.422us - GetBlockTime: 4.140ms - OpenTime: 414.373us - PrepareTime: 345.665us - SinkTime: 841.151us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.192ms - WaitBfTime: 4.848ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.541ms DATA_STREAM_SINK_OPERATOR (id=200,dst_id=200): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.21 KB - CloseTime: 16.277us - CompressTime: 0ns - ExecTime: 890.713us - InputRows: 3.816K (3816) - LocalBytesSent: 134.39 KB - LocalSendTime: 16.871us - LocalSentRows: 1.949K (1949) - MemoryUsage: - PeakMemoryUsage: 360.00 KB - MergeBlockTime: 0ns - OpenTime: 34.215us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 55.577ms - RowsProduced: 3.816K (3816) - RpcAvgTime: 15.603ms - RpcCount: 1 - RpcMaxTime: 15.603ms - RpcMinTime: 15.603ms - RpcSumTime: 15.603ms - SerializeBatchTime: 173.609us - SplitBlockDistributeByChannelTime: 330.88us - SplitBlockHashComputeTime: 182.685us - UncompressedRowBatchSize: 131.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=199): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 2.377ms - CloseTime: 82.660us - DeserializeAndMergeTime: 0ns - ExecTime: 3.313ms - ExprTime: 78.413us - GetResultsTime: 793.50us - HashTableComputeTime: 2.240ms - HashTableEmplaceTime: 1.986ms - HashTableInputCount: 3.816K (3816) - HashTableIterateTime: 58.8us - HashTableSize: 3.816K (3816) - InsertKeysToColumnTime: 297.22us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 967.98 KB - SerializeKeyArena: 776.00 KB - MergeTime: 0ns - OpenTime: 43.436us - ProjectionTime: 0ns - RowsProduced: 3.816K (3816) - SerializeDataTime: 399.174us - SerializeKeyTime: 0ns - SerializeResultTime: 797.619us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=198): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 18.338us - ExecTime: 853.351us - InitProbeSideTime: 127.155us - JoinFilterTimer: 326ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 39.836us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.88us - ProbeFindNextTime: 0ns - ProbeRows: 3.816K (3816) - ProbeTime: 358.699us - ProbeWhenBuildSideOutputTime: 9.838us - ProbeWhenProbeSideOutputTime: 64.880us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 103.69us - ProjectionTime: 423.550us - RowsProduced: 3.816K (3816) - WaitForDependency[HASH_JOIN_OPERATOR_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: 39.464us - BlocksProduced: 1 - CloseTime: 80.444us - ExecTime: 32.361ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 524.923us - ProcessConjunctTime: 246.280us - ProjectionTime: 0ns - RowsProduced: 3.816K (3816) - RowsRead: 3.816K (3816) - RuntimeFilterInfo: - filter id = -1 filtered: 16.743736M (16743736) - filter id = -1 input: 16.898754M (16898754) - ScannerWorkerWaitTime: 72.124ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 31.632ms - 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.344us, 1.700us, 7.409ms, ] - PerScannerRowsRead: [0, 0, 3.82K, ] - PerScannerWaitTime: [22.974ms, 24.260ms, 24.890ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.276ms - MemoryUsage: - FreeBlocks: 376.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 14.972ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 513ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 22.852ms - ScannerCtxSchedTime: 72.119ms - ScannerFilterTime: 18.603us - ScannerGetBlockTime: 7.382ms - ScannerInitTime: 96.730us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 7258192, filtered = 7190838] - BitmapIndexFilterTimer: 4.263us - BlockConditionsFilteredBloomFilterTime: 4.774us - BlockConditionsFilteredDictTime: 91.391us - BlockConditionsFilteredTime: 277.564us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 134.685us - BlockInitSeekCount: 80 - BlockInitSeekTime: 345.988us - BlockInitTime: 833.711us - BlockLoadTime: 21.547ms - BlocksLoad: 899 - CachedPagesNum: 278 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.489ms - FirstReadSeekCount: 895 - FirstReadSeekTime: 68.238us - FirstReadTime: 5.176ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.584us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 774.970us - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 657.691us - OutputIndexResultColumnTimer: 3.185us - 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: 433.979us - ShortPredEvalTime: 7.457ms - TotalPagesNum: 278 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 261.674us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 280.344us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 127.28us - CloseTime: 7.856us - GetBlockTime: 10.696us - OpenTime: 1.652us - PrepareTime: 137.711us - SinkTime: 97.816us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 264.934us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.731ms HASH_JOIN_SINK_OPERATOR (id=198): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.114us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.129us - BuildTableInsertTime: 22.786us - BuildTableTime: 27.190us - CloseTime: 0ns - ExecTime: 165.676us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 68.479us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.20us - RuntimeFilterComputeTime: 23.830us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=196): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.324us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.557us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 21.296us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 751.748us Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.65ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.960ms - CloseTime: 247.519us - GetBlockTime: 3.403ms - OpenTime: 489.797us - PrepareTime: 352.904us - SinkTime: 979.743us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.787ms - WaitBfTime: 2.459ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.378ms DATA_STREAM_SINK_OPERATOR (id=200,dst_id=200): - Partitioner: Crc32HashPartitioner(2) - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 32.59 KB - CloseTime: 14.625us - CompressTime: 0ns - ExecTime: 1.34ms - InputRows: 4.401K (4401) - LocalBytesSent: 149.64 KB - LocalSendTime: 14.25us - LocalSentRows: 2.173K (2173) - MemoryUsage: - PeakMemoryUsage: 464.00 KB - MergeBlockTime: 0ns - OpenTime: 41.850us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 841.324ms - RowsProduced: 4.401K (4401) - RpcAvgTime: 820.989ms - RpcCount: 1 - RpcMaxTime: 820.989ms - RpcMinTime: 820.989ms - RpcSumTime: 820.989ms - SerializeBatchTime: 160.513us - SplitBlockDistributeByChannelTime: 514.109us - SplitBlockHashComputeTime: 151.402us - UncompressedRowBatchSize: 156.77 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=199): - BlocksProduced: 2 - BuildConvertToPartitionedTime: 0ns - BuildTime: 1.725ms - CloseTime: 95.960us - DeserializeAndMergeTime: 0ns - ExecTime: 2.848ms - ExprTime: 48.675us - GetResultsTime: 969.733us - HashTableComputeTime: 1.631ms - HashTableEmplaceTime: 1.420ms - HashTableInputCount: 4.401K (4401) - HashTableIterateTime: 35.601us - HashTableSize: 4.401K (4401) - InsertKeysToColumnTime: 414.580us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 967.98 KB - SerializeKeyArena: 776.00 KB - MergeTime: 0ns - OpenTime: 36.268us - ProjectionTime: 0ns - RowsProduced: 4.401K (4401) - SerializeDataTime: 455.208us - SerializeKeyTime: 0ns - SerializeResultTime: 976.929us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=198): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 17.245us - ExecTime: 622.764us - InitProbeSideTime: 92.949us - JoinFilterTimer: 448ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.888us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.548us - ProbeFindNextTime: 0ns - ProbeRows: 4.401K (4401) - ProbeTime: 284.238us - ProbeWhenBuildSideOutputTime: 10.63us - ProbeWhenProbeSideOutputTime: 51.168us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 78.133us - ProjectionTime: 287.455us - RowsProduced: 4.401K (4401) - WaitForDependency[HASH_JOIN_OPERATOR_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: 64.192us - BlocksProduced: 2 - CloseTime: 113.277us - ExecTime: 122.763ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 610.141us - ProcessConjunctTime: 292.762us - ProjectionTime: 0ns - RowsProduced: 4.401K (4401) - RowsRead: 4.401K (4401) - RuntimeFilterInfo: - filter id = -1 filtered: 12.967252M (12967252) - filter id = -1 input: 13.064992M (13064992) - ScannerWorkerWaitTime: 299.20ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 121.968ms - 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: [2.314us, 1.736us, 13.874ms, ] - PerScannerRowsRead: [0, 0, 4.40K, ] - PerScannerWaitTime: [97.980ms, 99.992ms, 101.047ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 13.782ms - MemoryUsage: - FreeBlocks: 376.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 43.884ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 438ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.285ms - ScannerCtxSchedTime: 299.15ms - ScannerFilterTime: 12.276us - ScannerGetBlockTime: 13.857ms - ScannerInitTime: 97.248us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 7217940, filtered = 7149200] - BitmapIndexFilterTimer: 6.536us - BlockConditionsFilteredBloomFilterTime: 7.445us - BlockConditionsFilteredDictTime: 115.266us - BlockConditionsFilteredTime: 374.822us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 183.605us - BlockInitSeekCount: 82 - BlockInitSeekTime: 9.557ms - BlockInitTime: 10.223ms - BlockLoadTime: 56.841ms - BlocksLoad: 894 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 15.456ms - FirstReadSeekCount: 890 - FirstReadSeekTime: 110.393us - FirstReadTime: 15.477ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.271us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 778.284us - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 863.303us - OutputIndexResultColumnTimer: 3.764us - 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: 535.771us - ShortPredEvalTime: 10.855ms - TotalPagesNum: 276 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 456.471us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 9.781ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 9.678ms - CloseTime: 15.366us - GetBlockTime: 9.861us - OpenTime: 3.314us - PrepareTime: 77.802us - SinkTime: 9.613ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 269.313us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 499.884us HASH_JOIN_SINK_OPERATOR (id=198): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.496us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.106us - BuildTableInsertTime: 9.522ms - BuildTableTime: 9.530ms - CloseTime: 0ns - ExecTime: 9.630ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 18.355us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.847us - RuntimeFilterComputeTime: 24.634us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=196): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 12.378us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.517us - ExecTime: 53.582us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 32.1us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3.644ms Fragment 77: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 659.678us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 269.696us - CloseTime: 63.727us - GetBlockTime: 33.750us - OpenTime: 118.486us - PrepareTime: 200.100us - SinkTime: 99.896us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 587.182us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 989.152us DATA_STREAM_SINK_OPERATOR (id=196,dst_id=196): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 12.114us - CompressTime: 0ns - ExecTime: 165.179us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 7.918us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 4.821us - OpenTime: 53.448us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.523ms - RowsProduced: 80 - RpcAvgTime: 991.358us - RpcCount: 1 - RpcMaxTime: 991.358us - RpcMinTime: 991.358us - RpcSumTime: 991.358us - SerializeBatchTime: 12.231us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 369ns - BlocksProduced: 1 - CloseTime: 47.887us - ExecTime: 925.429us - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 212.275us - ProcessConjunctTime: 34.509us - ProjectionTime: 5.992us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 346.592us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 625.646us - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [33.552us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [346.592us, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.522us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 188.630us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 60ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 284.479us - ScannerCtxSchedTime: 345.2us - ScannerFilterTime: 2.352us - ScannerGetBlockTime: 26.324us - ScannerInitTime: 58.380us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 278ns - BlockConditionsFilteredBloomFilterTime: 1.254us - BlockConditionsFilteredDictTime: 2.529us - BlockConditionsFilteredTime: 13.360us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.224us - BlockInitSeekCount: 6 - BlockInitSeekTime: 14.387us - BlockInitTime: 51.193us - BlockLoadTime: 96.259us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 3.256us - FirstReadTime: 5.217us - IOTimer: 0ns - InvertedIndexFilterTime: 1.384us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.190us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.304us - OutputIndexResultColumnTimer: 356ns - 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: 66ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.314us Fragment 78: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.18ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 844.461us - CloseTime: 11.182us - GetBlockTime: 139.374us - OpenTime: 3.763us - PrepareTime: 151.761us - SinkTime: 661.334us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 962.815us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.103ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.44 KB - CloseTime: 9.212us - CompressTime: 0ns - ExecTime: 788.976us - InputRows: 71 - LocalBytesSent: 2.31 KB - LocalSendTime: 149.890us - LocalSentRows: 32 - MemoryUsage: - PeakMemoryUsage: 17.72 KB - MergeBlockTime: 0ns - OpenTime: 119.185us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.372ms - RowsProduced: 71 - RpcAvgTime: 476.941us - RpcCount: 12 - RpcMaxTime: 1.399ms - RpcMinTime: 17.693us - RpcSumTime: 5.723ms - SerializeBatchTime: 35.844us - SplitBlockDistributeByChannelTime: 53.643us - SplitBlockHashComputeTime: 6.928us - UncompressedRowBatchSize: 3.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 581ns - DeserializeAndMergeTime: 0ns - ExecTime: 149.152us - GetResultsTime: 72.675us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 778ns - HashTableSize: 71 - InsertKeysToColumnTime: 19.800us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.364us - ProjectionTime: 41.415us - RowsProduced: 71 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s509ms PipelineXTask (index=2):(Active: 997.317us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 783.340us - CloseTime: 17.482us - GetBlockTime: 102.488us - OpenTime: 3.80us - PrepareTime: 187.987us - SinkTime: 660.277us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 972.443us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.110ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.44 KB - CloseTime: 14.810us - CompressTime: 0ns - ExecTime: 829.697us - InputRows: 78 - LocalBytesSent: 2.82 KB - LocalSendTime: 179.112us - LocalSentRows: 39 - MemoryUsage: - PeakMemoryUsage: 17.94 KB - MergeBlockTime: 0ns - OpenTime: 155.53us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.831ms - RowsProduced: 78 - RpcAvgTime: 404.753us - RpcCount: 12 - RpcMaxTime: 1.55ms - RpcMinTime: 53.58us - RpcSumTime: 4.857ms - SerializeBatchTime: 59.425us - SplitBlockDistributeByChannelTime: 69.485us - SplitBlockHashComputeTime: 5.520us - UncompressedRowBatchSize: 3.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 809ns - DeserializeAndMergeTime: 0ns - ExecTime: 110.956us - GetResultsTime: 52.218us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 764ns - HashTableSize: 78 - InsertKeysToColumnTime: 28.658us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.120us - ProjectionTime: 39.297us - RowsProduced: 78 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s510ms PipelineXTask (index=4):(Active: 752.556us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 617.375us - CloseTime: 9.361us - GetBlockTime: 65.749us - OpenTime: 4.123us - PrepareTime: 116.20us - SinkTime: 522.604us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 734.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 372.826us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.66 KB - CloseTime: 8.75us - CompressTime: 0ns - ExecTime: 618.49us - InputRows: 84 - LocalBytesSent: 3.04 KB - LocalSendTime: 110.812us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 18.28 KB - MergeBlockTime: 0ns - OpenTime: 88.12us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.320ms - RowsProduced: 84 - RpcAvgTime: 1.212ms - RpcCount: 12 - RpcMaxTime: 1.490ms - RpcMinTime: 946.476us - RpcSumTime: 14.550ms - SerializeBatchTime: 35.78us - SplitBlockDistributeByChannelTime: 52.979us - SplitBlockHashComputeTime: 16.346us - UncompressedRowBatchSize: 3.50 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 323ns - DeserializeAndMergeTime: 0ns - ExecTime: 72.941us - GetResultsTime: 20.820us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.49us - HashTableSize: 84 - InsertKeysToColumnTime: 6.432us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.82us - ProjectionTime: 33.664us - RowsProduced: 84 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s514ms PipelineXTask (index=6):(Active: 1.37ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 905.738us - CloseTime: 13.992us - GetBlockTime: 81.518us - OpenTime: 2.893us - PrepareTime: 109.398us - SinkTime: 801.439us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.15ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.319ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.28 KB - CloseTime: 11.274us - CompressTime: 0ns - ExecTime: 890.859us - InputRows: 68 - LocalBytesSent: 2.38 KB - LocalSendTime: 179.656us - LocalSentRows: 33 - MemoryUsage: - PeakMemoryUsage: 18.09 KB - MergeBlockTime: 0ns - OpenTime: 78.603us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.536ms - RowsProduced: 68 - RpcAvgTime: 1.58ms - RpcCount: 12 - RpcMaxTime: 1.231ms - RpcMinTime: 841.704us - RpcSumTime: 12.698ms - SerializeBatchTime: 52.803us - SplitBlockDistributeByChannelTime: 74.292us - SplitBlockHashComputeTime: 6.715us - UncompressedRowBatchSize: 3.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 961ns - DeserializeAndMergeTime: 0ns - ExecTime: 89.157us - GetResultsTime: 39.275us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.112us - HashTableSize: 68 - InsertKeysToColumnTime: 25.551us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.484us - ProjectionTime: 32.184us - RowsProduced: 68 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s513ms PipelineXTask (index=8):(Active: 1.325ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.148ms - CloseTime: 13.945us - GetBlockTime: 93.707us - OpenTime: 7.640us - PrepareTime: 129.856us - SinkTime: 985.786us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.284ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.536ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.80 KB - CloseTime: 11.575us - CompressTime: 0ns - ExecTime: 1.98ms - InputRows: 85 - LocalBytesSent: 2.10 KB - LocalSendTime: 202.831us - LocalSentRows: 29 - MemoryUsage: - PeakMemoryUsage: 19.22 KB - MergeBlockTime: 0ns - OpenTime: 102.322us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.69ms - RowsProduced: 85 - RpcAvgTime: 769.489us - RpcCount: 12 - RpcMaxTime: 999.636us - RpcMinTime: 459.727us - RpcSumTime: 9.233ms - SerializeBatchTime: 46.885us - SplitBlockDistributeByChannelTime: 88.61us - SplitBlockHashComputeTime: 7.310us - UncompressedRowBatchSize: 4.61 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 695ns - DeserializeAndMergeTime: 0ns - ExecTime: 98.404us - GetResultsTime: 39.645us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.39us - HashTableSize: 85 - InsertKeysToColumnTime: 16.650us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.138us - ProjectionTime: 34.921us - RowsProduced: 85 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s513ms PipelineXTask (index=10):(Active: 998.8us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 816.677us - CloseTime: 23.160us - GetBlockTime: 106.716us - OpenTime: 3.20us - PrepareTime: 149.599us - SinkTime: 685.981us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 966.835us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.272us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.87 KB - CloseTime: 20.243us - CompressTime: 0ns - ExecTime: 826.875us - InputRows: 81 - LocalBytesSent: 2.67 KB - LocalSendTime: 105.591us - LocalSentRows: 37 - MemoryUsage: - PeakMemoryUsage: 19.16 KB - MergeBlockTime: 0ns - OpenTime: 121.433us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.158ms - RowsProduced: 81 - RpcAvgTime: 1.370ms - RpcCount: 12 - RpcMaxTime: 1.480ms - RpcMinTime: 1.4ms - RpcSumTime: 16.440ms - SerializeBatchTime: 52.64us - SplitBlockDistributeByChannelTime: 59.282us - SplitBlockHashComputeTime: 7.132us - UncompressedRowBatchSize: 3.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 758ns - DeserializeAndMergeTime: 0ns - ExecTime: 112.805us - GetResultsTime: 34.362us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.35us - HashTableSize: 81 - InsertKeysToColumnTime: 12.823us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.235us - ProjectionTime: 59.635us - RowsProduced: 81 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s514ms PipelineXTask (index=12):(Active: 1.112ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 939.290us - CloseTime: 34.945us - GetBlockTime: 152.387us - OpenTime: 4.907us - PrepareTime: 127.553us - SinkTime: 755.428us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.66ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 170.238us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.29 KB - CloseTime: 32.233us - CompressTime: 0ns - ExecTime: 874.504us - InputRows: 80 - LocalBytesSent: 3.18 KB - LocalSendTime: 120.287us - LocalSentRows: 44 - MemoryUsage: - PeakMemoryUsage: 18.88 KB - MergeBlockTime: 0ns - OpenTime: 88.16us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.162ms - RowsProduced: 80 - RpcAvgTime: 1.437ms - RpcCount: 12 - RpcMaxTime: 1.482ms - RpcMinTime: 1.357ms - RpcSumTime: 17.255ms - SerializeBatchTime: 40.842us - SplitBlockDistributeByChannelTime: 64.52us - SplitBlockHashComputeTime: 45.370us - UncompressedRowBatchSize: 3.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 766ns - DeserializeAndMergeTime: 0ns - ExecTime: 162.751us - GetResultsTime: 72.597us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.14us - HashTableSize: 80 - InsertKeysToColumnTime: 34.737us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.843us - ProjectionTime: 61.940us - RowsProduced: 80 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s514ms PipelineXTask (index=14):(Active: 1.21ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 868.886us - CloseTime: 17.804us - GetBlockTime: 108.757us - OpenTime: 3.94us - PrepareTime: 126.241us - SinkTime: 718.375us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 993.427us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.635ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.00 KB - CloseTime: 16.638us - CompressTime: 0ns - ExecTime: 831.549us - InputRows: 68 - LocalBytesSent: 2.60 KB - LocalSendTime: 118.596us - LocalSentRows: 36 - MemoryUsage: - PeakMemoryUsage: 17.50 KB - MergeBlockTime: 0ns - OpenTime: 97.236us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.182ms - RowsProduced: 68 - RpcAvgTime: 1.444ms - RpcCount: 12 - RpcMaxTime: 1.481ms - RpcMinTime: 1.376ms - RpcSumTime: 17.339ms - SerializeBatchTime: 36.191us - SplitBlockDistributeByChannelTime: 102.933us - SplitBlockHashComputeTime: 18.926us - UncompressedRowBatchSize: 2.83 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 483ns - DeserializeAndMergeTime: 0ns - ExecTime: 114.362us - GetResultsTime: 41.616us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.85us - HashTableSize: 68 - InsertKeysToColumnTime: 18.87us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.962us - ProjectionTime: 42.614us - RowsProduced: 68 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=16):(Active: 974.993us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 805.375us - CloseTime: 11.938us - GetBlockTime: 94.767us - OpenTime: 3.852us - PrepareTime: 148.346us - SinkTime: 687.819us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 955.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 689.307us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.71 KB - CloseTime: 9.971us - CompressTime: 0ns - ExecTime: 821.574us - InputRows: 83 - LocalBytesSent: 3.04 KB - LocalSendTime: 188.474us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 20.03 KB - MergeBlockTime: 0ns - OpenTime: 124.294us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.747ms - RowsProduced: 83 - RpcAvgTime: 1.188ms - RpcCount: 12 - RpcMaxTime: 1.339ms - RpcMinTime: 1.14ms - RpcSumTime: 14.266ms - SerializeBatchTime: 37.110us - SplitBlockDistributeByChannelTime: 87.536us - SplitBlockHashComputeTime: 6.861us - UncompressedRowBatchSize: 3.53 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 504ns - DeserializeAndMergeTime: 0ns - ExecTime: 99.845us - GetResultsTime: 47.673us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.421us - HashTableSize: 83 - InsertKeysToColumnTime: 19.899us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.238us - ProjectionTime: 37.52us - RowsProduced: 83 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s514ms PipelineXTask (index=18):(Active: 948.670us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 753.293us - CloseTime: 17.470us - GetBlockTime: 125.2us - OpenTime: 3.564us - PrepareTime: 168.580us - SinkTime: 598.450us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 922.207us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 623.344us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.13 KB - CloseTime: 14.742us - CompressTime: 0ns - ExecTime: 752.159us - InputRows: 71 - LocalBytesSent: 2.75 KB - LocalSendTime: 112.425us - LocalSentRows: 38 - MemoryUsage: - PeakMemoryUsage: 18.44 KB - MergeBlockTime: 0ns - OpenTime: 139.396us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.186ms - RowsProduced: 71 - RpcAvgTime: 1.443ms - RpcCount: 12 - RpcMaxTime: 1.498ms - RpcMinTime: 1.368ms - RpcSumTime: 17.318ms - SerializeBatchTime: 35.513us - SplitBlockDistributeByChannelTime: 59.567us - SplitBlockHashComputeTime: 6.644us - UncompressedRowBatchSize: 2.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 798ns - DeserializeAndMergeTime: 0ns - ExecTime: 131.437us - GetResultsTime: 56.785us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 667ns - HashTableSize: 71 - InsertKeysToColumnTime: 8.927us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.236us - ProjectionTime: 58.254us - RowsProduced: 71 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s513ms PipelineXTask (index=20):(Active: 730.137us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 531.673us - CloseTime: 10.254us - GetBlockTime: 72.316us - OpenTime: 2.301us - PrepareTime: 180.543us - SinkTime: 440.734us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 712.137us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.112us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.43 KB - CloseTime: 8.692us - CompressTime: 0ns - ExecTime: 581.902us - InputRows: 77 - LocalBytesSent: 2.82 KB - LocalSendTime: 85.827us - LocalSentRows: 39 - MemoryUsage: - PeakMemoryUsage: 19.13 KB - MergeBlockTime: 0ns - OpenTime: 133.52us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.184ms - RowsProduced: 77 - RpcAvgTime: 1.431ms - RpcCount: 12 - RpcMaxTime: 1.479ms - RpcMinTime: 1.366ms - RpcSumTime: 17.177ms - SerializeBatchTime: 23.854us - SplitBlockDistributeByChannelTime: 56.771us - SplitBlockHashComputeTime: 5.6us - UncompressedRowBatchSize: 3.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 318ns - DeserializeAndMergeTime: 0ns - ExecTime: 96.503us - GetResultsTime: 28.12us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 545ns - HashTableSize: 77 - InsertKeysToColumnTime: 14.900us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 24.406us - ProjectionTime: 36.243us - RowsProduced: 77 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s514ms PipelineXTask (index=22):(Active: 927.84us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 736.949us - CloseTime: 36.417us - GetBlockTime: 89.941us - OpenTime: 4.40us - PrepareTime: 144.509us - SinkTime: 625.873us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 843.79us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.195ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.30 KB - CloseTime: 27.291us - CompressTime: 0ns - ExecTime: 771.79us - InputRows: 76 - LocalBytesSent: 1.88 KB - LocalSendTime: 116.150us - LocalSentRows: 26 - MemoryUsage: - PeakMemoryUsage: 18.41 KB - MergeBlockTime: 0ns - OpenTime: 118.470us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.693ms - RowsProduced: 76 - RpcAvgTime: 1.127ms - RpcCount: 12 - RpcMaxTime: 1.224ms - RpcMinTime: 1.11ms - RpcSumTime: 13.533ms - SerializeBatchTime: 32.569us - SplitBlockDistributeByChannelTime: 66.60us - SplitBlockHashComputeTime: 14.584us - UncompressedRowBatchSize: 4.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 7.7us - DeserializeAndMergeTime: 0ns - ExecTime: 101.575us - GetResultsTime: 38.627us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.174us - HashTableSize: 76 - InsertKeysToColumnTime: 15.209us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.249us - ProjectionTime: 39.137us - RowsProduced: 76 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 583.597us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 487.802us - CloseTime: 7.812us - GetBlockTime: 162.58us - OpenTime: 3.132us - PrepareTime: 78.455us - SinkTime: 243.423us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 547.627us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.95ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.89us - DeserializeAndMergeTime: 89.714us - ExecTime: 268.576us - ExprTime: 0ns - HashTableComputeTime: 83.443us - HashTableEmplaceTime: 55.585us - HashTableInputCount: 145 - InputRows: 145 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 214.377us - OpenTime: 26.789us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 8.85 KB - CloseTime: 5.396us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 221.603us - ExecTime: 181.822us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.69 KB - MemoryUsage: - Blocks: 15.00 KB - PeakMemoryUsage: 9.75 KB - OpenTime: 19.457us - ProjectionTime: 0ns - RowsProduced: 145 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s507ms PipelineXTask (index=3):(Active: 639.744us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 538.501us - CloseTime: 6.35us - GetBlockTime: 151.694us - OpenTime: 4.400us - PrepareTime: 85.200us - SinkTime: 321.881us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 618.140us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.673ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 859ns - DeserializeAndMergeTime: 127.960us - ExecTime: 364.928us - ExprTime: 0ns - HashTableComputeTime: 113.216us - HashTableEmplaceTime: 76.824us - HashTableInputCount: 183 - InputRows: 183 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 291.45us - OpenTime: 47.38us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 10.85 KB - CloseTime: 4.383us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 168.554us - ExecTime: 164.217us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.25 KB - MemoryUsage: - Blocks: 15.69 KB - PeakMemoryUsage: 8.44 KB - OpenTime: 14.442us - ProjectionTime: 0ns - RowsProduced: 183 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=5):(Active: 778.796us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 656.634us - CloseTime: 25.274us - GetBlockTime: 175.966us - OpenTime: 3.243us - PrepareTime: 87.132us - SinkTime: 382.370us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 721.435us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.175ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.600us - DeserializeAndMergeTime: 132.503us - ExecTime: 410.405us - ExprTime: 0ns - HashTableComputeTime: 176.538us - HashTableEmplaceTime: 126.638us - HashTableInputCount: 178 - InputRows: 178 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 365.850us - OpenTime: 30.936us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 10.75 KB - CloseTime: 22.40us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 144.240us - ExecTime: 230.478us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.25 KB - MemoryUsage: - Blocks: 9.69 KB - PeakMemoryUsage: 3.06 KB - OpenTime: 41.69us - ProjectionTime: 0ns - RowsProduced: 178 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms PipelineXTask (index=7):(Active: 656.154us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 562.559us - CloseTime: 7.770us - GetBlockTime: 161.962us - OpenTime: 3.174us - PrepareTime: 77.580us - SinkTime: 333.359us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 632.151us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.252ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.528us - DeserializeAndMergeTime: 141.905us - ExecTime: 377.561us - ExprTime: 0ns - HashTableComputeTime: 124.601us - HashTableEmplaceTime: 91.593us - HashTableInputCount: 153 - InputRows: 153 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 313.613us - OpenTime: 47.66us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 35 - BytesReceived: 9.11 KB - CloseTime: 5.454us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 158.723us - ExecTime: 173.513us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.69 KB - MemoryUsage: - Blocks: 6.69 KB - PeakMemoryUsage: 5.06 KB - OpenTime: 14.459us - ProjectionTime: 0ns - RowsProduced: 153 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms PipelineXTask (index=9):(Active: 621.959us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 555.671us - CloseTime: 4.120us - GetBlockTime: 126.629us - OpenTime: 2.751us - PrepareTime: 53.924us - SinkTime: 360.373us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 602.697us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.751ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 529ns - DeserializeAndMergeTime: 136.601us - ExecTime: 385.415us - ExprTime: 0ns - HashTableComputeTime: 154.51us - HashTableEmplaceTime: 118.198us - HashTableInputCount: 197 - InputRows: 197 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 347.592us - OpenTime: 28.296us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 9.92 KB - CloseTime: 3.40us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 157.807us - ExecTime: 136.45us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.00 KB - MemoryUsage: - Blocks: 12.25 KB - PeakMemoryUsage: 6.88 KB - OpenTime: 13.73us - ProjectionTime: 0ns - RowsProduced: 197 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms PipelineXTask (index=11):(Active: 512.495us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 440.206us - CloseTime: 4.41us - GetBlockTime: 125.652us - OpenTime: 2.271us - PrepareTime: 60.576us - SinkTime: 256.679us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 492.118us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.702ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 701ns - DeserializeAndMergeTime: 122.572us - ExecTime: 280.296us - ExprTime: 0ns - HashTableComputeTime: 81.412us - HashTableEmplaceTime: 57.263us - HashTableInputCount: 160 - InputRows: 160 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 245.16us - OpenTime: 26.663us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 10.00 KB - CloseTime: 2.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 162.935us - ExecTime: 136.905us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.97 KB - MemoryUsage: - Blocks: 8.88 KB - PeakMemoryUsage: 3.53 KB - OpenTime: 14.695us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms PipelineXTask (index=13):(Active: 589.260us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 520.879us - CloseTime: 5.427us - GetBlockTime: 169.293us - OpenTime: 2.534us - PrepareTime: 54.744us - SinkTime: 265.274us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 558.98us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.233ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.20us - DeserializeAndMergeTime: 117.534us - ExecTime: 292.624us - ExprTime: 0ns - HashTableComputeTime: 89.597us - HashTableEmplaceTime: 62.164us - HashTableInputCount: 165 - InputRows: 165 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 248.817us - OpenTime: 29.363us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 10.44 KB - CloseTime: 3.530us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 169.612us - ExecTime: 178.427us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.00 KB - MemoryUsage: - Blocks: 9.69 KB - PeakMemoryUsage: 4.94 KB - OpenTime: 12.585us - ProjectionTime: 0ns - RowsProduced: 165 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms PipelineXTask (index=15):(Active: 617.849us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 546.861us - CloseTime: 6.548us - GetBlockTime: 152.114us - OpenTime: 3.216us - PrepareTime: 55.649us - SinkTime: 308.793us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 586.717us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.890ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.75us - DeserializeAndMergeTime: 95.999us - ExecTime: 332.71us - ExprTime: 0ns - HashTableComputeTime: 140.72us - HashTableEmplaceTime: 107.542us - HashTableInputCount: 122 - InputRows: 122 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 284.686us - OpenTime: 26.33us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 8.07 KB - CloseTime: 4.436us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 154.251us - ExecTime: 161.864us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 15.13 KB - MemoryUsage: - Blocks: 9.50 KB - PeakMemoryUsage: 3.50 KB - OpenTime: 12.166us - ProjectionTime: 0ns - RowsProduced: 122 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s509ms PipelineXTask (index=17):(Active: 556.97us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 473.71us - CloseTime: 3.982us - GetBlockTime: 116.525us - OpenTime: 2.783us - PrepareTime: 70.870us - SinkTime: 275.843us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 519.465us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.649ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 700ns - DeserializeAndMergeTime: 110.894us - ExecTime: 298.342us - ExprTime: 0ns - HashTableComputeTime: 111.373us - HashTableEmplaceTime: 84.153us - HashTableInputCount: 167 - InputRows: 167 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 263.640us - OpenTime: 24.936us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 9.28 KB - CloseTime: 2.985us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 189.856us - ExecTime: 131.31us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.31 KB - MemoryUsage: - Blocks: 10.88 KB - PeakMemoryUsage: 4.88 KB - OpenTime: 19.733us - ProjectionTime: 0ns - RowsProduced: 167 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms PipelineXTask (index=19):(Active: 468.976us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 397.524us - CloseTime: 2.836us - GetBlockTime: 119.61us - OpenTime: 3.185us - PrepareTime: 59.648us - SinkTime: 213.137us - GetBlockCounter: 24 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 447.384us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.791ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 612ns - DeserializeAndMergeTime: 72.622us - ExecTime: 243.600us - ExprTime: 0ns - HashTableComputeTime: 82.176us - HashTableEmplaceTime: 59.63us - HashTableInputCount: 109 - InputRows: 109 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 202.594us - OpenTime: 32.637us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 34 - BytesReceived: 7.67 KB - CloseTime: 1.622us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 166.26us - ExecTime: 128.353us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.50 KB - MemoryUsage: - Blocks: 7.44 KB - PeakMemoryUsage: 4.06 KB - OpenTime: 13.778us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s512ms PipelineXTask (index=21):(Active: 593.953us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 517.696us - CloseTime: 3.413us - GetBlockTime: 155.186us - OpenTime: 2.997us - PrepareTime: 64.575us - SinkTime: 297.369us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 572.609us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.9ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 710ns - DeserializeAndMergeTime: 126.867us - ExecTime: 322.433us - ExprTime: 0ns - HashTableComputeTime: 113.421us - HashTableEmplaceTime: 86.303us - HashTableInputCount: 159 - InputRows: 159 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 283.927us - OpenTime: 27.621us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 9.66 KB - CloseTime: 2.145us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 162.427us - ExecTime: 162.813us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.06 KB - MemoryUsage: - Blocks: 11.44 KB - PeakMemoryUsage: 4.56 KB - OpenTime: 13.223us - ProjectionTime: 0ns - RowsProduced: 159 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s512ms PipelineXTask (index=23):(Active: 702.100us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 594.555us - CloseTime: 6.435us - GetBlockTime: 147.574us - OpenTime: 3.670us - PrepareTime: 91.476us - SinkTime: 375.171us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 679.194us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.944ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 852ns - DeserializeAndMergeTime: 139.116us - ExecTime: 404.26us - ExprTime: 0ns - HashTableComputeTime: 174.476us - HashTableEmplaceTime: 121.38us - HashTableInputCount: 174 - InputRows: 174 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 359.795us - OpenTime: 31.873us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 10.80 KB - CloseTime: 4.767us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 199.73us - ExecTime: 177.578us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.00 KB - MemoryUsage: - Blocks: 16.13 KB - PeakMemoryUsage: 7.94 KB - OpenTime: 30.908us - ProjectionTime: 0ns - RowsProduced: 174 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 920.43us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 720.273us - CloseTime: 17.427us - GetBlockTime: 91.369us - OpenTime: 1.502us - PrepareTime: 173.859us - SinkTime: 610.614us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 894.785us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 680.532us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.07 KB - CloseTime: 14.768us - CompressTime: 0ns - ExecTime: 759.270us - InputRows: 81 - LocalBytesSent: 2.53 KB - LocalSendTime: 137.541us - LocalSentRows: 35 - MemoryUsage: - PeakMemoryUsage: 19.63 KB - MergeBlockTime: 0ns - OpenTime: 133.916us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.273ms - RowsProduced: 81 - RpcAvgTime: 1.898ms - RpcCount: 12 - RpcMaxTime: 2.13ms - RpcMinTime: 1.527ms - RpcSumTime: 22.776ms - SerializeBatchTime: 37.389us - SplitBlockDistributeByChannelTime: 80.699us - SplitBlockHashComputeTime: 6.849us - UncompressedRowBatchSize: 3.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 806ns - DeserializeAndMergeTime: 0ns - ExecTime: 100.13us - GetResultsTime: 28.977us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 976ns - HashTableSize: 81 - InsertKeysToColumnTime: 12.970us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.854us - ProjectionTime: 47.446us - RowsProduced: 81 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=2):(Active: 622.282us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 447.280us - CloseTime: 10.330us - GetBlockTime: 43.773us - OpenTime: 2.411us - PrepareTime: 157.747us - SinkTime: 383.619us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 604.994us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 795.962us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.43 KB - CloseTime: 8.385us - CompressTime: 0ns - ExecTime: 506.32us - InputRows: 78 - LocalBytesSent: 2.89 KB - LocalSendTime: 68.320us - LocalSentRows: 40 - MemoryUsage: - PeakMemoryUsage: 18.66 KB - MergeBlockTime: 0ns - OpenTime: 114.432us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.119ms - RowsProduced: 78 - RpcAvgTime: 1.959ms - RpcCount: 12 - RpcMaxTime: 1.989ms - RpcMinTime: 1.931ms - RpcSumTime: 23.516ms - SerializeBatchTime: 21.439us - SplitBlockDistributeByChannelTime: 33.377us - SplitBlockHashComputeTime: 4.488us - UncompressedRowBatchSize: 3.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 585ns - DeserializeAndMergeTime: 0ns - ExecTime: 54.122us - GetResultsTime: 14.683us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 994ns - HashTableSize: 78 - InsertKeysToColumnTime: 5.365us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.228us - ProjectionTime: 21.587us - RowsProduced: 78 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=4):(Active: 1.209ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.23ms - CloseTime: 22.672us - GetBlockTime: 95.601us - OpenTime: 2.195us - PrepareTime: 156.109us - SinkTime: 894.242us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 987.420us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 622.597us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.50 KB - CloseTime: 21.166us - CompressTime: 0ns - ExecTime: 1.35ms - InputRows: 71 - LocalBytesSent: 2.38 KB - LocalSendTime: 116.310us - LocalSentRows: 33 - MemoryUsage: - PeakMemoryUsage: 18.19 KB - MergeBlockTime: 0ns - OpenTime: 120.997us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.116ms - RowsProduced: 71 - RpcAvgTime: 1.705ms - RpcCount: 12 - RpcMaxTime: 2.1ms - RpcMinTime: 1.406ms - RpcSumTime: 20.468ms - SerializeBatchTime: 36.818us - SplitBlockDistributeByChannelTime: 97.948us - SplitBlockHashComputeTime: 12.484us - UncompressedRowBatchSize: 3.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 397ns - DeserializeAndMergeTime: 0ns - ExecTime: 100.865us - GetResultsTime: 32.355us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 893ns - HashTableSize: 71 - InsertKeysToColumnTime: 16.844us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.698us - ProjectionTime: 47.151us - RowsProduced: 71 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=6):(Active: 891.509us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 731.97us - CloseTime: 20.497us - GetBlockTime: 103.524us - OpenTime: 1.740us - PrepareTime: 133.709us - SinkTime: 610.347us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 864.306us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 587.309us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.13 KB - CloseTime: 17.654us - CompressTime: 0ns - ExecTime: 730.740us - InputRows: 74 - LocalBytesSent: 2.96 KB - LocalSendTime: 93.848us - LocalSentRows: 41 - MemoryUsage: - PeakMemoryUsage: 18.94 KB - MergeBlockTime: 0ns - OpenTime: 103.544us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.322ms - RowsProduced: 74 - RpcAvgTime: 1.880ms - RpcCount: 12 - RpcMaxTime: 2.8ms - RpcMinTime: 1.607ms - RpcSumTime: 22.564ms - SerializeBatchTime: 35.874us - SplitBlockDistributeByChannelTime: 95.494us - SplitBlockHashComputeTime: 7.932us - UncompressedRowBatchSize: 2.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 843ns - DeserializeAndMergeTime: 0ns - ExecTime: 109.155us - GetResultsTime: 44.928us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.299us - HashTableSize: 74 - InsertKeysToColumnTime: 18.47us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.528us - ProjectionTime: 50.726us - RowsProduced: 74 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=8):(Active: 695.384us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 540.634us - CloseTime: 8.717us - GetBlockTime: 58.943us - OpenTime: 2.293us - PrepareTime: 139.550us - SinkTime: 467.330us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 633.742us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.430ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.57 KB - CloseTime: 7.863us - CompressTime: 0ns - ExecTime: 580.196us - InputRows: 81 - LocalBytesSent: 3.04 KB - LocalSendTime: 156.322us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 19.81 KB - MergeBlockTime: 0ns - OpenTime: 105.602us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.851ms - RowsProduced: 81 - RpcAvgTime: 1.844ms - RpcCount: 12 - RpcMaxTime: 1.896ms - RpcMinTime: 1.733ms - RpcSumTime: 22.129ms - SerializeBatchTime: 22.493us - SplitBlockDistributeByChannelTime: 36.201us - SplitBlockHashComputeTime: 4.591us - UncompressedRowBatchSize: 3.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 271ns - DeserializeAndMergeTime: 0ns - ExecTime: 67.457us - GetResultsTime: 33.534us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.644us - HashTableSize: 81 - InsertKeysToColumnTime: 9.397us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.389us - ProjectionTime: 20.529us - RowsProduced: 81 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=10):(Active: 667.77us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 522.841us - CloseTime: 12.156us - GetBlockTime: 60.804us - OpenTime: 1.679us - PrepareTime: 125.777us - SinkTime: 447.871us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 649.272us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 737.18us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.07 KB - CloseTime: 9.922us - CompressTime: 0ns - ExecTime: 552.762us - InputRows: 78 - LocalBytesSent: 3.25 KB - LocalSendTime: 82.252us - LocalSentRows: 45 - MemoryUsage: - PeakMemoryUsage: 19.13 KB - MergeBlockTime: 0ns - OpenTime: 95.345us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.360ms - RowsProduced: 78 - RpcAvgTime: 1.646ms - RpcCount: 12 - RpcMaxTime: 1.984ms - RpcMinTime: 1.463ms - RpcSumTime: 19.754ms - SerializeBatchTime: 23.441us - SplitBlockDistributeByChannelTime: 37.111us - SplitBlockHashComputeTime: 5.209us - UncompressedRowBatchSize: 2.90 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 625ns - DeserializeAndMergeTime: 0ns - ExecTime: 68.316us - GetResultsTime: 32.91us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.794us - HashTableSize: 78 - InsertKeysToColumnTime: 13.860us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.301us - ProjectionTime: 23.766us - RowsProduced: 78 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=12):(Active: 1.408ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.101ms - CloseTime: 44.904us - GetBlockTime: 149.328us - OpenTime: 1.954us - PrepareTime: 243.87us - SinkTime: 932.859us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.326ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 667.459us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.22 KB - CloseTime: 40.913us - CompressTime: 0ns - ExecTime: 1.134ms - InputRows: 75 - LocalBytesSent: 1.95 KB - LocalSendTime: 241.777us - LocalSentRows: 27 - MemoryUsage: - PeakMemoryUsage: 18.19 KB - MergeBlockTime: 0ns - OpenTime: 162.136us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.843ms - RowsProduced: 75 - RpcAvgTime: 1.897ms - RpcCount: 12 - RpcMaxTime: 2.2ms - RpcMinTime: 1.754ms - RpcSumTime: 22.767ms - SerializeBatchTime: 47.145us - SplitBlockDistributeByChannelTime: 89.221us - SplitBlockHashComputeTime: 10.543us - UncompressedRowBatchSize: 4.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 860ns - DeserializeAndMergeTime: 0ns - ExecTime: 164.114us - GetResultsTime: 69.24us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.446us - HashTableSize: 75 - InsertKeysToColumnTime: 35.540us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.530us - ProjectionTime: 65.192us - RowsProduced: 75 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=14):(Active: 1.88ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 816.295us - CloseTime: 13.764us - GetBlockTime: 83.101us - OpenTime: 2.174us - PrepareTime: 250.67us - SinkTime: 716.987us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 919.487us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 656.938us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.57 KB - CloseTime: 10.925us - CompressTime: 0ns - ExecTime: 921.662us - InputRows: 83 - LocalBytesSent: 3.18 KB - LocalSendTime: 321.140us - LocalSentRows: 44 - MemoryUsage: - PeakMemoryUsage: 19.75 KB - MergeBlockTime: 0ns - OpenTime: 194.320us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.107ms - RowsProduced: 83 - RpcAvgTime: 1.890ms - RpcCount: 12 - RpcMaxTime: 2.16ms - RpcMinTime: 1.494ms - RpcSumTime: 22.685ms - SerializeBatchTime: 36.605us - SplitBlockDistributeByChannelTime: 42.700us - SplitBlockHashComputeTime: 6.312us - UncompressedRowBatchSize: 3.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.32us - DeserializeAndMergeTime: 0ns - ExecTime: 98.586us - GetResultsTime: 38.866us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.825us - HashTableSize: 83 - InsertKeysToColumnTime: 25.671us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.238us - ProjectionTime: 35.45us - RowsProduced: 83 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=16):(Active: 962.590us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 744.91us - CloseTime: 27.13us - GetBlockTime: 69.525us - OpenTime: 1.765us - PrepareTime: 182.103us - SinkTime: 656.241us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 892.898us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 625.326us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.57 KB - CloseTime: 24.96us - CompressTime: 0ns - ExecTime: 817.872us - InputRows: 74 - LocalBytesSent: 2.53 KB - LocalSendTime: 199.600us - LocalSentRows: 35 - MemoryUsage: - PeakMemoryUsage: 18.75 KB - MergeBlockTime: 0ns - OpenTime: 138.34us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.79ms - RowsProduced: 74 - RpcAvgTime: 1.978ms - RpcCount: 12 - RpcMaxTime: 2.17ms - RpcMinTime: 1.935ms - RpcSumTime: 23.736ms - SerializeBatchTime: 37.53us - SplitBlockDistributeByChannelTime: 54.672us - SplitBlockHashComputeTime: 6.614us - UncompressedRowBatchSize: 3.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 753ns - DeserializeAndMergeTime: 0ns - ExecTime: 80.458us - GetResultsTime: 23.995us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.275us - HashTableSize: 74 - InsertKeysToColumnTime: 9.63us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.788us - ProjectionTime: 33.779us - RowsProduced: 74 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=18):(Active: 824.156us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 601.551us - CloseTime: 7.525us - GetBlockTime: 71.296us - OpenTime: 2.703us - PrepareTime: 204.390us - SinkTime: 510.473us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 809.247us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.750us DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.71 KB - CloseTime: 6.396us - CompressTime: 0ns - ExecTime: 665.422us - InputRows: 88 - LocalBytesSent: 3.40 KB - LocalSendTime: 87.627us - LocalSentRows: 47 - MemoryUsage: - PeakMemoryUsage: 20.50 KB - MergeBlockTime: 0ns - OpenTime: 149.94us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.336ms - RowsProduced: 88 - RpcAvgTime: 1.887ms - RpcCount: 12 - RpcMaxTime: 2.14ms - RpcMinTime: 1.547ms - RpcSumTime: 22.651ms - SerializeBatchTime: 26.861us - SplitBlockDistributeByChannelTime: 58.970us - SplitBlockHashComputeTime: 26.816us - UncompressedRowBatchSize: 3.53 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 219ns - DeserializeAndMergeTime: 0ns - ExecTime: 85.914us - GetResultsTime: 26.755us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.559us - HashTableSize: 88 - InsertKeysToColumnTime: 6.634us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.946us - ProjectionTime: 34.974us - RowsProduced: 88 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=20):(Active: 1.81ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 887.141us - CloseTime: 8.82us - GetBlockTime: 87.683us - OpenTime: 2.943us - PrepareTime: 176.714us - SinkTime: 777.911us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.65ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.441ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.92 KB - CloseTime: 7.300us - CompressTime: 0ns - ExecTime: 921.930us - InputRows: 67 - LocalBytesSent: 2.67 KB - LocalSendTime: 180.348us - LocalSentRows: 37 - MemoryUsage: - PeakMemoryUsage: 18.03 KB - MergeBlockTime: 0ns - OpenTime: 137.319us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.496ms - RowsProduced: 67 - RpcAvgTime: 1.450ms - RpcCount: 12 - RpcMaxTime: 1.800ms - RpcMinTime: 1.81ms - RpcSumTime: 17.405ms - SerializeBatchTime: 31.463us - SplitBlockDistributeByChannelTime: 68.879us - SplitBlockHashComputeTime: 7.360us - UncompressedRowBatchSize: 2.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 176ns - DeserializeAndMergeTime: 0ns - ExecTime: 92.818us - GetResultsTime: 42.277us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.238us - HashTableSize: 67 - InsertKeysToColumnTime: 20.528us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.769us - ProjectionTime: 34.492us - RowsProduced: 67 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s512ms PipelineXTask (index=22):(Active: 718.596us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 557.656us - CloseTime: 23.777us - GetBlockTime: 46.778us - OpenTime: 2.488us - PrepareTime: 130.161us - SinkTime: 492.703us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 680.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.9ms DATA_STREAM_SINK_OPERATOR (id=194,dst_id=194): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.42 KB - CloseTime: 21.250us - CompressTime: 0ns - ExecTime: 610.25us - InputRows: 72 - LocalBytesSent: 2.53 KB - LocalSendTime: 139.210us - LocalSentRows: 35 - MemoryUsage: - PeakMemoryUsage: 18.84 KB - MergeBlockTime: 0ns - OpenTime: 96.450us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.146ms - RowsProduced: 72 - RpcAvgTime: 1.984ms - RpcCount: 12 - RpcMaxTime: 2.19ms - RpcMinTime: 1.931ms - RpcSumTime: 23.814ms - SerializeBatchTime: 23.950us - SplitBlockDistributeByChannelTime: 40.106us - SplitBlockHashComputeTime: 4.276us - UncompressedRowBatchSize: 3.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 763ns - DeserializeAndMergeTime: 0ns - ExecTime: 56.296us - GetResultsTime: 17.47us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.753us - HashTableSize: 72 - InsertKeysToColumnTime: 5.387us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.195us - ProjectionTime: 22.393us - RowsProduced: 72 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s511ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 676.775us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 556.667us - CloseTime: 5.650us - GetBlockTime: 136.523us - OpenTime: 1.876us - PrepareTime: 106.383us - SinkTime: 351.923us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 653.722us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.974ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 725ns - DeserializeAndMergeTime: 142.614us - ExecTime: 404.556us - ExprTime: 0ns - HashTableComputeTime: 122.219us - HashTableEmplaceTime: 83.585us - HashTableInputCount: 189 - InputRows: 189 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 334.94us - OpenTime: 56.769us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 10.71 KB - CloseTime: 4.102us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 187.363us - ExecTime: 155.3us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.94 KB - MemoryUsage: - Blocks: 14.19 KB - PeakMemoryUsage: 7.56 KB - OpenTime: 22.198us - ProjectionTime: 0ns - RowsProduced: 189 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=3):(Active: 1.237ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 352.557us - CloseTime: 802.744us - GetBlockTime: 100.540us - OpenTime: 1.863us - PrepareTime: 75.52us - SinkTime: 203.806us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 421.100us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.789ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 359ns - DeserializeAndMergeTime: 73.500us - ExecTime: 244.710us - ExprTime: 0ns - HashTableComputeTime: 88.152us - HashTableEmplaceTime: 52.668us - HashTableInputCount: 146 - InputRows: 146 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 194.515us - OpenTime: 42.944us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 8.63 KB - CloseTime: 801.404us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 179.917us - ExecTime: 915.338us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.38 KB - MemoryUsage: - Blocks: 11.63 KB - PeakMemoryUsage: 6.13 KB - OpenTime: 17.696us - ProjectionTime: 0ns - RowsProduced: 146 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=5):(Active: 483.781us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 402.263us - CloseTime: 6.203us - GetBlockTime: 106.1us - OpenTime: 1.809us - PrepareTime: 68.586us - SinkTime: 233.452us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 464.356us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.949ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.46us - DeserializeAndMergeTime: 100.413us - ExecTime: 266.141us - ExprTime: 0ns - HashTableComputeTime: 80.943us - HashTableEmplaceTime: 57.503us - HashTableInputCount: 139 - InputRows: 139 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 222.176us - OpenTime: 35.22us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 8.28 KB - CloseTime: 4.219us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 177.597us - ExecTime: 117.500us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.81 KB - MemoryUsage: - Blocks: 12.06 KB - PeakMemoryUsage: 5.75 KB - OpenTime: 13.860us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=7):(Active: 621.127us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 458.367us - CloseTime: 28.565us - GetBlockTime: 137.238us - OpenTime: 1.709us - PrepareTime: 126.61us - SinkTime: 263.75us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 577.779us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.913ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 931ns - DeserializeAndMergeTime: 90.629us - ExecTime: 315.705us - ExprTime: 0ns - HashTableComputeTime: 98.868us - HashTableEmplaceTime: 69.338us - HashTableInputCount: 121 - InputRows: 121 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 236.56us - OpenTime: 54.991us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 7.54 KB - CloseTime: 26.292us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 175.878us - ExecTime: 184.426us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.50 KB - MemoryUsage: - Blocks: 11.06 KB - PeakMemoryUsage: 6.44 KB - OpenTime: 28.81us - ProjectionTime: 0ns - RowsProduced: 121 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=9):(Active: 598.665us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 517.385us - CloseTime: 4.997us - GetBlockTime: 149.722us - OpenTime: 2.616us - PrepareTime: 67.842us - SinkTime: 300.246us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 576.522us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.322ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 818ns - DeserializeAndMergeTime: 115.36us - ExecTime: 327.310us - ExprTime: 0ns - HashTableComputeTime: 108.21us - HashTableEmplaceTime: 74.557us - HashTableInputCount: 145 - InputRows: 145 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 284.427us - OpenTime: 30.811us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 8.34 KB - CloseTime: 3.240us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 164.21us - ExecTime: 161.249us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.19 KB - MemoryUsage: - Blocks: 6.88 KB - PeakMemoryUsage: 6.13 KB - OpenTime: 17.57us - ProjectionTime: 0ns - RowsProduced: 145 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=11):(Active: 586.888us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 393.460us - CloseTime: 8.650us - GetBlockTime: 116.221us - OpenTime: 1.988us - PrepareTime: 177.300us - SinkTime: 220.54us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 562.777us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.289ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 569ns - DeserializeAndMergeTime: 76.482us - ExecTime: 250.902us - ExprTime: 0ns - HashTableComputeTime: 92.37us - HashTableEmplaceTime: 58.258us - HashTableInputCount: 131 - InputRows: 131 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 208.427us - OpenTime: 33.400us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 7.59 KB - CloseTime: 7.420us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 139.795us - ExecTime: 132.191us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.81 KB - MemoryUsage: - Blocks: 9.06 KB - PeakMemoryUsage: 6.25 KB - OpenTime: 26.604us - ProjectionTime: 0ns - RowsProduced: 131 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=13):(Active: 547.67us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 451.213us - CloseTime: 2.859us - GetBlockTime: 131.37us - OpenTime: 1.713us - PrepareTime: 84.450us - SinkTime: 250.418us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 524.259us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.359ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 444ns - DeserializeAndMergeTime: 88.592us - ExecTime: 274.867us - ExprTime: 0ns - HashTableComputeTime: 100.435us - HashTableEmplaceTime: 71.810us - HashTableInputCount: 134 - InputRows: 134 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 238.360us - OpenTime: 27.510us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 8.76 KB - CloseTime: 1.795us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 135.572us - ExecTime: 149.798us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.69 KB - MemoryUsage: - Blocks: 6.75 KB - PeakMemoryUsage: 6.13 KB - OpenTime: 24.224us - ProjectionTime: 0ns - RowsProduced: 134 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=15):(Active: 638.260us, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 508.323us - CloseTime: 2.182us - GetBlockTime: 111.774us - OpenTime: 2.387us - PrepareTime: 118.722us - SinkTime: 306.869us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 605.784us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.258ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 521ns - DeserializeAndMergeTime: 121.929us - ExecTime: 357.738us - ExprTime: 0ns - HashTableComputeTime: 120.624us - HashTableEmplaceTime: 87.143us - HashTableInputCount: 183 - InputRows: 183 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 291.426us - OpenTime: 54.915us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 9.76 KB - CloseTime: 1.229us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 135.223us - ExecTime: 135.582us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.00 KB - MemoryUsage: - Blocks: 8.75 KB - PeakMemoryUsage: 8.75 KB - OpenTime: 31.634us - ProjectionTime: 0ns - RowsProduced: 183 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=17):(Active: 667.12us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 535.77us - CloseTime: 3.657us - GetBlockTime: 146.566us - OpenTime: 2.943us - PrepareTime: 117.343us - SinkTime: 307.451us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 640.574us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.298ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 697ns - DeserializeAndMergeTime: 122.918us - ExecTime: 358.292us - ExprTime: 0ns - HashTableComputeTime: 113.125us - HashTableEmplaceTime: 82.828us - HashTableInputCount: 170 - InputRows: 170 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 292.327us - OpenTime: 54.120us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 9.96 KB - CloseTime: 2.238us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 124.74us - ExecTime: 161.844us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.25 KB - MemoryUsage: - Blocks: 8.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 21.651us - ProjectionTime: 0ns - RowsProduced: 170 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s510ms PipelineXTask (index=19):(Active: 549.280us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 408.629us - CloseTime: 3.317us - GetBlockTime: 83.3us - OpenTime: 2.372us - PrepareTime: 127.217us - SinkTime: 264.5us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 528.55us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.927ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 710ns - DeserializeAndMergeTime: 104.606us - ExecTime: 302.631us - ExprTime: 0ns - HashTableComputeTime: 108.766us - HashTableEmplaceTime: 82.228us - HashTableInputCount: 165 - InputRows: 165 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 253.354us - OpenTime: 40.474us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 8.55 KB - CloseTime: 2.14us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 147.125us - ExecTime: 126.387us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.47 KB - MemoryUsage: - Blocks: 11.53 KB - PeakMemoryUsage: 7.63 KB - OpenTime: 47.812us - ProjectionTime: 0ns - RowsProduced: 165 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s509ms PipelineXTask (index=21):(Active: 499.20us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 410.647us - CloseTime: 3.848us - GetBlockTime: 116.673us - OpenTime: 2.279us - PrepareTime: 75.990us - SinkTime: 230.224us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 475.844us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.93ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 588ns - DeserializeAndMergeTime: 73.370us - ExecTime: 259.907us - ExprTime: 0ns - HashTableComputeTime: 100.563us - HashTableEmplaceTime: 69.625us - HashTableInputCount: 124 - InputRows: 124 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 218.50us - OpenTime: 32.382us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 6.26 KB - CloseTime: 2.236us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 156.514us - ExecTime: 129.308us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.81 KB - MemoryUsage: - Blocks: 8.13 KB - PeakMemoryUsage: 8.13 KB - OpenTime: 17.248us - ProjectionTime: 0ns - RowsProduced: 124 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s507ms PipelineXTask (index=23):(Active: 570.445us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 444.360us - CloseTime: 6.428us - GetBlockTime: 113.634us - OpenTime: 3.6us - PrepareTime: 110.794us - SinkTime: 252.807us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 540.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.123ms AGGREGATION_SINK_OPERATOR (id=193): - BuildTime: 0ns - CloseTime: 1.1us - DeserializeAndMergeTime: 88.934us - ExecTime: 276.514us - ExprTime: 0ns - HashTableComputeTime: 103.387us - HashTableEmplaceTime: 74.780us - HashTableInputCount: 147 - InputRows: 147 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.89 MB - SerializeKeyArena: 1.89 MB - MergeTime: 239.686us - OpenTime: 25.798us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=192): - BlocksProduced: 36 - BytesReceived: 9.25 KB - CloseTime: 4.468us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 138.34us - ExecTime: 158.536us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.88 KB - MemoryUsage: - Blocks: 8.19 KB - PeakMemoryUsage: 7.38 KB - OpenTime: 47.483us - ProjectionTime: 0ns - RowsProduced: 147 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s511ms Fragment 79: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.970ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.600ms - CloseTime: 112.720us - GetBlockTime: 1.602ms - OpenTime: 8.620us - PrepareTime: 240.769us - SinkTime: 948.220us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.847ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.193ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.62 KB - CloseTime: 11.737us - CompressTime: 0ns - ExecTime: 1.81ms - InputRows: 134 - LocalBytesSent: 6.26 KB - LocalSendTime: 139.666us - LocalSentRows: 67 - MemoryUsage: - PeakMemoryUsage: 34.81 KB - MergeBlockTime: 0ns - OpenTime: 121.533us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.433ms - RowsProduced: 134 - RpcAvgTime: 602.727us - RpcCount: 12 - RpcMaxTime: 747.905us - RpcMinTime: 389.812us - RpcSumTime: 7.232ms - SerializeBatchTime: 39.877us - SplitBlockDistributeByChannelTime: 160.796us - SplitBlockHashComputeTime: 10.469us - UncompressedRowBatchSize: 7.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 283.181us - CloseTime: 59.523us - DeserializeAndMergeTime: 0ns - ExecTime: 470.938us - ExprTime: 9.32us - GetResultsTime: 80.610us - HashTableComputeTime: 112.906us - HashTableEmplaceTime: 82.335us - HashTableInputCount: 166 - HashTableIterateTime: 1.157us - HashTableSize: 134 - InsertKeysToColumnTime: 29.347us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.89 MB - MergeTime: 0ns - OpenTime: 34.966us - ProjectionTime: 0ns - RowsProduced: 134 - SerializeDataTime: 43.609us - SerializeKeyTime: 0ns - SerializeResultTime: 84.189us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 33.318us - ExecTime: 1.152ms - InitProbeSideTime: 437.455us - JoinFilterTimer: 473ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 19.313us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.399us - ProbeFindNextTime: 0ns - ProbeRows: 14.181K (14181) - ProbeTime: 790.360us - ProbeWhenBuildSideOutputTime: 21.515us - ProbeWhenProbeSideOutputTime: 12.25us - ProbeWhenProcessHashTableTime: 24.274us - ProbeWhenSearchHashTableTime: 166.417us - ProjectionTime: 272.702us - RowsProduced: 166 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s564ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.906us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.784us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 15.175us - ProjectionTime: 0ns - RowsProduced: 14.181K (14181) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 932.366ms PipelineXTask (index=2):(Active: 4.232ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.778ms - CloseTime: 164.726us - GetBlockTime: 1.358ms - OpenTime: 12.790us - PrepareTime: 270.507us - SinkTime: 2.360ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.819ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.902ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.49 KB - CloseTime: 10.853us - CompressTime: 0ns - ExecTime: 2.518ms - InputRows: 131 - LocalBytesSent: 6.78 KB - LocalSendTime: 1.452ms - LocalSentRows: 73 - MemoryUsage: - PeakMemoryUsage: 33.47 KB - MergeBlockTime: 0ns - OpenTime: 148.260us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.575ms - RowsProduced: 131 - RpcAvgTime: 684.590us - RpcCount: 12 - RpcMaxTime: 1.619ms - RpcMinTime: 303.286us - RpcSumTime: 8.215ms - SerializeBatchTime: 48.924us - SplitBlockDistributeByChannelTime: 138.690us - SplitBlockHashComputeTime: 10.508us - UncompressedRowBatchSize: 6.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 232.717us - CloseTime: 94.633us - DeserializeAndMergeTime: 0ns - ExecTime: 460.244us - ExprTime: 6.726us - GetResultsTime: 84.204us - HashTableComputeTime: 113.463us - HashTableEmplaceTime: 93.10us - HashTableInputCount: 146 - HashTableIterateTime: 1.106us - HashTableSize: 131 - InsertKeysToColumnTime: 15.258us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.89 MB - MergeTime: 0ns - OpenTime: 37.814us - ProjectionTime: 0ns - RowsProduced: 131 - SerializeDataTime: 59.716us - SerializeKeyTime: 0ns - SerializeResultTime: 88.177us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 28.51us - ExecTime: 1.9ms - InitProbeSideTime: 422.409us - JoinFilterTimer: 499ns - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 16.88us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.319us - ProbeFindNextTime: 0ns - ProbeRows: 14.487K (14487) - ProbeTime: 757.237us - ProbeWhenBuildSideOutputTime: 5.537us - ProbeWhenProbeSideOutputTime: 7.196us - ProbeWhenProcessHashTableTime: 43.467us - ProbeWhenSearchHashTableTime: 164.806us - ProjectionTime: 185.136us - RowsProduced: 146 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s478ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 27.21us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 99.6us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 14.798us - ProjectionTime: 0ns - RowsProduced: 14.487K (14487) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 932.629ms PipelineXTask (index=4):(Active: 2.84ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.746ms - CloseTime: 100.382us - GetBlockTime: 1.110ms - OpenTime: 5.967us - PrepareTime: 226.197us - SinkTime: 601.552us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.975ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.588ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.59 KB - CloseTime: 17.501us - CompressTime: 0ns - ExecTime: 713.141us - InputRows: 158 - LocalBytesSent: 7.17 KB - LocalSendTime: 86.990us - LocalSentRows: 78 - MemoryUsage: - PeakMemoryUsage: 36.72 KB - MergeBlockTime: 0ns - OpenTime: 94.487us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.689ms - RowsProduced: 158 - RpcAvgTime: 720.798us - RpcCount: 12 - RpcMaxTime: 800.361us - RpcMinTime: 666.928us - RpcSumTime: 8.649ms - SerializeBatchTime: 46.689us - SplitBlockDistributeByChannelTime: 94.598us - SplitBlockHashComputeTime: 8.201us - UncompressedRowBatchSize: 8.41 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 197.501us - CloseTime: 42.138us - DeserializeAndMergeTime: 0ns - ExecTime: 336.746us - ExprTime: 5.786us - GetResultsTime: 52.164us - HashTableComputeTime: 90.26us - HashTableEmplaceTime: 72.556us - HashTableInputCount: 172 - HashTableIterateTime: 896ns - HashTableSize: 158 - InsertKeysToColumnTime: 10.815us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 37.745us - ProjectionTime: 0ns - RowsProduced: 158 - SerializeDataTime: 27.424us - SerializeKeyTime: 0ns - SerializeResultTime: 54.150us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 30.735us - ExecTime: 844.764us - InitProbeSideTime: 372.778us - JoinFilterTimer: 316ns - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 13.122us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.168us - ProbeFindNextTime: 0ns - ProbeRows: 14.323K (14323) - ProbeTime: 630.87us - ProbeWhenBuildSideOutputTime: 17.803us - ProbeWhenProbeSideOutputTime: 10.624us - ProbeWhenProcessHashTableTime: 22.611us - ProbeWhenSearchHashTableTime: 142.420us - ProjectionTime: 152.821us - RowsProduced: 172 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s478ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 5.472us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 56.640us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 14.669us - ProjectionTime: 0ns - RowsProduced: 14.323K (14323) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 932.624ms PipelineXTask (index=6):(Active: 2.880ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.417ms - CloseTime: 186.156us - GetBlockTime: 1.445ms - OpenTime: 5.810us - PrepareTime: 264.862us - SinkTime: 928.681us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.683ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.996ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.13 KB - CloseTime: 37.49us - CompressTime: 0ns - ExecTime: 1.63ms - InputRows: 159 - LocalBytesSent: 8.79 KB - LocalSendTime: 163.239us - LocalSentRows: 95 - MemoryUsage: - PeakMemoryUsage: 36.25 KB - MergeBlockTime: 0ns - OpenTime: 98.302us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.692ms - RowsProduced: 159 - RpcAvgTime: 759.430us - RpcCount: 12 - RpcMaxTime: 930.479us - RpcMinTime: 690.177us - RpcSumTime: 9.113ms - SerializeBatchTime: 71.700us - SplitBlockDistributeByChannelTime: 123.858us - SplitBlockHashComputeTime: 10.158us - UncompressedRowBatchSize: 6.94 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 226.840us - CloseTime: 78.447us - DeserializeAndMergeTime: 0ns - ExecTime: 409.558us - ExprTime: 3.837us - GetResultsTime: 63.430us - HashTableComputeTime: 102.597us - HashTableEmplaceTime: 83.473us - HashTableInputCount: 180 - HashTableIterateTime: 1.348us - HashTableSize: 159 - InsertKeysToColumnTime: 16.102us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 33.544us - ProjectionTime: 0ns - RowsProduced: 159 - SerializeDataTime: 36.334us - SerializeKeyTime: 0ns - SerializeResultTime: 66.360us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 57.660us - ExecTime: 1.190ms - InitProbeSideTime: 598.744us - JoinFilterTimer: 351ns - MemoryUsage: - PeakMemoryUsage: 192.00 KB - ProbeKeyArena: 192.00 KB - OpenTime: 35.903us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.16us - ProbeFindNextTime: 0ns - ProbeRows: 14.507K (14507) - ProbeTime: 952.88us - ProbeWhenBuildSideOutputTime: 315ns - ProbeWhenProbeSideOutputTime: 3.630us - ProbeWhenProcessHashTableTime: 28.814us - ProbeWhenSearchHashTableTime: 214.164us - ProjectionTime: 118.58us - RowsProduced: 180 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s478ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.616us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 65.902us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 15.497us - ProjectionTime: 0ns - RowsProduced: 14.507K (14507) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 932.614ms PipelineXTask (index=8):(Active: 2.744ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.322ms - CloseTime: 170.914us - GetBlockTime: 1.430ms - OpenTime: 7.428us - PrepareTime: 237.434us - SinkTime: 848.137us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.564ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.21ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.23 KB - CloseTime: 28.682us - CompressTime: 0ns - ExecTime: 989.45us - InputRows: 165 - LocalBytesSent: 8.69 KB - LocalSendTime: 144.581us - LocalSentRows: 90 - MemoryUsage: - PeakMemoryUsage: 40.03 KB - MergeBlockTime: 0ns - OpenTime: 112.901us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.398ms - RowsProduced: 165 - RpcAvgTime: 1.211ms - RpcCount: 12 - RpcMaxTime: 1.430ms - RpcMinTime: 1.91ms - RpcSumTime: 14.541ms - SerializeBatchTime: 55.30us - SplitBlockDistributeByChannelTime: 141.546us - SplitBlockHashComputeTime: 10.200us - UncompressedRowBatchSize: 8.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 221.272us - CloseTime: 96.826us - DeserializeAndMergeTime: 0ns - ExecTime: 418.384us - ExprTime: 4.830us - GetResultsTime: 60.956us - HashTableComputeTime: 122.440us - HashTableEmplaceTime: 103.929us - HashTableInputCount: 202 - HashTableIterateTime: 1.178us - HashTableSize: 165 - InsertKeysToColumnTime: 14.966us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 32.727us - ProjectionTime: 0ns - RowsProduced: 165 - SerializeDataTime: 38.968us - SerializeKeyTime: 0ns - SerializeResultTime: 63.150us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 35.534us - ExecTime: 1.144ms - InitProbeSideTime: 524.788us - JoinFilterTimer: 440ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 16.500us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.952us - ProbeFindNextTime: 0ns - ProbeRows: 14.029K (14029) - ProbeTime: 911.541us - ProbeWhenBuildSideOutputTime: 7.256us - ProbeWhenProbeSideOutputTime: 7.611us - ProbeWhenProcessHashTableTime: 46.184us - ProbeWhenSearchHashTableTime: 241.788us - ProjectionTime: 156.598us - RowsProduced: 202 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s564ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.430us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.310us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 14.258us - ProjectionTime: 0ns - RowsProduced: 14.029K (14029) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 933.47ms PipelineXTask (index=10):(Active: 2.595ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.156ms - CloseTime: 159.263us - GetBlockTime: 1.385ms - OpenTime: 7.303us - PrepareTime: 265.976us - SinkTime: 721.20us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.426ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.12ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.14 KB - CloseTime: 17.12us - CompressTime: 0ns - ExecTime: 871.10us - InputRows: 136 - LocalBytesSent: 6.67 KB - LocalSendTime: 174.288us - LocalSentRows: 72 - MemoryUsage: - PeakMemoryUsage: 34.34 KB - MergeBlockTime: 0ns - OpenTime: 133.447us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.485ms - RowsProduced: 136 - RpcAvgTime: 1.245ms - RpcCount: 12 - RpcMaxTime: 1.442ms - RpcMinTime: 1.168ms - RpcSumTime: 14.946ms - SerializeBatchTime: 42.542us - SplitBlockDistributeByChannelTime: 94.6us - SplitBlockHashComputeTime: 7.29us - UncompressedRowBatchSize: 6.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 209.710us - CloseTime: 96.706us - DeserializeAndMergeTime: 0ns - ExecTime: 411.179us - ExprTime: 6.744us - GetResultsTime: 60.457us - HashTableComputeTime: 98.766us - HashTableEmplaceTime: 79.792us - HashTableInputCount: 154 - HashTableIterateTime: 721ns - HashTableSize: 136 - InsertKeysToColumnTime: 15.643us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.89 MB - MergeTime: 0ns - OpenTime: 35.159us - ProjectionTime: 0ns - RowsProduced: 136 - SerializeDataTime: 38.485us - SerializeKeyTime: 0ns - SerializeResultTime: 63.8us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 33.930us - ExecTime: 1.79ms - InitProbeSideTime: 424.378us - JoinFilterTimer: 753ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 16.968us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.675us - ProbeFindNextTime: 0ns - ProbeRows: 13.892K (13892) - ProbeTime: 784.876us - ProbeWhenBuildSideOutputTime: 17.398us - ProbeWhenProbeSideOutputTime: 9.456us - ProbeWhenProcessHashTableTime: 52.40us - ProbeWhenSearchHashTableTime: 172.872us - ProjectionTime: 218.402us - RowsProduced: 154 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s565ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.296us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.548us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 15.951us - ProjectionTime: 0ns - RowsProduced: 13.892K (13892) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 933.237ms PipelineXTask (index=12):(Active: 3.42ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.673ms - CloseTime: 62.903us - GetBlockTime: 1.630ms - OpenTime: 8.675us - PrepareTime: 292.46us - SinkTime: 994.818us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.970ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.556ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.91 KB - CloseTime: 15.532us - CompressTime: 0ns - ExecTime: 1.182ms - InputRows: 140 - LocalBytesSent: 5.99 KB - LocalSendTime: 207.120us - LocalSentRows: 66 - MemoryUsage: - PeakMemoryUsage: 34.69 KB - MergeBlockTime: 0ns - OpenTime: 172.848us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3.40ms - RowsProduced: 140 - RpcAvgTime: 139.34us - RpcCount: 12 - RpcMaxTime: 334.575us - RpcMinTime: 46.243us - RpcSumTime: 1.668ms - SerializeBatchTime: 49.414us - SplitBlockDistributeByChannelTime: 120.694us - SplitBlockHashComputeTime: 11.294us - UncompressedRowBatchSize: 7.72 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 248.842us - CloseTime: 25.957us - DeserializeAndMergeTime: 0ns - ExecTime: 415.547us - ExprTime: 7.309us - GetResultsTime: 93.918us - HashTableComputeTime: 121.228us - HashTableEmplaceTime: 96.905us - HashTableInputCount: 154 - HashTableIterateTime: 1.214us - HashTableSize: 140 - InsertKeysToColumnTime: 18.649us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.89 MB - MergeTime: 0ns - OpenTime: 35.341us - ProjectionTime: 0ns - RowsProduced: 140 - SerializeDataTime: 66.359us - SerializeKeyTime: 0ns - SerializeResultTime: 97.120us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 12.167us - ExecTime: 1.204ms - InitProbeSideTime: 493.4us - JoinFilterTimer: 566ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 14.650us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.63us - ProbeFindNextTime: 0ns - ProbeRows: 13.936K (13936) - ProbeTime: 934.18us - ProbeWhenBuildSideOutputTime: 15.132us - ProbeWhenProbeSideOutputTime: 10.652us - ProbeWhenProcessHashTableTime: 52.179us - ProbeWhenSearchHashTableTime: 244.320us - ProjectionTime: 207.947us - RowsProduced: 154 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s564ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.957us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 103.164us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 21.559us - ProjectionTime: 0ns - RowsProduced: 13.936K (13936) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 932.845ms PipelineXTask (index=14):(Active: 2.282ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.891ms - CloseTime: 155.156us - GetBlockTime: 1.101ms - OpenTime: 5.897us - PrepareTime: 225.227us - SinkTime: 754.354us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.108ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.622ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.49 KB - CloseTime: 24.638us - CompressTime: 0ns - ExecTime: 888.103us - InputRows: 137 - LocalBytesSent: 6.27 KB - LocalSendTime: 152.994us - LocalSentRows: 68 - MemoryUsage: - PeakMemoryUsage: 34.31 KB - MergeBlockTime: 0ns - OpenTime: 109.766us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.988ms - RowsProduced: 137 - RpcAvgTime: 1.626ms - RpcCount: 12 - RpcMaxTime: 1.681ms - RpcMinTime: 1.554ms - RpcSumTime: 19.519ms - SerializeBatchTime: 36.964us - SplitBlockDistributeByChannelTime: 105.157us - SplitBlockHashComputeTime: 6.657us - UncompressedRowBatchSize: 7.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 190.184us - CloseTime: 91.309us - DeserializeAndMergeTime: 0ns - ExecTime: 355.493us - ExprTime: 4.340us - GetResultsTime: 37.370us - HashTableComputeTime: 98.622us - HashTableEmplaceTime: 82.282us - HashTableInputCount: 172 - HashTableIterateTime: 735ns - HashTableSize: 137 - InsertKeysToColumnTime: 10.274us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.89 MB - MergeTime: 0ns - OpenTime: 30.830us - ProjectionTime: 0ns - RowsProduced: 137 - SerializeDataTime: 22.637us - SerializeKeyTime: 0ns - SerializeResultTime: 39.219us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 29.727us - ExecTime: 871.521us - InitProbeSideTime: 413.444us - JoinFilterTimer: 432ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 23.255us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.464us - ProbeFindNextTime: 0ns - ProbeRows: 14.27K (14270) - ProbeTime: 680.731us - ProbeWhenBuildSideOutputTime: 10.971us - ProbeWhenProbeSideOutputTime: 5.911us - ProbeWhenProcessHashTableTime: 25.130us - ProbeWhenSearchHashTableTime: 136.370us - ProjectionTime: 107.731us - RowsProduced: 172 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s563ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.504us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 55.736us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 10.818us - ProjectionTime: 0ns - RowsProduced: 14.27K (14270) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 933.1ms PipelineXTask (index=16):(Active: 3.131ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.755ms - CloseTime: 126.212us - GetBlockTime: 1.862ms - OpenTime: 23.951us - PrepareTime: 220.288us - SinkTime: 822.973us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.995ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.374ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.38 KB - CloseTime: 14.47us - CompressTime: 0ns - ExecTime: 914.275us - InputRows: 172 - LocalBytesSent: 7.86 KB - LocalSendTime: 105.771us - LocalSentRows: 85 - MemoryUsage: - PeakMemoryUsage: 40.38 KB - MergeBlockTime: 0ns - OpenTime: 77.849us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.760ms - RowsProduced: 172 - RpcAvgTime: 135.732us - RpcCount: 12 - RpcMaxTime: 221.92us - RpcMinTime: 91.912us - RpcSumTime: 1.628ms - SerializeBatchTime: 53.360us - SplitBlockDistributeByChannelTime: 154.62us - SplitBlockHashComputeTime: 12.938us - UncompressedRowBatchSize: 9.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 352.619us - CloseTime: 89.204us - DeserializeAndMergeTime: 0ns - ExecTime: 589.98us - ExprTime: 10.320us - GetResultsTime: 99.648us - HashTableComputeTime: 177.24us - HashTableEmplaceTime: 124.282us - HashTableInputCount: 206 - HashTableIterateTime: 1.234us - HashTableSize: 172 - InsertKeysToColumnTime: 25.612us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 34.795us - ProjectionTime: 0ns - RowsProduced: 172 - SerializeDataTime: 65.733us - SerializeKeyTime: 0ns - SerializeResultTime: 102.987us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 13.162us - ExecTime: 1.334ms - InitProbeSideTime: 518.993us - JoinFilterTimer: 899ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 19.305us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.175us - ProbeFindNextTime: 0ns - ProbeRows: 14.132K (14132) - ProbeTime: 983.220us - ProbeWhenBuildSideOutputTime: 26.272us - ProbeWhenProbeSideOutputTime: 14.948us - ProbeWhenProcessHashTableTime: 47.64us - ProbeWhenSearchHashTableTime: 230.826us - ProjectionTime: 286.575us - RowsProduced: 206 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s564ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.992us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 67.807us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 13.819us - ProjectionTime: 0ns - RowsProduced: 14.132K (14132) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 937.93ms PipelineXTask (index=18):(Active: 3.184ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.803ms - CloseTime: 95.142us - GetBlockTime: 1.769ms - OpenTime: 16.297us - PrepareTime: 261.895us - SinkTime: 959.546us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.70ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.390ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.43 KB - CloseTime: 13.747us - CompressTime: 0ns - ExecTime: 1.95ms - InputRows: 190 - LocalBytesSent: 8.35 KB - LocalSendTime: 128.422us - LocalSentRows: 90 - MemoryUsage: - PeakMemoryUsage: 42.06 KB - MergeBlockTime: 0ns - OpenTime: 123.58us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.924ms - RowsProduced: 190 - RpcAvgTime: 144.920us - RpcCount: 12 - RpcMaxTime: 225.737us - RpcMinTime: 49.448us - RpcSumTime: 1.739ms - SerializeBatchTime: 44.388us - SplitBlockDistributeByChannelTime: 191.896us - SplitBlockHashComputeTime: 11.663us - UncompressedRowBatchSize: 10.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 359.271us - CloseTime: 56.658us - DeserializeAndMergeTime: 0ns - ExecTime: 577.930us - ExprTime: 26.739us - GetResultsTime: 94.5us - HashTableComputeTime: 139.322us - HashTableEmplaceTime: 115.184us - HashTableInputCount: 222 - HashTableIterateTime: 1.393us - HashTableSize: 190 - InsertKeysToColumnTime: 37.605us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 55.275us - ProjectionTime: 0ns - RowsProduced: 190 - SerializeDataTime: 46.148us - SerializeKeyTime: 0ns - SerializeResultTime: 97.220us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 15.664us - ExecTime: 1.251ms - InitProbeSideTime: 474.995us - JoinFilterTimer: 481ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 20.580us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.928us - ProbeFindNextTime: 0ns - ProbeRows: 13.699K (13699) - ProbeTime: 909.538us - ProbeWhenBuildSideOutputTime: 28.584us - ProbeWhenProbeSideOutputTime: 14.120us - ProbeWhenProcessHashTableTime: 61.35us - ProbeWhenSearchHashTableTime: 197.843us - ProjectionTime: 257.106us - RowsProduced: 222 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s570ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.798us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 61.39us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 9.323us - ProjectionTime: 0ns - RowsProduced: 13.699K (13699) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 937.233ms PipelineXTask (index=20):(Active: 2.465ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.116ms - CloseTime: 105.313us - GetBlockTime: 1.459ms - OpenTime: 7.951us - PrepareTime: 229.802us - SinkTime: 601.173us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.352ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.620ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.48 KB - CloseTime: 13.111us - CompressTime: 0ns - ExecTime: 735.358us - InputRows: 146 - LocalBytesSent: 7.33 KB - LocalSendTime: 99.554us - LocalSentRows: 79 - MemoryUsage: - PeakMemoryUsage: 35.28 KB - MergeBlockTime: 0ns - OpenTime: 121.455us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.668ms - RowsProduced: 146 - RpcAvgTime: 1.22ms - RpcCount: 12 - RpcMaxTime: 1.601ms - RpcMinTime: 310.998us - RpcSumTime: 12.273ms - SerializeBatchTime: 26.858us - SplitBlockDistributeByChannelTime: 79.580us - SplitBlockHashComputeTime: 7.754us - UncompressedRowBatchSize: 7.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 253.882us - CloseTime: 67.504us - DeserializeAndMergeTime: 0ns - ExecTime: 411.904us - ExprTime: 6.144us - GetResultsTime: 46.673us - HashTableComputeTime: 138.252us - HashTableEmplaceTime: 88.965us - HashTableInputCount: 171 - HashTableIterateTime: 800ns - HashTableSize: 146 - InsertKeysToColumnTime: 11.515us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 34.999us - ProjectionTime: 0ns - RowsProduced: 146 - SerializeDataTime: 26.524us - SerializeKeyTime: 0ns - SerializeResultTime: 48.473us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.22us - ExecTime: 1.75ms - InitProbeSideTime: 475.963us - JoinFilterTimer: 534ns - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 15.742us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.882us - ProbeFindNextTime: 0ns - ProbeRows: 13.933K (13933) - ProbeTime: 827.37us - ProbeWhenBuildSideOutputTime: 16.274us - ProbeWhenProbeSideOutputTime: 13.392us - ProbeWhenProcessHashTableTime: 31.873us - ProbeWhenSearchHashTableTime: 167.690us - ProjectionTime: 188.302us - RowsProduced: 171 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s559ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.434us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.370us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 11.687us - ProjectionTime: 0ns - RowsProduced: 13.933K (13933) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 936.580ms PipelineXTask (index=22):(Active: 2.220ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.914ms - CloseTime: 62.861us - GetBlockTime: 1.191ms - OpenTime: 13.655us - PrepareTime: 223.838us - SinkTime: 657.918us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.149ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.512ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.59 KB - CloseTime: 14.219us - CompressTime: 0ns - ExecTime: 771.99us - InputRows: 125 - LocalBytesSent: 6.05 KB - LocalSendTime: 127.937us - LocalSentRows: 66 - MemoryUsage: - PeakMemoryUsage: 32.81 KB - MergeBlockTime: 0ns - OpenTime: 99.639us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.665ms - RowsProduced: 125 - RpcAvgTime: 544.436us - RpcCount: 12 - RpcMaxTime: 1.238ms - RpcMinTime: 27.181us - RpcSumTime: 6.533ms - SerializeBatchTime: 29.218us - SplitBlockDistributeByChannelTime: 117.90us - SplitBlockHashComputeTime: 7.564us - UncompressedRowBatchSize: 6.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 177.334us - CloseTime: 29.50us - DeserializeAndMergeTime: 0ns - ExecTime: 296.246us - ExprTime: 5.566us - GetResultsTime: 47.447us - HashTableComputeTime: 95.220us - HashTableEmplaceTime: 79.289us - HashTableInputCount: 138 - HashTableIterateTime: 791ns - HashTableSize: 125 - InsertKeysToColumnTime: 13.953us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.89 MB - MergeTime: 0ns - OpenTime: 33.557us - ProjectionTime: 0ns - RowsProduced: 125 - SerializeDataTime: 24.242us - SerializeKeyTime: 0ns - SerializeResultTime: 50.297us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 9.416us - ExecTime: 935.341us - InitProbeSideTime: 432.37us - JoinFilterTimer: 303ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 24.695us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.995us - ProbeFindNextTime: 0ns - ProbeRows: 14.229K (14229) - ProbeTime: 714.560us - ProbeWhenBuildSideOutputTime: 28.346us - ProbeWhenProbeSideOutputTime: 8.121us - ProbeWhenProcessHashTableTime: 17.186us - ProbeWhenSearchHashTableTime: 128.476us - ProjectionTime: 159.322us - RowsProduced: 138 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s570ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 5.575us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 62.265us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 540.00 KB - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 541.50 KB - OpenTime: 13.982us - ProjectionTime: 0ns - RowsProduced: 14.229K (14229) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 937.410ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 323.201us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 212.790us - CloseTime: 32.571us - GetBlockTime: 17.218us - OpenTime: 2.610us - PrepareTime: 69.938us - SinkTime: 168.872us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 282.500us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.54ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.82us - BuildRows: 155 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.992us - BuildTableInsertTime: 40.160us - BuildTableTime: 43.758us - CloseTime: 0ns - ExecTime: 200.662us - InputRows: 154 - MemoryUsage: - BuildBlocks: 13.70 KB - BuildKeyArena: 4.00 KB - HashTable: 1.76 KB - PeakMemoryUsage: 15.46 KB - OpenTime: 32.548us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.698us - RuntimeFilterComputeTime: 7.164us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 7.68 KB - CloseTime: 30.758us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 35.613us - ExecTime: 55.275us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 9.543us - ProjectionTime: 0ns - RowsProduced: 154 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s503ms PipelineXTask (index=3):(Active: 160.168us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 79.861us - CloseTime: 3.223us - GetBlockTime: 6.539us - OpenTime: 3.31us - PrepareTime: 59.372us - SinkTime: 57.54us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.726us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.335ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 383ns - BuildRows: 146 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.428us - BuildTableInsertTime: 14.71us - BuildTableTime: 14.984us - CloseTime: 0ns - ExecTime: 71.719us - InputRows: 145 - MemoryUsage: - BuildBlocks: 12.89 KB - BuildKeyArena: 4.00 KB - HashTable: 1.72 KB - PeakMemoryUsage: 14.60 KB - OpenTime: 14.795us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 803ns - RuntimeFilterComputeTime: 1.353us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 7.05 KB - CloseTime: 2.780us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 54.72us - ExecTime: 23.229us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.11us - ProjectionTime: 0ns - RowsProduced: 145 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s503ms PipelineXTask (index=5):(Active: 152.812us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 77.83us - CloseTime: 2.107us - GetBlockTime: 6.11us - OpenTime: 2.406us - PrepareTime: 65.883us - SinkTime: 48.268us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 144.436us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.240ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 637ns - BuildRows: 168 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 8.353us - BuildTableInsertTime: 14.169us - BuildTableTime: 15.271us - CloseTime: 0ns - ExecTime: 63.258us - InputRows: 167 - MemoryUsage: - BuildBlocks: 14.89 KB - BuildKeyArena: 4.00 KB - HashTable: 1.82 KB - PeakMemoryUsage: 16.70 KB - OpenTime: 15.123us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 975ns - RuntimeFilterComputeTime: 1.720us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 8.04 KB - CloseTime: 1.682us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 26.973us - ExecTime: 36.139us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 28.895us - ProjectionTime: 0ns - RowsProduced: 167 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s504ms PipelineXTask (index=7):(Active: 255.337us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 174.122us - CloseTime: 17.28us - GetBlockTime: 10.214us - OpenTime: 2.865us - PrepareTime: 55.827us - SinkTime: 141.461us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 231.97us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.105ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 995ns - BuildRows: 181 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.513us - BuildTableInsertTime: 52.958us - BuildTableTime: 54.960us - CloseTime: 0ns - ExecTime: 161.94us - InputRows: 180 - MemoryUsage: - BuildBlocks: 16.00 KB - BuildKeyArena: 4.00 KB - HashTable: 1.89 KB - PeakMemoryUsage: 17.88 KB - OpenTime: 19.943us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.379us - RuntimeFilterComputeTime: 4.268us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 8.45 KB - CloseTime: 15.242us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 53.580us - ExecTime: 40.305us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.383us - ProjectionTime: 0ns - RowsProduced: 180 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s503ms PipelineXTask (index=9):(Active: 155.925us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 80.82us - CloseTime: 2.794us - GetBlockTime: 6.362us - OpenTime: 2.520us - PrepareTime: 65.48us - SinkTime: 56.526us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 146.829us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.627ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 863ns - BuildRows: 201 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.809us - BuildTableInsertTime: 13.847us - BuildTableTime: 14.858us - CloseTime: 0ns - ExecTime: 87.563us - InputRows: 200 - MemoryUsage: - BuildBlocks: 17.79 KB - BuildKeyArena: 12.00 KB - HashTable: 1.99 KB - PeakMemoryUsage: 27.76 KB - OpenTime: 31.312us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.691us - RuntimeFilterComputeTime: 2.385us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 9.29 KB - CloseTime: 2.334us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 40.595us - ExecTime: 17.516us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 24.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 9.421us - ProjectionTime: 0ns - RowsProduced: 200 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s504ms PipelineXTask (index=11):(Active: 202.525us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 133.357us - CloseTime: 10.614us - GetBlockTime: 14.330us - OpenTime: 3.420us - PrepareTime: 50.620us - SinkTime: 100.324us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 186.657us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.979ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.242us - BuildRows: 154 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.890us - BuildTableInsertTime: 24.145us - BuildTableTime: 26.892us - CloseTime: 0ns - ExecTime: 117.601us - InputRows: 153 - MemoryUsage: - BuildBlocks: 13.60 KB - BuildKeyArena: 4.00 KB - HashTable: 1.76 KB - PeakMemoryUsage: 15.34 KB - OpenTime: 17.945us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.429us - RuntimeFilterComputeTime: 4.272us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 7.64 KB - CloseTime: 8.822us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 57.130us - ExecTime: 31.308us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.30us - ProjectionTime: 0ns - RowsProduced: 153 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s503ms PipelineXTask (index=13):(Active: 318.840us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 252.830us - CloseTime: 4.753us - GetBlockTime: 10.989us - OpenTime: 2.76us - PrepareTime: 54.350us - SinkTime: 220.180us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 308.174us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.88ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 980ns - BuildRows: 149 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.181us - BuildTableInsertTime: 26.251us - BuildTableTime: 27.777us - CloseTime: 0ns - ExecTime: 231.162us - InputRows: 148 - MemoryUsage: - BuildBlocks: 13.16 KB - BuildKeyArena: 4.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 14.88 KB - OpenTime: 11.86us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 150.107us - RuntimeFilterComputeTime: 1.330us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 7.44 KB - CloseTime: 3.841us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 51.897us - ExecTime: 33.77us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.871us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s503ms PipelineXTask (index=15):(Active: 285.731us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 191.224us - CloseTime: 5.566us - GetBlockTime: 12.113us - OpenTime: 3.750us - PrepareTime: 80.207us - SinkTime: 148.963us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 271.239us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.337ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.130us - BuildRows: 149 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.279us - BuildTableInsertTime: 41.585us - BuildTableTime: 43.586us - CloseTime: 0ns - ExecTime: 162.737us - InputRows: 148 - MemoryUsage: - BuildBlocks: 13.15 KB - BuildKeyArena: 4.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 14.88 KB - OpenTime: 14.100us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.622us - RuntimeFilterComputeTime: 4.365us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 7.03 KB - CloseTime: 4.385us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 37.28us - ExecTime: 42.872us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 27.818us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s506ms PipelineXTask (index=17):(Active: 215.849us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 146.358us - CloseTime: 8.163us - GetBlockTime: 8.209us - OpenTime: 2.915us - PrepareTime: 53.850us - SinkTime: 117.576us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 201.305us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.357ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 965ns - BuildRows: 191 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 22.2us - BuildTableInsertTime: 34.547us - BuildTableTime: 47.436us - CloseTime: 0ns - ExecTime: 130.162us - InputRows: 190 - MemoryUsage: - BuildBlocks: 16.91 KB - BuildKeyArena: 12.00 KB - HashTable: 1.94 KB - PeakMemoryUsage: 26.84 KB - OpenTime: 13.19us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.930us - RuntimeFilterComputeTime: 4.308us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 8.69 KB - CloseTime: 6.954us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 26.48us - ExecTime: 28.490us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 24.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.295us - ProjectionTime: 0ns - RowsProduced: 190 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s507ms PipelineXTask (index=19):(Active: 179.261us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 104.621us - CloseTime: 2.921us - GetBlockTime: 7.578us - OpenTime: 2.49us - PrepareTime: 50.55us - SinkTime: 81.39us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 155.925us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.475ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 573ns - BuildRows: 208 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.838us - BuildTableInsertTime: 26.811us - BuildTableTime: 28.59us - CloseTime: 0ns - ExecTime: 105.118us - InputRows: 207 - MemoryUsage: - BuildBlocks: 18.41 KB - BuildKeyArena: 12.00 KB - HashTable: 2.02 KB - PeakMemoryUsage: 28.42 KB - OpenTime: 24.278us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.434us - RuntimeFilterComputeTime: 2.169us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 9.46 KB - CloseTime: 2.519us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 36.324us - ExecTime: 17.895us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 24.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 8.238us - ProjectionTime: 0ns - RowsProduced: 207 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s507ms PipelineXTask (index=21):(Active: 189.424us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 90.490us - CloseTime: 3.134us - GetBlockTime: 6.151us - OpenTime: 2.96us - PrepareTime: 89.188us - SinkTime: 71.177us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 181.208us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.500ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 682ns - BuildRows: 165 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.753us - BuildTableInsertTime: 24.711us - BuildTableTime: 25.665us - CloseTime: 0ns - ExecTime: 89.59us - InputRows: 164 - MemoryUsage: - BuildBlocks: 14.60 KB - BuildKeyArena: 4.00 KB - HashTable: 1.81 KB - PeakMemoryUsage: 16.41 KB - OpenTime: 17.999us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.598us - RuntimeFilterComputeTime: 1.931us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 7.81 KB - CloseTime: 2.671us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 60.938us - ExecTime: 24.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.717us - ProjectionTime: 0ns - RowsProduced: 164 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s507ms PipelineXTask (index=23):(Active: 174.231us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 105.74us - CloseTime: 2.607us - GetBlockTime: 7.382us - OpenTime: 2.647us - PrepareTime: 59.398us - SinkTime: 72.337us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 166.488us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.471ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 900ns - BuildRows: 135 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.546us - BuildTableInsertTime: 28.673us - BuildTableTime: 29.605us - CloseTime: 0ns - ExecTime: 87.246us - InputRows: 134 - MemoryUsage: - BuildBlocks: 11.91 KB - BuildKeyArena: 4.00 KB - HashTable: 1.66 KB - PeakMemoryUsage: 13.57 KB - OpenTime: 14.803us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.174us - RuntimeFilterComputeTime: 1.483us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 2 - BytesReceived: 6.76 KB - CloseTime: 2.29us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 56.375us - ExecTime: 18.865us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.568us - ProjectionTime: 0ns - RowsProduced: 134 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s507ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.886ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.337ms - CloseTime: 116.440us - GetBlockTime: 1.327ms - OpenTime: 5.967us - PrepareTime: 419.790us - SinkTime: 958.857us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.759ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 770.4us DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.54 KB - CloseTime: 11.242us - CompressTime: 0ns - ExecTime: 1.81ms - InputRows: 154 - LocalBytesSent: 6.85 KB - LocalSendTime: 155.301us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 36.69 KB - MergeBlockTime: 0ns - OpenTime: 112.208us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.199ms - RowsProduced: 154 - RpcAvgTime: 1.340ms - RpcCount: 12 - RpcMaxTime: 1.520ms - RpcMinTime: 1.150ms - RpcSumTime: 16.88ms - SerializeBatchTime: 40.499us - SplitBlockDistributeByChannelTime: 133.740us - SplitBlockHashComputeTime: 10.374us - UncompressedRowBatchSize: 8.36 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 270.964us - CloseTime: 48.240us - DeserializeAndMergeTime: 0ns - ExecTime: 439.23us - ExprTime: 5.117us - GetResultsTime: 72.426us - HashTableComputeTime: 121.433us - HashTableEmplaceTime: 102.498us - HashTableInputCount: 177 - HashTableIterateTime: 1.315us - HashTableSize: 154 - InsertKeysToColumnTime: 15.845us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 36.800us - ProjectionTime: 0ns - RowsProduced: 154 - SerializeDataTime: 45.641us - SerializeKeyTime: 0ns - SerializeResultTime: 76.300us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 35.561us - ExecTime: 951.860us - InitProbeSideTime: 392.801us - JoinFilterTimer: 678ns - MemoryUsage: - PeakMemoryUsage: 192.00 KB - ProbeKeyArena: 192.00 KB - OpenTime: 18.662us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.767us - ProbeFindNextTime: 0ns - ProbeRows: 14.243K (14243) - ProbeTime: 702.9us - ProbeWhenBuildSideOutputTime: 4.395us - ProbeWhenProbeSideOutputTime: 6.412us - ProbeWhenProcessHashTableTime: 29.223us - ProbeWhenSearchHashTableTime: 187.610us - ProjectionTime: 173.708us - RowsProduced: 177 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s206ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 166.82 KB - CloseTime: 18.298us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 443.297us - ExecTime: 116.24us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 34.703us - ProjectionTime: 0ns - RowsProduced: 14.243K (14243) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s298ms PipelineXTask (index=2):(Active: 3.151ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.731ms - CloseTime: 136.249us - GetBlockTime: 1.562ms - OpenTime: 4.224us - PrepareTime: 269.60us - SinkTime: 1.122ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.2ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 773.265us DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.63 KB - CloseTime: 9.953us - CompressTime: 0ns - ExecTime: 1.227ms - InputRows: 190 - LocalBytesSent: 8.06 KB - LocalSendTime: 144.554us - LocalSentRows: 89 - MemoryUsage: - PeakMemoryUsage: 42.06 KB - MergeBlockTime: 0ns - OpenTime: 95.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.889ms - RowsProduced: 190 - RpcAvgTime: 2.524ms - RpcCount: 12 - RpcMaxTime: 2.719ms - RpcMinTime: 2.234ms - RpcSumTime: 30.295ms - SerializeBatchTime: 46.412us - SplitBlockDistributeByChannelTime: 158.396us - SplitBlockHashComputeTime: 11.642us - UncompressedRowBatchSize: 10.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 307.144us - CloseTime: 47.881us - DeserializeAndMergeTime: 0ns - ExecTime: 491.959us - ExprTime: 7.918us - GetResultsTime: 80.277us - HashTableComputeTime: 120.699us - HashTableEmplaceTime: 94.207us - HashTableInputCount: 223 - HashTableIterateTime: 1.661us - HashTableSize: 190 - InsertKeysToColumnTime: 18.507us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 46.792us - ProjectionTime: 0ns - RowsProduced: 190 - SerializeDataTime: 50.74us - SerializeKeyTime: 0ns - SerializeResultTime: 83.191us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 30.47us - ExecTime: 1.132ms - InitProbeSideTime: 456.615us - JoinFilterTimer: 836ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 17.364us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.620us - ProbeFindNextTime: 0ns - ProbeRows: 14.121K (14121) - ProbeTime: 844.756us - ProbeWhenBuildSideOutputTime: 21.301us - ProbeWhenProbeSideOutputTime: 12.381us - ProbeWhenProcessHashTableTime: 29.581us - ProbeWhenSearchHashTableTime: 200.66us - ProjectionTime: 215.374us - RowsProduced: 223 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s206ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 165.50 KB - CloseTime: 44.380us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 355.203us - ExecTime: 105.495us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.496us - ProjectionTime: 0ns - RowsProduced: 14.121K (14121) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s298ms PipelineXTask (index=4):(Active: 1.886ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.480ms - CloseTime: 147.763us - GetBlockTime: 1.16ms - OpenTime: 6.680us - PrepareTime: 245.653us - SinkTime: 427.426us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.730ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 743.617us DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.52 KB - CloseTime: 9.768us - CompressTime: 0ns - ExecTime: 535.941us - InputRows: 142 - LocalBytesSent: 6.12 KB - LocalSendTime: 83.158us - LocalSentRows: 65 - MemoryUsage: - PeakMemoryUsage: 36.38 KB - MergeBlockTime: 0ns - OpenTime: 99.144us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.355ms - RowsProduced: 142 - RpcAvgTime: 1.351ms - RpcCount: 12 - RpcMaxTime: 1.432ms - RpcMinTime: 1.33ms - RpcSumTime: 16.214ms - SerializeBatchTime: 23.41us - SplitBlockDistributeByChannelTime: 68.683us - SplitBlockHashComputeTime: 7.311us - UncompressedRowBatchSize: 8.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 168.583us - CloseTime: 39.236us - DeserializeAndMergeTime: 0ns - ExecTime: 290.346us - ExprTime: 5.409us - GetResultsTime: 41.131us - HashTableComputeTime: 90.474us - HashTableEmplaceTime: 73.317us - HashTableInputCount: 177 - HashTableIterateTime: 720ns - HashTableSize: 142 - InsertKeysToColumnTime: 11.505us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 34.398us - ProjectionTime: 0ns - RowsProduced: 142 - SerializeDataTime: 22.526us - SerializeKeyTime: 0ns - SerializeResultTime: 42.964us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 24.305us - ExecTime: 800.102us - InitProbeSideTime: 338.167us - JoinFilterTimer: 268ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 16.450us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.371us - ProbeFindNextTime: 0ns - ProbeRows: 14.054K (14054) - ProbeTime: 586.830us - ProbeWhenBuildSideOutputTime: 11.189us - ProbeWhenProbeSideOutputTime: 7.20us - ProbeWhenProcessHashTableTime: 25.409us - ProbeWhenSearchHashTableTime: 135.469us - ProjectionTime: 154.514us - RowsProduced: 177 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s206ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 165.49 KB - CloseTime: 71.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 398.712us - ExecTime: 118.619us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 21.610us - ProjectionTime: 0ns - RowsProduced: 14.054K (14054) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s299ms PipelineXTask (index=6):(Active: 2.27ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.661ms - CloseTime: 66.715us - GetBlockTime: 1.67ms - OpenTime: 5.103us - PrepareTime: 289.435us - SinkTime: 558.417us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.952ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 572.775us DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.41 KB - CloseTime: 10.563us - CompressTime: 0ns - ExecTime: 699.913us - InputRows: 184 - LocalBytesSent: 8.65 KB - LocalSendTime: 82.223us - LocalSentRows: 89 - MemoryUsage: - PeakMemoryUsage: 42.94 KB - MergeBlockTime: 0ns - OpenTime: 131.454us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.51ms - RowsProduced: 184 - RpcAvgTime: 1.414ms - RpcCount: 12 - RpcMaxTime: 1.521ms - RpcMinTime: 1.157ms - RpcSumTime: 16.969ms - SerializeBatchTime: 38.175us - SplitBlockDistributeByChannelTime: 84.909us - SplitBlockHashComputeTime: 9.108us - UncompressedRowBatchSize: 10.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 200.788us - CloseTime: 35.171us - DeserializeAndMergeTime: 0ns - ExecTime: 323.319us - ExprTime: 5.384us - GetResultsTime: 45.908us - HashTableComputeTime: 94.173us - HashTableEmplaceTime: 75.528us - HashTableInputCount: 241 - HashTableIterateTime: 894ns - HashTableSize: 184 - InsertKeysToColumnTime: 10.236us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 34.985us - ProjectionTime: 0ns - RowsProduced: 184 - SerializeDataTime: 28.300us - SerializeKeyTime: 0ns - SerializeResultTime: 47.706us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 11.941us - ExecTime: 823.921us - InitProbeSideTime: 391.880us - JoinFilterTimer: 350ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 35.795us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.46us - ProbeFindNextTime: 0ns - ProbeRows: 14.194K (14194) - ProbeTime: 630.26us - ProbeWhenBuildSideOutputTime: 9.480us - ProbeWhenProbeSideOutputTime: 5.919us - ProbeWhenProcessHashTableTime: 26.117us - ProbeWhenSearchHashTableTime: 110.613us - ProjectionTime: 127.716us - RowsProduced: 241 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s201ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 166.67 KB - CloseTime: 4.713us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 401.433us - ExecTime: 46.246us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 16.406us - ProjectionTime: 0ns - RowsProduced: 14.194K (14194) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s303ms PipelineXTask (index=8):(Active: 2.414ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.30ms - CloseTime: 107.731us - GetBlockTime: 1.400ms - OpenTime: 5.784us - PrepareTime: 265.581us - SinkTime: 579.808us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.298ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.694ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.55 KB - CloseTime: 15.451us - CompressTime: 0ns - ExecTime: 697.438us - InputRows: 166 - LocalBytesSent: 7.97 KB - LocalSendTime: 101.250us - LocalSentRows: 87 - MemoryUsage: - PeakMemoryUsage: 38.00 KB - MergeBlockTime: 0ns - OpenTime: 103.247us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2.229ms - RowsProduced: 166 - RpcAvgTime: 1.301ms - RpcCount: 12 - RpcMaxTime: 1.439ms - RpcMinTime: 1.32ms - RpcSumTime: 15.621ms - SerializeBatchTime: 35.321us - SplitBlockDistributeByChannelTime: 82.887us - SplitBlockHashComputeTime: 9.698us - UncompressedRowBatchSize: 8.37 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 264.37us - CloseTime: 67.36us - DeserializeAndMergeTime: 0ns - ExecTime: 451.118us - ExprTime: 8.265us - GetResultsTime: 64.214us - HashTableComputeTime: 112.406us - HashTableEmplaceTime: 96.484us - HashTableInputCount: 189 - HashTableIterateTime: 1.187us - HashTableSize: 166 - InsertKeysToColumnTime: 15.454us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 44.259us - ProjectionTime: 0ns - RowsProduced: 166 - SerializeDataTime: 39.51us - SerializeKeyTime: 0ns - SerializeResultTime: 68.980us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.703us - ExecTime: 1.35ms - InitProbeSideTime: 518.879us - JoinFilterTimer: 410ns - MemoryUsage: - PeakMemoryUsage: 192.00 KB - ProbeKeyArena: 192.00 KB - OpenTime: 15.112us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.123us - ProbeFindNextTime: 0ns - ProbeRows: 14.173K (14173) - ProbeTime: 842.686us - ProbeWhenBuildSideOutputTime: 8.687us - ProbeWhenProbeSideOutputTime: 7.831us - ProbeWhenProcessHashTableTime: 24.966us - ProbeWhenSearchHashTableTime: 201.827us - ProjectionTime: 140.955us - RowsProduced: 189 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s201ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 166.46 KB - CloseTime: 5.825us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 364.576us - ExecTime: 93.661us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 50.63us - ProjectionTime: 0ns - RowsProduced: 14.173K (14173) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s303ms PipelineXTask (index=10):(Active: 3.409ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.36ms - CloseTime: 80.909us - GetBlockTime: 2.154ms - OpenTime: 5.80us - PrepareTime: 281.37us - SinkTime: 822.174us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.314ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 856.697us DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.97 KB - CloseTime: 9.260us - CompressTime: 0ns - ExecTime: 936.478us - InputRows: 145 - LocalBytesSent: 6.63 KB - LocalSendTime: 141.397us - LocalSentRows: 73 - MemoryUsage: - PeakMemoryUsage: 35.47 KB - MergeBlockTime: 0ns - OpenTime: 105.855us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.554ms - RowsProduced: 145 - RpcAvgTime: 2.133ms - RpcCount: 12 - RpcMaxTime: 2.212ms - RpcMinTime: 1.951ms - RpcSumTime: 25.597ms - SerializeBatchTime: 51.724us - SplitBlockDistributeByChannelTime: 134.27us - SplitBlockHashComputeTime: 13.295us - UncompressedRowBatchSize: 7.78 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 328.70us - CloseTime: 36.393us - DeserializeAndMergeTime: 0ns - ExecTime: 492.844us - ExprTime: 7.373us - GetResultsTime: 80.575us - HashTableComputeTime: 163.824us - HashTableEmplaceTime: 134.702us - HashTableInputCount: 162 - HashTableIterateTime: 1.828us - HashTableSize: 145 - InsertKeysToColumnTime: 19.508us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 36.519us - ProjectionTime: 0ns - RowsProduced: 145 - SerializeDataTime: 49.898us - SerializeKeyTime: 0ns - SerializeResultTime: 84.302us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 27.730us - ExecTime: 1.697ms - InitProbeSideTime: 785.313us - JoinFilterTimer: 840ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 20.121us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.0us - ProbeFindNextTime: 0ns - ProbeRows: 13.858K (13858) - ProbeTime: 1.368ms - ProbeWhenBuildSideOutputTime: 39.523us - ProbeWhenProbeSideOutputTime: 11.660us - ProbeWhenProcessHashTableTime: 34.370us - ProbeWhenSearchHashTableTime: 349.947us - ProjectionTime: 237.294us - RowsProduced: 162 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s199ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 163.18 KB - CloseTime: 4.26us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 360.306us - ExecTime: 74.211us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.719us - ProjectionTime: 0ns - RowsProduced: 13.858K (13858) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s306ms PipelineXTask (index=12):(Active: 2.5ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.621ms - CloseTime: 112.244us - GetBlockTime: 1.17ms - OpenTime: 5.191us - PrepareTime: 261.103us - SinkTime: 547.113us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.873ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.993ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.07 KB - CloseTime: 10.978us - CompressTime: 0ns - ExecTime: 666.668us - InputRows: 151 - LocalBytesSent: 7.17 KB - LocalSendTime: 78.797us - LocalSentRows: 78 - MemoryUsage: - PeakMemoryUsage: 37.88 KB - MergeBlockTime: 0ns - OpenTime: 109.153us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.670ms - RowsProduced: 151 - RpcAvgTime: 1.422ms - RpcCount: 12 - RpcMaxTime: 1.522ms - RpcMinTime: 987.123us - RpcSumTime: 17.65ms - SerializeBatchTime: 27.360us - SplitBlockDistributeByChannelTime: 82.577us - SplitBlockHashComputeTime: 6.579us - UncompressedRowBatchSize: 7.88 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 149.387us - CloseTime: 56.123us - DeserializeAndMergeTime: 0ns - ExecTime: 293.619us - ExprTime: 4.580us - GetResultsTime: 47.932us - HashTableComputeTime: 82.540us - HashTableEmplaceTime: 65.9us - HashTableInputCount: 169 - HashTableIterateTime: 767ns - HashTableSize: 151 - InsertKeysToColumnTime: 12.440us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 34.488us - ProjectionTime: 0ns - RowsProduced: 151 - SerializeDataTime: 29.282us - SerializeKeyTime: 0ns - SerializeResultTime: 49.577us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 29.503us - ExecTime: 828.264us - InitProbeSideTime: 402.613us - JoinFilterTimer: 232ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 21.856us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.351us - ProbeFindNextTime: 0ns - ProbeRows: 14.433K (14433) - ProbeTime: 646.622us - ProbeWhenBuildSideOutputTime: 9.234us - ProbeWhenProbeSideOutputTime: 6.927us - ProbeWhenProcessHashTableTime: 27.521us - ProbeWhenSearchHashTableTime: 148.74us - ProjectionTime: 112.499us - RowsProduced: 169 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s198ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 169.91 KB - CloseTime: 11.226us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 302.247us - ExecTime: 52.716us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 14.0us - ProjectionTime: 0ns - RowsProduced: 14.433K (14433) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s305ms PipelineXTask (index=14):(Active: 1.897ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.539ms - CloseTime: 118.227us - GetBlockTime: 1.57ms - OpenTime: 5.317us - PrepareTime: 229.715us - SinkTime: 445.817us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.771ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.98ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.34 KB - CloseTime: 12.69us - CompressTime: 0ns - ExecTime: 552.323us - InputRows: 153 - LocalBytesSent: 7.00 KB - LocalSendTime: 79.787us - LocalSentRows: 77 - MemoryUsage: - PeakMemoryUsage: 37.19 KB - MergeBlockTime: 0ns - OpenTime: 94.792us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.448ms - RowsProduced: 153 - RpcAvgTime: 1.846ms - RpcCount: 12 - RpcMaxTime: 2.128ms - RpcMinTime: 1.384ms - RpcSumTime: 22.162ms - SerializeBatchTime: 22.974us - SplitBlockDistributeByChannelTime: 61.557us - SplitBlockHashComputeTime: 6.806us - UncompressedRowBatchSize: 8.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 151.10us - CloseTime: 52.7us - DeserializeAndMergeTime: 0ns - ExecTime: 293.809us - ExprTime: 5.970us - GetResultsTime: 50.566us - HashTableComputeTime: 80.445us - HashTableEmplaceTime: 63.172us - HashTableInputCount: 173 - HashTableIterateTime: 847ns - HashTableSize: 153 - InsertKeysToColumnTime: 20.557us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 34.126us - ProjectionTime: 0ns - RowsProduced: 153 - SerializeDataTime: 23.358us - SerializeKeyTime: 0ns - SerializeResultTime: 52.53us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 32.23us - ExecTime: 849.653us - InitProbeSideTime: 405.277us - JoinFilterTimer: 263ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 16.786us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.222us - ProbeFindNextTime: 0ns - ProbeRows: 13.954K (13954) - ProbeTime: 657.968us - ProbeWhenBuildSideOutputTime: 12.313us - ProbeWhenProbeSideOutputTime: 6.632us - ProbeWhenProcessHashTableTime: 40.194us - ProbeWhenSearchHashTableTime: 136.205us - ProjectionTime: 120.811us - RowsProduced: 173 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s195ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 164.38 KB - CloseTime: 17.617us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 353.264us - ExecTime: 78.294us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 23.279us - ProjectionTime: 0ns - RowsProduced: 13.954K (13954) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s310ms PipelineXTask (index=16):(Active: 2.424ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.963ms - CloseTime: 219.912us - GetBlockTime: 1.229ms - OpenTime: 4.934us - PrepareTime: 232.86us - SinkTime: 693.154us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.170ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.974ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.23 KB - CloseTime: 11.96us - CompressTime: 0ns - ExecTime: 817.401us - InputRows: 171 - LocalBytesSent: 7.69 KB - LocalSendTime: 158.626us - LocalSentRows: 83 - MemoryUsage: - PeakMemoryUsage: 38.88 KB - MergeBlockTime: 0ns - OpenTime: 113.715us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.257ms - RowsProduced: 171 - RpcAvgTime: 1.240ms - RpcCount: 12 - RpcMaxTime: 1.377ms - RpcMinTime: 927.120us - RpcSumTime: 14.888ms - SerializeBatchTime: 35.367us - SplitBlockDistributeByChannelTime: 105.509us - SplitBlockHashComputeTime: 8.387us - UncompressedRowBatchSize: 9.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 227.581us - CloseTime: 37.243us - DeserializeAndMergeTime: 0ns - ExecTime: 357.839us - ExprTime: 6.486us - GetResultsTime: 52.999us - HashTableComputeTime: 108.303us - HashTableEmplaceTime: 89.339us - HashTableInputCount: 195 - HashTableIterateTime: 1.66us - HashTableSize: 171 - InsertKeysToColumnTime: 13.91us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 33.309us - ProjectionTime: 0ns - RowsProduced: 171 - SerializeDataTime: 33.526us - SerializeKeyTime: 0ns - SerializeResultTime: 55.74us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 4 - BuildOutputBlock: 0ns - CloseTime: 12.385us - ExecTime: 919.2us - InitProbeSideTime: 434.437us - JoinFilterTimer: 251ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 12.109us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.95us - ProbeFindNextTime: 0ns - ProbeRows: 13.734K (13734) - ProbeTime: 729.271us - ProbeWhenBuildSideOutputTime: 14.796us - ProbeWhenProbeSideOutputTime: 7.331us - ProbeWhenProcessHashTableTime: 31.20us - ProbeWhenSearchHashTableTime: 178.91us - ProjectionTime: 146.245us - RowsProduced: 195 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s192ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 161.66 KB - CloseTime: 155.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 329.553us - ExecTime: 203.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 15.993us - ProjectionTime: 0ns - RowsProduced: 13.734K (13734) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s312ms PipelineXTask (index=18):(Active: 2.526ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.156ms - CloseTime: 81.727us - GetBlockTime: 1.359ms - OpenTime: 4.846us - PrepareTime: 278.788us - SinkTime: 752.68us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.426ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.47ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.93 KB - CloseTime: 11.149us - CompressTime: 0ns - ExecTime: 864.390us - InputRows: 127 - LocalBytesSent: 5.97 KB - LocalSendTime: 167.944us - LocalSentRows: 64 - MemoryUsage: - PeakMemoryUsage: 33.22 KB - MergeBlockTime: 0ns - OpenTime: 101.838us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.222ms - RowsProduced: 127 - RpcAvgTime: 1.235ms - RpcCount: 12 - RpcMaxTime: 1.379ms - RpcMinTime: 1.6ms - RpcSumTime: 14.830ms - SerializeBatchTime: 38.431us - SplitBlockDistributeByChannelTime: 121.583us - SplitBlockHashComputeTime: 8.800us - UncompressedRowBatchSize: 6.74 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 229.308us - CloseTime: 36.24us - DeserializeAndMergeTime: 0ns - ExecTime: 417.668us - ExprTime: 6.593us - GetResultsTime: 56.523us - HashTableComputeTime: 125.79us - HashTableEmplaceTime: 105.300us - HashTableInputCount: 146 - HashTableIterateTime: 1.103us - HashTableSize: 127 - InsertKeysToColumnTime: 13.418us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.89 MB - MergeTime: 0ns - OpenTime: 88.231us - ProjectionTime: 0ns - RowsProduced: 127 - SerializeDataTime: 34.640us - SerializeKeyTime: 0ns - SerializeResultTime: 58.826us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 24.137us - ExecTime: 1.51ms - InitProbeSideTime: 493.335us - JoinFilterTimer: 596ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 16.443us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.561us - ProbeFindNextTime: 0ns - ProbeRows: 13.939K (13939) - ProbeTime: 821.605us - ProbeWhenBuildSideOutputTime: 12.400us - ProbeWhenProbeSideOutputTime: 9.211us - ProbeWhenProcessHashTableTime: 26.238us - ProbeWhenSearchHashTableTime: 162.743us - ProjectionTime: 167.113us - RowsProduced: 146 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s191ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 163.89 KB - CloseTime: 6.290us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 378.696us - ExecTime: 58.219us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 14.303us - ProjectionTime: 0ns - RowsProduced: 13.939K (13939) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s312ms PipelineXTask (index=20):(Active: 2.35ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.683ms - CloseTime: 92.642us - GetBlockTime: 1.168ms - OpenTime: 5.68us - PrepareTime: 249.417us - SinkTime: 475.645us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.934ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.257ms DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.30 KB - CloseTime: 13.687us - CompressTime: 0ns - ExecTime: 621.104us - InputRows: 158 - LocalBytesSent: 6.13 KB - LocalSendTime: 81.142us - LocalSentRows: 68 - MemoryUsage: - PeakMemoryUsage: 35.16 KB - MergeBlockTime: 0ns - OpenTime: 132.408us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.542ms - RowsProduced: 158 - RpcAvgTime: 2.88ms - RpcCount: 12 - RpcMaxTime: 2.135ms - RpcMinTime: 1.861ms - RpcSumTime: 25.59ms - SerializeBatchTime: 30.644us - SplitBlockDistributeByChannelTime: 84.861us - SplitBlockHashComputeTime: 7.69us - UncompressedRowBatchSize: 9.11 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 191.676us - CloseTime: 25.681us - DeserializeAndMergeTime: 0ns - ExecTime: 296.299us - ExprTime: 4.667us - GetResultsTime: 40.944us - HashTableComputeTime: 108.3us - HashTableEmplaceTime: 95.145us - HashTableInputCount: 170 - HashTableIterateTime: 913ns - HashTableSize: 158 - InsertKeysToColumnTime: 10.881us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 31.600us - ProjectionTime: 0ns - RowsProduced: 158 - SerializeDataTime: 23.267us - SerializeKeyTime: 0ns - SerializeResultTime: 43.393us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 32.48us - ExecTime: 923.569us - InitProbeSideTime: 436.100us - JoinFilterTimer: 571ns - MemoryUsage: - PeakMemoryUsage: 180.00 KB - ProbeKeyArena: 180.00 KB - OpenTime: 13.979us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.702us - ProbeFindNextTime: 0ns - ProbeRows: 14.117K (14117) - ProbeTime: 722.372us - ProbeWhenBuildSideOutputTime: 9.497us - ProbeWhenProbeSideOutputTime: 6.224us - ProbeWhenProcessHashTableTime: 28.408us - ProbeWhenSearchHashTableTime: 164.986us - ProjectionTime: 131.757us - RowsProduced: 170 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s191ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 166.43 KB - CloseTime: 17.342us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 317.462us - ExecTime: 63.811us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 16.252us - ProjectionTime: 0ns - RowsProduced: 14.117K (14117) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s312ms PipelineXTask (index=22):(Active: 3.191ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.811ms - CloseTime: 112.367us - GetBlockTime: 1.953ms - OpenTime: 9.274us - PrepareTime: 253.278us - SinkTime: 806.623us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.69ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 686.952us DATA_STREAM_SINK_OPERATOR (id=192,dst_id=192): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 9.85 KB - CloseTime: 16.110us - CompressTime: 0ns - ExecTime: 951.267us - InputRows: 172 - LocalBytesSent: 7.87 KB - LocalSendTime: 122.228us - LocalSentRows: 83 - MemoryUsage: - PeakMemoryUsage: 39.81 KB - MergeBlockTime: 0ns - OpenTime: 129.584us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.624ms - RowsProduced: 172 - RpcAvgTime: 2.169ms - RpcCount: 12 - RpcMaxTime: 2.255ms - RpcMinTime: 2.125ms - RpcSumTime: 26.35ms - SerializeBatchTime: 44.674us - SplitBlockDistributeByChannelTime: 129.523us - SplitBlockHashComputeTime: 13.195us - UncompressedRowBatchSize: 9.67 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 353.737us - CloseTime: 45.567us - DeserializeAndMergeTime: 0ns - ExecTime: 535.429us - ExprTime: 11.428us - GetResultsTime: 79.260us - HashTableComputeTime: 162.625us - HashTableEmplaceTime: 133.130us - HashTableInputCount: 234 - HashTableIterateTime: 1.630us - HashTableSize: 172 - InsertKeysToColumnTime: 16.665us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 1.90 MB - SerializeKeyArena: 1.90 MB - MergeTime: 0ns - OpenTime: 29.675us - ProjectionTime: 0ns - RowsProduced: 172 - SerializeDataTime: 50.83us - SerializeKeyTime: 0ns - SerializeResultTime: 82.670us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=190): - BlocksProduced: 5 - BuildOutputBlock: 0ns - CloseTime: 34.620us - ExecTime: 1.457ms - InitProbeSideTime: 645.674us - JoinFilterTimer: 473ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 20.819us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.758us - ProbeFindNextTime: 0ns - ProbeRows: 14.229K (14229) - ProbeTime: 1.129ms - ProbeWhenBuildSideOutputTime: 24.901us - ProbeWhenProbeSideOutputTime: 11.900us - ProbeWhenProcessHashTableTime: 41.767us - ProbeWhenSearchHashTableTime: 289.939us - ProjectionTime: 244.158us - RowsProduced: 234 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s187ms EXCHANGE_OPERATOR (id=189): - BlocksProduced: 10 - BytesReceived: 166.58 KB - CloseTime: 10.533us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 314.902us - ExecTime: 80.262us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 540.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 10.51us - ProjectionTime: 0ns - RowsProduced: 14.229K (14229) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s318ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 224.758us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 121.326us - CloseTime: 9.421us - GetBlockTime: 6.730us - OpenTime: 1.805us - PrepareTime: 88.13us - SinkTime: 97.959us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 209.837us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 516.843us HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.112us - BuildRows: 175 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.235us - BuildTableInsertTime: 22.264us - BuildTableTime: 24.700us - CloseTime: 0ns - ExecTime: 122.209us - InputRows: 174 - MemoryUsage: - BuildBlocks: 15.47 KB - BuildKeyArena: 4.00 KB - HashTable: 1.86 KB - PeakMemoryUsage: 17.33 KB - OpenTime: 25.546us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.744us - RuntimeFilterComputeTime: 3.635us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.799us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.309us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.63 KB - MemoryUsage: - Blocks: 21.63 KB - PeakMemoryUsage: 21.63 KB - OpenTime: 20.262us - ProjectionTime: 0ns - RowsProduced: 174 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s504ms PipelineXTask (index=3):(Active: 233.882us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 159.625us - CloseTime: 5.111us - GetBlockTime: 6.138us - OpenTime: 1.993us - PrepareTime: 63.334us - SinkTime: 132.369us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 221.445us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 751.96us HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 753ns - BuildRows: 210 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 48.822us - BuildTableInsertTime: 17.898us - BuildTableTime: 19.558us - CloseTime: 0ns - ExecTime: 148.721us - InputRows: 209 - MemoryUsage: - BuildBlocks: 18.58 KB - BuildKeyArena: 12.00 KB - HashTable: 2.03 KB - PeakMemoryUsage: 28.61 KB - OpenTime: 16.685us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.88us - RuntimeFilterComputeTime: 4.958us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.974us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.111us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.75 KB - MemoryUsage: - Blocks: 24.75 KB - PeakMemoryUsage: 24.75 KB - OpenTime: 16.658us - ProjectionTime: 0ns - RowsProduced: 209 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=5):(Active: 233.478us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 155.135us - CloseTime: 10.553us - GetBlockTime: 8.721us - OpenTime: 1.842us - PrepareTime: 61.449us - SinkTime: 115.931us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 215.987us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 820.354us HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 994ns - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.37us - BuildTableInsertTime: 37.200us - BuildTableTime: 39.533us - CloseTime: 0ns - ExecTime: 131.455us - InputRows: 160 - MemoryUsage: - BuildBlocks: 14.24 KB - BuildKeyArena: 4.00 KB - HashTable: 1.79 KB - PeakMemoryUsage: 16.02 KB - OpenTime: 16.784us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.514us - RuntimeFilterComputeTime: 5.337us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.463us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.348us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 21.75 KB - OpenTime: 17.876us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=7):(Active: 212.22us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 134.48us - CloseTime: 4.944us - GetBlockTime: 7.112us - OpenTime: 2.96us - PrepareTime: 66.587us - SinkTime: 108.96us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 184.965us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.2ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 807ns - BuildRows: 233 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.337us - BuildTableInsertTime: 21.584us - BuildTableTime: 23.130us - CloseTime: 0ns - ExecTime: 129.423us - InputRows: 232 - MemoryUsage: - BuildBlocks: 20.62 KB - BuildKeyArena: 12.00 KB - HashTable: 3.14 KB - PeakMemoryUsage: 31.76 KB - OpenTime: 21.941us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 31.550us - RuntimeFilterComputeTime: 6.173us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 3.850us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.558us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 26.25 KB - MemoryUsage: - Blocks: 26.25 KB - PeakMemoryUsage: 26.25 KB - OpenTime: 8.667us - ProjectionTime: 0ns - RowsProduced: 232 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=9):(Active: 225.888us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 145.240us - CloseTime: 9.628us - GetBlockTime: 11.446us - OpenTime: 1.504us - PrepareTime: 66.153us - SinkTime: 117.330us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 211.286us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.568ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.537us - BuildRows: 184 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.471us - BuildTableInsertTime: 42.77us - BuildTableTime: 45.391us - CloseTime: 0ns - ExecTime: 142.989us - InputRows: 183 - MemoryUsage: - BuildBlocks: 16.27 KB - BuildKeyArena: 4.00 KB - HashTable: 1.90 KB - PeakMemoryUsage: 18.16 KB - OpenTime: 26.343us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.705us - RuntimeFilterComputeTime: 4.253us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 8.0us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.939us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 21.75 KB - OpenTime: 18.854us - ProjectionTime: 0ns - RowsProduced: 183 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s504ms PipelineXTask (index=11):(Active: 171.639us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 98.257us - CloseTime: 5.524us - GetBlockTime: 4.455us - OpenTime: 2.16us - PrepareTime: 62.192us - SinkTime: 78.325us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 160.658us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 814.676us HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 693ns - BuildRows: 161 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.769us - BuildTableInsertTime: 25.739us - BuildTableTime: 27.191us - CloseTime: 0ns - ExecTime: 97.780us - InputRows: 160 - MemoryUsage: - BuildBlocks: 14.22 KB - BuildKeyArena: 4.00 KB - HashTable: 1.79 KB - PeakMemoryUsage: 16.00 KB - OpenTime: 19.645us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.222us - RuntimeFilterComputeTime: 2.403us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.379us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.447us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 21.75 KB - OpenTime: 10.811us - ProjectionTime: 0ns - RowsProduced: 160 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=13):(Active: 196.2us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 96.352us - CloseTime: 5.767us - GetBlockTime: 5.801us - OpenTime: 1.952us - PrepareTime: 87.877us - SinkTime: 74.488us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 184.596us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.67ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 783ns - BuildRows: 168 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.48us - BuildTableInsertTime: 17.750us - BuildTableTime: 19.230us - CloseTime: 0ns - ExecTime: 106.360us - InputRows: 167 - MemoryUsage: - BuildBlocks: 14.87 KB - BuildKeyArena: 4.00 KB - HashTable: 1.82 KB - PeakMemoryUsage: 16.69 KB - OpenTime: 31.878us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.444us - RuntimeFilterComputeTime: 2.231us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.882us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.175us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 21.75 KB - OpenTime: 17.251us - ProjectionTime: 0ns - RowsProduced: 167 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=15):(Active: 159.703us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 96.745us - CloseTime: 4.0us - GetBlockTime: 5.100us - OpenTime: 2.261us - PrepareTime: 52.538us - SinkTime: 73.623us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 149.264us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.105ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 899ns - BuildRows: 169 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.913us - BuildTableInsertTime: 24.823us - BuildTableTime: 26.40us - CloseTime: 0ns - ExecTime: 97.695us - InputRows: 168 - MemoryUsage: - BuildBlocks: 14.94 KB - BuildKeyArena: 4.00 KB - HashTable: 1.83 KB - PeakMemoryUsage: 16.76 KB - OpenTime: 24.328us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.444us - RuntimeFilterComputeTime: 3.996us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 2.930us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.614us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 21.75 KB - OpenTime: 8.859us - ProjectionTime: 0ns - RowsProduced: 168 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=17):(Active: 319.722us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 225.880us - CloseTime: 9.102us - GetBlockTime: 9.775us - OpenTime: 2.317us - PrepareTime: 77.293us - SinkTime: 197.968us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 303.938us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.53ms HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.75us - BuildRows: 188 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.0us - BuildTableInsertTime: 15.540us - BuildTableTime: 17.655us - CloseTime: 0ns - ExecTime: 224.246us - InputRows: 187 - MemoryUsage: - BuildBlocks: 16.64 KB - BuildKeyArena: 12.00 KB - HashTable: 1.92 KB - PeakMemoryUsage: 26.56 KB - OpenTime: 27.74us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 116.37us - RuntimeFilterComputeTime: 4.772us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.500us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.320us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.75 KB - MemoryUsage: - Blocks: 24.75 KB - PeakMemoryUsage: 24.75 KB - OpenTime: 19.335us - ProjectionTime: 0ns - RowsProduced: 187 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=19):(Active: 373.408us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 101.466us - CloseTime: 155.53us - GetBlockTime: 3.953us - OpenTime: 2.98us - PrepareTime: 109.716us - SinkTime: 83.456us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 185.350us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 596.190us HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 700ns - BuildRows: 141 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.546us - BuildTableInsertTime: 13.394us - BuildTableTime: 14.348us - CloseTime: 0ns - ExecTime: 135.605us - InputRows: 140 - MemoryUsage: - BuildBlocks: 12.44 KB - BuildKeyArena: 4.00 KB - HashTable: 1.69 KB - PeakMemoryUsage: 14.13 KB - OpenTime: 51.959us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 35.871us - RuntimeFilterComputeTime: 1.823us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 154.24us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 174.248us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.63 KB - MemoryUsage: - Blocks: 21.63 KB - PeakMemoryUsage: 21.63 KB - OpenTime: 16.797us - ProjectionTime: 0ns - RowsProduced: 140 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=21):(Active: 255.549us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 155.848us - CloseTime: 20.334us - GetBlockTime: 9.97us - OpenTime: 2.394us - PrepareTime: 72.163us - SinkTime: 127.242us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.981us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 165.109us HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 723ns - BuildRows: 167 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.733us - BuildTableInsertTime: 23.773us - BuildTableTime: 25.761us - CloseTime: 0ns - ExecTime: 139.487us - InputRows: 166 - MemoryUsage: - BuildBlocks: 14.75 KB - BuildKeyArena: 4.00 KB - HashTable: 1.82 KB - PeakMemoryUsage: 16.56 KB - OpenTime: 13.83us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 22.50us - RuntimeFilterComputeTime: 3.358us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 19.127us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.508us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 21.75 KB - PeakMemoryUsage: 21.75 KB - OpenTime: 26.488us - ProjectionTime: 0ns - RowsProduced: 166 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s505ms PipelineXTask (index=23):(Active: 170.0us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 101.140us - CloseTime: 5.284us - GetBlockTime: 7.796us - OpenTime: 1.771us - PrepareTime: 57.727us - SinkTime: 74.559us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 158.731us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 241.897us HASH_JOIN_SINK_OPERATOR (id=190): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 887ns - BuildRows: 209 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 14.60us - BuildTableInsertTime: 20.200us - BuildTableTime: 21.534us - CloseTime: 0ns - ExecTime: 91.979us - InputRows: 208 - MemoryUsage: - BuildBlocks: 18.51 KB - BuildKeyArena: 12.00 KB - HashTable: 2.02 KB - PeakMemoryUsage: 28.52 KB - OpenTime: 17.877us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.530us - RuntimeFilterComputeTime: 4.994us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=187): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.177us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 24.75 KB - MemoryUsage: - Blocks: 24.75 KB - PeakMemoryUsage: 24.75 KB - OpenTime: 20.685us - ProjectionTime: 0ns - RowsProduced: 208 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s506ms Fragment 80: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 769.920us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 341.555us - CloseTime: 29.332us - GetBlockTime: 22.202us - OpenTime: 113.942us - PrepareTime: 274.124us - SinkTime: 177.924us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 729.386us - WaitBfTime: 841.958ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.422ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.89us - CompressTime: 0ns - ExecTime: 307.348us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.574us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 122.588us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 307.54ms - RowsProduced: 0 - RpcAvgTime: 303.782ms - RpcCount: 12 - RpcMaxTime: 303.850ms - RpcMinTime: 303.678ms - RpcSumTime: 3s645ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 305ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.7us - BlocksProduced: 0 - CloseTime: 21.12us - ExecTime: 70.35ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 208.585us - ProcessConjunctTime: 42.692us - ProjectionTime: 1.641us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 46.129ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 69.782ms - 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.726us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [46.129ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.575ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.533ms - ScannerCtxSchedTime: 46.128ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.285us - ScannerInitTime: 44.662us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 173ns - BlockConditionsFilteredBloomFilterTime: 342ns - BlockConditionsFilteredDictTime: 320ns - BlockConditionsFilteredTime: 4.904us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 455ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 7.120us - BlockInitTime: 32.920us - BlockLoadTime: 23.408ms - BlocksLoad: 62 - CachedPagesNum: 47 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 20.17ms - FirstReadSeekCount: 61 - FirstReadSeekTime: 17.755us - FirstReadTime: 657.452us - IOTimer: 0ns - InvertedIndexFilterTime: 244ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.566ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 423.521us - OutputIndexResultColumnTimer: 3.967us - RawRowsRead: 245.246K (245246) - 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.616ms - ShortPredEvalTime: 293.943us - TotalPagesNum: 47 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 29.866us PipelineXTask (index=1):(Active: 709.9us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 302.989us - CloseTime: 58.823us - GetBlockTime: 15.401us - OpenTime: 79.365us - PrepareTime: 259.132us - SinkTime: 190.200us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 641.288us - WaitBfTime: 842.66ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 200.589ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.422us - CompressTime: 0ns - ExecTime: 327.194us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.415us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 124.897us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 330.66ms - RowsProduced: 0 - RpcAvgTime: 289.830ms - RpcCount: 12 - RpcMaxTime: 289.902ms - RpcMinTime: 289.760ms - RpcSumTime: 3s477ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 244ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.493us - BlocksProduced: 0 - CloseTime: 44.241us - ExecTime: 104.999ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 155.697us - ProcessConjunctTime: 26.774us - ProjectionTime: 1.628us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 46.973ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 104.782ms - 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.990us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [46.973ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 57.739ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 40ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.91ms - ScannerCtxSchedTime: 46.971ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.359us - ScannerInitTime: 34.774us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 322ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.546us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.942us - BlockInitTime: 37.620us - BlockLoadTime: 57.592ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 52.711ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 46.872us - FirstReadTime: 4.24ms - IOTimer: 0ns - InvertedIndexFilterTime: 451ns - 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.421us - OutputIndexResultColumnTimer: 9.220us - RawRowsRead: 341.69K (341690) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 863.325us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 370.89us - CloseTime: 34.308us - GetBlockTime: 13.787us - OpenTime: 162.593us - PrepareTime: 286.964us - SinkTime: 169.39us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 817.825us - WaitBfTime: 842.78ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 133.568ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.980us - CompressTime: 0ns - ExecTime: 271.455us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 19.460us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 94.735us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 306.704ms - RowsProduced: 0 - RpcAvgTime: 303.706ms - RpcCount: 12 - RpcMaxTime: 303.746ms - RpcMinTime: 303.658ms - RpcSumTime: 3s644ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 348ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.629us - BlocksProduced: 0 - CloseTime: 25.277us - ExecTime: 70.383ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 229.403us - ProcessConjunctTime: 30.603us - ProjectionTime: 1.535us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 49.885ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 70.113ms - 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.696us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [49.885ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 20.129ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 154ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.999ms - ScannerCtxSchedTime: 49.883ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.218us - ScannerInitTime: 106.903us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 309ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.992us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.604us - BlockInitTime: 40.10us - BlockLoadTime: 19.949ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 16.301ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 51.913us - FirstReadTime: 3.47ms - IOTimer: 0ns - InvertedIndexFilterTime: 435ns - 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: 19.434us - OutputIndexResultColumnTimer: 5.639us - RawRowsRead: 343.677K (343677) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 735.283us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 322.399us - CloseTime: 74.483us - GetBlockTime: 16.243us - OpenTime: 96.50us - PrepareTime: 235.993us - SinkTime: 190.314us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 652.688us - WaitBfTime: 842.543ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.682ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.633us - CompressTime: 0ns - ExecTime: 315.852us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.590us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 113.48us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 306.340ms - RowsProduced: 0 - RpcAvgTime: 303.558ms - RpcCount: 12 - RpcMaxTime: 303.630ms - RpcMinTime: 303.506ms - RpcSumTime: 3s642ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 402ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15313] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.300us - BlocksProduced: 0 - CloseTime: 58.760us - ExecTime: 81.246ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.122us - ProcessConjunctTime: 32.551us - ProjectionTime: 1.501us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 50.810ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 81.21ms - 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.805us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [50.810ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 30.154ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 112ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.207ms - ScannerCtxSchedTime: 50.808ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.33us - ScannerInitTime: 41.592us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 238ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.156us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.324us - BlockInitTime: 36.608us - BlockLoadTime: 30.2ms - BlocksLoad: 93 - CachedPagesNum: 71 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 13.509ms - FirstReadSeekCount: 184 - FirstReadSeekTime: 49.297us - FirstReadTime: 15.885ms - IOTimer: 0ns - InvertedIndexFilterTime: 380ns - 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.910us - OutputIndexResultColumnTimer: 5.194us - RawRowsRead: 372.571K (372571) - 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 PipelineXTask (index=4):(Active: 1.78ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 471.354us - CloseTime: 88.934us - GetBlockTime: 34.130us - OpenTime: 196.191us - PrepareTime: 314.129us - SinkTime: 217.484us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 980.461us - WaitBfTime: 844.768ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 159.82ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.21us - CompressTime: 0ns - ExecTime: 351.308us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 40.916us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 114.305us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 341.772ms - RowsProduced: 0 - RpcAvgTime: 300.442ms - RpcCount: 12 - RpcMaxTime: 300.515ms - RpcMinTime: 300.394ms - RpcSumTime: 3s605ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 405ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15315] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.445us - BlocksProduced: 0 - CloseTime: 60.909us - ExecTime: 93.313ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 275.800us - ProcessConjunctTime: 64.340us - ProjectionTime: 1.492us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 57.894ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 92.940ms - 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.639us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [57.894ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 34.986ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 42ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.51ms - ScannerCtxSchedTime: 57.893ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.40us - ScannerInitTime: 98.901us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 301ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.693us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 7.1us - BlockInitTime: 34.515us - BlockLoadTime: 34.841ms - BlocksLoad: 95 - CachedPagesNum: 73 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 31.556ms - FirstReadSeekCount: 188 - FirstReadSeekTime: 42.854us - FirstReadTime: 2.714ms - IOTimer: 0ns - InvertedIndexFilterTime: 393ns - 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.800us - OutputIndexResultColumnTimer: 5.412us - RawRowsRead: 379.18K (379180) - 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: 73 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 1.246ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 620.922us - CloseTime: 35.42us - GetBlockTime: 32.658us - OpenTime: 344.822us - PrepareTime: 236.713us - SinkTime: 218.582us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.201ms - WaitBfTime: 840.74ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.932ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.100us - CompressTime: 0ns - ExecTime: 338.952us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 45.120us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 110.131us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 307.576ms - RowsProduced: 0 - RpcAvgTime: 303.532ms - RpcCount: 12 - RpcMaxTime: 303.573ms - RpcMinTime: 303.510ms - RpcSumTime: 3s642ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 701ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15331] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.77us - BlocksProduced: 0 - CloseTime: 22.400us - ExecTime: 69.306ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 393.60us - ProcessConjunctTime: 81.889us - ProjectionTime: 2.133us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 42.109ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 68.856ms - 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: [7.316us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [42.109ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 26.669ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 13.804ms - ScannerCtxSchedTime: 42.108ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.167us - ScannerInitTime: 117.638us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 182ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 965ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 11.662us - BlockInitTime: 44.649us - BlockLoadTime: 26.521ms - BlocksLoad: 71 - CachedPagesNum: 56 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 23.779ms - FirstReadSeekCount: 140 - FirstReadSeekTime: 36.928us - FirstReadTime: 2.257ms - IOTimer: 0ns - InvertedIndexFilterTime: 271ns - 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.600us - OutputIndexResultColumnTimer: 4.519us - RawRowsRead: 280.538K (280538) - 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: 56 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 845.65us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 347.393us - CloseTime: 48.987us - GetBlockTime: 12.90us - OpenTime: 120.774us - PrepareTime: 316.162us - SinkTime: 193.321us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 784.223us - WaitBfTime: 841.49ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 204.682ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.125us - CompressTime: 0ns - ExecTime: 286.585us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.981us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 84.835us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 330.935ms - RowsProduced: 0 - RpcAvgTime: 290.529ms - RpcCount: 12 - RpcMaxTime: 290.606ms - RpcMinTime: 290.460ms - RpcSumTime: 3s486ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 253ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15317] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.756us - BlocksProduced: 0 - CloseTime: 37.758us - ExecTime: 101.693ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 232.187us - ProcessConjunctTime: 56.142us - ProjectionTime: 1.815us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.6ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 101.409ms - 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.450us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [56.006ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 45.331ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 96ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.956ms - ScannerCtxSchedTime: 56.5ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.428us - ScannerInitTime: 44.668us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 256ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.34us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 6.939us - BlockInitTime: 28.578us - BlockLoadTime: 45.190ms - BlocksLoad: 84 - CachedPagesNum: 64 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 41.257ms - FirstReadSeekCount: 166 - FirstReadSeekTime: 42.461us - FirstReadTime: 3.285ms - IOTimer: 0ns - InvertedIndexFilterTime: 277ns - 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.24us - OutputIndexResultColumnTimer: 6.939us - RawRowsRead: 334.289K (334289) - 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: 64 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 610.296us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 253.79us - CloseTime: 42.193us - GetBlockTime: 12.10us - OpenTime: 81.568us - PrepareTime: 226.937us - SinkTime: 145.880us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 561.745us - WaitBfTime: 844.959ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 159.343ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.842us - CompressTime: 0ns - ExecTime: 256.512us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.739us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 100.909us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 341.623ms - RowsProduced: 0 - RpcAvgTime: 300.294ms - RpcCount: 12 - RpcMaxTime: 300.346ms - RpcMinTime: 300.249ms - RpcSumTime: 3s603ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 174ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15319] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.621us - BlocksProduced: 0 - CloseTime: 30.552us - ExecTime: 93.314ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.725us - ProcessConjunctTime: 24.309us - ProjectionTime: 1.514us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 59.174ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.121ms - 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.182us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [59.174ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 33.874ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 36ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.415ms - ScannerCtxSchedTime: 59.172ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 893ns - ScannerInitTime: 35.527us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 204ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.130us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.681us - BlockInitTime: 31.517us - BlockLoadTime: 33.755ms - BlocksLoad: 85 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 12.705ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 41.279us - FirstReadTime: 20.566ms - IOTimer: 0ns - InvertedIndexFilterTime: 388ns - 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: 13.602us - OutputIndexResultColumnTimer: 4.857us - RawRowsRead: 338.501K (338501) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 912.426us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 403.753us - CloseTime: 68.643us - GetBlockTime: 22.908us - OpenTime: 99.586us - PrepareTime: 332.596us - SinkTime: 258.503us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 834.485us - WaitBfTime: 841.214ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.220ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.838us - CompressTime: 0ns - ExecTime: 472.244us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 61.267us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 203.225us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 331.439ms - RowsProduced: 0 - RpcAvgTime: 290.900ms - RpcCount: 12 - RpcMaxTime: 291.20ms - RpcMinTime: 290.812ms - RpcSumTime: 3s490ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 270ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15325] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.893us - BlocksProduced: 0 - CloseTime: 56.106us - ExecTime: 97.617ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 165.786us - ProcessConjunctTime: 29.968us - ProjectionTime: 1.460us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.292ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 97.371ms - 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.949us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [56.292ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 41.31ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 105ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.626ms - ScannerCtxSchedTime: 56.291ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.86us - ScannerInitTime: 40.301us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 190ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.10us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.58us - BlockInitTime: 28.174us - BlockLoadTime: 40.921ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 37.603ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 34.821us - FirstReadTime: 2.825ms - IOTimer: 0ns - InvertedIndexFilterTime: 271ns - 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.528us - OutputIndexResultColumnTimer: 4.841us - RawRowsRead: 341.787K (341787) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 690.36us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 303.357us - CloseTime: 49.30us - GetBlockTime: 14.539us - OpenTime: 94.750us - PrepareTime: 234.820us - SinkTime: 177.147us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 633.579us - WaitBfTime: 841.308ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.784ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.988us - CompressTime: 0ns - ExecTime: 298.696us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.345us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 111.749us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 330.682ms - RowsProduced: 0 - RpcAvgTime: 290.353ms - RpcCount: 12 - RpcMaxTime: 290.420ms - RpcMinTime: 290.292ms - RpcSumTime: 3s484ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 217ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15349] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.998us - BlocksProduced: 0 - CloseTime: 37.372us - ExecTime: 102.723ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 172.314us - ProcessConjunctTime: 23.497us - ProjectionTime: 1.383us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.277ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.498ms - 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.005us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [56.277ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 46.166ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 145ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.349ms - ScannerCtxSchedTime: 56.275ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 833ns - ScannerInitTime: 42.875us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 317ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.209us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.584us - BlockInitTime: 39.384us - BlockLoadTime: 46.5ms - BlocksLoad: 106 - CachedPagesNum: 80 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 42.471ms - FirstReadSeekCount: 210 - FirstReadSeekTime: 33.377us - FirstReadTime: 3.10ms - IOTimer: 0ns - InvertedIndexFilterTime: 623ns - 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.756us - OutputIndexResultColumnTimer: 5.658us - RawRowsRead: 423.736K (423736) - 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: 80 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 724.731us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 311.965us - CloseTime: 46.689us - GetBlockTime: 16.273us - OpenTime: 99.952us - PrepareTime: 258.647us - SinkTime: 168.250us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 670.271us - WaitBfTime: 841.404ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.299ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.778us - CompressTime: 0ns - ExecTime: 303.656us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.719us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 124.896us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 331.196ms - RowsProduced: 0 - RpcAvgTime: 290.701ms - RpcCount: 12 - RpcMaxTime: 290.764ms - RpcMinTime: 290.644ms - RpcSumTime: 3s488ms - 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 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: [15351] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.792us - BlocksProduced: 0 - CloseTime: 34.534us - ExecTime: 97.821ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 173.137us - ProcessConjunctTime: 34.728us - ProjectionTime: 1.537us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.828ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 97.595ms - 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: [3.585us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [56.828ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 40.719ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 93ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.340ms - ScannerCtxSchedTime: 56.827ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 736ns - ScannerInitTime: 46.274us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 218ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.80us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.680us - BlockInitTime: 29.416us - BlockLoadTime: 40.599ms - BlocksLoad: 104 - CachedPagesNum: 79 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 32.642ms - FirstReadSeekCount: 206 - FirstReadSeekTime: 42.988us - FirstReadTime: 7.420ms - IOTimer: 0ns - InvertedIndexFilterTime: 310ns - 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: 21.234us - OutputIndexResultColumnTimer: 5.734us - RawRowsRead: 416.268K (416268) - 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: 79 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 767.954us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 399.893us - CloseTime: 76.89us - GetBlockTime: 46.984us - OpenTime: 74.131us - PrepareTime: 211.379us - SinkTime: 259.986us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 684.896us - WaitBfTime: 841.513ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 173.879ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.997us - CompressTime: 0ns - ExecTime: 367.555us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 51.893us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 87.930us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 266.833ms - RowsProduced: 0 - RpcAvgTime: 253.510ms - RpcCount: 12 - RpcMaxTime: 253.734ms - RpcMinTime: 253.288ms - RpcSumTime: 3s42ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 750ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.517us - BlocksProduced: 0 - CloseTime: 51.904us - ExecTime: 114.344ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 133.198us - ProcessConjunctTime: 22.554us - ProjectionTime: 2.240us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 60.731ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.110ms - 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: [17.165us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [60.731ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 53.292ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 113ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.991ms - ScannerCtxSchedTime: 60.730ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.877us - ScannerInitTime: 34.974us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 236ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.287us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 7.871us - BlockInitTime: 34.228us - BlockLoadTime: 53.164ms - BlocksLoad: 100 - CachedPagesNum: 76 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 48.51ms - FirstReadSeekCount: 198 - FirstReadSeekTime: 49.536us - FirstReadTime: 4.210ms - IOTimer: 0ns - InvertedIndexFilterTime: 314ns - 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.445us - OutputIndexResultColumnTimer: 9.906us - RawRowsRead: 399.553K (399553) - 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: 76 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 39.686ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 38.875ms - CloseTime: 175.222us - GetBlockTime: 333.608us - OpenTime: 311.262us - PrepareTime: 312.113us - SinkTime: 38.117ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 13.486ms - WaitBfTime: 773.202ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.780ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 400.37 KB - CloseTime: 18.720us - CompressTime: 0ns - ExecTime: 38.250ms - InputRows: 68.654K (68654) - LocalBytesSent: 911.72 KB - LocalSendTime: 141.62us - LocalSentRows: 34.578K (34578) - MemoryUsage: - PeakMemoryUsage: 2.53 MB - MergeBlockTime: 0ns - OpenTime: 123.607us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s399ms - RowsProduced: 68.654K (68654) - RpcAvgTime: 4s372ms - RpcCount: 12 - RpcMaxTime: 4s382ms - RpcMinTime: 4s364ms - RpcSumTime: 52s464ms - SerializeBatchTime: 1.39ms - SplitBlockDistributeByChannelTime: 32.863ms - SplitBlockHashComputeTime: 2.81ms - UncompressedRowBatchSize: 941.46 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15333, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.366us - BlocksProduced: 19 - CloseTime: 151.396us - ExecTime: 109.786ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 391.363us - ProcessConjunctTime: 82.25us - ProjectionTime: 6.805ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 225.935ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.109ms - 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.166us, 8.660us, 18.786ms, ] - PerScannerRowsRead: [0, 0, 68.65K, ] - PerScannerWaitTime: [73.473ms, 75.459ms, 77.002ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 18.377ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 47.242ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.491us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.646ms - ScannerCtxSchedTime: 225.928ms - ScannerFilterTime: 19.774us - ScannerGetBlockTime: 18.752ms - ScannerInitTime: 188.518us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.191us - BlockConditionsFilteredBloomFilterTime: 390ns - BlockConditionsFilteredDictTime: 169ns - BlockConditionsFilteredTime: 10.501us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 280ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 32.757us - BlockInitTime: 141.530us - BlockLoadTime: 65.238ms - BlocksLoad: 155 - CachedPagesNum: 139 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 55.738ms - FirstReadSeekCount: 241 - FirstReadSeekTime: 150.496us - FirstReadTime: 4.679ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.522us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.444ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 441.209us - OutputIndexResultColumnTimer: 13.348us - RawRowsRead: 604.659K (604659) - 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.649ms - ShortPredEvalTime: 561.746us - TotalPagesNum: 139 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 25.985us PipelineXTask (index=1):(Active: 71.245ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 70.614ms - CloseTime: 153.407us - GetBlockTime: 322.125us - OpenTime: 257.127us - PrepareTime: 209.436us - SinkTime: 69.885ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.86ms - WaitBfTime: 781.776ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.82ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 400.16 KB - CloseTime: 27.933us - CompressTime: 0ns - ExecTime: 70.3ms - InputRows: 67.716K (67716) - LocalBytesSent: 886.17 KB - LocalSendTime: 93.113us - LocalSentRows: 33.609K (33609) - MemoryUsage: - PeakMemoryUsage: 2.53 MB - MergeBlockTime: 0ns - OpenTime: 100.237us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s476ms - RowsProduced: 67.716K (67716) - RpcAvgTime: 4s438ms - RpcCount: 12 - RpcMaxTime: 4s459ms - RpcMinTime: 4s416ms - RpcSumTime: 53s263ms - SerializeBatchTime: 1.219ms - SplitBlockDistributeByChannelTime: 64.406ms - SplitBlockHashComputeTime: 2.118ms - UncompressedRowBatchSize: 942.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15335, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.120us - BlocksProduced: 19 - CloseTime: 121.406us - ExecTime: 149.263ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 295.731us - ProcessConjunctTime: 66.166us - ProjectionTime: 13.424ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 268.633ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 135.106ms - 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.905us, 5.754us, 38.211ms, ] - PerScannerRowsRead: [0, 0, 67.72K, ] - PerScannerWaitTime: [88.877ms, 89.704ms, 90.051ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 37.754ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 68.772ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.385us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 57.402ms - ScannerCtxSchedTime: 268.626ms - ScannerFilterTime: 21.503us - ScannerGetBlockTime: 38.173ms - ScannerInitTime: 143.10us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.72us - BlockConditionsFilteredBloomFilterTime: 352ns - BlockConditionsFilteredDictTime: 163ns - BlockConditionsFilteredTime: 8.341us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 323ns - BlockInitSeekCount: 49 - BlockInitSeekTime: 62.440us - BlockInitTime: 157.370us - BlockLoadTime: 106.329ms - BlocksLoad: 160 - CachedPagesNum: 144 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 65.762ms - FirstReadSeekCount: 248 - FirstReadSeekTime: 106.263us - FirstReadTime: 28.902ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.185us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.252ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.388ms - OutputIndexResultColumnTimer: 14.45us - RawRowsRead: 624.718K (624718) - 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: 2.594ms - ShortPredEvalTime: 1.17ms - TotalPagesNum: 144 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 29.388us PipelineXTask (index=2):(Active: 25.662ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.3ms - CloseTime: 209.761us - GetBlockTime: 304.39us - OpenTime: 211.170us - PrepareTime: 228.7us - SinkTime: 24.357ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.440ms - WaitBfTime: 782.21ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 103.164ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 388.30 KB - CloseTime: 23.840us - CompressTime: 0ns - ExecTime: 24.486ms - InputRows: 66.761K (66761) - LocalBytesSent: 888.44 KB - LocalSendTime: 94.270us - LocalSentRows: 33.695K (33695) - MemoryUsage: - PeakMemoryUsage: 2.53 MB - MergeBlockTime: 0ns - OpenTime: 113.552us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s919ms - RowsProduced: 66.761K (66761) - RpcAvgTime: 4s887ms - RpcCount: 12 - RpcMaxTime: 4s896ms - RpcMinTime: 4s877ms - RpcSumTime: 58s646ms - SerializeBatchTime: 858.19us - SplitBlockDistributeByChannelTime: 19.608ms - SplitBlockHashComputeTime: 1.857ms - UncompressedRowBatchSize: 913.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15321, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.764us - BlocksProduced: 19 - CloseTime: 180.271us - ExecTime: 207.111ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 272.828us - ProcessConjunctTime: 45.156us - ProjectionTime: 4.136ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 277.178ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 202.229ms - 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: [7.137us, 23.887us, 47.172ms, ] - PerScannerRowsRead: [0, 0, 66.76K, ] - PerScannerWaitTime: [90.874ms, 93.072ms, 93.230ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 46.619ms - MemoryUsage: - FreeBlocks: 2.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 116.371ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.577us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.69ms - ScannerCtxSchedTime: 277.175ms - ScannerFilterTime: 23.875us - ScannerGetBlockTime: 47.136ms - ScannerInitTime: 115.555us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 912ns - BlockConditionsFilteredBloomFilterTime: 239ns - BlockConditionsFilteredDictTime: 110ns - BlockConditionsFilteredTime: 8.43us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 177ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 37.576us - BlockInitTime: 153.303us - BlockLoadTime: 162.870ms - BlocksLoad: 165 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 87.403ms - FirstReadSeekCount: 262 - FirstReadSeekTime: 141.986us - FirstReadTime: 5.594ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.812us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 29.107ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 463.799us - OutputIndexResultColumnTimer: 16.599us - RawRowsRead: 645.772K (645772) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 242.615K (242615) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 28.411ms - ShortPredEvalTime: 545.129us - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 21.624us PipelineXTask (index=3):(Active: 118.563ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 117.853ms - CloseTime: 144.453us - GetBlockTime: 299.805us - OpenTime: 286.476us - PrepareTime: 269.4us - SinkTime: 117.154ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 10.449ms - WaitBfTime: 782.224ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 116.940ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 400.85 KB - CloseTime: 16.497us - CompressTime: 0ns - ExecTime: 117.259ms - InputRows: 68.072K (68072) - LocalBytesSent: 894.01 KB - LocalSendTime: 135.649us - LocalSentRows: 33.906K (33906) - MemoryUsage: - PeakMemoryUsage: 2.53 MB - MergeBlockTime: 0ns - OpenTime: 95.960us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s38ms - RowsProduced: 68.072K (68072) - RpcAvgTime: 5s10ms - RpcCount: 12 - RpcMaxTime: 5s21ms - RpcMinTime: 5s1ms - RpcSumTime: 1m - SerializeBatchTime: 1.61ms - SplitBlockDistributeByChannelTime: 113.56ms - SplitBlockHashComputeTime: 1.343ms - UncompressedRowBatchSize: 943.96 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15323, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.963us - BlocksProduced: 19 - CloseTime: 123.901us - ExecTime: 133.234ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 385.585us - ProcessConjunctTime: 69.912us - ProjectionTime: 7.433ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 304.760ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 124.993ms - 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: [8.620us, 9.836us, 12.612ms, ] - PerScannerRowsRead: [0, 0, 68.07K, ] - PerScannerWaitTime: [100.014ms, 101.371ms, 103.373ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 12.159ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 73.980ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.83us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 57.284ms - ScannerCtxSchedTime: 304.755ms - ScannerFilterTime: 18.183us - ScannerGetBlockTime: 12.579ms - ScannerInitTime: 179.369us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.56us - BlockConditionsFilteredBloomFilterTime: 248ns - BlockConditionsFilteredDictTime: 202ns - BlockConditionsFilteredTime: 8.997us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 272ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 32.677us - BlockInitTime: 157.65us - BlockLoadTime: 85.917ms - BlocksLoad: 167 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 75.813ms - FirstReadSeekCount: 307 - FirstReadSeekTime: 134.59us - FirstReadTime: 6.718ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.760us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.557ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 221.83us - OutputIndexResultColumnTimer: 14.465us - RawRowsRead: 650.634K (650634) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 75.379K (75379) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 879.57us - ShortPredEvalTime: 196.334us - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 11.46us PipelineXTask (index=4):(Active: 1.77ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 522.644us - CloseTime: 110.263us - GetBlockTime: 56.507us - OpenTime: 174.4us - PrepareTime: 260.828us - SinkTime: 249.30us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 954.773us - WaitBfTime: 782.226ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 53.811ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.811us - CompressTime: 0ns - ExecTime: 373.118us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 58.959us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 105.387us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s602ms - RowsProduced: 0 - RpcAvgTime: 4s585ms - RpcCount: 12 - RpcMaxTime: 4s585ms - RpcMinTime: 4s585ms - RpcSumTime: 55s22ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 561ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15347] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.265us - BlocksProduced: 0 - CloseTime: 85.589us - ExecTime: 233.651ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 229.822us - ProcessConjunctTime: 34.347us - ProjectionTime: 2.660us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 193.371ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 233.278ms - 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.430us, 4.714us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [95.779ms, 97.592ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 156.616ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 281ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.904ms - ScannerCtxSchedTime: 193.367ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.988us - ScannerInitTime: 91.51us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 537ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.498us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 30 - BlockInitSeekTime: 23.698us - BlockInitTime: 78.785us - BlockLoadTime: 156.349ms - BlocksLoad: 191 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 147.711ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 96.256us - FirstReadTime: 7.413ms - IOTimer: 0ns - InvertedIndexFilterTime: 725ns - 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: 46.503us - OutputIndexResultColumnTimer: 13.168us - RawRowsRead: 761.668K (761668) - 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: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 11.614ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.810ms - CloseTime: 76.122us - GetBlockTime: 61.247us - OpenTime: 5.504ms - PrepareTime: 214.644us - SinkTime: 207.939us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 895.93us - WaitBfTime: 773.320ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 180.8ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.594us - CompressTime: 0ns - ExecTime: 309.200us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.746us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 91.353us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s985ms - RowsProduced: 0 - RpcAvgTime: 4s961ms - RpcCount: 12 - RpcMaxTime: 4s961ms - RpcMinTime: 4s961ms - RpcSumTime: 59s537ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 522ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.335us - BlocksProduced: 0 - CloseTime: 62.827us - ExecTime: 166.820ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 5.554ms - ProcessConjunctTime: 48.441us - ProjectionTime: 3.166us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 217.351ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 161.139ms - 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.995us, 5.980us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [108.548ms, 108.803ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 84.341ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 193ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.912ms - ScannerCtxSchedTime: 217.349ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.614us - ScannerInitTime: 5.413ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 585ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.727us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 22.491us - BlockInitTime: 82.915us - BlockLoadTime: 83.999ms - BlocksLoad: 192 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 51.617ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 128.758us - FirstReadTime: 30.811ms - IOTimer: 0ns - InvertedIndexFilterTime: 841ns - 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.647us - OutputIndexResultColumnTimer: 16.617us - RawRowsRead: 765.16K (765160) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 921.667us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 427.430us - CloseTime: 117.103us - GetBlockTime: 36.823us - OpenTime: 153.996us - PrepareTime: 215.125us - SinkTime: 213.828us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 794.833us - WaitBfTime: 773.500ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.11ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.216us - CompressTime: 0ns - ExecTime: 329.569us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.230us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 95.84us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s321ms - RowsProduced: 0 - RpcAvgTime: 4s302ms - RpcCount: 12 - RpcMaxTime: 4s303ms - RpcMinTime: 4s300ms - RpcSumTime: 51s634ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 465ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.952us - BlocksProduced: 0 - CloseTime: 88.394us - ExecTime: 113.428ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 204.7us - ProcessConjunctTime: 42.102us - ProjectionTime: 14.145us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 160.244ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 113.85ms - 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.569us, 4.939us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [79.227ms, 81.016ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 70.812ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 148ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.944ms - ScannerCtxSchedTime: 160.239ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.996us - ScannerInitTime: 75.202us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 709ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.508us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 14.904us - BlockInitTime: 83.790us - BlockLoadTime: 70.476ms - BlocksLoad: 193 - CachedPagesNum: 149 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 61.773ms - FirstReadSeekCount: 382 - FirstReadSeekTime: 109.101us - FirstReadTime: 7.329ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.102us - 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: 45.727us - OutputIndexResultColumnTimer: 13.752us - RawRowsRead: 772.394K (772394) - 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: 149 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.73ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 581.402us - CloseTime: 100.379us - GetBlockTime: 49.124us - OpenTime: 147.213us - PrepareTime: 235.547us - SinkTime: 354.816us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 961.441us - WaitBfTime: 782.399ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.966ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.451us - CompressTime: 0ns - ExecTime: 460.497us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 55.976us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 94.965us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s398ms - RowsProduced: 0 - RpcAvgTime: 4s381ms - RpcCount: 12 - RpcMaxTime: 4s381ms - RpcMinTime: 4s381ms - RpcSumTime: 52s581ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 417ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.854us - BlocksProduced: 0 - CloseTime: 86.591us - ExecTime: 134.861ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 216.697us - ProcessConjunctTime: 41.633us - ProjectionTime: 3.760us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 215.194ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.506ms - 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: [7.396us, 5.983us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [106.543ms, 108.650ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 55.109ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 207ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 55.130ms - ScannerCtxSchedTime: 215.190ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.654us - ScannerInitTime: 67.737us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 521ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.855us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 15 - BlockInitSeekTime: 25.96us - BlockInitTime: 84.991us - BlockLoadTime: 54.719ms - BlocksLoad: 192 - CachedPagesNum: 147 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 43.754ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 133.502us - FirstReadTime: 9.138ms - IOTimer: 0ns - InvertedIndexFilterTime: 867ns - 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: 67.526us - OutputIndexResultColumnTimer: 18.401us - RawRowsRead: 767.593K (767593) - 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: 147 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 1.87ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 588.49us - CloseTime: 107.24us - GetBlockTime: 77.681us - OpenTime: 171.973us - PrepareTime: 211.891us - SinkTime: 310.115us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 970.210us - WaitBfTime: 773.588ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.463ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.500us - CompressTime: 0ns - ExecTime: 422.673us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 59.949us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 92.972us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s340ms - RowsProduced: 0 - RpcAvgTime: 4s324ms - RpcCount: 12 - RpcMaxTime: 4s324ms - RpcMinTime: 4s324ms - RpcSumTime: 51s894ms - 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 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, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.86us - BlocksProduced: 0 - CloseTime: 82.587us - ExecTime: 122.486ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 228.254us - ProcessConjunctTime: 42.768us - ProjectionTime: 2.997us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 164.909ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 122.96ms - 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.401us, 6.516us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [81.486ms, 83.422ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 85.499ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 284ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.585ms - ScannerCtxSchedTime: 164.905ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.926us - ScannerInitTime: 92.53us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 490ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.404us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 19.934us - BlockInitTime: 73.966us - BlockLoadTime: 85.234ms - BlocksLoad: 192 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 77.144ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 95.66us - FirstReadTime: 6.940ms - 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: 2 - OutputColumnTime: 40.752us - OutputIndexResultColumnTimer: 11.649us - RawRowsRead: 769.413K (769413) - 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: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 833.316us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 355.774us - CloseTime: 113.282us - GetBlockTime: 29.537us - OpenTime: 130.911us - PrepareTime: 225.202us - SinkTime: 175.778us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 712.43us - WaitBfTime: 773.638ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.228ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.923us - CompressTime: 0ns - ExecTime: 291.916us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.385us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 102.544us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s325ms - RowsProduced: 0 - RpcAvgTime: 4s303ms - RpcCount: 12 - RpcMaxTime: 4s307ms - RpcMinTime: 4s303ms - RpcSumTime: 51s644ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 456ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15311, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.725us - BlocksProduced: 0 - CloseTime: 95.800us - ExecTime: 113.484ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 186.594us - ProcessConjunctTime: 34.391us - ProjectionTime: 3.692us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 170.556ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 113.169ms - 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.269us, 6.803us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [84.252ms, 86.304ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 58.10ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 176ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 51.489ms - ScannerCtxSchedTime: 170.553ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.48us - ScannerInitTime: 71.982us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 575ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.513us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 19.741us - BlockInitTime: 75.230us - BlockLoadTime: 57.683ms - BlocksLoad: 190 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 47.622ms - FirstReadSeekCount: 376 - FirstReadSeekTime: 128.282us - FirstReadTime: 8.450ms - IOTimer: 0ns - InvertedIndexFilterTime: 674ns - 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: 67.494us - OutputIndexResultColumnTimer: 18.1us - RawRowsRead: 759.906K (759906) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 997.115us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 481.465us - CloseTime: 164.364us - GetBlockTime: 69.213us - OpenTime: 125.981us - PrepareTime: 217.146us - SinkTime: 249.808us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 821.809us - WaitBfTime: 782.485ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.864ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 39.243us - CompressTime: 0ns - ExecTime: 383.777us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 61.341us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 768.00 B - MergeBlockTime: 0ns - OpenTime: 95.362us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s382ms - RowsProduced: 0 - RpcAvgTime: 4s364ms - RpcCount: 12 - RpcMaxTime: 4s364ms - RpcMinTime: 4s364ms - RpcSumTime: 52s373ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 590ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15327, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.767us - BlocksProduced: 0 - CloseTime: 118.994us - ExecTime: 137.649ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 197.832us - ProcessConjunctTime: 35.522us - ProjectionTime: 3.180us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 217.559ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.261ms - 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: [7.157us, 6.288us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [108.670ms, 108.889ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 53.576ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 286ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.739ms - ScannerCtxSchedTime: 217.556ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.481us - ScannerInitTime: 60.647us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 582ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.78us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 16 - BlockInitSeekTime: 19.789us - BlockInitTime: 79.917us - BlockLoadTime: 53.169ms - BlocksLoad: 170 - CachedPagesNum: 132 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 43.302ms - FirstReadSeekCount: 336 - FirstReadSeekTime: 116.309us - FirstReadTime: 8.289ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.4us - 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: 61.371us - OutputIndexResultColumnTimer: 17.875us - RawRowsRead: 681.79K (681790) - 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: 132 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 9.244ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.663ms - CloseTime: 150.266us - GetBlockTime: 218.225us - OpenTime: 161.385us - PrepareTime: 260.666us - SinkTime: 8.214ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.83ms - WaitBfTime: 773.745ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.366ms DATA_STREAM_SINK_OPERATOR (id=189,dst_id=189): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 394.32 KB - CloseTime: 15.583us - CompressTime: 0ns - ExecTime: 8.351ms - InputRows: 67.464K (67464) - LocalBytesSent: 892.00 KB - LocalSendTime: 73.895us - LocalSentRows: 33.83K (33830) - MemoryUsage: - PeakMemoryUsage: 2.53 MB - MergeBlockTime: 0ns - OpenTime: 131.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s462ms - RowsProduced: 67.464K (67464) - RpcAvgTime: 4s431ms - RpcCount: 12 - RpcMaxTime: 4s447ms - RpcMinTime: 4s417ms - RpcSumTime: 53s181ms - SerializeBatchTime: 904.57us - SplitBlockDistributeByChannelTime: 4.462ms - SplitBlockHashComputeTime: 1.540ms - UncompressedRowBatchSize: 929.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: [15329, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.782us - BlocksProduced: 19 - CloseTime: 130.481us - ExecTime: 180.975ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 218.984us - ProcessConjunctTime: 28.717us - ProjectionTime: 47.607ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 174.201ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.802ms - 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: [7.476us, 11.834ms, ] - PerScannerRowsRead: [0, 67.46K, ] - PerScannerWaitTime: [86.959ms, 87.241ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 11.460ms - MemoryUsage: - FreeBlocks: 2.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 26.693ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.35us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.664ms - ScannerCtxSchedTime: 174.187ms - ScannerFilterTime: 20.7us - ScannerGetBlockTime: 11.796ms - ScannerInitTime: 99.880us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 486ns - BlockConditionsFilteredBloomFilterTime: 700ns - BlockConditionsFilteredDictTime: 366ns - BlockConditionsFilteredTime: 7.598us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 533ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 26.659us - BlockInitTime: 96.711us - BlockLoadTime: 38.43ms - BlocksLoad: 95 - CachedPagesNum: 93 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 32.732ms - FirstReadSeekCount: 165 - FirstReadSeekTime: 62.110us - FirstReadTime: 2.585ms - IOTimer: 0ns - InvertedIndexFilterTime: 986ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.528ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 216.448us - OutputIndexResultColumnTimer: 8.46us - RawRowsRead: 366.774K (366774) - 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: 917.963us - ShortPredEvalTime: 166.201us - TotalPagesNum: 93 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.520us Fragment 81: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.589ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.436ms - CloseTime: 16.783us - GetBlockTime: 777.746us - OpenTime: 2.755us - PrepareTime: 127.302us - SinkTime: 1.635ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.565ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 769.506us DATA_STREAM_SINK_OPERATOR (id=187,dst_id=187): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 94.31 KB - CloseTime: 12.417us - CompressTime: 0ns - ExecTime: 1.741ms - InputRows: 4.144K (4144) - LocalBytesSent: 191.56 KB - LocalSendTime: 150.422us - LocalSentRows: 2.154K (2154) - MemoryUsage: - PeakMemoryUsage: 544.13 KB - MergeBlockTime: 0ns - OpenTime: 95.87us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.661ms - RowsProduced: 4.144K (4144) - RpcAvgTime: 893.428us - RpcCount: 12 - RpcMaxTime: 1.1ms - RpcMinTime: 706.530us - RpcSumTime: 10.721ms - SerializeBatchTime: 267.640us - SplitBlockDistributeByChannelTime: 466.368us - SplitBlockHashComputeTime: 73.142us - UncompressedRowBatchSize: 184.69 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 934ns - DeserializeAndMergeTime: 0ns - ExecTime: 785.66us - GetResultsTime: 667.652us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 30.829us - HashTableSize: 4.144K (4144) - InsertKeysToColumnTime: 396.101us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.713us - ProjectionTime: 91.640us - RowsProduced: 4.144K (4144) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s503ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 2.467ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.382ms - CloseTime: 14.277us - GetBlockTime: 19.946us - OpenTime: 1.905us - PrepareTime: 65.232us - SinkTime: 2.344ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.448ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 355.140us AGGREGATION_SINK_OPERATOR (id=186): - BuildTime: 0ns - CloseTime: 2.355us - DeserializeAndMergeTime: 161.727us - ExecTime: 2.373ms - ExprTime: 0ns - HashTableComputeTime: 2.117ms - HashTableEmplaceTime: 1.691ms - HashTableInputCount: 4.144K (4144) - InputRows: 4.144K (4144) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 1.95 MB - SerializeKeyArena: 1.76 MB - MergeTime: 2.337ms - OpenTime: 27.952us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=185): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 10.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.176us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 837.00 KB - MemoryUsage: - Blocks: 837.00 KB - PeakMemoryUsage: 864.00 KB - OpenTime: 18.214us - ProjectionTime: 0ns - RowsProduced: 4.144K (4144) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s500ms Fragment 82: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 5.263ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.694ms - CloseTime: 152.406us - GetBlockTime: 4.441ms - OpenTime: 117.153us - PrepareTime: 289.292us - SinkTime: 102.800us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.99ms - WaitBfTime: 839.249ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.288ms DATA_STREAM_SINK_OPERATOR (id=185,dst_id=185): - Partitioner: Crc32HashPartitioner(1) - BlocksProduced: 2 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.270us - CompressTime: 0ns - ExecTime: 159.701us - InputRows: 4.144K (4144) - LocalBytesSent: 384.97 KB - LocalSendTime: 95.393us - LocalSentRows: 4.144K (4144) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 46.530us - 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.612ms - CloseTime: 99.626us - DeserializeAndMergeTime: 0ns - ExecTime: 3.446ms - ExprTime: 207.754us - GetResultsTime: 686.299us - HashTableComputeTime: 2.318ms - HashTableEmplaceTime: 1.793ms - HashTableInputCount: 5.193K (5193) - HashTableIterateTime: 21.939us - HashTableSize: 4.144K (4144) - InsertKeysToColumnTime: 366.495us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 1.95 MB - SerializeKeyArena: 1.76 MB - MergeTime: 0ns - OpenTime: 28.267us - ProjectionTime: 0ns - RowsProduced: 4.144K (4144) - SerializeDataTime: 255.31us - SerializeKeyTime: 0ns - SerializeResultTime: 691.378us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=183): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 5.631us - ExecTime: 1.108ms - InitProbeSideTime: 37.364us - JoinFilterTimer: 236ns - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 28.862us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 577ns - ProbeFindNextTime: 0ns - ProbeRows: 80 - ProbeTime: 718.62us - ProbeWhenBuildSideOutputTime: 516.443us - ProbeWhenProbeSideOutputTime: 9.546us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 107.942us - ProjectionTime: 350.814us - RowsProduced: 5.193K (5193) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s587ms 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: 3.243us - BlocksProduced: 1 - CloseTime: 30.253us - ExecTime: 65.618ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 206.500us - ProcessConjunctTime: 39.608us - ProjectionTime: 5.463us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 51.677ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 65.335ms - 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: [32.033us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [51.677ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.775us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 522.801us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 133ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 659.300us - ScannerCtxSchedTime: 51.676ms - ScannerFilterTime: 904ns - ScannerGetBlockTime: 26.523us - ScannerInitTime: 47.35us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 364ns - BlockConditionsFilteredBloomFilterTime: 2.49us - BlockConditionsFilteredDictTime: 4.308us - BlockConditionsFilteredTime: 21.716us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.125us - BlockInitSeekCount: 6 - BlockInitSeekTime: 16.984us - BlockInitTime: 69.969us - BlockLoadTime: 388.804us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 11.439us - FirstReadTime: 15.160us - IOTimer: 0ns - InvertedIndexFilterTime: 3.174us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.215us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 249.36us - OutputIndexResultColumnTimer: 235ns - 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: 83ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 5.247us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 23.951ms, % non-child: 0.00%) - CoreChangeTimes: 399 - ExecuteTime: 23.765ms - CloseTime: 9.219us - GetBlockTime: 6.904ms - OpenTime: 2.272us - PrepareTime: 56.460us - SinkTime: 12.315ms - GetBlockCounter: 1.378K (1378) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 743 - NumBlockedTimes: 745 - NumScheduleTimes: 745 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.973ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 326.121ms HASH_JOIN_SINK_OPERATOR (id=183): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 432.573us - BuildRows: 29.506K (29506) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.295ms - BuildTableInsertTime: 510.318us - BuildTableTime: 532.118us - CloseTime: 0ns - ExecTime: 11.985ms - InputRows: 29.505K (29505) - MemoryUsage: - BuildBlocks: 2.07 MB - BuildKeyArena: 440.00 KB - HashTable: 371.26 KB - PeakMemoryUsage: 2.86 MB - OpenTime: 17.54us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 18.682us - RuntimeFilterComputeTime: 630.747us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=181): - BlocksProduced: 1.379K (1379) - BytesReceived: 230.41 KB - CloseTime: 7.466us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 311.966us - ExecTime: 6.308ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.25 MB - MemoryUsage: - Blocks: 344.00 KB - PeakMemoryUsage: 33.69 MB - OpenTime: 18.714us - ProjectionTime: 0ns - RowsProduced: 29.505K (29505) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s146ms Fragment 83: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 173.642ms, % non-child: 0.00%) - CoreChangeTimes: 38 - ExecuteTime: 173.358ms - CloseTime: 102.766us - GetBlockTime: 161.979ms - OpenTime: 7.245us - PrepareTime: 102.650us - SinkTime: 5.972ms - GetBlockCounter: 458 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 421 - NumBlockedTimes: 423 - NumScheduleTimes: 424 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 172.480ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 248.993ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 230.21 KB - CloseTime: 23.21us - CompressTime: 0ns - ExecTime: 5.767ms - InputRows: 6.762K (6762) - LocalBytesSent: 0.00 - LocalSendTime: 0ns - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 344.00 KB - MergeBlockTime: 3.70ms - OpenTime: 32.831us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 156.320ms - RowsProduced: 6.762K (6762) - RpcAvgTime: 588.528ms - RpcCount: 2 - RpcMaxTime: 1s177ms - RpcMinTime: 1s177ms - RpcSumTime: 1s177ms - SerializeBatchTime: 752.857us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 500.96 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=180): - BlocksProduced: 453 - BuildOutputBlock: 0ns - CloseTime: 52.713us - ExecTime: 152.670ms - InitProbeSideTime: 64.162ms - JoinFilterTimer: 54.914us - MemoryUsage: - PeakMemoryUsage: 552.00 KB - ProbeKeyArena: 552.00 KB - OpenTime: 15.793us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 296.257us - ProbeFindNextTime: 0ns - ProbeRows: 2.084433M (2084433) - ProbeTime: 146.990ms - ProbeWhenBuildSideOutputTime: 5.46ms - ProbeWhenProbeSideOutputTime: 1.163ms - ProbeWhenProcessHashTableTime: 27.558us - ProbeWhenSearchHashTableTime: 66.239ms - ProjectionTime: 3.270ms - RowsProduced: 6.762K (6762) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 801 - BytesReceived: 47.02 MB - CloseTime: 20.720us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 31.729ms - ExecTime: 7.436ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.00 MB - MemoryUsage: - Blocks: 2.36 MB - PeakMemoryUsage: 2.36 MB - OpenTime: 24.187us - ProjectionTime: 0ns - RowsProduced: 2.084433M (2084433) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s692ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.437ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.334ms - CloseTime: 14.584us - GetBlockTime: 28.622us - OpenTime: 3.777us - PrepareTime: 78.570us - SinkTime: 1.265ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.410ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.502ms HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.28us - BuildRows: 6.763K (6763) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 547.900us - BuildTableInsertTime: 391.126us - BuildTableTime: 395.867us - CloseTime: 0ns - ExecTime: 1.291ms - InputRows: 6.762K (6762) - MemoryUsage: - BuildBlocks: 426.18 KB - BuildKeyArena: 252.00 KB - HashTable: 65.03 KB - PeakMemoryUsage: 739.20 KB - OpenTime: 28.370us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 72.219us - RuntimeFilterComputeTime: 188.310us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 4 - BytesReceived: 187.22 KB - CloseTime: 11.785us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 448.170us - ExecTime: 70.214us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 32.333us - ProjectionTime: 0ns - RowsProduced: 6.762K (6762) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 649.485ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 153.221ms, % non-child: 0.00%) - CoreChangeTimes: 53 - ExecuteTime: 153.21ms - CloseTime: 35.473us - GetBlockTime: 143.850ms - OpenTime: 5.86us - PrepareTime: 122.501us - SinkTime: 5.933ms - GetBlockCounter: 460 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 251 - NumBlockedTimes: 253 - NumScheduleTimes: 253 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 151.863ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 597.258ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 459 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.706us - CompressTime: 0ns - ExecTime: 5.734ms - InputRows: 7.494K (7494) - LocalBytesSent: 539.84 KB - LocalSendTime: 5.381ms - LocalSentRows: 7.494K (7494) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 32.224us - 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: 459 - BuildOutputBlock: 0ns - CloseTime: 8.82us - ExecTime: 137.392ms - InitProbeSideTime: 69.818ms - JoinFilterTimer: 50.705us - MemoryUsage: - PeakMemoryUsage: 540.00 KB - ProbeKeyArena: 540.00 KB - OpenTime: 16.304us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 197.432us - ProbeFindNextTime: 0ns - ProbeRows: 2.084149M (2084149) - ProbeTime: 132.496ms - ProbeWhenBuildSideOutputTime: 4.590ms - ProbeWhenProbeSideOutputTime: 1.197ms - ProbeWhenProcessHashTableTime: 40.917us - ProbeWhenSearchHashTableTime: 48.333ms - ProjectionTime: 2.748ms - RowsProduced: 7.494K (7494) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 572 - BytesReceived: 15.62 MB - CloseTime: 9.98us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.108ms - ExecTime: 5.271ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 110.38 MB - MemoryUsage: - Blocks: 10.28 MB - PeakMemoryUsage: 10.28 MB - OpenTime: 17.863us - ProjectionTime: 0ns - RowsProduced: 2.084149M (2084149) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s671ms PipelineXTask (index=2):(Active: 150.664ms, % non-child: 0.00%) - CoreChangeTimes: 44 - ExecuteTime: 150.449ms - CloseTime: 68.221us - GetBlockTime: 141.573ms - OpenTime: 4.705us - PrepareTime: 109.122us - SinkTime: 5.829ms - GetBlockCounter: 461 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 260 - NumBlockedTimes: 262 - NumScheduleTimes: 262 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 147.191ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 566.971ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 460 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.668us - CompressTime: 0ns - ExecTime: 5.683ms - InputRows: 7.606K (7606) - LocalBytesSent: 548.79 KB - LocalSendTime: 5.334ms - LocalSentRows: 7.606K (7606) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 23.630us - 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: 460 - BuildOutputBlock: 0ns - CloseTime: 29.640us - ExecTime: 134.839ms - InitProbeSideTime: 68.784ms - JoinFilterTimer: 56.453us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 13.671us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 168.234us - ProbeFindNextTime: 0ns - ProbeRows: 2.083779M (2083779) - ProbeTime: 130.226ms - ProbeWhenBuildSideOutputTime: 4.490ms - ProbeWhenProbeSideOutputTime: 1.107ms - ProbeWhenProcessHashTableTime: 50.709us - ProbeWhenSearchHashTableTime: 47.753ms - ProjectionTime: 2.551ms - RowsProduced: 7.606K (7606) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 573 - BytesReceived: 15.62 MB - CloseTime: 10.860us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.97ms - ExecTime: 5.403ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 111.16 MB - MemoryUsage: - Blocks: 12.22 MB - PeakMemoryUsage: 12.22 MB - OpenTime: 39.16us - ProjectionTime: 0ns - RowsProduced: 2.083779M (2083779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s720ms PipelineXTask (index=4):(Active: 179.975ms, % non-child: 0.00%) - CoreChangeTimes: 61 - ExecuteTime: 179.752ms - CloseTime: 45.569us - GetBlockTime: 166.938ms - OpenTime: 5.180us - PrepareTime: 125.893us - SinkTime: 9.840ms - GetBlockCounter: 457 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 242 - NumBlockedTimes: 244 - NumScheduleTimes: 244 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.135ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 495.461ms DATA_STREAM_SINK_OPERATOR (id=181,dst_id=181): - BlocksProduced: 456 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.565us - CompressTime: 0ns - ExecTime: 9.712ms - InputRows: 7.643K (7643) - LocalBytesSent: 549.77 KB - LocalSendTime: 9.302ms - LocalSentRows: 7.643K (7643) - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 61.217us - 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: 456 - BuildOutputBlock: 0ns - CloseTime: 8.997us - ExecTime: 160.480ms - InitProbeSideTime: 68.738ms - JoinFilterTimer: 52.51us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 19.797us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 169.927us - ProbeFindNextTime: 0ns - ProbeRows: 2.083881M (2083881) - ProbeTime: 155.337ms - ProbeWhenBuildSideOutputTime: 4.603ms - ProbeWhenProbeSideOutputTime: 23.218ms - ProbeWhenProcessHashTableTime: 35.420us - ProbeWhenSearchHashTableTime: 50.421ms - ProjectionTime: 2.856ms - RowsProduced: 7.643K (7643) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=179): - BlocksProduced: 571 - BytesReceived: 15.66 MB - CloseTime: 8.759us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.15ms - ExecTime: 5.273ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 111.80 MB - MemoryUsage: - Blocks: 8.64 MB - PeakMemoryUsage: 8.64 MB - OpenTime: 13.810us - ProjectionTime: 0ns - RowsProduced: 2.083881M (2083881) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s820ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.343ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.265ms - CloseTime: 9.190us - GetBlockTime: 27.417us - OpenTime: 2.577us - PrepareTime: 62.261us - SinkTime: 1.205ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.324ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 221.322us HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.348us - BuildRows: 7.495K (7495) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 361.822us - BuildTableInsertTime: 526.797us - BuildTableTime: 530.814us - CloseTime: 0ns - ExecTime: 1.228ms - InputRows: 7.494K (7494) - MemoryUsage: - BuildBlocks: 473.97 KB - BuildKeyArena: 276.00 KB - HashTable: 100.60 KB - PeakMemoryUsage: 846.57 KB - OpenTime: 24.805us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.177us - RuntimeFilterComputeTime: 255.531us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 6.725us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 768.00 KB - MemoryUsage: - Blocks: 512.00 KB - PeakMemoryUsage: 512.00 KB - OpenTime: 13.259us - ProjectionTime: 0ns - RowsProduced: 7.494K (7494) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 240.764ms PipelineXTask (index=3):(Active: 1.2ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 915.87us - CloseTime: 14.212us - GetBlockTime: 26.426us - OpenTime: 1.712us - PrepareTime: 67.67us - SinkTime: 839.967us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 968.887us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 225.551us HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.571us - BuildRows: 7.607K (7607) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 150.168us - BuildTableInsertTime: 324.116us - BuildTableTime: 326.911us - CloseTime: 0ns - ExecTime: 857.547us - InputRows: 7.606K (7606) - MemoryUsage: - BuildBlocks: 481.94 KB - BuildKeyArena: 280.00 KB - HashTable: 101.15 KB - PeakMemoryUsage: 859.08 KB - OpenTime: 18.634us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.162us - RuntimeFilterComputeTime: 300.182us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 10.781us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 64.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 768.00 KB - MemoryUsage: - Blocks: 512.00 KB - PeakMemoryUsage: 512.00 KB - OpenTime: 28.832us - ProjectionTime: 0ns - RowsProduced: 7.606K (7606) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 241.66ms PipelineXTask (index=5):(Active: 1.275ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.212ms - CloseTime: 7.517us - GetBlockTime: 37.186us - OpenTime: 2.27us - PrepareTime: 48.814us - SinkTime: 1.148ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.258ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 796.511us HASH_JOIN_SINK_OPERATOR (id=180): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.447us - BuildRows: 7.644K (7644) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 158.719us - BuildTableInsertTime: 534.352us - BuildTableTime: 537.777us - CloseTime: 0ns - ExecTime: 1.163ms - InputRows: 7.643K (7643) - MemoryUsage: - BuildBlocks: 482.59 KB - BuildKeyArena: 284.00 KB - HashTable: 101.33 KB - PeakMemoryUsage: 863.92 KB - OpenTime: 16.27us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 128.320us - RuntimeFilterComputeTime: 292.297us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=177): - BlocksProduced: 2 - BytesReceived: 0.00 - CloseTime: 5.437us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.527us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 768.00 KB - MemoryUsage: - Blocks: 512.00 KB - PeakMemoryUsage: 512.00 KB - OpenTime: 11.214us - ProjectionTime: 0ns - RowsProduced: 7.643K (7643) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 240.516ms Fragment 84: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 263.964ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 263.586ms - CloseTime: 81.718us - GetBlockTime: 1.793ms - OpenTime: 73.435us - PrepareTime: 213.835us - SinkTime: 260.794ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 237.471ms - WaitBfTime: 845.439ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 225.652ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 461 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 15.64 MB - CloseTime: 18.717us - CompressTime: 0ns - ExecTime: 260.697ms - InputRows: 2.082156M (2082156) - LocalBytesSent: 68.51 MB - LocalSendTime: 3.466ms - LocalSentRows: 1.561742M (1561742) - MemoryUsage: - PeakMemoryUsage: 108.91 MB - MergeBlockTime: 0ns - OpenTime: 34.759us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s433ms - RowsProduced: 2.082156M (2082156) - RpcAvgTime: 51.315ms - RpcCount: 114 - RpcMaxTime: 5s849ms - RpcMinTime: 5s849ms - RpcSumTime: 5s849ms - SerializeBatchTime: 56.682ms - SplitBlockDistributeByChannelTime: 108.21ms - SplitBlockHashComputeTime: 67.393ms - UncompressedRowBatchSize: 23.34 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - 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: 2.40us - BlocksProduced: 514 - CloseTime: 57.821us - ExecTime: 378.80ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 198.285us - ProcessConjunctTime: 16.360us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 149.366ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 376.188ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 54, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 55, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [222.849ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [149.366ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 220.648ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.22ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 31.652us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 96.404ms - ScannerCtxSchedTime: 149.347ms - ScannerFilterTime: 405.730us - ScannerGetBlockTime: 222.212ms - ScannerInitTime: 35.580us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.126us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.209us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 15.200us - BlockInitTime: 114.600us - BlockLoadTime: 221.824ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 990.788us - FirstReadTime: 219.542ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.417us - 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: 149.861us - OutputIndexResultColumnTimer: 63.548us - 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: 327.523ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 327.191ms - CloseTime: 39.637us - GetBlockTime: 1.922ms - OpenTime: 118.921us - PrepareTime: 165.380us - SinkTime: 324.121ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 237.10ms - WaitBfTime: 842.203ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 228.504ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 461 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 15.67 MB - CloseTime: 12.470us - CompressTime: 0ns - ExecTime: 324.10ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 68.67 MB - LocalSendTime: 3.143ms - LocalSentRows: 1.565321M (1565321) - MemoryUsage: - PeakMemoryUsage: 112.54 MB - MergeBlockTime: 0ns - OpenTime: 42.746us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s474ms - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 51.360ms - RpcCount: 115 - RpcMaxTime: 5s906ms - RpcMinTime: 5s906ms - RpcSumTime: 5s906ms - SerializeBatchTime: 77.732ms - SplitBlockDistributeByChannelTime: 144.469ms - SplitBlockHashComputeTime: 85.632ms - UncompressedRowBatchSize: 23.40 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - 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: 3.760us - BlocksProduced: 515 - CloseTime: 24.385us - ExecTime: 278.50ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 180.877us - ProcessConjunctTime: 28.701us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 181.871ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 276.113ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 54, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 55, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [80.751ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [181.871ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 78.800ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 875.179us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.990us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 85.641ms - ScannerCtxSchedTime: 181.860ms - ScannerFilterTime: 333.804us - ScannerGetBlockTime: 80.203ms - ScannerInitTime: 66.202us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.155us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.181us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.839us - BlockInitTime: 184.328us - BlockLoadTime: 79.861ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 720.405us - FirstReadTime: 77.965ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.627us - 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: 127.631us - OutputIndexResultColumnTimer: 65.66us - 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=2):(Active: 456.368ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 456.79ms - CloseTime: 52.370us - GetBlockTime: 2.108ms - OpenTime: 80.743us - PrepareTime: 145.11us - SinkTime: 451.686ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 254.781ms - WaitBfTime: 842.140ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 165.910ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 461 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 15.70 MB - CloseTime: 13.647us - CompressTime: 0ns - ExecTime: 451.565ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 68.63 MB - LocalSendTime: 3.623ms - LocalSentRows: 1.564393M (1564393) - MemoryUsage: - PeakMemoryUsage: 112.97 MB - MergeBlockTime: 0ns - OpenTime: 34.684us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s469ms - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 50.668ms - RpcCount: 115 - RpcMaxTime: 5s826ms - RpcMinTime: 5s826ms - RpcSumTime: 5s826ms - SerializeBatchTime: 124.154ms - SplitBlockDistributeByChannelTime: 134.383ms - SplitBlockHashComputeTime: 175.634ms - UncompressedRowBatchSize: 23.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - 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.738us - BlocksProduced: 515 - CloseTime: 36.354us - ExecTime: 225.918ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 147.407us - ProcessConjunctTime: 13.663us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 76.87ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 223.779ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 54, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 55, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [148.769ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [76.087ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 146.840ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 907.811us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35.521us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 80.901ms - ScannerCtxSchedTime: 76.77ms - ScannerFilterTime: 338.695us - ScannerGetBlockTime: 148.218ms - ScannerInitTime: 45.207us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 839ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.801us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 15.869us - BlockInitTime: 124.802us - BlockLoadTime: 147.945ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 899.304us - FirstReadTime: 146.78ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.104us - 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: 112.734us - OutputIndexResultColumnTimer: 55.826us - 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 :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 508.306ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 507.913ms - CloseTime: 72.875us - GetBlockTime: 3.539ms - OpenTime: 114.930us - PrepareTime: 187.511us - SinkTime: 502.272ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 48 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 61 - NumScheduleTimes: 62 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 419.464ms - WaitBfTime: 788.771ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 151.770ms DATA_STREAM_SINK_OPERATOR (id=179,dst_id=179): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 457 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 46.88 MB - CloseTime: 15.720us - CompressTime: 0ns - ExecTime: 502.100ms - InputRows: 2.080149M (2080149) - LocalBytesSent: 22.80 MB - LocalSendTime: 2.91ms - LocalSentRows: 519.796K (519796) - MemoryUsage: - PeakMemoryUsage: 38.08 MB - MergeBlockTime: 0ns - OpenTime: 54.176us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s383ms - RowsProduced: 2.080149M (2080149) - RpcAvgTime: 155.226ms - RpcCount: 341 - RpcMaxTime: 17s684ms - RpcMinTime: 17s622ms - RpcSumTime: 52s932ms - SerializeBatchTime: 283.717ms - SplitBlockDistributeByChannelTime: 89.852ms - SplitBlockHashComputeTime: 102.836ms - UncompressedRowBatchSize: 69.99 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 13s418ms 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: 6.739us - BlocksProduced: 514 - CloseTime: 52.888us - ExecTime: 251.93ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 195.134us - ProcessConjunctTime: 25.93us - ProjectionTime: 0ns - RowsProduced: 2.080149M (2080149) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 116.145ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 247.637ms - 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: 414.528K (414528) 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: 6.085K (6085) - expr_input_rows: 207.264K (207264) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [136.665ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [116.145ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 113.55ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 823.124us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 50.206us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 122.420ms - ScannerCtxSchedTime: 116.126ms - ScannerFilterTime: 21.478ms - ScannerGetBlockTime: 114.905ms - ScannerInitTime: 55.167us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.240us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.932us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.646us - BlockInitTime: 131.28us - BlockLoadTime: 114.180ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.1ms - FirstReadTime: 111.631ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.440us - 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: 181.590us - OutputIndexResultColumnTimer: 73.282us - 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 Fragment 85: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 4.354ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.1ms - CloseTime: 68.269us - GetBlockTime: 140.345us - OpenTime: 125.216us - PrepareTime: 152.618us - SinkTime: 3.694ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.275ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.344ms DATA_STREAM_SINK_OPERATOR (id=177,dst_id=177): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 187.05 KB - CloseTime: 12.640us - CompressTime: 0ns - ExecTime: 3.742ms - InputRows: 29.505K (29505) - LocalBytesSent: 1.40 MB - LocalSendTime: 79.983us - LocalSentRows: 22.743K (22743) - MemoryUsage: - PeakMemoryUsage: 2.59 MB - MergeBlockTime: 0ns - OpenTime: 38.889us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 409.441ms - RowsProduced: 29.505K (29505) - RpcAvgTime: 203.757ms - RpcCount: 2 - RpcMaxTime: 407.515ms - RpcMinTime: 407.515ms - RpcSumTime: 407.515ms - SerializeBatchTime: 478.986us - SplitBlockDistributeByChannelTime: 1.891ms - SplitBlockHashComputeTime: 858.56us - UncompressedRowBatchSize: 437.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 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: 346ns - BlocksProduced: 10 - CloseTime: 51.984us - ExecTime: 236.451ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 193.66us - ProcessConjunctTime: 46.960us - ProjectionTime: 0ns - RowsProduced: 29.505K (29505) - RowsRead: 29.505K (29505) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.258ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 236.69ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [MOMENT_USER_ID, TYPE, EXTERNAL_USER_ID, COMMENT_TIME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=5, opposite=false - PerScannerRunningTime: [230.433ms, ] - PerScannerRowsRead: [29.50K, ] - PerScannerWaitTime: [2.258ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 228.942ms - MemoryUsage: - FreeBlocks: 1.69 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.448ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 389ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 94.24ms - ScannerCtxSchedTime: 2.255ms - ScannerFilterTime: 105.417us - ScannerGetBlockTime: 230.266ms - ScannerInitTime: 56.759us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.222us - BlockConditionsFilteredBloomFilterTime: 2.706us - BlockConditionsFilteredDictTime: 902ns - BlockConditionsFilteredTime: 100.69us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 77.952us - BlockInitSeekCount: 18 - BlockInitSeekTime: 97.969us - BlockInitTime: 284.598us - BlockLoadTime: 231.981ms - BlocksLoad: 208 - CachedPagesNum: 353 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 189.113ms - FirstReadSeekCount: 206 - FirstReadSeekTime: 543.605us - FirstReadTime: 8.726ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.185us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.689ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 8.386ms - OutputIndexResultColumnTimer: 26.100us - 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: 4.982ms - ShortPredEvalTime: 18.28ms - TotalPagesNum: 353 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 110.832us Fragment 86: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 832.699us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 648.299us - CloseTime: 22.366us - GetBlockTime: 79.444us - OpenTime: 2.636us - PrepareTime: 152.784us - SinkTime: 531.377us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 793.92us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.228ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.92 KB - CloseTime: 19.406us - CompressTime: 0ns - ExecTime: 672.248us - InputRows: 82 - LocalBytesSent: 1.80 KB - LocalSendTime: 129.262us - LocalSentRows: 46 - MemoryUsage: - PeakMemoryUsage: 10.88 KB - MergeBlockTime: 0ns - OpenTime: 122.240us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.260ms - RowsProduced: 82 - RpcAvgTime: 4.266ms - RpcCount: 12 - RpcMaxTime: 4.294ms - RpcMinTime: 4.252ms - RpcSumTime: 51.198ms - SerializeBatchTime: 30.982us - SplitBlockDistributeByChannelTime: 34.719us - SplitBlockHashComputeTime: 7.90us - UncompressedRowBatchSize: 1.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 868ns - DeserializeAndMergeTime: 0ns - ExecTime: 89.902us - GetResultsTime: 37.238us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.291us - HashTableSize: 82 - InsertKeysToColumnTime: 19.717us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.569us - ProjectionTime: 33.552us - RowsProduced: 82 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s403ms PipelineXTask (index=2):(Active: 964.963us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 816.436us - CloseTime: 10.356us - GetBlockTime: 103.746us - OpenTime: 4.274us - PrepareTime: 127.365us - SinkTime: 679.840us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 945.55us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.847ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.46 KB - CloseTime: 8.515us - CompressTime: 0ns - ExecTime: 779.105us - InputRows: 104 - LocalBytesSent: 2.10 KB - LocalSendTime: 101.783us - LocalSentRows: 54 - MemoryUsage: - PeakMemoryUsage: 12.34 KB - MergeBlockTime: 0ns - OpenTime: 91.662us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.632ms - RowsProduced: 104 - RpcAvgTime: 4.255ms - RpcCount: 12 - RpcMaxTime: 4.298ms - RpcMinTime: 4.216ms - RpcSumTime: 51.70ms - SerializeBatchTime: 47.731us - SplitBlockDistributeByChannelTime: 51.62us - SplitBlockHashComputeTime: 10.243us - UncompressedRowBatchSize: 2.28 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 919ns - DeserializeAndMergeTime: 0ns - ExecTime: 109.848us - GetResultsTime: 31.588us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.297us - HashTableSize: 104 - InsertKeysToColumnTime: 14.112us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.900us - ProjectionTime: 62.872us - RowsProduced: 104 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=4):(Active: 617.853us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 430.411us - CloseTime: 31.128us - GetBlockTime: 51.391us - OpenTime: 2.0us - PrepareTime: 148.210us - SinkTime: 359.308us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 578.445us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.555ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.27 KB - CloseTime: 27.479us - CompressTime: 0ns - ExecTime: 498.837us - InputRows: 95 - LocalBytesSent: 1.95 KB - LocalSendTime: 61.920us - LocalSentRows: 50 - MemoryUsage: - PeakMemoryUsage: 11.81 KB - MergeBlockTime: 0ns - OpenTime: 113.947us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.800ms - RowsProduced: 95 - RpcAvgTime: 4.15ms - RpcCount: 12 - RpcMaxTime: 4.40ms - RpcMinTime: 3.976ms - RpcSumTime: 48.191ms - SerializeBatchTime: 22.386us - SplitBlockDistributeByChannelTime: 26.702us - SplitBlockHashComputeTime: 5.216us - UncompressedRowBatchSize: 2.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 813ns - DeserializeAndMergeTime: 0ns - ExecTime: 51.487us - GetResultsTime: 24.873us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.62us - HashTableSize: 95 - InsertKeysToColumnTime: 14.638us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.567us - ProjectionTime: 17.66us - RowsProduced: 95 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s403ms PipelineXTask (index=6):(Active: 820.558us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 641.46us - CloseTime: 15.263us - GetBlockTime: 73.812us - OpenTime: 2.480us - PrepareTime: 156.677us - SinkTime: 542.561us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 797.867us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.945ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.16 KB - CloseTime: 13.60us - CompressTime: 0ns - ExecTime: 666.261us - InputRows: 93 - LocalBytesSent: 1.99 KB - LocalSendTime: 77.627us - LocalSentRows: 51 - MemoryUsage: - PeakMemoryUsage: 11.19 KB - MergeBlockTime: 0ns - OpenTime: 111.674us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.847ms - RowsProduced: 93 - RpcAvgTime: 4.22ms - RpcCount: 12 - RpcMaxTime: 4.101ms - RpcMinTime: 3.988ms - RpcSumTime: 48.265ms - SerializeBatchTime: 44.153us - SplitBlockDistributeByChannelTime: 44.728us - SplitBlockHashComputeTime: 9.782us - UncompressedRowBatchSize: 1.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 654ns - DeserializeAndMergeTime: 0ns - ExecTime: 94.455us - GetResultsTime: 41.101us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.349us - HashTableSize: 93 - InsertKeysToColumnTime: 16.877us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 20.804us - ProjectionTime: 27.699us - RowsProduced: 93 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s403ms PipelineXTask (index=8):(Active: 621.455us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 442.433us - CloseTime: 13.147us - GetBlockTime: 57.4us - OpenTime: 3.464us - PrepareTime: 150.534us - SinkTime: 363.559us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 594.61us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.585ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.42 KB - CloseTime: 10.564us - CompressTime: 0ns - ExecTime: 483.295us - InputRows: 99 - LocalBytesSent: 1.95 KB - LocalSendTime: 64.225us - LocalSentRows: 50 - MemoryUsage: - PeakMemoryUsage: 11.56 KB - MergeBlockTime: 0ns - OpenTime: 109.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.846ms - RowsProduced: 99 - RpcAvgTime: 4.47ms - RpcCount: 12 - RpcMaxTime: 4.70ms - RpcMinTime: 4.29ms - RpcSumTime: 48.573ms - SerializeBatchTime: 18.968us - SplitBlockDistributeByChannelTime: 40.356us - SplitBlockHashComputeTime: 6.266us - UncompressedRowBatchSize: 2.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.16us - DeserializeAndMergeTime: 0ns - ExecTime: 63.13us - GetResultsTime: 29.200us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.223us - HashTableSize: 99 - InsertKeysToColumnTime: 12.609us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.713us - ProjectionTime: 23.461us - RowsProduced: 99 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s403ms PipelineXTask (index=10):(Active: 1.147ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 986.349us - CloseTime: 12.757us - GetBlockTime: 48.490us - OpenTime: 3.797us - PrepareTime: 138.603us - SinkTime: 919.432us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 572.381us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.510ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.08 KB - CloseTime: 10.826us - CompressTime: 0ns - ExecTime: 1.34ms - InputRows: 77 - LocalBytesSent: 1.44 KB - LocalSendTime: 628.16us - LocalSentRows: 37 - MemoryUsage: - PeakMemoryUsage: 9.84 KB - MergeBlockTime: 0ns - OpenTime: 104.468us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.180ms - RowsProduced: 77 - RpcAvgTime: 3.809ms - RpcCount: 12 - RpcMaxTime: 4.275ms - RpcMinTime: 2.715ms - RpcSumTime: 45.718ms - SerializeBatchTime: 19.27us - SplitBlockDistributeByChannelTime: 26.394us - SplitBlockHashComputeTime: 14.383us - UncompressedRowBatchSize: 1.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 745ns - DeserializeAndMergeTime: 0ns - ExecTime: 57.510us - GetResultsTime: 22.887us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 843ns - HashTableSize: 77 - InsertKeysToColumnTime: 16.508us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.105us - ProjectionTime: 20.197us - RowsProduced: 77 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s401ms PipelineXTask (index=12):(Active: 894.769us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 746.600us - CloseTime: 15.460us - GetBlockTime: 140.44us - OpenTime: 2.190us - PrepareTime: 125.326us - SinkTime: 585.196us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 870.568us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.25ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.61 KB - CloseTime: 12.548us - CompressTime: 0ns - ExecTime: 693.656us - InputRows: 111 - LocalBytesSent: 2.21 KB - LocalSendTime: 93.725us - LocalSentRows: 57 - MemoryUsage: - PeakMemoryUsage: 12.38 KB - MergeBlockTime: 0ns - OpenTime: 96.982us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.149ms - RowsProduced: 111 - RpcAvgTime: 4.240ms - RpcCount: 12 - RpcMaxTime: 4.297ms - RpcMinTime: 4.196ms - RpcSumTime: 50.880ms - SerializeBatchTime: 59.551us - SplitBlockDistributeByChannelTime: 41.938us - SplitBlockHashComputeTime: 29.767us - UncompressedRowBatchSize: 2.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.135us - DeserializeAndMergeTime: 0ns - ExecTime: 145.912us - GetResultsTime: 68.963us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.872us - HashTableSize: 111 - InsertKeysToColumnTime: 36.184us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.130us - ProjectionTime: 49.774us - RowsProduced: 111 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s400ms PipelineXTask (index=14):(Active: 764.312us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 623.77us - CloseTime: 15.768us - GetBlockTime: 53.277us - OpenTime: 2.929us - PrepareTime: 117.703us - SinkTime: 551.184us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 741.721us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.469ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.26 KB - CloseTime: 12.610us - CompressTime: 0ns - ExecTime: 650.443us - InputRows: 96 - LocalBytesSent: 1.97 KB - LocalSendTime: 136.545us - LocalSentRows: 51 - MemoryUsage: - PeakMemoryUsage: 11.19 KB - MergeBlockTime: 0ns - OpenTime: 87.349us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.420ms - RowsProduced: 96 - RpcAvgTime: 4.73ms - RpcCount: 12 - RpcMaxTime: 4.279ms - RpcMinTime: 3.495ms - RpcSumTime: 48.882ms - SerializeBatchTime: 36.608us - SplitBlockDistributeByChannelTime: 29.802us - SplitBlockHashComputeTime: 8.245us - UncompressedRowBatchSize: 2.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.24us - DeserializeAndMergeTime: 0ns - ExecTime: 59.841us - GetResultsTime: 22.82us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.212us - HashTableSize: 96 - InsertKeysToColumnTime: 12.707us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.160us - ProjectionTime: 24.19us - RowsProduced: 96 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s400ms PipelineXTask (index=16):(Active: 769.734us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 610.995us - CloseTime: 23.483us - GetBlockTime: 58.138us - OpenTime: 3.614us - PrepareTime: 126.157us - SinkTime: 524.707us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 738.796us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 726.177us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.59 KB - CloseTime: 20.130us - CompressTime: 0ns - ExecTime: 635.884us - InputRows: 95 - LocalBytesSent: 1.63 KB - LocalSendTime: 93.211us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 11.47 KB - MergeBlockTime: 0ns - OpenTime: 91.882us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.789ms - RowsProduced: 95 - RpcAvgTime: 4.20ms - RpcCount: 12 - RpcMaxTime: 4.46ms - RpcMinTime: 3.994ms - RpcSumTime: 48.246ms - SerializeBatchTime: 30.499us - SplitBlockDistributeByChannelTime: 55.407us - SplitBlockHashComputeTime: 7.520us - UncompressedRowBatchSize: 2.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.210us - DeserializeAndMergeTime: 0ns - ExecTime: 66.702us - GetResultsTime: 20.617us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.233us - HashTableSize: 95 - InsertKeysToColumnTime: 12.34us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.867us - ProjectionTime: 30.856us - RowsProduced: 95 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s405ms PipelineXTask (index=18):(Active: 500.637us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 367.477us - CloseTime: 11.780us - GetBlockTime: 47.522us - OpenTime: 2.911us - PrepareTime: 113.601us - SinkTime: 301.999us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 482.231us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.947ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.50 KB - CloseTime: 9.973us - CompressTime: 0ns - ExecTime: 400.902us - InputRows: 93 - LocalBytesSent: 1.63 KB - LocalSendTime: 50.726us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 11.22 KB - MergeBlockTime: 0ns - OpenTime: 89.600us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.721ms - RowsProduced: 93 - RpcAvgTime: 4.174ms - RpcCount: 12 - RpcMaxTime: 4.275ms - RpcMinTime: 4.39ms - RpcSumTime: 50.90ms - SerializeBatchTime: 17.278us - SplitBlockDistributeByChannelTime: 19.397us - SplitBlockHashComputeTime: 5.361us - UncompressedRowBatchSize: 2.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 930ns - DeserializeAndMergeTime: 0ns - ExecTime: 52.826us - GetResultsTime: 23.814us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 907ns - HashTableSize: 93 - InsertKeysToColumnTime: 9.798us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.919us - ProjectionTime: 18.485us - RowsProduced: 93 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s400ms PipelineXTask (index=20):(Active: 943.240us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 780.892us - CloseTime: 18.966us - GetBlockTime: 87.627us - OpenTime: 2.146us - PrepareTime: 136.50us - SinkTime: 672.721us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 916.916us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.653ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.04 KB - CloseTime: 15.785us - CompressTime: 0ns - ExecTime: 794.37us - InputRows: 95 - LocalBytesSent: 2.19 KB - LocalSendTime: 160.223us - LocalSentRows: 56 - MemoryUsage: - PeakMemoryUsage: 12.22 KB - MergeBlockTime: 0ns - OpenTime: 106.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.160ms - RowsProduced: 95 - RpcAvgTime: 3.323ms - RpcCount: 12 - RpcMaxTime: 3.918ms - RpcMinTime: 2.898ms - RpcSumTime: 39.881ms - SerializeBatchTime: 39.451us - SplitBlockDistributeByChannelTime: 53.317us - SplitBlockHashComputeTime: 8.587us - UncompressedRowBatchSize: 1.85 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 963ns - DeserializeAndMergeTime: 0ns - ExecTime: 92.774us - GetResultsTime: 42.240us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.530us - HashTableSize: 95 - InsertKeysToColumnTime: 24.450us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.402us - ProjectionTime: 34.730us - RowsProduced: 95 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s401ms PipelineXTask (index=22):(Active: 679.433us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 517.819us - CloseTime: 25.396us - GetBlockTime: 54.608us - OpenTime: 2.63us - PrepareTime: 129.149us - SinkTime: 445.546us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 646.685us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.370ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.18 KB - CloseTime: 22.302us - CompressTime: 0ns - ExecTime: 555.81us - InputRows: 94 - LocalBytesSent: 1.98 KB - LocalSendTime: 69.169us - LocalSentRows: 51 - MemoryUsage: - PeakMemoryUsage: 11.50 KB - MergeBlockTime: 0ns - OpenTime: 100.532us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.760ms - RowsProduced: 94 - RpcAvgTime: 4.65ms - RpcCount: 12 - RpcMaxTime: 4.152ms - RpcMinTime: 3.997ms - RpcSumTime: 48.781ms - SerializeBatchTime: 22.409us - SplitBlockDistributeByChannelTime: 28.233us - SplitBlockHashComputeTime: 7.163us - UncompressedRowBatchSize: 2.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 878ns - DeserializeAndMergeTime: 0ns - ExecTime: 62.481us - GetResultsTime: 18.672us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.72us - HashTableSize: 94 - InsertKeysToColumnTime: 10.555us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.730us - ProjectionTime: 30.976us - RowsProduced: 94 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s400ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 672.667us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 584.608us - CloseTime: 5.321us - GetBlockTime: 172.566us - OpenTime: 3.80us - PrepareTime: 72.770us - SinkTime: 304.21us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 639.945us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.661ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.292us - DeserializeAndMergeTime: 98.830us - ExecTime: 323.647us - ExprTime: 0ns - HashTableComputeTime: 151.812us - HashTableEmplaceTime: 84.785us - HashTableInputCount: 465 - InputRows: 465 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 285.743us - OpenTime: 23.798us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 11.25 KB - CloseTime: 3.389us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 173.914us - ExecTime: 175.375us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.38 KB - MemoryUsage: - Blocks: 8.06 KB - PeakMemoryUsage: 8.06 KB - OpenTime: 18.357us - ProjectionTime: 0ns - RowsProduced: 465 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s402ms PipelineXTask (index=3):(Active: 2.520ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 521.342us - CloseTime: 1.930ms - GetBlockTime: 115.501us - OpenTime: 3.265us - PrepareTime: 60.85us - SinkTime: 313.666us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 568.819us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.521ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 815ns - DeserializeAndMergeTime: 86.613us - ExecTime: 336.858us - ExprTime: 0ns - HashTableComputeTime: 170.673us - HashTableEmplaceTime: 81.744us - HashTableInputCount: 482 - InputRows: 482 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 289.992us - OpenTime: 27.299us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 11.95 KB - CloseTime: 1.928ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 125.29us - ExecTime: 2.51ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.75 KB - MemoryUsage: - Blocks: 9.56 KB - PeakMemoryUsage: 4.81 KB - OpenTime: 15.766us - ProjectionTime: 0ns - RowsProduced: 482 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s401ms PipelineXTask (index=5):(Active: 581.568us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 506.70us - CloseTime: 3.977us - GetBlockTime: 139.884us - OpenTime: 3.516us - PrepareTime: 60.661us - SinkTime: 270.452us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 549.365us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.270ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.64us - DeserializeAndMergeTime: 98.617us - ExecTime: 289.734us - ExprTime: 0ns - HashTableComputeTime: 117.200us - HashTableEmplaceTime: 67.388us - HashTableInputCount: 464 - InputRows: 464 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 254.290us - OpenTime: 23.508us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 11.17 KB - CloseTime: 2.152us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 126.742us - ExecTime: 153.396us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.63 KB - MemoryUsage: - Blocks: 6.88 KB - PeakMemoryUsage: 6.88 KB - OpenTime: 20.671us - ProjectionTime: 0ns - RowsProduced: 464 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s402ms PipelineXTask (index=7):(Active: 580.969us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 495.414us - CloseTime: 3.872us - GetBlockTime: 133.468us - OpenTime: 3.425us - PrepareTime: 64.84us - SinkTime: 279.327us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 544.97us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.904ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 981ns - DeserializeAndMergeTime: 91.141us - ExecTime: 290.379us - ExprTime: 0ns - HashTableComputeTime: 130.741us - HashTableEmplaceTime: 78.130us - HashTableInputCount: 512 - InputRows: 512 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 253.183us - OpenTime: 15.110us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 11.60 KB - CloseTime: 2.216us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 132.513us - ExecTime: 139.414us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.38 KB - MemoryUsage: - Blocks: 7.75 KB - PeakMemoryUsage: 7.75 KB - OpenTime: 12.679us - ProjectionTime: 0ns - RowsProduced: 512 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s401ms PipelineXTask (index=9):(Active: 613.719us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 548.146us - CloseTime: 5.849us - GetBlockTime: 122.567us - OpenTime: 3.60us - PrepareTime: 50.774us - SinkTime: 328.933us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 581.869us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.871ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.96us - DeserializeAndMergeTime: 110.590us - ExecTime: 345.109us - ExprTime: 0ns - HashTableComputeTime: 170.720us - HashTableEmplaceTime: 98.431us - HashTableInputCount: 497 - InputRows: 497 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 313.83us - OpenTime: 19.695us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 12.20 KB - CloseTime: 3.836us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 126.454us - ExecTime: 114.860us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.31 KB - MemoryUsage: - Blocks: 10.38 KB - PeakMemoryUsage: 4.81 KB - OpenTime: 10.503us - ProjectionTime: 0ns - RowsProduced: 497 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s398ms PipelineXTask (index=11):(Active: 457.339us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 397.473us - CloseTime: 4.998us - GetBlockTime: 87.702us - OpenTime: 4.55us - PrepareTime: 44.976us - SinkTime: 230.964us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 430.687us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.943ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 511ns - DeserializeAndMergeTime: 66.902us - ExecTime: 244.787us - ExprTime: 0ns - HashTableComputeTime: 121.947us - HashTableEmplaceTime: 81.93us - HashTableInputCount: 441 - InputRows: 441 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 217.249us - OpenTime: 16.691us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 11.28 KB - CloseTime: 3.610us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 107.594us - ExecTime: 97.573us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.56 KB - MemoryUsage: - Blocks: 6.50 KB - PeakMemoryUsage: 4.38 KB - OpenTime: 13.972us - ProjectionTime: 0ns - RowsProduced: 441 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s402ms PipelineXTask (index=13):(Active: 643.640us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 568.234us - CloseTime: 8.928us - GetBlockTime: 143.183us - OpenTime: 2.315us - PrepareTime: 58.442us - SinkTime: 323.727us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 598.639us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.602ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.483us - DeserializeAndMergeTime: 122.994us - ExecTime: 342.698us - ExprTime: 0ns - HashTableComputeTime: 150.488us - HashTableEmplaceTime: 93.42us - HashTableInputCount: 696 - InputRows: 696 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 306.944us - OpenTime: 22.6us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 16.50 KB - CloseTime: 5.980us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 126.412us - ExecTime: 152.386us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 29.56 KB - MemoryUsage: - Blocks: 15.69 KB - PeakMemoryUsage: 5.19 KB - OpenTime: 12.936us - ProjectionTime: 0ns - RowsProduced: 696 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s397ms PipelineXTask (index=15):(Active: 586.873us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 512.864us - CloseTime: 10.218us - GetBlockTime: 138.242us - OpenTime: 2.232us - PrepareTime: 55.485us - SinkTime: 268.97us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 548.880us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.831ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 772ns - DeserializeAndMergeTime: 86.528us - ExecTime: 293.285us - ExprTime: 0ns - HashTableComputeTime: 132.715us - HashTableEmplaceTime: 73.666us - HashTableInputCount: 511 - InputRows: 511 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 252.167us - OpenTime: 28.480us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 12.74 KB - CloseTime: 8.684us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 116.364us - ExecTime: 149.199us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.94 KB - MemoryUsage: - Blocks: 7.00 KB - PeakMemoryUsage: 3.63 KB - OpenTime: 12.116us - ProjectionTime: 0ns - RowsProduced: 511 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s398ms PipelineXTask (index=17):(Active: 551.829us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 478.316us - CloseTime: 5.907us - GetBlockTime: 102.853us - OpenTime: 3.80us - PrepareTime: 58.437us - SinkTime: 279.350us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 520.583us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.81ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 909ns - DeserializeAndMergeTime: 76.60us - ExecTime: 291.370us - ExprTime: 0ns - HashTableComputeTime: 146.317us - HashTableEmplaceTime: 92.798us - HashTableInputCount: 471 - InputRows: 471 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 257.895us - OpenTime: 15.918us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 11.11 KB - CloseTime: 4.104us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 102.438us - ExecTime: 126.993us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.94 KB - MemoryUsage: - Blocks: 8.94 KB - PeakMemoryUsage: 3.13 KB - OpenTime: 30.333us - ProjectionTime: 0ns - RowsProduced: 471 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s398ms PipelineXTask (index=19):(Active: 581.13us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 493.385us - CloseTime: 9.74us - GetBlockTime: 117.377us - OpenTime: 5.413us - PrepareTime: 65.654us - SinkTime: 288.477us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 549.511us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.940ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 4.429us - DeserializeAndMergeTime: 108.480us - ExecTime: 307.630us - ExprTime: 0ns - HashTableComputeTime: 131.807us - HashTableEmplaceTime: 68.758us - HashTableInputCount: 539 - InputRows: 539 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 272.752us - OpenTime: 19.465us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.02 KB - CloseTime: 3.744us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 115.930us - ExecTime: 144.78us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.44 KB - MemoryUsage: - Blocks: 10.13 KB - PeakMemoryUsage: 5.25 KB - OpenTime: 30.604us - ProjectionTime: 0ns - RowsProduced: 539 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s402ms PipelineXTask (index=21):(Active: 616.8us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 558.466us - CloseTime: 3.859us - GetBlockTime: 153.983us - OpenTime: 3.430us - PrepareTime: 44.764us - SinkTime: 302.385us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 573.428us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.131ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 837ns - DeserializeAndMergeTime: 75.914us - ExecTime: 313.554us - ExprTime: 0ns - HashTableComputeTime: 166.794us - HashTableEmplaceTime: 110.323us - HashTableInputCount: 509 - InputRows: 509 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 275.152us - OpenTime: 14.495us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 12.24 KB - CloseTime: 2.346us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 117.556us - ExecTime: 152.874us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.31 KB - MemoryUsage: - Blocks: 9.81 KB - PeakMemoryUsage: 4.44 KB - OpenTime: 12.694us - ProjectionTime: 0ns - RowsProduced: 509 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s402ms PipelineXTask (index=23):(Active: 620.987us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 533.653us - CloseTime: 6.520us - GetBlockTime: 125.317us - OpenTime: 2.432us - PrepareTime: 71.816us - SinkTime: 306.583us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 586.316us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.41ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.80us - DeserializeAndMergeTime: 91.993us - ExecTime: 337.335us - ExprTime: 0ns - HashTableComputeTime: 151.349us - HashTableEmplaceTime: 81.597us - HashTableInputCount: 500 - InputRows: 500 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 281.517us - OpenTime: 40.587us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 12.00 KB - CloseTime: 4.682us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 119.767us - ExecTime: 137.284us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.81 KB - MemoryUsage: - Blocks: 8.50 KB - PeakMemoryUsage: 3.13 KB - OpenTime: 17.801us - ProjectionTime: 0ns - RowsProduced: 500 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s398ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 864.100us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 633.103us - CloseTime: 19.335us - GetBlockTime: 116.20us - OpenTime: 2.887us - PrepareTime: 201.417us - SinkTime: 450.861us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 800.546us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.177ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.84 KB - CloseTime: 16.44us - CompressTime: 0ns - ExecTime: 630.254us - InputRows: 82 - LocalBytesSent: 1.88 KB - LocalSendTime: 67.739us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 10.25 KB - MergeBlockTime: 0ns - OpenTime: 164.413us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.925ms - RowsProduced: 82 - RpcAvgTime: 5.539ms - RpcCount: 12 - RpcMaxTime: 5.611ms - RpcMinTime: 5.451ms - RpcSumTime: 66.475ms - SerializeBatchTime: 31.460us - SplitBlockDistributeByChannelTime: 31.913us - SplitBlockHashComputeTime: 9.743us - UncompressedRowBatchSize: 1.66 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.130us - DeserializeAndMergeTime: 0ns - ExecTime: 126.579us - GetResultsTime: 62.822us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.923us - HashTableSize: 82 - InsertKeysToColumnTime: 47.532us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.558us - ProjectionTime: 42.866us - RowsProduced: 82 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s401ms PipelineXTask (index=2):(Active: 599.971us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 426.631us - CloseTime: 10.411us - GetBlockTime: 56.241us - OpenTime: 2.472us - PrepareTime: 156.464us - SinkTime: 355.584us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 584.166us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 656.478us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.62 KB - CloseTime: 8.673us - CompressTime: 0ns - ExecTime: 491.687us - InputRows: 99 - LocalBytesSent: 1.75 KB - LocalSendTime: 51.442us - LocalSentRows: 45 - MemoryUsage: - PeakMemoryUsage: 11.75 KB - MergeBlockTime: 0ns - OpenTime: 127.936us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.973ms - RowsProduced: 99 - RpcAvgTime: 5.592ms - RpcCount: 12 - RpcMaxTime: 5.642ms - RpcMinTime: 5.569ms - RpcSumTime: 67.115ms - SerializeBatchTime: 19.133us - SplitBlockDistributeByChannelTime: 28.340us - SplitBlockHashComputeTime: 6.433us - UncompressedRowBatchSize: 2.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 756ns - DeserializeAndMergeTime: 0ns - ExecTime: 64.47us - GetResultsTime: 23.950us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.773us - HashTableSize: 99 - InsertKeysToColumnTime: 11.573us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.970us - ProjectionTime: 25.476us - RowsProduced: 99 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=4):(Active: 643.963us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 468.738us - CloseTime: 18.206us - GetBlockTime: 66.184us - OpenTime: 1.675us - PrepareTime: 150.105us - SinkTime: 386.980us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 619.632us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 757.996us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.30 KB - CloseTime: 14.746us - CompressTime: 0ns - ExecTime: 517.641us - InputRows: 88 - LocalBytesSent: 1.64 KB - LocalSendTime: 63.172us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 10.56 KB - MergeBlockTime: 0ns - OpenTime: 116.328us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.820ms - RowsProduced: 88 - RpcAvgTime: 5.615ms - RpcCount: 12 - RpcMaxTime: 5.641ms - RpcMinTime: 5.587ms - RpcSumTime: 67.380ms - SerializeBatchTime: 25.25us - SplitBlockDistributeByChannelTime: 28.903us - SplitBlockHashComputeTime: 20.592us - UncompressedRowBatchSize: 2.11 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 876ns - DeserializeAndMergeTime: 0ns - ExecTime: 72.269us - GetResultsTime: 31.471us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.241us - HashTableSize: 88 - InsertKeysToColumnTime: 22.894us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.923us - ProjectionTime: 28.189us - RowsProduced: 88 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=6):(Active: 878.889us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 713.806us - CloseTime: 19.643us - GetBlockTime: 87.937us - OpenTime: 2.122us - PrepareTime: 139.289us - SinkTime: 608.439us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 853.115us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 817.686us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.42 KB - CloseTime: 15.894us - CompressTime: 0ns - ExecTime: 729.183us - InputRows: 112 - LocalBytesSent: 2.46 KB - LocalSendTime: 96.945us - LocalSentRows: 63 - MemoryUsage: - PeakMemoryUsage: 12.53 KB - MergeBlockTime: 0ns - OpenTime: 105.570us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.706ms - RowsProduced: 112 - RpcAvgTime: 5.598ms - RpcCount: 12 - RpcMaxTime: 5.639ms - RpcMinTime: 5.507ms - RpcSumTime: 67.180ms - SerializeBatchTime: 30.922us - SplitBlockDistributeByChannelTime: 56.88us - SplitBlockHashComputeTime: 10.220us - UncompressedRowBatchSize: 2.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.105us - DeserializeAndMergeTime: 0ns - ExecTime: 98.582us - GetResultsTime: 42.769us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.520us - HashTableSize: 112 - InsertKeysToColumnTime: 23.48us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.567us - ProjectionTime: 36.474us - RowsProduced: 112 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=8):(Active: 997.719us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 840.709us - CloseTime: 10.598us - GetBlockTime: 68.697us - OpenTime: 2.663us - PrepareTime: 139.435us - SinkTime: 753.699us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 980.947us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 451.284us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.46 KB - CloseTime: 8.932us - CompressTime: 0ns - ExecTime: 869.168us - InputRows: 92 - LocalBytesSent: 1.64 KB - LocalSendTime: 118.863us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 11.34 KB - MergeBlockTime: 0ns - OpenTime: 107.350us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.457ms - RowsProduced: 92 - RpcAvgTime: 4.990ms - RpcCount: 12 - RpcMaxTime: 5.107ms - RpcMinTime: 4.769ms - RpcSumTime: 59.882ms - SerializeBatchTime: 31.496us - SplitBlockDistributeByChannelTime: 43.125us - SplitBlockHashComputeTime: 8.379us - UncompressedRowBatchSize: 2.28 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 632ns - DeserializeAndMergeTime: 0ns - ExecTime: 74.209us - GetResultsTime: 29.303us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.144us - HashTableSize: 92 - InsertKeysToColumnTime: 16.261us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.553us - ProjectionTime: 32.180us - RowsProduced: 92 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s403ms PipelineXTask (index=10):(Active: 768.742us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 563.815us - CloseTime: 22.960us - GetBlockTime: 66.611us - OpenTime: 1.848us - PrepareTime: 175.195us - SinkTime: 480.449us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 739.226us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 855.298us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.77 KB - CloseTime: 18.680us - CompressTime: 0ns - ExecTime: 617.188us - InputRows: 110 - LocalBytesSent: 2.03 KB - LocalSendTime: 87.586us - LocalSentRows: 52 - MemoryUsage: - PeakMemoryUsage: 12.28 KB - MergeBlockTime: 0ns - OpenTime: 118.787us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.409ms - RowsProduced: 110 - RpcAvgTime: 5.298ms - RpcCount: 12 - RpcMaxTime: 5.436ms - RpcMinTime: 4.796ms - RpcSumTime: 63.581ms - SerializeBatchTime: 34.415us - SplitBlockDistributeByChannelTime: 44.903us - SplitBlockHashComputeTime: 8.224us - UncompressedRowBatchSize: 2.58 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.220us - DeserializeAndMergeTime: 0ns - ExecTime: 76.963us - GetResultsTime: 27.890us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.423us - HashTableSize: 110 - InsertKeysToColumnTime: 14.136us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.17us - ProjectionTime: 31.503us - RowsProduced: 110 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=12):(Active: 858.693us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 671.900us - CloseTime: 20.359us - GetBlockTime: 116.163us - OpenTime: 3.47us - PrepareTime: 158.79us - SinkTime: 503.256us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 803.675us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.579us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.77 KB - CloseTime: 16.369us - CompressTime: 0ns - ExecTime: 615.931us - InputRows: 97 - LocalBytesSent: 1.52 KB - LocalSendTime: 112.33us - LocalSentRows: 39 - MemoryUsage: - PeakMemoryUsage: 11.59 KB - MergeBlockTime: 0ns - OpenTime: 96.999us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.982ms - RowsProduced: 97 - RpcAvgTime: 5.535ms - RpcCount: 12 - RpcMaxTime: 5.606ms - RpcMinTime: 5.421ms - RpcSumTime: 66.426ms - SerializeBatchTime: 36.849us - SplitBlockDistributeByChannelTime: 30.607us - SplitBlockHashComputeTime: 8.720us - UncompressedRowBatchSize: 2.58 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.280us - DeserializeAndMergeTime: 0ns - ExecTime: 138.758us - GetResultsTime: 42.288us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.235us - HashTableSize: 97 - InsertKeysToColumnTime: 28.293us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 22.506us - ProjectionTime: 61.525us - RowsProduced: 97 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=14):(Active: 723.984us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 540.975us - CloseTime: 9.983us - GetBlockTime: 70.453us - OpenTime: 2.521us - PrepareTime: 165.315us - SinkTime: 419.603us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 677.483us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 708.938us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.98 KB - CloseTime: 8.527us - CompressTime: 0ns - ExecTime: 557.427us - InputRows: 89 - LocalBytesSent: 1.99 KB - LocalSendTime: 76.321us - LocalSentRows: 51 - MemoryUsage: - PeakMemoryUsage: 11.19 KB - MergeBlockTime: 0ns - OpenTime: 129.787us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.834ms - RowsProduced: 89 - RpcAvgTime: 5.605ms - RpcCount: 12 - RpcMaxTime: 5.629ms - RpcMinTime: 5.566ms - RpcSumTime: 67.269ms - SerializeBatchTime: 25.720us - SplitBlockDistributeByChannelTime: 33.831us - SplitBlockHashComputeTime: 8.545us - UncompressedRowBatchSize: 1.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 355ns - DeserializeAndMergeTime: 0ns - ExecTime: 76.518us - GetResultsTime: 27.94us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.188us - HashTableSize: 89 - InsertKeysToColumnTime: 12.50us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.437us - ProjectionTime: 35.305us - RowsProduced: 89 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=16):(Active: 698.457us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 481.979us - CloseTime: 21.143us - GetBlockTime: 53.129us - OpenTime: 3.46us - PrepareTime: 187.999us - SinkTime: 370.453us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 642.718us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.196us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.71 KB - CloseTime: 18.594us - CompressTime: 0ns - ExecTime: 545.225us - InputRows: 106 - LocalBytesSent: 1.87 KB - LocalSendTime: 63.634us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 11.38 KB - MergeBlockTime: 0ns - OpenTime: 156.670us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.917ms - RowsProduced: 106 - RpcAvgTime: 5.523ms - RpcCount: 12 - RpcMaxTime: 5.591ms - RpcMinTime: 5.431ms - RpcSumTime: 66.281ms - SerializeBatchTime: 19.88us - SplitBlockDistributeByChannelTime: 20.80us - SplitBlockHashComputeTime: 6.591us - UncompressedRowBatchSize: 2.54 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 470ns - DeserializeAndMergeTime: 0ns - ExecTime: 60.480us - GetResultsTime: 26.307us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.52us - HashTableSize: 106 - InsertKeysToColumnTime: 8.721us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.484us - ProjectionTime: 20.550us - RowsProduced: 106 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=18):(Active: 561.805us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 408.484us - CloseTime: 10.773us - GetBlockTime: 55.146us - OpenTime: 2.816us - PrepareTime: 134.505us - SinkTime: 321.913us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 544.305us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.967ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.87 KB - CloseTime: 9.136us - CompressTime: 0ns - ExecTime: 436.666us - InputRows: 98 - LocalBytesSent: 2.42 KB - LocalSendTime: 66.326us - LocalSentRows: 62 - MemoryUsage: - PeakMemoryUsage: 11.28 KB - MergeBlockTime: 0ns - OpenTime: 106.308us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.416ms - RowsProduced: 98 - RpcAvgTime: 5.286ms - RpcCount: 12 - RpcMaxTime: 5.425ms - RpcMinTime: 4.876ms - RpcSumTime: 63.433ms - SerializeBatchTime: 16.540us - SplitBlockDistributeByChannelTime: 24.211us - SplitBlockHashComputeTime: 6.832us - UncompressedRowBatchSize: 1.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 892ns - DeserializeAndMergeTime: 0ns - ExecTime: 63.209us - GetResultsTime: 27.355us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.543us - HashTableSize: 98 - InsertKeysToColumnTime: 15.541us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.167us - ProjectionTime: 21.731us - RowsProduced: 98 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s398ms PipelineXTask (index=20):(Active: 851.121us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 664.110us - CloseTime: 59.235us - GetBlockTime: 85.520us - OpenTime: 2.376us - PrepareTime: 121.108us - SinkTime: 552.823us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 784.539us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.688ms DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.31 KB - CloseTime: 57.581us - CompressTime: 0ns - ExecTime: 703.694us - InputRows: 97 - LocalBytesSent: 1.99 KB - LocalSendTime: 97.300us - LocalSentRows: 51 - MemoryUsage: - PeakMemoryUsage: 11.53 KB - MergeBlockTime: 0ns - OpenTime: 93.876us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.347ms - RowsProduced: 97 - RpcAvgTime: 5.314ms - RpcCount: 12 - RpcMaxTime: 5.446ms - RpcMinTime: 4.847ms - RpcSumTime: 63.770ms - SerializeBatchTime: 36.385us - SplitBlockDistributeByChannelTime: 37.267us - SplitBlockHashComputeTime: 8.886us - UncompressedRowBatchSize: 2.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 413ns - DeserializeAndMergeTime: 0ns - ExecTime: 93.930us - GetResultsTime: 44.150us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.985us - HashTableSize: 97 - InsertKeysToColumnTime: 21.880us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.157us - ProjectionTime: 32.700us - RowsProduced: 97 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s400ms PipelineXTask (index=22):(Active: 710.461us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 546.76us - CloseTime: 19.790us - GetBlockTime: 85.524us - OpenTime: 2.556us - PrepareTime: 137.251us - SinkTime: 436.578us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 682.920us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 696.89us DATA_STREAM_SINK_OPERATOR (id=175,dst_id=175): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.90 KB - CloseTime: 15.362us - CompressTime: 0ns - ExecTime: 550.895us - InputRows: 111 - LocalBytesSent: 1.94 KB - LocalSendTime: 103.116us - LocalSentRows: 50 - MemoryUsage: - PeakMemoryUsage: 12.56 KB - MergeBlockTime: 0ns - OpenTime: 99.574us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.72ms - RowsProduced: 111 - RpcAvgTime: 5.502ms - RpcCount: 12 - RpcMaxTime: 5.579ms - RpcMinTime: 5.395ms - RpcSumTime: 66.31ms - SerializeBatchTime: 26.301us - SplitBlockDistributeByChannelTime: 30.473us - SplitBlockHashComputeTime: 8.923us - UncompressedRowBatchSize: 2.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.589us - DeserializeAndMergeTime: 0ns - ExecTime: 94.834us - GetResultsTime: 36.613us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.338us - HashTableSize: 111 - InsertKeysToColumnTime: 15.911us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.594us - ProjectionTime: 41.144us - RowsProduced: 111 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 559.499us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 472.615us - CloseTime: 11.331us - GetBlockTime: 128.326us - OpenTime: 2.722us - PrepareTime: 68.246us - SinkTime: 270.141us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 531.10us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.795ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 794ns - DeserializeAndMergeTime: 92.458us - ExecTime: 291.906us - ExprTime: 0ns - HashTableComputeTime: 129.691us - HashTableEmplaceTime: 72.163us - HashTableInputCount: 504 - InputRows: 504 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 253.293us - OpenTime: 25.34us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.11 KB - CloseTime: 8.721us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 110.382us - ExecTime: 148.964us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.75 KB - MemoryUsage: - Blocks: 14.00 KB - PeakMemoryUsage: 8.94 KB - OpenTime: 20.325us - ProjectionTime: 0ns - RowsProduced: 504 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=3):(Active: 486.168us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 424.954us - CloseTime: 5.704us - GetBlockTime: 114.238us - OpenTime: 1.483us - PrepareTime: 49.768us - SinkTime: 250.746us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 465.236us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.786ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 548ns - DeserializeAndMergeTime: 83.832us - ExecTime: 268.686us - ExprTime: 0ns - HashTableComputeTime: 125.470us - HashTableEmplaceTime: 76.830us - HashTableInputCount: 549 - InputRows: 549 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 237.466us - OpenTime: 20.858us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.04 KB - CloseTime: 4.428us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 99.542us - ExecTime: 125.202us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.13 KB - MemoryUsage: - Blocks: 13.13 KB - PeakMemoryUsage: 9.94 KB - OpenTime: 14.858us - ProjectionTime: 0ns - RowsProduced: 549 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 574.913us PipelineXTask (index=5):(Active: 479.730us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 407.872us - CloseTime: 4.416us - GetBlockTime: 105.764us - OpenTime: 1.843us - PrepareTime: 60.594us - SinkTime: 249.58us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 460.215us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.927ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 974ns - DeserializeAndMergeTime: 86.301us - ExecTime: 273.757us - ExprTime: 0ns - HashTableComputeTime: 125.152us - HashTableEmplaceTime: 80.64us - HashTableInputCount: 537 - InputRows: 537 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 236.204us - OpenTime: 27.934us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.42 KB - CloseTime: 2.622us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 105.879us - ExecTime: 116.462us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.75 KB - MemoryUsage: - Blocks: 13.06 KB - PeakMemoryUsage: 9.19 KB - OpenTime: 14.958us - ProjectionTime: 0ns - RowsProduced: 537 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=7):(Active: 551.688us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 404.11us - CloseTime: 6.883us - GetBlockTime: 111.373us - OpenTime: 1.546us - PrepareTime: 134.274us - SinkTime: 242.115us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 531.519us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.104ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 933ns - DeserializeAndMergeTime: 89.887us - ExecTime: 326.546us - ExprTime: 0ns - HashTableComputeTime: 114.76us - HashTableEmplaceTime: 67.862us - HashTableInputCount: 590 - InputRows: 590 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 230.3us - OpenTime: 86.821us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 14.03 KB - CloseTime: 4.959us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 100.668us - ExecTime: 138.332us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.50 KB - MemoryUsage: - Blocks: 22.56 KB - PeakMemoryUsage: 8.69 KB - OpenTime: 28.814us - ProjectionTime: 0ns - RowsProduced: 590 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=9):(Active: 552.780us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 485.654us - CloseTime: 6.755us - GetBlockTime: 106.510us - OpenTime: 1.664us - PrepareTime: 54.233us - SinkTime: 304.912us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 524.56us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.77ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 967ns - DeserializeAndMergeTime: 92.880us - ExecTime: 320.353us - ExprTime: 0ns - HashTableComputeTime: 148.598us - HashTableEmplaceTime: 81.910us - HashTableInputCount: 507 - InputRows: 507 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 281.176us - OpenTime: 19.333us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 12.53 KB - CloseTime: 4.900us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 132.605us - ExecTime: 114.966us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 20.50 KB - MemoryUsage: - Blocks: 16.75 KB - PeakMemoryUsage: 9.06 KB - OpenTime: 13.250us - ProjectionTime: 0ns - RowsProduced: 507 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s400ms PipelineXTask (index=11):(Active: 571.841us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 503.477us - CloseTime: 6.47us - GetBlockTime: 102.949us - OpenTime: 2.145us - PrepareTime: 55.422us - SinkTime: 341.844us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 551.800us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.383ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 862ns - DeserializeAndMergeTime: 115.557us - ExecTime: 357.219us - ExprTime: 0ns - HashTableComputeTime: 164.728us - HashTableEmplaceTime: 95.194us - HashTableInputCount: 794 - InputRows: 794 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 328.342us - OpenTime: 18.454us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 17.45 KB - CloseTime: 3.998us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 128.585us - ExecTime: 117.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.13 KB - MemoryUsage: - Blocks: 31.94 KB - PeakMemoryUsage: 13.69 KB - OpenTime: 16.929us - ProjectionTime: 0ns - RowsProduced: 794 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=13):(Active: 449.546us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 361.338us - CloseTime: 5.787us - GetBlockTime: 82.727us - OpenTime: 1.851us - PrepareTime: 76.317us - SinkTime: 234.43us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 432.503us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.801ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.369us - DeserializeAndMergeTime: 80.624us - ExecTime: 256.73us - ExprTime: 0ns - HashTableComputeTime: 116.141us - HashTableEmplaceTime: 73.784us - HashTableInputCount: 526 - InputRows: 526 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 221.440us - OpenTime: 24.392us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.05 KB - CloseTime: 3.618us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 95.598us - ExecTime: 96.761us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.00 KB - MemoryUsage: - Blocks: 21.50 KB - PeakMemoryUsage: 8.69 KB - OpenTime: 17.755us - ProjectionTime: 0ns - RowsProduced: 526 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=15):(Active: 600.681us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 536.135us - CloseTime: 5.391us - GetBlockTime: 99.723us - OpenTime: 2.310us - PrepareTime: 51.618us - SinkTime: 335.205us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 555.712us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.304ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 885ns - DeserializeAndMergeTime: 108.143us - ExecTime: 352.669us - ExprTime: 0ns - HashTableComputeTime: 170.519us - HashTableEmplaceTime: 114.615us - HashTableInputCount: 497 - InputRows: 497 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 318.638us - OpenTime: 21.98us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 11.89 KB - CloseTime: 3.638us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 139.532us - ExecTime: 106.138us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.81 KB - MemoryUsage: - Blocks: 18.25 KB - PeakMemoryUsage: 9.31 KB - OpenTime: 12.222us - ProjectionTime: 0ns - RowsProduced: 497 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s397ms PipelineXTask (index=17):(Active: 557.185us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 443.294us - CloseTime: 16.655us - GetBlockTime: 100.472us - OpenTime: 2.60us - PrepareTime: 89.374us - SinkTime: 282.98us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 526.654us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.88ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 985ns - DeserializeAndMergeTime: 104.338us - ExecTime: 325.299us - ExprTime: 0ns - HashTableComputeTime: 131.848us - HashTableEmplaceTime: 74.232us - HashTableInputCount: 568 - InputRows: 568 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 267.628us - OpenTime: 46.130us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.85 KB - CloseTime: 14.342us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 123.30us - ExecTime: 115.761us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.00 KB - MemoryUsage: - Blocks: 24.13 KB - PeakMemoryUsage: 9.19 KB - OpenTime: 20.841us - ProjectionTime: 0ns - RowsProduced: 568 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=19):(Active: 561.155us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 494.356us - CloseTime: 6.482us - GetBlockTime: 121.461us - OpenTime: 2.482us - PrepareTime: 52.653us - SinkTime: 303.86us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 537.437us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.311ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 1.14us - DeserializeAndMergeTime: 99.149us - ExecTime: 317.916us - ExprTime: 0ns - HashTableComputeTime: 153.122us - HashTableEmplaceTime: 91.766us - HashTableInputCount: 515 - InputRows: 515 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 287.179us - OpenTime: 18.565us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.06 KB - CloseTime: 4.556us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 96.745us - ExecTime: 134.632us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 21.00 KB - MemoryUsage: - Blocks: 14.50 KB - PeakMemoryUsage: 8.25 KB - OpenTime: 18.193us - ProjectionTime: 0ns - RowsProduced: 515 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s395ms PipelineXTask (index=21):(Active: 750.853us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 567.430us - CloseTime: 22.111us - GetBlockTime: 129.125us - OpenTime: 2.455us - PrepareTime: 153.676us - SinkTime: 357.316us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 707.948us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.366ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 754ns - DeserializeAndMergeTime: 105.147us - ExecTime: 469.171us - ExprTime: 0ns - HashTableComputeTime: 189.298us - HashTableEmplaceTime: 123.342us - HashTableInputCount: 566 - InputRows: 566 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 339.743us - OpenTime: 115.306us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 13.09 KB - CloseTime: 20.487us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 111.760us - ExecTime: 155.11us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.50 KB - MemoryUsage: - Blocks: 22.00 KB - PeakMemoryUsage: 5.56 KB - OpenTime: 18.54us - ProjectionTime: 0ns - RowsProduced: 566 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=23):(Active: 657.332us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 584.371us - CloseTime: 5.292us - GetBlockTime: 145.388us - OpenTime: 3.976us - PrepareTime: 56.746us - SinkTime: 336.717us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 620.799us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.71ms AGGREGATION_SINK_OPERATOR (id=174): - BuildTime: 0ns - CloseTime: 969ns - DeserializeAndMergeTime: 115.958us - ExecTime: 352.505us - ExprTime: 0ns - HashTableComputeTime: 165.153us - HashTableEmplaceTime: 107.73us - HashTableInputCount: 518 - InputRows: 518 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 914.98 KB - SerializeKeyArena: 912.00 KB - MergeTime: 317.678us - OpenTime: 20.35us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=173): - BlocksProduced: 36 - BytesReceived: 12.35 KB - CloseTime: 3.545us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 117.66us - ExecTime: 158.34us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.38 KB - MemoryUsage: - Blocks: 7.44 KB - PeakMemoryUsage: 5.06 KB - OpenTime: 19.379us - ProjectionTime: 0ns - RowsProduced: 518 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s397ms Fragment 87: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.320ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.143ms - CloseTime: 17.374us - GetBlockTime: 145.142us - OpenTime: 2.236us - PrepareTime: 150.386us - SinkTime: 1.976ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.162ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.482ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.81 KB - CloseTime: 13.701us - CompressTime: 0ns - ExecTime: 2.103ms - InputRows: 524 - LocalBytesSent: 11.49 KB - LocalSendTime: 1.314ms - LocalSentRows: 256 - MemoryUsage: - PeakMemoryUsage: 41.69 KB - MergeBlockTime: 0ns - OpenTime: 114.418us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.520ms - RowsProduced: 524 - RpcAvgTime: 7.218ms - RpcCount: 12 - RpcMaxTime: 7.554ms - RpcMinTime: 6.225ms - RpcSumTime: 86.623ms - SerializeBatchTime: 63.804us - SplitBlockDistributeByChannelTime: 119.396us - SplitBlockHashComputeTime: 27.205us - UncompressedRowBatchSize: 12.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.153us - DeserializeAndMergeTime: 0ns - ExecTime: 158.516us - GetResultsTime: 138.971us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.355us - HashTableSize: 524 - InsertKeysToColumnTime: 49.496us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.604us - ProjectionTime: 0ns - RowsProduced: 524 - SerializeDataTime: 72.846us - SerializeResultTime: 141.576us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s394ms PipelineXTask (index=4):(Active: 2.252ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.65ms - CloseTime: 29.637us - GetBlockTime: 155.162us - OpenTime: 2.703us - PrepareTime: 147.777us - SinkTime: 1.873ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.18ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.689ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.52 KB - CloseTime: 26.162us - CompressTime: 0ns - ExecTime: 2.4ms - InputRows: 562 - LocalBytesSent: 11.89 KB - LocalSendTime: 1.302ms - LocalSentRows: 270 - MemoryUsage: - PeakMemoryUsage: 45.69 KB - MergeBlockTime: 0ns - OpenTime: 105.308us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.712ms - RowsProduced: 562 - RpcAvgTime: 7.223ms - RpcCount: 12 - RpcMaxTime: 7.555ms - RpcMinTime: 6.267ms - RpcSumTime: 86.676ms - SerializeBatchTime: 54.917us - SplitBlockDistributeByChannelTime: 115.618us - SplitBlockHashComputeTime: 25.164us - UncompressedRowBatchSize: 14.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.54us - DeserializeAndMergeTime: 0ns - ExecTime: 164.530us - GetResultsTime: 148.750us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.106us - HashTableSize: 562 - InsertKeysToColumnTime: 47.471us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.483us - ProjectionTime: 0ns - RowsProduced: 562 - SerializeDataTime: 85.258us - SerializeResultTime: 151.813us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s393ms PipelineXTask (index=8):(Active: 1.171ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.2ms - CloseTime: 22.882us - GetBlockTime: 163.955us - OpenTime: 2.590us - PrepareTime: 135.848us - SinkTime: 817.646us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.139ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.678ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.83 KB - CloseTime: 17.930us - CompressTime: 0ns - ExecTime: 941.342us - InputRows: 537 - LocalBytesSent: 11.27 KB - LocalSendTime: 86.101us - LocalSentRows: 257 - MemoryUsage: - PeakMemoryUsage: 42.63 KB - MergeBlockTime: 0ns - OpenTime: 106.728us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.622ms - RowsProduced: 537 - RpcAvgTime: 5.461ms - RpcCount: 12 - RpcMaxTime: 5.668ms - RpcMinTime: 5.295ms - RpcSumTime: 65.540ms - SerializeBatchTime: 53.448us - SplitBlockDistributeByChannelTime: 132.624us - SplitBlockHashComputeTime: 26.17us - UncompressedRowBatchSize: 13.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.332us - DeserializeAndMergeTime: 0ns - ExecTime: 174.72us - GetResultsTime: 159.388us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.897us - HashTableSize: 537 - InsertKeysToColumnTime: 59.412us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.531us - ProjectionTime: 0ns - RowsProduced: 537 - SerializeDataTime: 86.23us - SerializeResultTime: 161.392us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s395ms PipelineXTask (index=12):(Active: 1.52ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 873.935us - CloseTime: 14.354us - GetBlockTime: 149.453us - OpenTime: 4.730us - PrepareTime: 152.2us - SinkTime: 700.161us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.29ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 856.474us DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.88 KB - CloseTime: 11.433us - CompressTime: 0ns - ExecTime: 835.14us - InputRows: 515 - LocalBytesSent: 10.91 KB - LocalSendTime: 119.367us - LocalSentRows: 246 - MemoryUsage: - PeakMemoryUsage: 41.56 KB - MergeBlockTime: 0ns - OpenTime: 124.348us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.911ms - RowsProduced: 515 - RpcAvgTime: 4.788ms - RpcCount: 12 - RpcMaxTime: 4.966ms - RpcMinTime: 4.665ms - RpcSumTime: 57.458ms - SerializeBatchTime: 48.933us - SplitBlockDistributeByChannelTime: 88.474us - SplitBlockHashComputeTime: 24.513us - UncompressedRowBatchSize: 13.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 561ns - DeserializeAndMergeTime: 0ns - ExecTime: 155.18us - GetResultsTime: 140.803us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.668us - HashTableSize: 515 - InsertKeysToColumnTime: 59.420us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.571us - ProjectionTime: 0ns - RowsProduced: 515 - SerializeDataTime: 57.178us - SerializeResultTime: 146.607us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s397ms PipelineXTask (index=16):(Active: 1.284ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.119ms - CloseTime: 17.23us - GetBlockTime: 114.645us - OpenTime: 7.707us - PrepareTime: 135.66us - SinkTime: 980.515us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.260ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.430ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.51 KB - CloseTime: 14.0us - CompressTime: 0ns - ExecTime: 1.103ms - InputRows: 516 - LocalBytesSent: 11.38 KB - LocalSendTime: 146.182us - LocalSentRows: 248 - MemoryUsage: - PeakMemoryUsage: 40.81 KB - MergeBlockTime: 0ns - OpenTime: 109.427us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.267ms - RowsProduced: 516 - RpcAvgTime: 5.271ms - RpcCount: 12 - RpcMaxTime: 5.482ms - RpcMinTime: 5.4ms - RpcSumTime: 63.253ms - SerializeBatchTime: 66.8us - SplitBlockDistributeByChannelTime: 140.84us - SplitBlockHashComputeTime: 14.195us - UncompressedRowBatchSize: 12.85 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 780ns - DeserializeAndMergeTime: 0ns - ExecTime: 121.430us - GetResultsTime: 109.350us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.837us - HashTableSize: 516 - InsertKeysToColumnTime: 65.702us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.815us - ProjectionTime: 0ns - RowsProduced: 516 - SerializeDataTime: 33.770us - SerializeResultTime: 112.323us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s395ms PipelineXTask (index=20):(Active: 1.297ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.104ms - CloseTime: 21.801us - GetBlockTime: 157.534us - OpenTime: 3.394us - PrepareTime: 160.854us - SinkTime: 899.2us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.266ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.433ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.26 KB - CloseTime: 11.955us - CompressTime: 0ns - ExecTime: 1.41ms - InputRows: 551 - LocalBytesSent: 11.84 KB - LocalSendTime: 135.952us - LocalSentRows: 264 - MemoryUsage: - PeakMemoryUsage: 42.75 KB - MergeBlockTime: 0ns - OpenTime: 131.484us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.806ms - RowsProduced: 551 - RpcAvgTime: 7.501ms - RpcCount: 12 - RpcMaxTime: 7.582ms - RpcMinTime: 7.323ms - RpcSumTime: 90.13ms - SerializeBatchTime: 64.18us - SplitBlockDistributeByChannelTime: 144.945us - SplitBlockHashComputeTime: 22.518us - UncompressedRowBatchSize: 13.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 879ns - DeserializeAndMergeTime: 0ns - ExecTime: 165.125us - GetResultsTime: 148.678us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.433us - HashTableSize: 551 - InsertKeysToColumnTime: 58.104us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.890us - ProjectionTime: 0ns - RowsProduced: 551 - SerializeDataTime: 67.509us - SerializeResultTime: 154.250us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s393ms PipelineXTask (index=24):(Active: 1.357ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.187ms - CloseTime: 41.192us - GetBlockTime: 138.325us - OpenTime: 3.810us - PrepareTime: 118.339us - SinkTime: 1.16ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.305ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.496ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.94 KB - CloseTime: 36.174us - CompressTime: 0ns - ExecTime: 1.139ms - InputRows: 493 - LocalBytesSent: 10.73 KB - LocalSendTime: 147.533us - LocalSentRows: 242 - MemoryUsage: - PeakMemoryUsage: 40.31 KB - MergeBlockTime: 0ns - OpenTime: 87.862us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.57ms - RowsProduced: 493 - RpcAvgTime: 7.655ms - RpcCount: 12 - RpcMaxTime: 7.783ms - RpcMinTime: 7.529ms - RpcSumTime: 91.861ms - SerializeBatchTime: 74.952us - SplitBlockDistributeByChannelTime: 130.56us - SplitBlockHashComputeTime: 25.180us - UncompressedRowBatchSize: 12.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.380us - DeserializeAndMergeTime: 0ns - ExecTime: 147.728us - GetResultsTime: 129.483us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.482us - HashTableSize: 493 - InsertKeysToColumnTime: 60.20us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.265us - ProjectionTime: 0ns - RowsProduced: 493 - SerializeDataTime: 51.612us - SerializeResultTime: 134.976us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s391ms PipelineXTask (index=28):(Active: 1.49ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 875.774us - CloseTime: 32.170us - GetBlockTime: 97.430us - OpenTime: 2.995us - PrepareTime: 132.318us - SinkTime: 757.517us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.9ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.964ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.82 KB - CloseTime: 27.768us - CompressTime: 0ns - ExecTime: 886.871us - InputRows: 521 - LocalBytesSent: 11.18 KB - LocalSendTime: 86.848us - LocalSentRows: 248 - MemoryUsage: - PeakMemoryUsage: 40.88 KB - MergeBlockTime: 0ns - OpenTime: 102.298us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.988ms - RowsProduced: 521 - RpcAvgTime: 7.553ms - RpcCount: 12 - RpcMaxTime: 7.660ms - RpcMinTime: 7.495ms - RpcSumTime: 90.645ms - SerializeBatchTime: 53.506us - SplitBlockDistributeByChannelTime: 131.177us - SplitBlockHashComputeTime: 34.713us - UncompressedRowBatchSize: 13.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.309us - DeserializeAndMergeTime: 0ns - ExecTime: 106.230us - GetResultsTime: 91.434us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.600us - HashTableSize: 521 - InsertKeysToColumnTime: 26.212us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.587us - ProjectionTime: 0ns - RowsProduced: 521 - SerializeDataTime: 48.35us - SerializeResultTime: 94.400us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s392ms PipelineXTask (index=32):(Active: 1.159ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.6ms - CloseTime: 18.610us - GetBlockTime: 122.270us - OpenTime: 7.855us - PrepareTime: 119.330us - SinkTime: 835.115us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.99ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.434ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.83 KB - CloseTime: 14.653us - CompressTime: 0ns - ExecTime: 939.570us - InputRows: 561 - LocalBytesSent: 12.30 KB - LocalSendTime: 148.833us - LocalSentRows: 277 - MemoryUsage: - PeakMemoryUsage: 45.44 KB - MergeBlockTime: 0ns - OpenTime: 90.694us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.501ms - RowsProduced: 561 - RpcAvgTime: 4.600ms - RpcCount: 12 - RpcMaxTime: 4.748ms - RpcMinTime: 4.325ms - RpcSumTime: 55.203ms - SerializeBatchTime: 48.476us - SplitBlockDistributeByChannelTime: 113.362us - SplitBlockHashComputeTime: 22.158us - UncompressedRowBatchSize: 13.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 922ns - DeserializeAndMergeTime: 0ns - ExecTime: 128.246us - GetResultsTime: 117.311us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.353us - HashTableSize: 561 - InsertKeysToColumnTime: 39.512us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.928us - ProjectionTime: 0ns - RowsProduced: 561 - SerializeDataTime: 65.71us - SerializeResultTime: 119.867us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s396ms PipelineXTask (index=36):(Active: 1.147ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.13ms - CloseTime: 13.34us - GetBlockTime: 133.478us - OpenTime: 4.650us - PrepareTime: 111.121us - SinkTime: 856.899us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.126ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.97ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.36 KB - CloseTime: 10.324us - CompressTime: 0ns - ExecTime: 956.291us - InputRows: 553 - LocalBytesSent: 11.13 KB - LocalSendTime: 128.764us - LocalSentRows: 254 - MemoryUsage: - PeakMemoryUsage: 44.69 KB - MergeBlockTime: 0ns - OpenTime: 89.951us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.786ms - RowsProduced: 553 - RpcAvgTime: 6.597ms - RpcCount: 12 - RpcMaxTime: 6.810ms - RpcMinTime: 6.319ms - RpcSumTime: 79.171ms - SerializeBatchTime: 68.308us - SplitBlockDistributeByChannelTime: 109.392us - SplitBlockHashComputeTime: 26.820us - UncompressedRowBatchSize: 14.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 774ns - DeserializeAndMergeTime: 0ns - ExecTime: 138.297us - GetResultsTime: 128.717us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 19.664us - HashTableSize: 553 - InsertKeysToColumnTime: 43.517us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.912us - ProjectionTime: 0ns - RowsProduced: 553 - SerializeDataTime: 53.583us - SerializeResultTime: 131.168us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s395ms PipelineXTask (index=40):(Active: 1.178ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 980.157us - CloseTime: 26.245us - GetBlockTime: 123.746us - OpenTime: 2.897us - PrepareTime: 162.132us - SinkTime: 835.530us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.143ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.452ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.75 KB - CloseTime: 13.145us - CompressTime: 0ns - ExecTime: 983.795us - InputRows: 529 - LocalBytesSent: 11.46 KB - LocalSendTime: 71.703us - LocalSentRows: 258 - MemoryUsage: - PeakMemoryUsage: 40.44 KB - MergeBlockTime: 0ns - OpenTime: 135.955us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.299ms - RowsProduced: 529 - RpcAvgTime: 6.973ms - RpcCount: 12 - RpcMaxTime: 7.199ms - RpcMinTime: 6.781ms - RpcSumTime: 83.687ms - SerializeBatchTime: 42.886us - SplitBlockDistributeByChannelTime: 121.99us - SplitBlockHashComputeTime: 24.19us - UncompressedRowBatchSize: 12.99 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 10.454us - DeserializeAndMergeTime: 0ns - ExecTime: 141.557us - GetResultsTime: 118.304us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.235us - HashTableSize: 529 - InsertKeysToColumnTime: 36.864us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.398us - ProjectionTime: 0ns - RowsProduced: 529 - SerializeDataTime: 64.480us - SerializeResultTime: 120.981us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s394ms PipelineXTask (index=44):(Active: 960.370us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 776.589us - CloseTime: 21.245us - GetBlockTime: 121.303us - OpenTime: 3.388us - PrepareTime: 152.990us - SinkTime: 624.777us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 929.808us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.967ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.99 KB - CloseTime: 16.412us - CompressTime: 0ns - ExecTime: 765.559us - InputRows: 577 - LocalBytesSent: 11.81 KB - LocalSendTime: 93.737us - LocalSentRows: 269 - MemoryUsage: - PeakMemoryUsage: 45.63 KB - MergeBlockTime: 0ns - OpenTime: 125.271us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.877ms - RowsProduced: 577 - RpcAvgTime: 4.757ms - RpcCount: 12 - RpcMaxTime: 4.846ms - RpcMinTime: 4.642ms - RpcSumTime: 57.94ms - SerializeBatchTime: 54.750us - SplitBlockDistributeByChannelTime: 128.666us - SplitBlockHashComputeTime: 23.465us - UncompressedRowBatchSize: 14.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.498us - DeserializeAndMergeTime: 0ns - ExecTime: 131.351us - GetResultsTime: 115.133us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.245us - HashTableSize: 577 - InsertKeysToColumnTime: 42.179us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.295us - ProjectionTime: 0ns - RowsProduced: 577 - SerializeDataTime: 58.906us - SerializeResultTime: 118.645us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s395ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.422ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.317ms - CloseTime: 20.877us - GetBlockTime: 1.644ms - OpenTime: 3.998us - PrepareTime: 75.197us - SinkTime: 622.524us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.382ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.54ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 614.28us - CloseTime: 1.485us - DeserializeAndMergeTime: 0ns - ExecTime: 645.325us - ExprTime: 4.416us - HashTableComputeTime: 488.815us - HashTableEmplaceTime: 377.710us - HashTableInputCount: 1.873K (1873) - InputRows: 1.873K (1873) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 22.935us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 16.804us - ExecTime: 962.104us - InitProbeSideTime: 261.865us - JoinFilterTimer: 392ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 18.564us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.384us - ProbeFindNextTime: 0ns - ProbeRows: 6.466K (6466) - ProbeTime: 704.12us - ProbeWhenBuildSideOutputTime: 52.293us - ProbeWhenProbeSideOutputTime: 14.161us - ProbeWhenProcessHashTableTime: 144.45us - ProbeWhenSearchHashTableTime: 115.392us - ProjectionTime: 208.821us - RowsProduced: 1.873K (1873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s117ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 617ns - DeserializeAndMergeTime: 0ns - ExecTime: 716.11us - GetResultsTime: 682.428us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 60.950us - HashTableSize: 6.466K (6466) - InsertKeysToColumnTime: 383.561us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.645us - ProjectionTime: 0ns - RowsProduced: 6.466K (6466) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s267ms PipelineXTask (index=5):(Active: 2.535ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.358ms - CloseTime: 17.813us - GetBlockTime: 1.719ms - OpenTime: 8.13us - PrepareTime: 145.169us - SinkTime: 598.857us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.508ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.76ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 582.96us - CloseTime: 654ns - DeserializeAndMergeTime: 0ns - ExecTime: 677.583us - ExprTime: 17.289us - HashTableComputeTime: 468.947us - HashTableEmplaceTime: 351.550us - HashTableInputCount: 2.272K (2272) - InputRows: 2.272K (2272) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 79.889us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.232us - ExecTime: 988.264us - InitProbeSideTime: 254.209us - JoinFilterTimer: 541ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 21.747us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 723ns - ProbeFindNextTime: 0ns - ProbeRows: 6.363K (6363) - ProbeTime: 720.929us - ProbeWhenBuildSideOutputTime: 46.315us - ProbeWhenProbeSideOutputTime: 7.634us - ProbeWhenProcessHashTableTime: 217.74us - ProbeWhenSearchHashTableTime: 130.637us - ProjectionTime: 221.106us - RowsProduced: 2.272K (2272) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s117ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 583ns - DeserializeAndMergeTime: 0ns - ExecTime: 768.58us - GetResultsTime: 740.977us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 53.430us - HashTableSize: 6.363K (6363) - InsertKeysToColumnTime: 357.888us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.997us - ProjectionTime: 0ns - RowsProduced: 6.363K (6363) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s274ms PipelineXTask (index=9):(Active: 2.94ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.982ms - CloseTime: 19.4us - GetBlockTime: 1.395ms - OpenTime: 5.60us - PrepareTime: 82.804us - SinkTime: 550.20us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.65ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.987ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 532.654us - CloseTime: 969ns - DeserializeAndMergeTime: 0ns - ExecTime: 567.645us - ExprTime: 4.89us - HashTableComputeTime: 450.499us - HashTableEmplaceTime: 355.898us - HashTableInputCount: 1.974K (1974) - InputRows: 1.974K (1974) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 18.668us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 15.3us - ExecTime: 829.341us - InitProbeSideTime: 185.989us - JoinFilterTimer: 376ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.405us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.169us - ProbeFindNextTime: 0ns - ProbeRows: 6.427K (6427) - ProbeTime: 609.675us - ProbeWhenBuildSideOutputTime: 79.264us - ProbeWhenProbeSideOutputTime: 8.274us - ProbeWhenProcessHashTableTime: 122.278us - ProbeWhenSearchHashTableTime: 159.97us - ProjectionTime: 175.683us - RowsProduced: 1.974K (1974) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s117ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 581ns - DeserializeAndMergeTime: 0ns - ExecTime: 593.113us - GetResultsTime: 571.507us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 65.595us - HashTableSize: 6.427K (6427) - InsertKeysToColumnTime: 327.966us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.261us - ProjectionTime: 0ns - RowsProduced: 6.427K (6427) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s268ms PipelineXTask (index=13):(Active: 2.257ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.132ms - CloseTime: 16.922us - GetBlockTime: 1.522ms - OpenTime: 3.849us - PrepareTime: 98.784us - SinkTime: 581.546us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.232ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.560ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 569.212us - CloseTime: 1.463us - DeserializeAndMergeTime: 0ns - ExecTime: 600.119us - ExprTime: 4.575us - HashTableComputeTime: 486.750us - HashTableEmplaceTime: 378.433us - HashTableInputCount: 1.779K (1779) - InputRows: 1.779K (1779) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 18.627us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 12.139us - ExecTime: 821.973us - InitProbeSideTime: 232.458us - JoinFilterTimer: 310ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 18.978us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.181us - ProbeFindNextTime: 0ns - ProbeRows: 6.272K (6272) - ProbeTime: 645.775us - ProbeWhenBuildSideOutputTime: 67.546us - ProbeWhenProbeSideOutputTime: 10.237us - ProbeWhenProcessHashTableTime: 75.911us - ProbeWhenSearchHashTableTime: 192.99us - ProjectionTime: 131.352us - RowsProduced: 1.779K (1779) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s117ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 715ns - DeserializeAndMergeTime: 0ns - ExecTime: 725.953us - GetResultsTime: 702.604us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 73.739us - HashTableSize: 6.272K (6272) - InsertKeysToColumnTime: 392.918us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.90us - ProjectionTime: 0ns - RowsProduced: 6.272K (6272) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s270ms PipelineXTask (index=17):(Active: 1.647ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.474ms - CloseTime: 9.549us - GetBlockTime: 1.100ms - OpenTime: 3.953us - PrepareTime: 152.832us - SinkTime: 347.823us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.629ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.814ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 332.180us - CloseTime: 824ns - DeserializeAndMergeTime: 0ns - ExecTime: 425.14us - ExprTime: 2.926us - HashTableComputeTime: 269.138us - HashTableEmplaceTime: 178.647us - HashTableInputCount: 2.089K (2089) - InputRows: 2.089K (2089) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 77.403us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 6.499us - ExecTime: 656.501us - InitProbeSideTime: 153.756us - JoinFilterTimer: 385ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 25.45us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.44us - ProbeFindNextTime: 0ns - ProbeRows: 6.399K (6399) - ProbeTime: 476.590us - ProbeWhenBuildSideOutputTime: 47.923us - ProbeWhenProbeSideOutputTime: 10.573us - ProbeWhenProcessHashTableTime: 94.309us - ProbeWhenSearchHashTableTime: 122.723us - ProjectionTime: 140.983us - RowsProduced: 2.089K (2089) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s117ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 413ns - DeserializeAndMergeTime: 0ns - ExecTime: 477.783us - GetResultsTime: 460.422us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 51.266us - HashTableSize: 6.399K (6399) - InsertKeysToColumnTime: 241.789us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.892us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s263ms PipelineXTask (index=21):(Active: 2.163ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.998ms - CloseTime: 28.648us - GetBlockTime: 1.388ms - OpenTime: 8.323us - PrepareTime: 120.324us - SinkTime: 563.613us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.124ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.241ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 541.904us - CloseTime: 7.463us - DeserializeAndMergeTime: 0ns - ExecTime: 592.353us - ExprTime: 4.896us - HashTableComputeTime: 445.772us - HashTableEmplaceTime: 351.790us - HashTableInputCount: 2.127K (2127) - InputRows: 2.127K (2127) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 23.827us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 17.694us - ExecTime: 838.848us - InitProbeSideTime: 194.950us - JoinFilterTimer: 615ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.564us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.238us - ProbeFindNextTime: 0ns - ProbeRows: 6.265K (6265) - ProbeTime: 588.950us - ProbeWhenBuildSideOutputTime: 41.913us - ProbeWhenProbeSideOutputTime: 7.476us - ProbeWhenProcessHashTableTime: 160.680us - ProbeWhenSearchHashTableTime: 115.793us - ProjectionTime: 198.890us - RowsProduced: 2.127K (2127) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s119ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 697ns - DeserializeAndMergeTime: 0ns - ExecTime: 579.707us - GetResultsTime: 555.930us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 47.878us - HashTableSize: 6.265K (6265) - InsertKeysToColumnTime: 313.881us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.858us - ProjectionTime: 0ns - RowsProduced: 6.265K (6265) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s268ms PipelineXTask (index=25):(Active: 1.821ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.681ms - CloseTime: 28.950us - GetBlockTime: 1.246ms - OpenTime: 7.797us - PrepareTime: 97.227us - SinkTime: 401.300us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.783ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.306ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 392.855us - CloseTime: 884ns - DeserializeAndMergeTime: 0ns - ExecTime: 432.708us - ExprTime: 4.233us - HashTableComputeTime: 324.421us - HashTableEmplaceTime: 234.894us - HashTableInputCount: 1.783K (1783) - InputRows: 1.783K (1783) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 32.358us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 24.707us - ExecTime: 757.761us - InitProbeSideTime: 211.351us - JoinFilterTimer: 290ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 22.167us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.468us - ProbeFindNextTime: 0ns - ProbeRows: 6.407K (6407) - ProbeTime: 512.647us - ProbeWhenBuildSideOutputTime: 39.758us - ProbeWhenProbeSideOutputTime: 8.621us - ProbeWhenProcessHashTableTime: 82.837us - ProbeWhenSearchHashTableTime: 119.702us - ProjectionTime: 188.562us - RowsProduced: 1.783K (1783) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s119ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 755ns - DeserializeAndMergeTime: 0ns - ExecTime: 533.646us - GetResultsTime: 506.551us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 49.402us - HashTableSize: 6.407K (6407) - InsertKeysToColumnTime: 257.967us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.648us - ProjectionTime: 0ns - RowsProduced: 6.407K (6407) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s268ms PipelineXTask (index=29):(Active: 1.715ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.607ms - CloseTime: 27.16us - GetBlockTime: 1.63ms - OpenTime: 5.473us - PrepareTime: 70.72us - SinkTime: 510.660us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.678ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.473ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 503.203us - CloseTime: 3.226us - DeserializeAndMergeTime: 0ns - ExecTime: 529.230us - ExprTime: 3.806us - HashTableComputeTime: 447.705us - HashTableEmplaceTime: 344.444us - HashTableInputCount: 1.949K (1949) - InputRows: 1.949K (1949) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 16.296us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 19.883us - ExecTime: 588.472us - InitProbeSideTime: 179.251us - JoinFilterTimer: 193ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.756us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.11us - ProbeFindNextTime: 0ns - ProbeRows: 6.381K (6381) - ProbeTime: 418.655us - ProbeWhenBuildSideOutputTime: 25.575us - ProbeWhenProbeSideOutputTime: 4.444us - ProbeWhenProcessHashTableTime: 96.287us - ProbeWhenSearchHashTableTime: 79.130us - ProjectionTime: 123.678us - RowsProduced: 1.949K (1949) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s120ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 921ns - DeserializeAndMergeTime: 0ns - ExecTime: 514.784us - GetResultsTime: 494.710us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 33.652us - HashTableSize: 6.381K (6381) - InsertKeysToColumnTime: 285.257us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.455us - ProjectionTime: 0ns - RowsProduced: 6.381K (6381) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s271ms PipelineXTask (index=33):(Active: 2.594ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.359ms - CloseTime: 17.595us - GetBlockTime: 1.632ms - OpenTime: 4.766us - PrepareTime: 201.922us - SinkTime: 695.877us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.568ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.394ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 677.530us - CloseTime: 803ns - DeserializeAndMergeTime: 0ns - ExecTime: 710.523us - ExprTime: 10.904us - HashTableComputeTime: 568.463us - HashTableEmplaceTime: 437.134us - HashTableInputCount: 2.152K (2152) - InputRows: 2.152K (2152) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 16.228us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.217us - ExecTime: 1.32ms - InitProbeSideTime: 220.826us - JoinFilterTimer: 268ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 15.81us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.278us - ProbeFindNextTime: 0ns - ProbeRows: 6.275K (6275) - ProbeTime: 751.204us - ProbeWhenBuildSideOutputTime: 78.904us - ProbeWhenProbeSideOutputTime: 11.313us - ProbeWhenProcessHashTableTime: 164.801us - ProbeWhenSearchHashTableTime: 194.136us - ProjectionTime: 240.386us - RowsProduced: 2.152K (2152) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s117ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 516ns - DeserializeAndMergeTime: 0ns - ExecTime: 632.355us - GetResultsTime: 600.280us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 59.524us - HashTableSize: 6.275K (6275) - InsertKeysToColumnTime: 335.390us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.601us - ProjectionTime: 0ns - RowsProduced: 6.275K (6275) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s268ms PipelineXTask (index=37):(Active: 1.596ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.455ms - CloseTime: 13.655us - GetBlockTime: 1.56ms - OpenTime: 10.67us - PrepareTime: 109.363us - SinkTime: 361.76us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.571ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.523ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 353.896us - CloseTime: 622ns - DeserializeAndMergeTime: 0ns - ExecTime: 390.414us - ExprTime: 4.110us - HashTableComputeTime: 295.742us - HashTableEmplaceTime: 222.201us - HashTableInputCount: 1.768K (1768) - InputRows: 1.768K (1768) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 29.835us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.500us - ExecTime: 648.128us - InitProbeSideTime: 171.145us - JoinFilterTimer: 351ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.166us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 742ns - ProbeFindNextTime: 0ns - ProbeRows: 6.412K (6412) - ProbeTime: 474.33us - ProbeWhenBuildSideOutputTime: 51.89us - ProbeWhenProbeSideOutputTime: 8.813us - ProbeWhenProcessHashTableTime: 76.281us - ProbeWhenSearchHashTableTime: 127.775us - ProjectionTime: 132.147us - RowsProduced: 1.768K (1768) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s120ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 517ns - DeserializeAndMergeTime: 0ns - ExecTime: 437.852us - GetResultsTime: 419.492us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 43.7us - HashTableSize: 6.412K (6412) - InsertKeysToColumnTime: 221.733us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.940us - ProjectionTime: 0ns - RowsProduced: 6.412K (6412) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s267ms PipelineXTask (index=41):(Active: 2.209ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.64ms - CloseTime: 15.24us - GetBlockTime: 1.455ms - OpenTime: 8.787us - PrepareTime: 114.173us - SinkTime: 557.438us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.182ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.284ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 548.336us - CloseTime: 1.130us - DeserializeAndMergeTime: 0ns - ExecTime: 583.492us - ExprTime: 5.671us - HashTableComputeTime: 455.57us - HashTableEmplaceTime: 343.665us - HashTableInputCount: 1.876K (1876) - InputRows: 1.876K (1876) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 26.550us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.637us - ExecTime: 840.573us - InitProbeSideTime: 225.979us - JoinFilterTimer: 379ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 18.370us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.386us - ProbeFindNextTime: 0ns - ProbeRows: 6.399K (6399) - ProbeTime: 596.15us - ProbeWhenBuildSideOutputTime: 41.679us - ProbeWhenProbeSideOutputTime: 7.915us - ProbeWhenProcessHashTableTime: 138.328us - ProbeWhenSearchHashTableTime: 119.69us - ProjectionTime: 203.135us - RowsProduced: 1.876K (1876) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s119ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 495ns - DeserializeAndMergeTime: 0ns - ExecTime: 665.603us - GetResultsTime: 615.93us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 49.273us - HashTableSize: 6.399K (6399) - InsertKeysToColumnTime: 323.375us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 33.901us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s271ms PipelineXTask (index=45):(Active: 2.641ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.501ms - CloseTime: 15.850us - GetBlockTime: 1.820ms - OpenTime: 5.153us - PrepareTime: 112.633us - SinkTime: 645.169us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.616ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.729ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 618.353us - CloseTime: 1.260us - DeserializeAndMergeTime: 0ns - ExecTime: 687.74us - ExprTime: 5.389us - HashTableComputeTime: 519.373us - HashTableEmplaceTime: 398.786us - HashTableInputCount: 2.481K (2481) - InputRows: 2.481K (2481) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 52.994us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 11.235us - ExecTime: 1.112ms - InitProbeSideTime: 270.537us - JoinFilterTimer: 323ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 12.861us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.237us - ProbeFindNextTime: 0ns - ProbeRows: 6.442K (6442) - ProbeTime: 781.277us - ProbeWhenBuildSideOutputTime: 59.636us - ProbeWhenProbeSideOutputTime: 10.724us - ProbeWhenProcessHashTableTime: 226.357us - ProbeWhenSearchHashTableTime: 146.735us - ProjectionTime: 292.833us - RowsProduced: 2.481K (2481) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s123ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 643ns - DeserializeAndMergeTime: 0ns - ExecTime: 734.683us - GetResultsTime: 703.105us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 50.728us - HashTableSize: 6.442K (6442) - InsertKeysToColumnTime: 354.863us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.812us - ProjectionTime: 0ns - RowsProduced: 6.442K (6442) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s266ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 633.169us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 546.17us - CloseTime: 7.38us - GetBlockTime: 96.831us - OpenTime: 2.797us - PrepareTime: 72.226us - SinkTime: 386.837us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 608.935us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.100ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.599us - BuildRows: 1.874K (1874) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 159.563us - BuildTableInsertTime: 114.753us - BuildTableTime: 117.146us - CloseTime: 0ns - ExecTime: 410.379us - InputRows: 1.873K (1873) - MemoryUsage: - BuildBlocks: 142.66 KB - BuildKeyArena: 48.00 KB - HashTable: 25.15 KB - PeakMemoryUsage: 211.80 KB - OpenTime: 26.478us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.411us - RuntimeFilterComputeTime: 34.92us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 72.28 KB - CloseTime: 5.387us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 251.272us - ExecTime: 117.628us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.94 KB - MemoryUsage: - Blocks: 90.72 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 20.260us - ProjectionTime: 0ns - RowsProduced: 1.873K (1873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s389ms PipelineXTask (index=6):(Active: 737.145us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 617.892us - CloseTime: 9.370us - GetBlockTime: 99.954us - OpenTime: 2.307us - PrepareTime: 102.102us - SinkTime: 429.522us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 690.401us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.812ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.500us - BuildRows: 2.273K (2273) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 230.860us - BuildTableInsertTime: 95.517us - BuildTableTime: 97.737us - CloseTime: 0ns - ExecTime: 462.528us - InputRows: 2.272K (2272) - MemoryUsage: - BuildBlocks: 173.05 KB - BuildKeyArena: 56.00 KB - HashTable: 27.10 KB - PeakMemoryUsage: 252.15 KB - OpenTime: 35.556us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.824us - RuntimeFilterComputeTime: 30.864us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 87.51 KB - CloseTime: 8.37us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 278.355us - ExecTime: 134.737us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.94 KB - MemoryUsage: - Blocks: 159.44 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 31.18us - ProjectionTime: 0ns - RowsProduced: 2.272K (2272) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s390ms PipelineXTask (index=10):(Active: 742.444us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 576.320us - CloseTime: 5.972us - GetBlockTime: 135.562us - OpenTime: 2.91us - PrepareTime: 151.631us - SinkTime: 372.355us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 718.235us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.716ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.312us - BuildRows: 1.975K (1975) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 174.912us - BuildTableInsertTime: 117.451us - BuildTableTime: 119.690us - CloseTime: 0ns - ExecTime: 396.114us - InputRows: 1.974K (1974) - MemoryUsage: - BuildBlocks: 150.34 KB - BuildKeyArena: 48.00 KB - HashTable: 25.65 KB - PeakMemoryUsage: 219.98 KB - OpenTime: 26.639us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.42us - RuntimeFilterComputeTime: 23.90us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 74.87 KB - CloseTime: 4.866us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 263.821us - ExecTime: 146.836us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.94 KB - MemoryUsage: - Blocks: 84.44 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 21.76us - ProjectionTime: 0ns - RowsProduced: 1.974K (1974) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s386ms PipelineXTask (index=14):(Active: 677.91us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 588.318us - CloseTime: 4.31us - GetBlockTime: 132.125us - OpenTime: 3.853us - PrepareTime: 72.116us - SinkTime: 368.711us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 649.881us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.709ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.479us - BuildRows: 1.78K (1780) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 202.108us - BuildTableInsertTime: 91.619us - BuildTableTime: 93.575us - CloseTime: 0ns - ExecTime: 387.859us - InputRows: 1.779K (1779) - MemoryUsage: - BuildBlocks: 135.50 KB - BuildKeyArena: 44.00 KB - HashTable: 16.70 KB - PeakMemoryUsage: 192.19 KB - OpenTime: 21.426us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.959us - RuntimeFilterComputeTime: 20.178us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 69.64 KB - CloseTime: 3.204us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 295.105us - ExecTime: 147.419us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 31.19 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 20.78 KB - OpenTime: 18.135us - ProjectionTime: 0ns - RowsProduced: 1.779K (1779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s389ms PipelineXTask (index=18):(Active: 753.745us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 656.745us - CloseTime: 4.734us - GetBlockTime: 84.760us - OpenTime: 6.765us - PrepareTime: 78.896us - SinkTime: 478.607us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 728.456us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.750ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.296us - BuildRows: 2.09K (2090) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 258.63us - BuildTableInsertTime: 104.586us - BuildTableTime: 106.401us - CloseTime: 0ns - ExecTime: 474.419us - InputRows: 2.089K (2089) - MemoryUsage: - BuildBlocks: 159.12 KB - BuildKeyArena: 52.00 KB - HashTable: 26.21 KB - PeakMemoryUsage: 233.32 KB - OpenTime: 19.931us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.969us - RuntimeFilterComputeTime: 22.746us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 80.18 KB - CloseTime: 3.473us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 266.527us - ExecTime: 116.998us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.31 KB - MemoryUsage: - Blocks: 120.56 KB - PeakMemoryUsage: 21.53 KB - OpenTime: 35.394us - ProjectionTime: 0ns - RowsProduced: 2.089K (2089) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s389ms PipelineXTask (index=22):(Active: 818.23us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 706.711us - CloseTime: 5.174us - GetBlockTime: 166.932us - OpenTime: 3.816us - PrepareTime: 95.777us - SinkTime: 424.451us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 788.27us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.20ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.220us - BuildRows: 2.128K (2128) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 211.197us - BuildTableInsertTime: 130.510us - BuildTableTime: 132.604us - CloseTime: 0ns - ExecTime: 453.738us - InputRows: 2.127K (2127) - MemoryUsage: - BuildBlocks: 162.02 KB - BuildKeyArena: 52.00 KB - HashTable: 26.39 KB - PeakMemoryUsage: 236.40 KB - OpenTime: 32.398us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.328us - RuntimeFilterComputeTime: 19.170us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 78.97 KB - CloseTime: 3.843us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 279.604us - ExecTime: 194.576us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 56.31 KB - MemoryUsage: - Blocks: 84.44 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 31.202us - ProjectionTime: 0ns - RowsProduced: 2.127K (2127) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s389ms PipelineXTask (index=26):(Active: 649.290us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 530.247us - CloseTime: 7.713us - GetBlockTime: 118.376us - OpenTime: 3.344us - PrepareTime: 101.861us - SinkTime: 347.239us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 623.644us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.267ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.913us - BuildRows: 1.784K (1784) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 142.895us - BuildTableInsertTime: 85.35us - BuildTableTime: 88.710us - CloseTime: 0ns - ExecTime: 365.921us - InputRows: 1.783K (1783) - MemoryUsage: - BuildBlocks: 135.81 KB - BuildKeyArena: 44.00 KB - HashTable: 16.71 KB - PeakMemoryUsage: 192.52 KB - OpenTime: 21.700us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.118us - RuntimeFilterComputeTime: 38.999us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 69.99 KB - CloseTime: 5.782us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 249.268us - ExecTime: 136.573us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 27.94 KB - MemoryUsage: - Blocks: 89.47 KB - PeakMemoryUsage: 27.94 KB - OpenTime: 18.718us - ProjectionTime: 0ns - RowsProduced: 1.783K (1783) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s389ms PipelineXTask (index=30):(Active: 656.900us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 566.962us - CloseTime: 11.862us - GetBlockTime: 137.373us - OpenTime: 2.637us - PrepareTime: 69.767us - SinkTime: 357.615us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 626.623us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.614ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.23us - BuildRows: 1.95K (1950) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 166.696us - BuildTableInsertTime: 92.332us - BuildTableTime: 94.67us - CloseTime: 0ns - ExecTime: 386.542us - InputRows: 1.949K (1949) - MemoryUsage: - BuildBlocks: 148.45 KB - BuildKeyArena: 48.00 KB - HashTable: 25.53 KB - PeakMemoryUsage: 217.96 KB - OpenTime: 31.701us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.892us - RuntimeFilterComputeTime: 19.364us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 74.94 KB - CloseTime: 10.747us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 272.46us - ExecTime: 155.921us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.94 KB - MemoryUsage: - Blocks: 82.44 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 16.153us - ProjectionTime: 0ns - RowsProduced: 1.949K (1949) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s390ms PipelineXTask (index=34):(Active: 674.656us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 579.740us - CloseTime: 2.914us - GetBlockTime: 89.956us - OpenTime: 1.797us - PrepareTime: 84.2us - SinkTime: 418.871us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 653.337us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.130ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.204us - BuildRows: 2.153K (2153) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 218.406us - BuildTableInsertTime: 126.108us - BuildTableTime: 127.676us - CloseTime: 0ns - ExecTime: 448.647us - InputRows: 2.152K (2152) - MemoryUsage: - BuildBlocks: 163.92 KB - BuildKeyArena: 52.00 KB - HashTable: 26.52 KB - PeakMemoryUsage: 238.43 KB - OpenTime: 33.287us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.708us - RuntimeFilterComputeTime: 22.36us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 81.68 KB - CloseTime: 2.213us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 236.704us - ExecTime: 105.788us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.94 KB - MemoryUsage: - Blocks: 85.34 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 21.430us - ProjectionTime: 0ns - RowsProduced: 2.152K (2152) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s387ms PipelineXTask (index=38):(Active: 677.750us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 604.905us - CloseTime: 4.206us - GetBlockTime: 124.541us - OpenTime: 3.337us - PrepareTime: 58.276us - SinkTime: 403.396us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 653.548us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.471ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.389us - BuildRows: 1.769K (1769) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 209.688us - BuildTableInsertTime: 104.520us - BuildTableTime: 106.885us - CloseTime: 0ns - ExecTime: 419.658us - InputRows: 1.768K (1768) - MemoryUsage: - BuildBlocks: 134.66 KB - BuildKeyArena: 44.00 KB - HashTable: 16.64 KB - PeakMemoryUsage: 191.29 KB - OpenTime: 19.658us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.795us - RuntimeFilterComputeTime: 19.539us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 69.67 KB - CloseTime: 3.409us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 217.748us - ExecTime: 140.16us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.19 KB - MemoryUsage: - Blocks: 125.96 KB - PeakMemoryUsage: 20.78 KB - OpenTime: 19.775us - ProjectionTime: 0ns - RowsProduced: 1.768K (1768) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s389ms PipelineXTask (index=42):(Active: 764.351us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 650.115us - CloseTime: 5.62us - GetBlockTime: 225.310us - OpenTime: 4.292us - PrepareTime: 98.878us - SinkTime: 338.330us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 611.189us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.191ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.443us - BuildRows: 1.877K (1877) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 163.167us - BuildTableInsertTime: 88.603us - BuildTableTime: 90.894us - CloseTime: 0ns - ExecTime: 369.762us - InputRows: 1.876K (1876) - MemoryUsage: - BuildBlocks: 142.88 KB - BuildKeyArena: 48.00 KB - HashTable: 25.17 KB - PeakMemoryUsage: 212.04 KB - OpenTime: 34.288us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.736us - RuntimeFilterComputeTime: 21.342us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 72.64 KB - CloseTime: 4.55us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 240.274us - ExecTime: 247.338us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.94 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 22.807us - ProjectionTime: 0ns - RowsProduced: 1.876K (1876) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s391ms PipelineXTask (index=46):(Active: 770.275us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 705.182us - CloseTime: 7.196us - GetBlockTime: 88.311us - OpenTime: 2.708us - PrepareTime: 48.911us - SinkTime: 550.191us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 746.341us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.808ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.390us - BuildRows: 2.482K (2482) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 207.773us - BuildTableInsertTime: 151.68us - BuildTableTime: 154.540us - CloseTime: 0ns - ExecTime: 561.887us - InputRows: 2.481K (2481) - MemoryUsage: - BuildBlocks: 188.97 KB - BuildKeyArena: 60.00 KB - HashTable: 28.12 KB - PeakMemoryUsage: 273.09 KB - OpenTime: 14.202us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 123.278us - RuntimeFilterComputeTime: 20.678us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 22 - BytesReceived: 95.15 KB - CloseTime: 5.549us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 310.679us - ExecTime: 100.324us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.56 KB - MemoryUsage: - Blocks: 117.93 KB - PeakMemoryUsage: 20.78 KB - OpenTime: 12.105us - ProjectionTime: 0ns - RowsProduced: 2.481K (2481) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s390ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 2.681ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.422ms - CloseTime: 19.106us - GetBlockTime: 62.972us - OpenTime: 3.147us - PrepareTime: 230.358us - SinkTime: 2.313ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.652ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.460ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 5.594us - DeserializeAndMergeTime: 82.974us - ExecTime: 2.336ms - ExprTime: 0ns - HashTableComputeTime: 2.181ms - HashTableEmplaceTime: 1.905ms - HashTableInputCount: 6.466K (6466) - InputRows: 6.466K (6466) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.300ms - OpenTime: 19.261us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.419us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 224.770us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 420.00 KB - PeakMemoryUsage: 421.50 KB - OpenTime: 156.589us - ProjectionTime: 0ns - RowsProduced: 6.466K (6466) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s157ms PipelineXTask (index=7):(Active: 2.771ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.701ms - CloseTime: 13.680us - GetBlockTime: 66.490us - OpenTime: 2.714us - PrepareTime: 49.118us - SinkTime: 2.583ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.747ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.790ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 4.605us - DeserializeAndMergeTime: 72.233us - ExecTime: 2.600ms - ExprTime: 0ns - HashTableComputeTime: 2.430ms - HashTableEmplaceTime: 2.167ms - HashTableInputCount: 6.363K (6363) - InputRows: 6.363K (6363) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.567ms - OpenTime: 15.453us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 8.5us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 79.425us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 252.00 KB - PeakMemoryUsage: 253.50 KB - OpenTime: 12.418us - ProjectionTime: 0ns - RowsProduced: 6.363K (6363) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s167ms PipelineXTask (index=11):(Active: 2.118ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.45ms - CloseTime: 11.918us - GetBlockTime: 63.141us - OpenTime: 4.327us - PrepareTime: 50.571us - SinkTime: 1.920ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.90ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.832ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 4.317us - DeserializeAndMergeTime: 79.91us - ExecTime: 1.940ms - ExprTime: 0ns - HashTableComputeTime: 1.768ms - HashTableEmplaceTime: 1.519ms - HashTableInputCount: 6.427K (6427) - InputRows: 6.427K (6427) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.906ms - OpenTime: 17.635us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.933us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 80.464us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 16.799us - ProjectionTime: 0ns - RowsProduced: 6.427K (6427) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s173ms PipelineXTask (index=15):(Active: 2.575ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.488ms - CloseTime: 29.378us - GetBlockTime: 74.881us - OpenTime: 3.554us - PrepareTime: 48.16us - SinkTime: 2.352ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.531ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.651ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 15.492us - DeserializeAndMergeTime: 88.180us - ExecTime: 2.383ms - ExprTime: 0ns - HashTableComputeTime: 2.113ms - HashTableEmplaceTime: 1.791ms - HashTableInputCount: 6.272K (6272) - InputRows: 6.272K (6272) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.334ms - OpenTime: 19.406us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.335us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 93.596us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 252.00 KB - PeakMemoryUsage: 253.29 KB - OpenTime: 12.655us - ProjectionTime: 0ns - RowsProduced: 6.272K (6272) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s167ms PipelineXTask (index=19):(Active: 1.783ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.710ms - CloseTime: 9.651us - GetBlockTime: 59.641us - OpenTime: 4.292us - PrepareTime: 53.990us - SinkTime: 1.568ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.721ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.961ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 2.786us - DeserializeAndMergeTime: 55.717us - ExecTime: 1.594ms - ExprTime: 0ns - HashTableComputeTime: 1.471ms - HashTableEmplaceTime: 1.261ms - HashTableInputCount: 6.399K (6399) - InputRows: 6.399K (6399) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.558ms - OpenTime: 25.20us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.66us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 77.163us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 420.00 KB - PeakMemoryUsage: 421.50 KB - OpenTime: 15.491us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s170ms PipelineXTask (index=23):(Active: 2.75ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.15ms - CloseTime: 8.550us - GetBlockTime: 61.967us - OpenTime: 5.762us - PrepareTime: 41.275us - SinkTime: 1.902ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.55ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.957ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 3.998us - DeserializeAndMergeTime: 57.358us - ExecTime: 1.918ms - ExprTime: 0ns - HashTableComputeTime: 1.768ms - HashTableEmplaceTime: 1.563ms - HashTableInputCount: 6.265K (6265) - InputRows: 6.265K (6265) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.880ms - OpenTime: 13.837us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 3.972us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.881us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 13.582us - ProjectionTime: 0ns - RowsProduced: 6.265K (6265) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s162ms PipelineXTask (index=27):(Active: 2.852ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.769ms - CloseTime: 8.395us - GetBlockTime: 80.840us - OpenTime: 4.172us - PrepareTime: 64.662us - SinkTime: 2.639ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.690ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.229ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 3.399us - DeserializeAndMergeTime: 65.730us - ExecTime: 2.656ms - ExprTime: 0ns - HashTableComputeTime: 2.523ms - HashTableEmplaceTime: 2.243ms - HashTableInputCount: 6.407K (6407) - InputRows: 6.407K (6407) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.625ms - OpenTime: 17.639us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.376us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 99.643us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 420.00 KB - PeakMemoryUsage: 421.50 KB - OpenTime: 20.32us - ProjectionTime: 0ns - RowsProduced: 6.407K (6407) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s125ms PipelineXTask (index=31):(Active: 2.222ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.95ms - CloseTime: 13.313us - GetBlockTime: 71.711us - OpenTime: 2.97us - PrepareTime: 104.881us - SinkTime: 1.967ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.195ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 93.322ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 3.196us - DeserializeAndMergeTime: 69.257us - ExecTime: 2.21ms - ExprTime: 0ns - HashTableComputeTime: 1.853ms - HashTableEmplaceTime: 1.643ms - HashTableInputCount: 6.381K (6381) - InputRows: 6.381K (6381) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.953ms - OpenTime: 52.595us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 9.276us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 97.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 252.00 KB - PeakMemoryUsage: 253.50 KB - OpenTime: 31.86us - ProjectionTime: 0ns - RowsProduced: 6.381K (6381) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s177ms PipelineXTask (index=35):(Active: 2.32ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.949ms - CloseTime: 25.711us - GetBlockTime: 47.756us - OpenTime: 5.126us - PrepareTime: 47.76us - SinkTime: 1.853ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.997ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.767ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 10.938us - DeserializeAndMergeTime: 67.121us - ExecTime: 1.876ms - ExprTime: 0ns - HashTableComputeTime: 1.695ms - HashTableEmplaceTime: 1.387ms - HashTableInputCount: 6.275K (6275) - InputRows: 6.275K (6275) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.842ms - OpenTime: 13.235us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.550us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.642us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 252.00 KB - PeakMemoryUsage: 253.50 KB - OpenTime: 18.654us - ProjectionTime: 0ns - RowsProduced: 6.275K (6275) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s168ms PipelineXTask (index=39):(Active: 3.235ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.146ms - CloseTime: 18.389us - GetBlockTime: 65.636us - OpenTime: 4.167us - PrepareTime: 60.799us - SinkTime: 3.34ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.207ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 109.255ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 3.301us - DeserializeAndMergeTime: 93.829us - ExecTime: 3.46ms - ExprTime: 0ns - HashTableComputeTime: 2.756ms - HashTableEmplaceTime: 2.406ms - HashTableInputCount: 6.412K (6412) - InputRows: 6.412K (6412) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 3.9ms - OpenTime: 12.61us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 13.410us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 102.822us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 420.00 KB - PeakMemoryUsage: 421.50 KB - OpenTime: 30.191us - ProjectionTime: 0ns - RowsProduced: 6.412K (6412) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s155ms PipelineXTask (index=43):(Active: 2.139ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.964ms - CloseTime: 15.152us - GetBlockTime: 47.890us - OpenTime: 2.603us - PrepareTime: 150.222us - SinkTime: 1.866ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.112ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.788ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 5.829us - DeserializeAndMergeTime: 57.990us - ExecTime: 1.983ms - ExprTime: 0ns - HashTableComputeTime: 1.701ms - HashTableEmplaceTime: 1.463ms - HashTableInputCount: 6.399K (6399) - InputRows: 6.399K (6399) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.850ms - OpenTime: 114.523us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 8.275us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 69.326us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 19.590us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s172ms PipelineXTask (index=47):(Active: 5.53ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.999ms - CloseTime: 5.441us - GetBlockTime: 52.390us - OpenTime: 4.342us - PrepareTime: 39.258us - SinkTime: 4.904ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.950ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.150ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 2.250us - DeserializeAndMergeTime: 53.201us - ExecTime: 4.917ms - ExprTime: 0ns - HashTableComputeTime: 4.814ms - HashTableEmplaceTime: 4.618ms - HashTableInputCount: 6.442K (6442) - InputRows: 6.442K (6442) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 4.892ms - OpenTime: 12.901us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 2.747us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 59.200us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 420.00 KB - PeakMemoryUsage: 421.50 KB - OpenTime: 9.676us - ProjectionTime: 0ns - RowsProduced: 6.442K (6442) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s88ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 871.615us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 700.621us - CloseTime: 16.338us - GetBlockTime: 124.252us - OpenTime: 2.343us - PrepareTime: 146.528us - SinkTime: 552.827us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 846.799us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.558ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.75 KB - CloseTime: 13.127us - CompressTime: 0ns - ExecTime: 673.309us - InputRows: 474 - LocalBytesSent: 11.40 KB - LocalSendTime: 74.697us - LocalSentRows: 251 - MemoryUsage: - PeakMemoryUsage: 39.06 KB - MergeBlockTime: 0ns - OpenTime: 107.995us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.314ms - RowsProduced: 474 - RpcAvgTime: 8.518ms - RpcCount: 12 - RpcMaxTime: 8.554ms - RpcMinTime: 8.406ms - RpcSumTime: 102.219ms - SerializeBatchTime: 35.374us - SplitBlockDistributeByChannelTime: 110.511us - SplitBlockHashComputeTime: 25.590us - UncompressedRowBatchSize: 10.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.251us - DeserializeAndMergeTime: 0ns - ExecTime: 138.797us - GetResultsTime: 118.694us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.587us - HashTableSize: 474 - InsertKeysToColumnTime: 39.368us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.851us - ProjectionTime: 0ns - RowsProduced: 474 - SerializeDataTime: 62.798us - SerializeResultTime: 122.320us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s390ms PipelineXTask (index=4):(Active: 1.491ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.319ms - CloseTime: 19.355us - GetBlockTime: 178.950us - OpenTime: 2.444us - PrepareTime: 145.737us - SinkTime: 1.115ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.334ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.104ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.77 KB - CloseTime: 15.115us - CompressTime: 0ns - ExecTime: 1.232ms - InputRows: 526 - LocalBytesSent: 12.21 KB - LocalSendTime: 90.751us - LocalSentRows: 275 - MemoryUsage: - PeakMemoryUsage: 42.19 KB - MergeBlockTime: 0ns - OpenTime: 102.693us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.463ms - RowsProduced: 526 - RpcAvgTime: 8.658ms - RpcCount: 12 - RpcMaxTime: 8.986ms - RpcMinTime: 8.390ms - RpcSumTime: 103.903ms - SerializeBatchTime: 56.198us - SplitBlockDistributeByChannelTime: 151.397us - SplitBlockHashComputeTime: 30.917us - UncompressedRowBatchSize: 11.86 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.575us - DeserializeAndMergeTime: 0ns - ExecTime: 195.175us - GetResultsTime: 171.561us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.55us - HashTableSize: 526 - InsertKeysToColumnTime: 35.543us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.782us - ProjectionTime: 0ns - RowsProduced: 526 - SerializeDataTime: 114.636us - SerializeResultTime: 175.629us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s389ms PipelineXTask (index=8):(Active: 836.760us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 664.851us - CloseTime: 12.454us - GetBlockTime: 115.577us - OpenTime: 2.727us - PrepareTime: 151.424us - SinkTime: 530.154us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 817.785us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.463ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.82 KB - CloseTime: 10.377us - CompressTime: 0ns - ExecTime: 649.599us - InputRows: 549 - LocalBytesSent: 12.55 KB - LocalSendTime: 69.198us - LocalSentRows: 279 - MemoryUsage: - PeakMemoryUsage: 42.56 KB - MergeBlockTime: 0ns - OpenTime: 109.774us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.714ms - RowsProduced: 549 - RpcAvgTime: 8.365ms - RpcCount: 12 - RpcMaxTime: 8.415ms - RpcMinTime: 8.141ms - RpcSumTime: 100.382ms - SerializeBatchTime: 49.620us - SplitBlockDistributeByChannelTime: 96.619us - SplitBlockHashComputeTime: 18.993us - UncompressedRowBatchSize: 12.88 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 514ns - DeserializeAndMergeTime: 0ns - ExecTime: 121.295us - GetResultsTime: 110.854us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.407us - HashTableSize: 549 - InsertKeysToColumnTime: 33.877us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.868us - ProjectionTime: 0ns - RowsProduced: 549 - SerializeDataTime: 60.794us - SerializeResultTime: 113.374us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s390ms PipelineXTask (index=12):(Active: 1.19ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 872.189us - CloseTime: 19.897us - GetBlockTime: 174.817us - OpenTime: 2.541us - PrepareTime: 120.582us - SinkTime: 675.297us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 991.971us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 725.652us DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.30 KB - CloseTime: 16.554us - CompressTime: 0ns - ExecTime: 786.794us - InputRows: 548 - LocalBytesSent: 12.70 KB - LocalSendTime: 67.433us - LocalSentRows: 285 - MemoryUsage: - PeakMemoryUsage: 43.69 KB - MergeBlockTime: 0ns - OpenTime: 96.131us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.619ms - RowsProduced: 548 - RpcAvgTime: 8.391ms - RpcCount: 12 - RpcMaxTime: 8.414ms - RpcMinTime: 8.347ms - RpcSumTime: 100.694ms - SerializeBatchTime: 48.444us - SplitBlockDistributeByChannelTime: 164.298us - SplitBlockHashComputeTime: 31.538us - UncompressedRowBatchSize: 12.49 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.3us - DeserializeAndMergeTime: 0ns - ExecTime: 181.607us - GetResultsTime: 168.782us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.277us - HashTableSize: 548 - InsertKeysToColumnTime: 51.883us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.659us - ProjectionTime: 0ns - RowsProduced: 548 - SerializeDataTime: 83.652us - SerializeResultTime: 172.220us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s392ms PipelineXTask (index=16):(Active: 1.131ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 949.31us - CloseTime: 19.270us - GetBlockTime: 128.880us - OpenTime: 1.545us - PrepareTime: 140.990us - SinkTime: 800.18us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.88ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 415.417us DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.21 KB - CloseTime: 15.237us - CompressTime: 0ns - ExecTime: 919.526us - InputRows: 530 - LocalBytesSent: 12.86 KB - LocalSendTime: 99.877us - LocalSentRows: 289 - MemoryUsage: - PeakMemoryUsage: 42.13 KB - MergeBlockTime: 0ns - OpenTime: 104.876us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.466ms - RowsProduced: 530 - RpcAvgTime: 9.508ms - RpcCount: 12 - RpcMaxTime: 9.743ms - RpcMinTime: 9.331ms - RpcSumTime: 114.96ms - SerializeBatchTime: 45.272us - SplitBlockDistributeByChannelTime: 105.479us - SplitBlockHashComputeTime: 20.140us - UncompressedRowBatchSize: 11.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.190us - DeserializeAndMergeTime: 0ns - ExecTime: 135.171us - GetResultsTime: 123.455us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.263us - HashTableSize: 530 - InsertKeysToColumnTime: 55.556us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.688us - ProjectionTime: 0ns - RowsProduced: 530 - SerializeDataTime: 53.715us - SerializeResultTime: 126.834us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s390ms PipelineXTask (index=20):(Active: 1.50ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 886.708us - CloseTime: 15.889us - GetBlockTime: 147.4us - OpenTime: 2.481us - PrepareTime: 141.321us - SinkTime: 718.993us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.27ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.707ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.07 KB - CloseTime: 12.343us - CompressTime: 0ns - ExecTime: 842.888us - InputRows: 495 - LocalBytesSent: 12.01 KB - LocalSendTime: 98.788us - LocalSentRows: 268 - MemoryUsage: - PeakMemoryUsage: 39.75 KB - MergeBlockTime: 0ns - OpenTime: 112.499us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.428ms - RowsProduced: 495 - RpcAvgTime: 8.496ms - RpcCount: 12 - RpcMaxTime: 8.650ms - RpcMinTime: 8.333ms - RpcSumTime: 101.958ms - SerializeBatchTime: 45.495us - SplitBlockDistributeByChannelTime: 135.449us - SplitBlockHashComputeTime: 21.40us - UncompressedRowBatchSize: 11.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.140us - DeserializeAndMergeTime: 0ns - ExecTime: 153.428us - GetResultsTime: 141.982us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.821us - HashTableSize: 495 - InsertKeysToColumnTime: 57.769us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.940us - ProjectionTime: 0ns - RowsProduced: 495 - SerializeDataTime: 66.411us - SerializeResultTime: 144.902us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s390ms PipelineXTask (index=24):(Active: 1.28ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 849.302us - CloseTime: 11.130us - GetBlockTime: 160.604us - OpenTime: 2.33us - PrepareTime: 161.709us - SinkTime: 647.989us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.8ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.903ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.93 KB - CloseTime: 8.903us - CompressTime: 0ns - ExecTime: 779.256us - InputRows: 546 - LocalBytesSent: 13.16 KB - LocalSendTime: 62.928us - LocalSentRows: 291 - MemoryUsage: - PeakMemoryUsage: 44.25 KB - MergeBlockTime: 0ns - OpenTime: 122.862us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.671ms - RowsProduced: 546 - RpcAvgTime: 8.398ms - RpcCount: 12 - RpcMaxTime: 8.419ms - RpcMinTime: 8.371ms - RpcSumTime: 100.786ms - SerializeBatchTime: 48.958us - SplitBlockDistributeByChannelTime: 150.363us - SplitBlockHashComputeTime: 21.974us - UncompressedRowBatchSize: 12.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.100us - DeserializeAndMergeTime: 0ns - ExecTime: 166.399us - GetResultsTime: 154.736us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.274us - HashTableSize: 546 - InsertKeysToColumnTime: 54.711us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.440us - ProjectionTime: 0ns - RowsProduced: 546 - SerializeDataTime: 85.478us - SerializeResultTime: 158.317us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s391ms PipelineXTask (index=28):(Active: 1.198ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.43ms - CloseTime: 14.100us - GetBlockTime: 159.934us - OpenTime: 1.639us - PrepareTime: 134.351us - SinkTime: 863.642us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.95ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.62ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.16 KB - CloseTime: 11.819us - CompressTime: 0ns - ExecTime: 975.419us - InputRows: 531 - LocalBytesSent: 12.73 KB - LocalSendTime: 89.327us - LocalSentRows: 278 - MemoryUsage: - PeakMemoryUsage: 41.81 KB - MergeBlockTime: 0ns - OpenTime: 100.987us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.301ms - RowsProduced: 531 - RpcAvgTime: 8.288ms - RpcCount: 12 - RpcMaxTime: 8.425ms - RpcMinTime: 8.64ms - RpcSumTime: 99.460ms - SerializeBatchTime: 51.891us - SplitBlockDistributeByChannelTime: 160.670us - SplitBlockHashComputeTime: 27.951us - UncompressedRowBatchSize: 12.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 983ns - DeserializeAndMergeTime: 0ns - ExecTime: 166.963us - GetResultsTime: 152.808us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.918us - HashTableSize: 531 - InsertKeysToColumnTime: 41.956us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.163us - ProjectionTime: 0ns - RowsProduced: 531 - SerializeDataTime: 91.597us - SerializeResultTime: 156.648us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s392ms PipelineXTask (index=32):(Active: 1.507ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.312ms - CloseTime: 18.763us - GetBlockTime: 160.220us - OpenTime: 15.987us - PrepareTime: 154.922us - SinkTime: 1.112ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.479ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 791.273us DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.19 KB - CloseTime: 14.882us - CompressTime: 0ns - ExecTime: 1.250ms - InputRows: 537 - LocalBytesSent: 12.57 KB - LocalSendTime: 130.884us - LocalSentRows: 279 - MemoryUsage: - PeakMemoryUsage: 42.81 KB - MergeBlockTime: 0ns - OpenTime: 124.27us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.411ms - RowsProduced: 537 - RpcAvgTime: 6.739ms - RpcCount: 12 - RpcMaxTime: 7.105ms - RpcMinTime: 6.474ms - RpcSumTime: 80.877ms - SerializeBatchTime: 64.337us - SplitBlockDistributeByChannelTime: 134.942us - SplitBlockHashComputeTime: 44.53us - UncompressedRowBatchSize: 12.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.375us - DeserializeAndMergeTime: 0ns - ExecTime: 166.634us - GetResultsTime: 153.983us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.14us - HashTableSize: 537 - InsertKeysToColumnTime: 52.663us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.974us - ProjectionTime: 0ns - RowsProduced: 537 - SerializeDataTime: 72.402us - SerializeResultTime: 157.779us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s394ms PipelineXTask (index=36):(Active: 966.482us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 821.41us - CloseTime: 13.262us - GetBlockTime: 113.951us - OpenTime: 3.322us - PrepareTime: 124.475us - SinkTime: 686.218us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 946.287us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.729ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.86 KB - CloseTime: 10.899us - CompressTime: 0ns - ExecTime: 790.423us - InputRows: 536 - LocalBytesSent: 12.36 KB - LocalSendTime: 82.271us - LocalSentRows: 277 - MemoryUsage: - PeakMemoryUsage: 42.13 KB - MergeBlockTime: 0ns - OpenTime: 94.227us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.169ms - RowsProduced: 536 - RpcAvgTime: 8.60ms - RpcCount: 12 - RpcMaxTime: 8.250ms - RpcMinTime: 7.946ms - RpcSumTime: 96.725ms - SerializeBatchTime: 51.109us - SplitBlockDistributeByChannelTime: 125.575us - SplitBlockHashComputeTime: 22.517us - UncompressedRowBatchSize: 12.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 755ns - DeserializeAndMergeTime: 0ns - ExecTime: 127.188us - GetResultsTime: 109.385us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.113us - HashTableSize: 536 - InsertKeysToColumnTime: 39.333us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.159us - ProjectionTime: 0ns - RowsProduced: 536 - SerializeDataTime: 57.139us - SerializeResultTime: 111.856us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s389ms PipelineXTask (index=40):(Active: 881.537us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 725.311us - CloseTime: 26.460us - GetBlockTime: 112.905us - OpenTime: 2.161us - PrepareTime: 122.765us - SinkTime: 595.363us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 848.725us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.897ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.11 KB - CloseTime: 21.33us - CompressTime: 0ns - ExecTime: 712.392us - InputRows: 515 - LocalBytesSent: 11.86 KB - LocalSendTime: 63.769us - LocalSentRows: 264 - MemoryUsage: - PeakMemoryUsage: 42.31 KB - MergeBlockTime: 0ns - OpenTime: 96.389us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.189ms - RowsProduced: 515 - RpcAvgTime: 6.325ms - RpcCount: 12 - RpcMaxTime: 6.504ms - RpcMinTime: 6.248ms - RpcSumTime: 75.906ms - SerializeBatchTime: 37.131us - SplitBlockDistributeByChannelTime: 106.659us - SplitBlockHashComputeTime: 14.826us - UncompressedRowBatchSize: 12.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.350us - DeserializeAndMergeTime: 0ns - ExecTime: 121.11us - GetResultsTime: 107.760us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.760us - HashTableSize: 515 - InsertKeysToColumnTime: 30.587us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.554us - ProjectionTime: 0ns - RowsProduced: 515 - SerializeDataTime: 60.547us - SerializeResultTime: 110.604us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s391ms PipelineXTask (index=44):(Active: 1.516ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.352ms - CloseTime: 22.189us - GetBlockTime: 134.958us - OpenTime: 2.848us - PrepareTime: 134.647us - SinkTime: 1.200ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.4ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.849ms DATA_STREAM_SINK_OPERATOR (id=173,dst_id=173): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.57 KB - CloseTime: 16.691us - CompressTime: 0ns - ExecTime: 1.320ms - InputRows: 532 - LocalBytesSent: 12.76 KB - LocalSendTime: 69.797us - LocalSentRows: 285 - MemoryUsage: - PeakMemoryUsage: 42.00 KB - MergeBlockTime: 0ns - OpenTime: 111.267us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.711ms - RowsProduced: 532 - RpcAvgTime: 8.318ms - RpcCount: 12 - RpcMaxTime: 8.701ms - RpcMinTime: 7.922ms - RpcSumTime: 99.820ms - SerializeBatchTime: 42.967us - SplitBlockDistributeByChannelTime: 130.844us - SplitBlockHashComputeTime: 20.491us - UncompressedRowBatchSize: 11.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.283us - DeserializeAndMergeTime: 0ns - ExecTime: 141.998us - GetResultsTime: 129.918us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.710us - HashTableSize: 532 - InsertKeysToColumnTime: 56.158us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.641us - ProjectionTime: 0ns - RowsProduced: 532 - SerializeDataTime: 57.561us - SerializeResultTime: 132.414us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s389ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.863ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.686ms - CloseTime: 20.859us - GetBlockTime: 1.234ms - OpenTime: 4.832us - PrepareTime: 146.90us - SinkTime: 412.985us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.833ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 727.351us AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 405.189us - CloseTime: 1.160us - DeserializeAndMergeTime: 0ns - ExecTime: 456.893us - ExprTime: 4.979us - HashTableComputeTime: 342.683us - HashTableEmplaceTime: 266.431us - HashTableInputCount: 1.689K (1689) - InputRows: 1.689K (1689) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 43.683us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 15.527us - ExecTime: 786.757us - InitProbeSideTime: 224.359us - JoinFilterTimer: 258ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.989us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.236us - ProbeFindNextTime: 0ns - ProbeRows: 6.35K (6350) - ProbeTime: 598.959us - ProbeWhenBuildSideOutputTime: 44.803us - ProbeWhenProbeSideOutputTime: 7.921us - ProbeWhenProcessHashTableTime: 114.175us - ProbeWhenSearchHashTableTime: 159.809us - ProjectionTime: 144.804us - RowsProduced: 1.689K (1689) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s267ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 1.390us - DeserializeAndMergeTime: 0ns - ExecTime: 519.852us - GetResultsTime: 459.56us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 47.710us - HashTableSize: 6.35K (6350) - InsertKeysToColumnTime: 256.207us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 44.904us - ProjectionTime: 0ns - RowsProduced: 6.35K (6350) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s121ms PipelineXTask (index=5):(Active: 2.185ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.29ms - CloseTime: 19.906us - GetBlockTime: 1.500ms - OpenTime: 4.505us - PrepareTime: 126.802us - SinkTime: 487.707us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.156ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.111ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 478.780us - CloseTime: 1.97us - DeserializeAndMergeTime: 0ns - ExecTime: 541.476us - ExprTime: 4.295us - HashTableComputeTime: 403.171us - HashTableEmplaceTime: 302.239us - HashTableInputCount: 2.103K (2103) - InputRows: 2.103K (2103) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 54.167us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.764us - ExecTime: 899.917us - InitProbeSideTime: 235.651us - JoinFilterTimer: 234ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 18.48us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.79us - ProbeFindNextTime: 0ns - ProbeRows: 6.271K (6271) - ProbeTime: 588.220us - ProbeWhenBuildSideOutputTime: 30.125us - ProbeWhenProbeSideOutputTime: 7.297us - ProbeWhenProcessHashTableTime: 147.95us - ProbeWhenSearchHashTableTime: 100.507us - ProjectionTime: 269.948us - RowsProduced: 2.103K (2103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s267ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 1.261us - DeserializeAndMergeTime: 0ns - ExecTime: 623.460us - GetResultsTime: 604.233us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 93.471us - HashTableSize: 6.271K (6271) - InsertKeysToColumnTime: 284.529us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.314us - ProjectionTime: 0ns - RowsProduced: 6.271K (6271) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s121ms PipelineXTask (index=9):(Active: 1.960ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.846ms - CloseTime: 22.294us - GetBlockTime: 1.343ms - OpenTime: 3.60us - PrepareTime: 84.609us - SinkTime: 473.64us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.926ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.181ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 464.97us - CloseTime: 4.620us - DeserializeAndMergeTime: 0ns - ExecTime: 493.575us - ExprTime: 5.68us - HashTableComputeTime: 382.690us - HashTableEmplaceTime: 294.26us - HashTableInputCount: 1.847K (1847) - InputRows: 1.847K (1847) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 17.568us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.10us - ExecTime: 858.301us - InitProbeSideTime: 264.427us - JoinFilterTimer: 537ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 15.555us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.399us - ProbeFindNextTime: 0ns - ProbeRows: 6.359K (6359) - ProbeTime: 648.244us - ProbeWhenBuildSideOutputTime: 51.770us - ProbeWhenProbeSideOutputTime: 9.43us - ProbeWhenProcessHashTableTime: 136.899us - ProbeWhenSearchHashTableTime: 126.859us - ProjectionTime: 170.712us - RowsProduced: 1.847K (1847) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s267ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 810ns - DeserializeAndMergeTime: 0ns - ExecTime: 514.577us - GetResultsTime: 492.99us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 63.526us - HashTableSize: 6.359K (6359) - InsertKeysToColumnTime: 255.2us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.109us - ProjectionTime: 0ns - RowsProduced: 6.359K (6359) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s121ms PipelineXTask (index=13):(Active: 2.675ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.556ms - CloseTime: 19.791us - GetBlockTime: 1.892ms - OpenTime: 6.571us - PrepareTime: 87.137us - SinkTime: 620.895us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.645ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 314.596us AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 610.107us - CloseTime: 3.454us - DeserializeAndMergeTime: 0ns - ExecTime: 637.212us - ExprTime: 5.312us - HashTableComputeTime: 522.396us - HashTableEmplaceTime: 364.22us - HashTableInputCount: 2.099K (2099) - InputRows: 2.099K (2099) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 15.628us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 12.78us - ExecTime: 1.210ms - InitProbeSideTime: 330.80us - JoinFilterTimer: 702ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 23.737us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.674us - ProbeFindNextTime: 0ns - ProbeRows: 6.402K (6402) - ProbeTime: 890.574us - ProbeWhenBuildSideOutputTime: 66.356us - ProbeWhenProbeSideOutputTime: 10.560us - ProbeWhenProcessHashTableTime: 210.323us - ProbeWhenSearchHashTableTime: 198.73us - ProjectionTime: 269.562us - RowsProduced: 2.099K (2099) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s264ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 922ns - DeserializeAndMergeTime: 0ns - ExecTime: 696.278us - GetResultsTime: 660.881us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 70.57us - HashTableSize: 6.402K (6402) - InsertKeysToColumnTime: 361.483us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.724us - ProjectionTime: 0ns - RowsProduced: 6.402K (6402) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s124ms PipelineXTask (index=17):(Active: 1.865ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.737ms - CloseTime: 20.767us - GetBlockTime: 1.202ms - OpenTime: 4.306us - PrepareTime: 99.34us - SinkTime: 508.210us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.837ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.961ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 499.104us - CloseTime: 1.72us - DeserializeAndMergeTime: 0ns - ExecTime: 526.866us - ExprTime: 4.897us - HashTableComputeTime: 439.755us - HashTableEmplaceTime: 345.494us - HashTableInputCount: 2.154K (2154) - InputRows: 2.154K (2154) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 19.116us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 16.345us - ExecTime: 825.191us - InitProbeSideTime: 182.330us - JoinFilterTimer: 430ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.758us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 901ns - ProbeFindNextTime: 0ns - ProbeRows: 6.262K (6262) - ProbeTime: 547.679us - ProbeWhenBuildSideOutputTime: 55.3us - ProbeWhenProbeSideOutputTime: 8.150us - ProbeWhenProcessHashTableTime: 145.377us - ProbeWhenSearchHashTableTime: 107.373us - ProjectionTime: 232.860us - RowsProduced: 2.154K (2154) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s263ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 599ns - DeserializeAndMergeTime: 0ns - ExecTime: 412.557us - GetResultsTime: 394.677us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 31.175us - HashTableSize: 6.262K (6262) - InsertKeysToColumnTime: 207.340us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.222us - ProjectionTime: 0ns - RowsProduced: 6.262K (6262) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s122ms PipelineXTask (index=21):(Active: 2.758ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.622ms - CloseTime: 29.708us - GetBlockTime: 1.803ms - OpenTime: 5.918us - PrepareTime: 96.400us - SinkTime: 781.613us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.719ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 158.53us AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 743.90us - CloseTime: 1.562us - DeserializeAndMergeTime: 0ns - ExecTime: 793.180us - ExprTime: 6.593us - HashTableComputeTime: 640.294us - HashTableEmplaceTime: 444.596us - HashTableInputCount: 1.762K (1762) - InputRows: 1.762K (1762) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 24.956us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 21.934us - ExecTime: 1.85ms - InitProbeSideTime: 233.992us - JoinFilterTimer: 723ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.207us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.353us - ProbeFindNextTime: 0ns - ProbeRows: 6.309K (6309) - ProbeTime: 758.493us - ProbeWhenBuildSideOutputTime: 69.715us - ProbeWhenProbeSideOutputTime: 17.872us - ProbeWhenProcessHashTableTime: 187.678us - ProbeWhenSearchHashTableTime: 160.599us - ProjectionTime: 276.541us - RowsProduced: 1.762K (1762) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s263ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 1.515us - DeserializeAndMergeTime: 0ns - ExecTime: 737.358us - GetResultsTime: 716.36us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 59.966us - HashTableSize: 6.309K (6309) - InsertKeysToColumnTime: 403.641us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.534us - ProjectionTime: 0ns - RowsProduced: 6.309K (6309) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s125ms PipelineXTask (index=25):(Active: 2.513ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.305ms - CloseTime: 23.543us - GetBlockTime: 1.657ms - OpenTime: 3.461us - PrepareTime: 176.846us - SinkTime: 616.948us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.481ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 699.950us AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 607.161us - CloseTime: 2.854us - DeserializeAndMergeTime: 0ns - ExecTime: 638.984us - ExprTime: 5.279us - HashTableComputeTime: 503.278us - HashTableEmplaceTime: 364.557us - HashTableInputCount: 2.457K (2457) - InputRows: 2.457K (2457) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 21.286us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 17.46us - ExecTime: 1.93ms - InitProbeSideTime: 237.58us - JoinFilterTimer: 480ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 22.918us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.560us - ProbeFindNextTime: 0ns - ProbeRows: 6.302K (6302) - ProbeTime: 795.349us - ProbeWhenBuildSideOutputTime: 77.815us - ProbeWhenProbeSideOutputTime: 11.657us - ProbeWhenProcessHashTableTime: 222.340us - ProbeWhenSearchHashTableTime: 178.388us - ProjectionTime: 245.170us - RowsProduced: 2.457K (2457) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s263ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 728ns - DeserializeAndMergeTime: 0ns - ExecTime: 604.206us - GetResultsTime: 579.608us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 46.234us - HashTableSize: 6.302K (6302) - InsertKeysToColumnTime: 293.714us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.77us - ProjectionTime: 0ns - RowsProduced: 6.302K (6302) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s125ms PipelineXTask (index=29):(Active: 1.751ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.644ms - CloseTime: 14.80us - GetBlockTime: 1.216ms - OpenTime: 3.565us - PrepareTime: 86.17us - SinkTime: 402.847us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.730ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.245ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 395.753us - CloseTime: 816ns - DeserializeAndMergeTime: 0ns - ExecTime: 424.654us - ExprTime: 4.165us - HashTableComputeTime: 324.151us - HashTableEmplaceTime: 232.147us - HashTableInputCount: 2.108K (2108) - InputRows: 2.108K (2108) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 22.583us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.453us - ExecTime: 756.314us - InitProbeSideTime: 215.21us - JoinFilterTimer: 388ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 16.161us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.39us - ProbeFindNextTime: 0ns - ProbeRows: 6.431K (6431) - ProbeTime: 543.165us - ProbeWhenBuildSideOutputTime: 40.400us - ProbeWhenProbeSideOutputTime: 14.653us - ProbeWhenProcessHashTableTime: 128.349us - ProbeWhenSearchHashTableTime: 95.624us - ProjectionTime: 175.486us - RowsProduced: 2.108K (2108) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s264ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 732ns - DeserializeAndMergeTime: 0ns - ExecTime: 486.364us - GetResultsTime: 465.353us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 44.730us - HashTableSize: 6.431K (6431) - InsertKeysToColumnTime: 239.646us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.766us - ProjectionTime: 0ns - RowsProduced: 6.431K (6431) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s125ms PipelineXTask (index=33):(Active: 2.708ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.594ms - CloseTime: 23.564us - GetBlockTime: 1.979ms - OpenTime: 4.870us - PrepareTime: 80.535us - SinkTime: 575.696us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.675ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.179ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 564.246us - CloseTime: 1.287us - DeserializeAndMergeTime: 0ns - ExecTime: 599.205us - ExprTime: 6.722us - HashTableComputeTime: 467.549us - HashTableEmplaceTime: 334.98us - HashTableInputCount: 1.844K (1844) - InputRows: 1.844K (1844) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 25.380us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 13.99us - ExecTime: 1.102ms - InitProbeSideTime: 270.748us - JoinFilterTimer: 402ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.62us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.192us - ProbeFindNextTime: 0ns - ProbeRows: 6.329K (6329) - ProbeTime: 806.441us - ProbeWhenBuildSideOutputTime: 92.849us - ProbeWhenProbeSideOutputTime: 13.878us - ProbeWhenProcessHashTableTime: 135.640us - ProbeWhenSearchHashTableTime: 217.354us - ProjectionTime: 249.753us - RowsProduced: 1.844K (1844) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s265ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 6.661us - DeserializeAndMergeTime: 0ns - ExecTime: 901.967us - GetResultsTime: 861.230us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 104.11us - HashTableSize: 6.329K (6329) - InsertKeysToColumnTime: 452.915us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.243us - ProjectionTime: 0ns - RowsProduced: 6.329K (6329) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s124ms PipelineXTask (index=37):(Active: 2.325ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.181ms - CloseTime: 15.544us - GetBlockTime: 1.600ms - OpenTime: 27.260us - PrepareTime: 94.344us - SinkTime: 525.803us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.300ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.827ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 516.852us - CloseTime: 1.259us - DeserializeAndMergeTime: 0ns - ExecTime: 556.427us - ExprTime: 15.53us - HashTableComputeTime: 430.901us - HashTableEmplaceTime: 310.23us - HashTableInputCount: 2.485K (2485) - InputRows: 2.485K (2485) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 31.28us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.761us - ExecTime: 949.33us - InitProbeSideTime: 230.772us - JoinFilterTimer: 441ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 33.805us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.536us - ProbeFindNextTime: 0ns - ProbeRows: 6.333K (6333) - ProbeTime: 664.466us - ProbeWhenBuildSideOutputTime: 59.522us - ProbeWhenProbeSideOutputTime: 8.903us - ProbeWhenProcessHashTableTime: 194.562us - ProbeWhenSearchHashTableTime: 114.122us - ProjectionTime: 226.605us - RowsProduced: 2.485K (2485) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s260ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 869ns - DeserializeAndMergeTime: 0ns - ExecTime: 693.850us - GetResultsTime: 671.527us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 60.198us - HashTableSize: 6.333K (6333) - InsertKeysToColumnTime: 361.389us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.682us - ProjectionTime: 0ns - RowsProduced: 6.333K (6333) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s127ms PipelineXTask (index=41):(Active: 2.518ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.403ms - CloseTime: 20.238us - GetBlockTime: 1.723ms - OpenTime: 4.844us - PrepareTime: 85.698us - SinkTime: 648.540us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.490ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.265ms AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 638.826us - CloseTime: 3.287us - DeserializeAndMergeTime: 0ns - ExecTime: 670.262us - ExprTime: 5.826us - HashTableComputeTime: 551.268us - HashTableEmplaceTime: 415.955us - HashTableInputCount: 1.776K (1776) - InputRows: 1.776K (1776) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 20.535us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 12.467us - ExecTime: 988.193us - InitProbeSideTime: 293.998us - JoinFilterTimer: 428ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 20.216us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.670us - ProbeFindNextTime: 0ns - ProbeRows: 6.347K (6347) - ProbeTime: 755.571us - ProbeWhenBuildSideOutputTime: 43.522us - ProbeWhenProbeSideOutputTime: 14.824us - ProbeWhenProcessHashTableTime: 133.374us - ProbeWhenSearchHashTableTime: 204.564us - ProjectionTime: 185.813us - RowsProduced: 1.776K (1776) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s260ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 998ns - DeserializeAndMergeTime: 0ns - ExecTime: 768.863us - GetResultsTime: 739.433us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 101.857us - HashTableSize: 6.347K (6347) - InsertKeysToColumnTime: 380.608us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 13.430us - ProjectionTime: 0ns - RowsProduced: 6.347K (6347) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s127ms PipelineXTask (index=45):(Active: 2.419ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.300ms - CloseTime: 16.354us - GetBlockTime: 1.678ms - OpenTime: 4.218us - PrepareTime: 94.33us - SinkTime: 591.385us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.395ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 145.144us AGGREGATION_SINK_OPERATOR (id=172): - BuildTime: 568.308us - CloseTime: 1.450us - DeserializeAndMergeTime: 0ns - ExecTime: 622.709us - ExprTime: 5.173us - HashTableComputeTime: 467.292us - HashTableEmplaceTime: 381.414us - HashTableInputCount: 1.811K (1811) - InputRows: 1.811K (1811) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 959.98 KB - SerializeKeyArena: 936.00 KB - MergeTime: 0ns - OpenTime: 32.101us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=171): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 11.401us - ExecTime: 948.991us - InitProbeSideTime: 277.175us - JoinFilterTimer: 649ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 17.214us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.307us - ProbeFindNextTime: 0ns - ProbeRows: 6.216K (6216) - ProbeTime: 695.625us - ProbeWhenBuildSideOutputTime: 71.382us - ProbeWhenProbeSideOutputTime: 13.502us - ProbeWhenProcessHashTableTime: 145.734us - ProbeWhenSearchHashTableTime: 126.274us - ProjectionTime: 209.178us - RowsProduced: 1.811K (1811) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s259ms AGGREGATION_OPERATOR (id=170): - BlocksProduced: 2 - CloseTime: 739ns - DeserializeAndMergeTime: 0ns - ExecTime: 751.914us - GetResultsTime: 728.577us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 80.812us - HashTableSize: 6.216K (6216) - InsertKeysToColumnTime: 369.850us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.821us - ProjectionTime: 0ns - RowsProduced: 6.216K (6216) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s130ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 601.931us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 494.73us - CloseTime: 20.946us - GetBlockTime: 113.686us - OpenTime: 1.842us - PrepareTime: 81.2us - SinkTime: 325.306us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 558.91us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.630ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.151us - BuildRows: 1.69K (1690) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 116.882us - BuildTableInsertTime: 113.655us - BuildTableTime: 116.993us - CloseTime: 0ns - ExecTime: 364.559us - InputRows: 1.689K (1689) - MemoryUsage: - BuildBlocks: 128.64 KB - BuildKeyArena: 44.00 KB - HashTable: 16.26 KB - PeakMemoryUsage: 184.89 KB - OpenTime: 41.388us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.903us - RuntimeFilterComputeTime: 40.142us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 13.61 KB - CloseTime: 19.132us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 46.964us - ExecTime: 144.509us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.05 KB - MemoryUsage: - Blocks: 127.43 KB - PeakMemoryUsage: 127.43 KB - OpenTime: 16.750us - ProjectionTime: 0ns - RowsProduced: 1.689K (1689) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s386ms PipelineXTask (index=6):(Active: 627.994us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 555.258us - CloseTime: 5.958us - GetBlockTime: 100.121us - OpenTime: 1.636us - PrepareTime: 60.882us - SinkTime: 405.370us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 608.748us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.728ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.737us - BuildRows: 2.104K (2104) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 210.841us - BuildTableInsertTime: 129.913us - BuildTableTime: 131.596us - CloseTime: 0ns - ExecTime: 421.712us - InputRows: 2.103K (2103) - MemoryUsage: - BuildBlocks: 160.18 KB - BuildKeyArena: 52.00 KB - HashTable: 26.28 KB - PeakMemoryUsage: 234.45 KB - OpenTime: 20.235us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.812us - RuntimeFilterComputeTime: 22.405us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 15.84 KB - CloseTime: 4.426us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 68.375us - ExecTime: 111.634us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 205.83 KB - MemoryUsage: - Blocks: 185.09 KB - PeakMemoryUsage: 185.09 KB - OpenTime: 17.288us - ProjectionTime: 0ns - RowsProduced: 2.103K (2103) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s386ms PipelineXTask (index=10):(Active: 593.783us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 519.128us - CloseTime: 6.867us - GetBlockTime: 74.61us - OpenTime: 2.449us - PrepareTime: 60.923us - SinkTime: 407.533us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 577.808us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.644ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.42us - BuildRows: 1.848K (1848) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 208.910us - BuildTableInsertTime: 99.280us - BuildTableTime: 101.184us - CloseTime: 0ns - ExecTime: 426.170us - InputRows: 1.847K (1847) - MemoryUsage: - BuildBlocks: 140.66 KB - BuildKeyArena: 44.00 KB - HashTable: 25.03 KB - PeakMemoryUsage: 205.68 KB - OpenTime: 20.654us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.272us - RuntimeFilterComputeTime: 25.746us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 14.83 KB - CloseTime: 5.141us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 80.466us - ExecTime: 93.738us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 181.90 KB - MemoryUsage: - Blocks: 163.08 KB - PeakMemoryUsage: 163.08 KB - OpenTime: 17.847us - ProjectionTime: 0ns - RowsProduced: 1.847K (1847) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s385ms PipelineXTask (index=14):(Active: 585.181us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 506.129us - CloseTime: 8.830us - GetBlockTime: 67.418us - OpenTime: 1.593us - PrepareTime: 64.340us - SinkTime: 400.655us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 565.874us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.806ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.667us - BuildRows: 2.1K (2100) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 190.925us - BuildTableInsertTime: 137.153us - BuildTableTime: 139.506us - CloseTime: 0ns - ExecTime: 420.214us - InputRows: 2.099K (2099) - MemoryUsage: - BuildBlocks: 159.87 KB - BuildKeyArena: 52.00 KB - HashTable: 26.26 KB - PeakMemoryUsage: 234.12 KB - OpenTime: 22.16us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.994us - RuntimeFilterComputeTime: 22.898us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 17.28 KB - CloseTime: 7.229us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 60.207us - ExecTime: 91.512us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 204.96 KB - MemoryUsage: - Blocks: 190.18 KB - PeakMemoryUsage: 190.18 KB - OpenTime: 21.395us - ProjectionTime: 0ns - RowsProduced: 2.099K (2099) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s385ms PipelineXTask (index=18):(Active: 749.782us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 675.646us - CloseTime: 8.215us - GetBlockTime: 91.322us - OpenTime: 2.393us - PrepareTime: 58.684us - SinkTime: 537.72us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 729.753us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.306ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.26us - BuildRows: 2.155K (2155) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 253.6us - BuildTableInsertTime: 170.596us - BuildTableTime: 173.456us - CloseTime: 0ns - ExecTime: 547.354us - InputRows: 2.154K (2154) - MemoryUsage: - BuildBlocks: 164.06 KB - BuildKeyArena: 52.00 KB - HashTable: 26.53 KB - PeakMemoryUsage: 238.58 KB - OpenTime: 20.801us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.755us - RuntimeFilterComputeTime: 39.972us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 17.28 KB - CloseTime: 6.271us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 75.63us - ExecTime: 114.936us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 203.15 KB - MemoryUsage: - Blocks: 193.74 KB - PeakMemoryUsage: 193.74 KB - OpenTime: 21.856us - ProjectionTime: 0ns - RowsProduced: 2.154K (2154) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s385ms PipelineXTask (index=22):(Active: 711.545us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 614.288us - CloseTime: 8.169us - GetBlockTime: 121.3us - OpenTime: 2.34us - PrepareTime: 81.69us - SinkTime: 436.176us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 687.974us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.817ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.41us - BuildRows: 1.763K (1763) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 204.407us - BuildTableInsertTime: 119.625us - BuildTableTime: 125.517us - CloseTime: 0ns - ExecTime: 467.733us - InputRows: 1.762K (1762) - MemoryUsage: - BuildBlocks: 134.21 KB - BuildKeyArena: 44.00 KB - HashTable: 16.61 KB - PeakMemoryUsage: 190.82 KB - OpenTime: 36.71us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.389us - RuntimeFilterComputeTime: 42.603us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 14.37 KB - CloseTime: 6.240us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 48.730us - ExecTime: 137.54us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 164.05 KB - MemoryUsage: - Blocks: 103.28 KB - PeakMemoryUsage: 103.28 KB - OpenTime: 16.852us - ProjectionTime: 0ns - RowsProduced: 1.762K (1762) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s386ms PipelineXTask (index=26):(Active: 773.723us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 688.489us - CloseTime: 5.964us - GetBlockTime: 113.383us - OpenTime: 1.692us - PrepareTime: 57.856us - SinkTime: 517.671us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 752.183us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.585ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.81us - BuildRows: 2.458K (2458) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 266.228us - BuildTableInsertTime: 164.0us - BuildTableTime: 165.629us - CloseTime: 0ns - ExecTime: 536.339us - InputRows: 2.457K (2457) - MemoryUsage: - BuildBlocks: 187.15 KB - BuildKeyArena: 60.00 KB - HashTable: 28.01 KB - PeakMemoryUsage: 271.15 KB - OpenTime: 21.984us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.873us - RuntimeFilterComputeTime: 14.36us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 20.07 KB - CloseTime: 4.965us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 63.462us - ExecTime: 126.787us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 232.71 KB - MemoryUsage: - Blocks: 172.18 KB - PeakMemoryUsage: 172.18 KB - OpenTime: 14.955us - ProjectionTime: 0ns - RowsProduced: 2.457K (2457) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s385ms PipelineXTask (index=30):(Active: 663.833us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 598.609us - CloseTime: 7.542us - GetBlockTime: 107.338us - OpenTime: 1.959us - PrepareTime: 51.972us - SinkTime: 442.431us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 644.152us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.409ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.490us - BuildRows: 2.109K (2109) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 253.547us - BuildTableInsertTime: 111.379us - BuildTableTime: 113.635us - CloseTime: 0ns - ExecTime: 452.189us - InputRows: 2.108K (2108) - MemoryUsage: - BuildBlocks: 160.57 KB - BuildKeyArena: 52.00 KB - HashTable: 26.30 KB - PeakMemoryUsage: 234.86 KB - OpenTime: 14.703us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.170us - RuntimeFilterComputeTime: 21.675us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 15.71 KB - CloseTime: 5.915us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 40.11us - ExecTime: 121.918us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 221.37 KB - MemoryUsage: - Blocks: 186.37 KB - PeakMemoryUsage: 186.37 KB - OpenTime: 15.69us - ProjectionTime: 0ns - RowsProduced: 2.108K (2108) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s387ms PipelineXTask (index=34):(Active: 735.759us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 645.867us - CloseTime: 5.853us - GetBlockTime: 103.914us - OpenTime: 2.275us - PrepareTime: 76.835us - SinkTime: 501.723us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 719.122us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.858ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.78us - BuildRows: 1.845K (1845) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 181.733us - BuildTableInsertTime: 151.236us - BuildTableTime: 153.387us - CloseTime: 0ns - ExecTime: 532.246us - InputRows: 1.844K (1844) - MemoryUsage: - BuildBlocks: 140.44 KB - BuildKeyArena: 44.00 KB - HashTable: 25.01 KB - PeakMemoryUsage: 205.44 KB - OpenTime: 32.873us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 107.80us - RuntimeFilterComputeTime: 17.105us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 15.07 KB - CloseTime: 4.426us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 33.209us - ExecTime: 125.241us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 166.30 KB - MemoryUsage: - Blocks: 145.52 KB - PeakMemoryUsage: 145.52 KB - OpenTime: 20.991us - ProjectionTime: 0ns - RowsProduced: 1.844K (1844) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s386ms PipelineXTask (index=38):(Active: 694.956us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 622.569us - CloseTime: 4.785us - GetBlockTime: 95.230us - OpenTime: 2.127us - PrepareTime: 61.457us - SinkTime: 467.908us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 676.299us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.180ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 13.278us - BuildRows: 2.486K (2486) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 238.150us - BuildTableInsertTime: 119.626us - BuildTableTime: 121.488us - CloseTime: 0ns - ExecTime: 482.609us - InputRows: 2.485K (2485) - MemoryUsage: - BuildBlocks: 189.28 KB - BuildKeyArena: 60.00 KB - HashTable: 28.14 KB - PeakMemoryUsage: 273.42 KB - OpenTime: 18.112us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.823us - RuntimeFilterComputeTime: 49.850us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 18.37 KB - CloseTime: 3.664us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 79.157us - ExecTime: 110.91us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 231.21 KB - MemoryUsage: - Blocks: 117.53 KB - PeakMemoryUsage: 117.53 KB - OpenTime: 16.483us - ProjectionTime: 0ns - RowsProduced: 2.485K (2485) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s384ms PipelineXTask (index=42):(Active: 533.884us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 428.113us - CloseTime: 16.596us - GetBlockTime: 69.445us - OpenTime: 1.809us - PrepareTime: 82.207us - SinkTime: 318.943us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 506.138us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.358ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.444us - BuildRows: 1.777K (1777) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 138.804us - BuildTableInsertTime: 93.817us - BuildTableTime: 96.194us - CloseTime: 0ns - ExecTime: 355.331us - InputRows: 1.776K (1776) - MemoryUsage: - BuildBlocks: 135.27 KB - BuildKeyArena: 44.00 KB - HashTable: 16.68 KB - PeakMemoryUsage: 191.94 KB - OpenTime: 38.361us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.861us - RuntimeFilterComputeTime: 19.383us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 15.48 KB - CloseTime: 15.64us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 72.53us - ExecTime: 97.576us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 176.68 KB - MemoryUsage: - Blocks: 97.43 KB - PeakMemoryUsage: 97.43 KB - OpenTime: 16.694us - ProjectionTime: 0ns - RowsProduced: 1.776K (1776) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s384ms PipelineXTask (index=46):(Active: 706.970us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 631.414us - CloseTime: 8.685us - GetBlockTime: 91.471us - OpenTime: 2.280us - PrepareTime: 60.115us - SinkTime: 477.200us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 680.632us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.373ms HASH_JOIN_SINK_OPERATOR (id=171): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.161us - BuildRows: 1.812K (1812) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 263.567us - BuildTableInsertTime: 123.942us - BuildTableTime: 126.186us - CloseTime: 0ns - ExecTime: 491.298us - InputRows: 1.811K (1811) - MemoryUsage: - BuildBlocks: 137.92 KB - BuildKeyArena: 44.00 KB - HashTable: 24.85 KB - PeakMemoryUsage: 202.77 KB - OpenTime: 18.747us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.636us - RuntimeFilterComputeTime: 22.915us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=166): - BlocksProduced: 14 - BytesReceived: 13.36 KB - CloseTime: 6.959us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 53.187us - ExecTime: 110.818us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 166.24 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 75.03 KB - OpenTime: 19.308us - ProjectionTime: 0ns - RowsProduced: 1.811K (1811) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s387ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 2.977ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.886ms - CloseTime: 15.717us - GetBlockTime: 66.348us - OpenTime: 1.732us - PrepareTime: 69.589us - SinkTime: 2.743ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.945ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 706.845us AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 6.123us - DeserializeAndMergeTime: 68.831us - ExecTime: 2.762ms - ExprTime: 0ns - HashTableComputeTime: 2.600ms - HashTableEmplaceTime: 2.280ms - HashTableInputCount: 6.35K (6350) - InputRows: 6.35K (6350) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.719ms - OpenTime: 17.345us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 106.62 KB - CloseTime: 7.693us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 324.572us - ExecTime: 79.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 11.855us - ProjectionTime: 0ns - RowsProduced: 6.35K (6350) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s118ms PipelineXTask (index=7):(Active: 3.303ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.219ms - CloseTime: 16.814us - GetBlockTime: 126.190us - OpenTime: 3.655us - PrepareTime: 57.389us - SinkTime: 3.0ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.224ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 353.327us AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 9.631us - DeserializeAndMergeTime: 94.131us - ExecTime: 3.28ms - ExprTime: 0ns - HashTableComputeTime: 2.800ms - HashTableEmplaceTime: 2.456ms - HashTableInputCount: 6.271K (6271) - InputRows: 6.271K (6271) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.934ms - OpenTime: 22.628us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 105.83 KB - CloseTime: 5.730us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 316.833us - ExecTime: 143.442us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 19.620us - ProjectionTime: 0ns - RowsProduced: 6.271K (6271) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s118ms PipelineXTask (index=11):(Active: 3.34ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.927ms - CloseTime: 6.345us - GetBlockTime: 73.230us - OpenTime: 1.993us - PrepareTime: 93.993us - SinkTime: 2.777ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.9ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 379.968us AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 2.383us - DeserializeAndMergeTime: 71.555us - ExecTime: 2.807ms - ExprTime: 0ns - HashTableComputeTime: 2.614ms - HashTableEmplaceTime: 2.328ms - HashTableInputCount: 6.359K (6359) - InputRows: 6.359K (6359) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.741ms - OpenTime: 31.542us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 106.84 KB - CloseTime: 3.348us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 242.22us - ExecTime: 101.896us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 32.215us - ProjectionTime: 0ns - RowsProduced: 6.359K (6359) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s118ms PipelineXTask (index=15):(Active: 3.57ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.974ms - CloseTime: 16.388us - GetBlockTime: 108.665us - OpenTime: 2.556us - PrepareTime: 60.551us - SinkTime: 2.777ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.21ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.162ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 5.704us - DeserializeAndMergeTime: 67.798us - ExecTime: 2.791ms - ExprTime: 0ns - HashTableComputeTime: 2.612ms - HashTableEmplaceTime: 2.273ms - HashTableInputCount: 6.402K (6402) - InputRows: 6.402K (6402) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.739ms - OpenTime: 13.558us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 107.61 KB - CloseTime: 8.920us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 305.147us - ExecTime: 138.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 29.161us - ProjectionTime: 0ns - RowsProduced: 6.402K (6402) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s117ms PipelineXTask (index=19):(Active: 2.657ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.485ms - CloseTime: 17.898us - GetBlockTime: 122.275us - OpenTime: 2.120us - PrepareTime: 146.820us - SinkTime: 2.291ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.621ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.67ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 9.335us - DeserializeAndMergeTime: 65.495us - ExecTime: 2.393ms - ExprTime: 0ns - HashTableComputeTime: 2.178ms - HashTableEmplaceTime: 1.884ms - HashTableInputCount: 6.262K (6262) - InputRows: 6.262K (6262) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.276ms - OpenTime: 96.109us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 105.72 KB - CloseTime: 6.963us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 332.504us - ExecTime: 148.348us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 25.796us - ProjectionTime: 0ns - RowsProduced: 6.262K (6262) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s118ms PipelineXTask (index=23):(Active: 2.581ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.475ms - CloseTime: 48.775us - GetBlockTime: 92.193us - OpenTime: 2.322us - PrepareTime: 50.822us - SinkTime: 2.306ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.516ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.980ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 24.11us - DeserializeAndMergeTime: 84.989us - ExecTime: 2.346ms - ExprTime: 0ns - HashTableComputeTime: 2.135ms - HashTableEmplaceTime: 1.848ms - HashTableInputCount: 6.309K (6309) - InputRows: 6.309K (6309) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.274ms - OpenTime: 19.615us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 105.52 KB - CloseTime: 23.52us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 271.187us - ExecTime: 123.510us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 16.470us - ProjectionTime: 0ns - RowsProduced: 6.309K (6309) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s118ms PipelineXTask (index=27):(Active: 3.4ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.934ms - CloseTime: 18.421us - GetBlockTime: 72.333us - OpenTime: 1.777us - PrepareTime: 45.431us - SinkTime: 2.774ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.967ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 908.241us AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 11.788us - DeserializeAndMergeTime: 71.508us - ExecTime: 2.797ms - ExprTime: 0ns - HashTableComputeTime: 2.610ms - HashTableEmplaceTime: 2.298ms - HashTableInputCount: 6.302K (6302) - InputRows: 6.302K (6302) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.741ms - OpenTime: 14.31us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 106.35 KB - CloseTime: 5.320us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 319.337us - ExecTime: 83.742us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.93us - ProjectionTime: 0ns - RowsProduced: 6.302K (6302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s122ms PipelineXTask (index=31):(Active: 2.444ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.355ms - CloseTime: 12.329us - GetBlockTime: 53.232us - OpenTime: 1.910us - PrepareTime: 70.720us - SinkTime: 2.228ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.407ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.194ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 5.835us - DeserializeAndMergeTime: 54.587us - ExecTime: 2.261ms - ExprTime: 0ns - HashTableComputeTime: 2.105ms - HashTableEmplaceTime: 1.816ms - HashTableInputCount: 6.431K (6431) - InputRows: 6.431K (6431) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.215ms - OpenTime: 30.353us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 108.18 KB - CloseTime: 5.572us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 211.825us - ExecTime: 75.814us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 21.807us - ProjectionTime: 0ns - RowsProduced: 6.431K (6431) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s122ms PipelineXTask (index=35):(Active: 3.156ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.48ms - CloseTime: 13.780us - GetBlockTime: 82.881us - OpenTime: 2.29us - PrepareTime: 87.348us - SinkTime: 2.880ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.123ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 437.469us AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 4.767us - DeserializeAndMergeTime: 79.802us - ExecTime: 2.897ms - ExprTime: 0ns - HashTableComputeTime: 2.676ms - HashTableEmplaceTime: 2.332ms - HashTableInputCount: 6.329K (6329) - InputRows: 6.329K (6329) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.822ms - OpenTime: 16.204us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 106.52 KB - CloseTime: 7.150us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 295.927us - ExecTime: 119.166us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 36.379us - ProjectionTime: 0ns - RowsProduced: 6.329K (6329) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s123ms PipelineXTask (index=39):(Active: 2.944ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.864ms - CloseTime: 15.96us - GetBlockTime: 100.553us - OpenTime: 2.20us - PrepareTime: 55.608us - SinkTime: 2.678ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.907ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.83ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 5.323us - DeserializeAndMergeTime: 65.895us - ExecTime: 2.691ms - ExprTime: 0ns - HashTableComputeTime: 2.517ms - HashTableEmplaceTime: 2.211ms - HashTableInputCount: 6.333K (6333) - InputRows: 6.333K (6333) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.642ms - OpenTime: 11.774us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 106.19 KB - CloseTime: 7.975us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 262.255us - ExecTime: 124.946us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 24.471us - ProjectionTime: 0ns - RowsProduced: 6.333K (6333) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s124ms PipelineXTask (index=43):(Active: 3.300ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.229ms - CloseTime: 14.730us - GetBlockTime: 79.862us - OpenTime: 2.220us - PrepareTime: 50.26us - SinkTime: 3.51ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.267ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 575.820us AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 4.996us - DeserializeAndMergeTime: 95.991us - ExecTime: 3.72ms - ExprTime: 0ns - HashTableComputeTime: 2.867ms - HashTableEmplaceTime: 2.520ms - HashTableInputCount: 6.347K (6347) - InputRows: 6.347K (6347) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 3.16ms - OpenTime: 19.593us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 105.94 KB - CloseTime: 7.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 323.350us - ExecTime: 95.325us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 14.374us - ProjectionTime: 0ns - RowsProduced: 6.347K (6347) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s127ms PipelineXTask (index=47):(Active: 3.149ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.74ms - CloseTime: 15.808us - GetBlockTime: 76.20us - OpenTime: 2.437us - PrepareTime: 52.464us - SinkTime: 2.914ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.109ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.188ms AGGREGATION_SINK_OPERATOR (id=170): - BuildTime: 0ns - CloseTime: 11.59us - DeserializeAndMergeTime: 75.394us - ExecTime: 2.944ms - ExprTime: 0ns - HashTableComputeTime: 2.773ms - HashTableEmplaceTime: 2.400ms - HashTableInputCount: 6.216K (6216) - InputRows: 6.216K (6216) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.898ms - OpenTime: 22.844us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=169): - BlocksProduced: 10 - BytesReceived: 105.49 KB - CloseTime: 3.927us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 290.768us - ExecTime: 82.466us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 17.911us - ProjectionTime: 0ns - RowsProduced: 6.216K (6216) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s126ms Fragment 88: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 944.833us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 451.190us - CloseTime: 59.892us - GetBlockTime: 39.327us - OpenTime: 101.963us - PrepareTime: 322.607us - SinkTime: 281.476us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 874.19us - WaitBfTime: 852.172ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 197.704ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.634us - CompressTime: 0ns - ExecTime: 406.886us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.61us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 115.0us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 347.171ms - RowsProduced: 0 - RpcAvgTime: 305.616ms - RpcCount: 12 - RpcMaxTime: 305.657ms - RpcMinTime: 305.578ms - RpcSumTime: 3s667ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 472ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 696ns - DeserializeAndMergeTime: 0ns - ExecTime: 53.971us - ExprTime: 0ns - GetResultsTime: 9.467us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 186ns - HashTableSize: 0 - InsertKeysToColumnTime: 876ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 36.451us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.354us - SerializeKeyTime: 0ns - SerializeResultTime: 13.999us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.392us - BlocksProduced: 0 - CloseTime: 45.720us - ExecTime: 81.397ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 188.267us - ProcessConjunctTime: 18.718us - ProjectionTime: 1.526us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 69.1ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 81.140ms - 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.903us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [69.001ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 12.74ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 124ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.121ms - ScannerCtxSchedTime: 69.0ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.317us - ScannerInitTime: 51.434us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 172ns - BlockConditionsFilteredBloomFilterTime: 416ns - BlockConditionsFilteredDictTime: 303ns - BlockConditionsFilteredTime: 13.482us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 307ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 7.591us - BlockInitTime: 38.435us - BlockLoadTime: 11.913ms - BlocksLoad: 62 - CachedPagesNum: 47 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 8.671ms - FirstReadSeekCount: 61 - FirstReadSeekTime: 21.794us - FirstReadTime: 612.555us - IOTimer: 0ns - InvertedIndexFilterTime: 332ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.523ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 418.729us - OutputIndexResultColumnTimer: 3.181us - RawRowsRead: 245.246K (245246) - 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.565ms - ShortPredEvalTime: 287.450us - TotalPagesNum: 47 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 24.254us PipelineXTask (index=1):(Active: 845.179us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 363.852us - CloseTime: 40.840us - GetBlockTime: 28.298us - OpenTime: 148.885us - PrepareTime: 279.472us - SinkTime: 157.691us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 790.846us - WaitBfTime: 852.286ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 104.634ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.111us - CompressTime: 0ns - ExecTime: 283.582us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.566us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 117.932us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 339.244ms - RowsProduced: 0 - RpcAvgTime: 286.745ms - RpcCount: 12 - RpcMaxTime: 286.801ms - RpcMinTime: 286.702ms - RpcSumTime: 3s440ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 270ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1000ns - DeserializeAndMergeTime: 0ns - ExecTime: 37.661us - ExprTime: 0ns - GetResultsTime: 4.296us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 146ns - HashTableSize: 0 - InsertKeysToColumnTime: 389ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.458us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 368ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.818us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.986us - BlocksProduced: 0 - CloseTime: 29.133us - ExecTime: 101.642ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 210.34us - ProcessConjunctTime: 61.23us - ProjectionTime: 1.888us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 68.660ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 101.380ms - 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.052us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [68.660ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 32.655ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 112ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.467ms - ScannerCtxSchedTime: 68.658ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.250us - ScannerInitTime: 58.718us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 252ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.465us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.125us - BlockInitTime: 65.41us - BlockLoadTime: 32.477ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 27.643ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 45.10us - FirstReadTime: 4.1ms - IOTimer: 0ns - InvertedIndexFilterTime: 546ns - 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.923us - OutputIndexResultColumnTimer: 7.122us - RawRowsRead: 341.69K (341690) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 2.447ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.776ms - CloseTime: 104.162us - GetBlockTime: 35.464us - OpenTime: 247.321us - PrepareTime: 309.280us - SinkTime: 1.468ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.170ms - WaitBfTime: 850.427ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 146.574ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 30.768us - CompressTime: 0ns - ExecTime: 1.616ms - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 46.49us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 118.785us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 335.527ms - RowsProduced: 0 - RpcAvgTime: 295.484ms - RpcCount: 12 - RpcMaxTime: 295.823ms - RpcMinTime: 294.609ms - RpcSumTime: 3s545ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 493ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.769us - DeserializeAndMergeTime: 0ns - ExecTime: 74.1us - ExprTime: 0ns - GetResultsTime: 7.412us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 125ns - HashTableSize: 0 - InsertKeysToColumnTime: 757ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 58.710us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.161us - SerializeKeyTime: 0ns - SerializeResultTime: 10.225us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.492us - BlocksProduced: 0 - CloseTime: 64.36us - ExecTime: 92.225ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 309.743us - ProcessConjunctTime: 90.0us - ProjectionTime: 1.547us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 60.457ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 91.827ms - 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.918us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [60.457ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 31.313ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 53ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.368ms - ScannerCtxSchedTime: 60.455ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.22us - ScannerInitTime: 119.220us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 312ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.296us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.703us - BlockInitTime: 30.474us - BlockLoadTime: 31.171ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 27.746ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 57.928us - FirstReadTime: 2.912ms - IOTimer: 0ns - InvertedIndexFilterTime: 299ns - 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.795us - OutputIndexResultColumnTimer: 5.228us - RawRowsRead: 343.677K (343677) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 795.437us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 336.56us - CloseTime: 46.951us - GetBlockTime: 27.102us - OpenTime: 111.831us - PrepareTime: 290.554us - SinkTime: 174.548us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 737.173us - WaitBfTime: 850.913ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 109.879ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.800us - CompressTime: 0ns - ExecTime: 280.854us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.131us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 96.104us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 339.410ms - RowsProduced: 0 - RpcAvgTime: 286.916ms - RpcCount: 12 - RpcMaxTime: 286.971ms - RpcMinTime: 286.875ms - RpcSumTime: 3s442ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 513ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.2us - DeserializeAndMergeTime: 0ns - ExecTime: 59.854us - ExprTime: 0ns - GetResultsTime: 4.696us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 152ns - HashTableSize: 0 - InsertKeysToColumnTime: 460ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 49.160us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 673ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.797us - 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: [15313] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.758us - BlocksProduced: 0 - CloseTime: 33.95us - ExecTime: 97.544ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 180.788us - ProcessConjunctTime: 43.182us - ProjectionTime: 2.4us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 67.14ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 97.312ms - 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.361us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [67.014ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 30.211ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.382ms - ScannerCtxSchedTime: 67.11ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.331us - ScannerInitTime: 46.616us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 256ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.427us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.186us - BlockInitTime: 50.346us - BlockLoadTime: 30.34ms - BlocksLoad: 93 - CachedPagesNum: 71 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 24.908ms - FirstReadSeekCount: 184 - FirstReadSeekTime: 62.956us - FirstReadTime: 4.153ms - IOTimer: 0ns - InvertedIndexFilterTime: 401ns - 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.585us - OutputIndexResultColumnTimer: 12.306us - RawRowsRead: 372.571K (372571) - 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 PipelineXTask (index=4):(Active: 1.1ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 459.407us - CloseTime: 75.626us - GetBlockTime: 30.268us - OpenTime: 167.625us - PrepareTime: 290.690us - SinkTime: 238.549us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 917.125us - WaitBfTime: 850.656ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 198.835ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.769us - CompressTime: 0ns - ExecTime: 351.204us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 40.970us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 101.378us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 331.795ms - RowsProduced: 0 - RpcAvgTime: 291.161ms - RpcCount: 12 - RpcMaxTime: 291.236ms - RpcMinTime: 291.104ms - RpcSumTime: 3s493ms - 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=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 4.260us - DeserializeAndMergeTime: 0ns - ExecTime: 60.783us - ExprTime: 0ns - GetResultsTime: 6.81us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 108ns - HashTableSize: 0 - InsertKeysToColumnTime: 493ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 45.233us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.520us - SerializeKeyTime: 0ns - SerializeResultTime: 9.784us - 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: [15315] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.135us - BlocksProduced: 0 - CloseTime: 56.561us - ExecTime: 96.771ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 235.713us - ProcessConjunctTime: 86.394us - ProjectionTime: 1.428us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 63.587ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 96.459ms - 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.893us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [63.587ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 32.825ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 70ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.607ms - ScannerCtxSchedTime: 63.586ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 850ns - ScannerInitTime: 55.626us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 197ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 937ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 6.882us - BlockInitTime: 36.226us - BlockLoadTime: 32.710ms - BlocksLoad: 95 - CachedPagesNum: 73 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 29.535ms - FirstReadSeekCount: 188 - FirstReadSeekTime: 39.692us - FirstReadTime: 2.681ms - IOTimer: 0ns - InvertedIndexFilterTime: 259ns - 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.425us - OutputIndexResultColumnTimer: 4.811us - RawRowsRead: 379.18K (379180) - 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: 73 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 1.98ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 498.298us - CloseTime: 74.37us - GetBlockTime: 40.660us - OpenTime: 248.389us - PrepareTime: 270.608us - SinkTime: 184.633us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.15ms - WaitBfTime: 851.69ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.607ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.626us - CompressTime: 0ns - ExecTime: 299.782us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.89us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 97.883us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 342.593ms - RowsProduced: 0 - RpcAvgTime: 301.231ms - RpcCount: 12 - RpcMaxTime: 301.271ms - RpcMinTime: 301.190ms - RpcSumTime: 3s614ms - 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 STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.758us - DeserializeAndMergeTime: 0ns - ExecTime: 46.81us - ExprTime: 0ns - GetResultsTime: 9.622us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 155ns - HashTableSize: 0 - InsertKeysToColumnTime: 782ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.540us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.438us - SerializeKeyTime: 0ns - SerializeResultTime: 13.679us - 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: [15331] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.332us - BlocksProduced: 0 - CloseTime: 50.600us - ExecTime: 87.60ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 305.680us - ProcessConjunctTime: 88.873us - ProjectionTime: 1.537us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 57.69ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 86.678ms - 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.135us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [57.069ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 29.533ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 118ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.187ms - ScannerCtxSchedTime: 57.68ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.322us - ScannerInitTime: 114.735us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 308ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.322us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 15.467us - BlockInitTime: 46.312us - BlockLoadTime: 29.380ms - BlocksLoad: 71 - CachedPagesNum: 56 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 25.725ms - FirstReadSeekCount: 140 - FirstReadSeekTime: 43.145us - FirstReadTime: 3.40ms - IOTimer: 0ns - InvertedIndexFilterTime: 350ns - 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: 23.483us - OutputIndexResultColumnTimer: 5.389us - RawRowsRead: 280.538K (280538) - 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: 56 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 769.84us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 301.495us - CloseTime: 86.294us - GetBlockTime: 19.122us - OpenTime: 96.429us - PrepareTime: 277.55us - SinkTime: 169.999us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 675.136us - WaitBfTime: 851.314ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 197.242ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.54us - CompressTime: 0ns - ExecTime: 288.337us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.876us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 95.607us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 328.195ms - RowsProduced: 0 - RpcAvgTime: 288.239ms - RpcCount: 12 - RpcMaxTime: 288.290ms - RpcMinTime: 288.189ms - RpcSumTime: 3s458ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 335ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.944us - DeserializeAndMergeTime: 0ns - ExecTime: 42.151us - ExprTime: 0ns - GetResultsTime: 3.318us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 137ns - HashTableSize: 0 - InsertKeysToColumnTime: 275ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 33.120us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 335ns - SerializeKeyTime: 0ns - SerializeResultTime: 4.957us - 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: [15317] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.804us - BlocksProduced: 0 - CloseTime: 54.723us - ExecTime: 99.857ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 180.79us - ProcessConjunctTime: 31.493us - ProjectionTime: 1.818us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 58.744ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 99.607ms - 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.503us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [58.744ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 40.800ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 38ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.59ms - ScannerCtxSchedTime: 58.742ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 912ns - ScannerInitTime: 40.786us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 265ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.562us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.952us - BlockInitTime: 54.167us - BlockLoadTime: 40.612ms - BlocksLoad: 84 - CachedPagesNum: 64 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 35.895ms - FirstReadSeekCount: 166 - FirstReadSeekTime: 56.234us - FirstReadTime: 3.942ms - IOTimer: 0ns - InvertedIndexFilterTime: 520ns - 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: 31.817us - OutputIndexResultColumnTimer: 7.360us - RawRowsRead: 334.289K (334289) - 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: 64 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 818.893us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 322.25us - CloseTime: 54.432us - GetBlockTime: 39.433us - OpenTime: 85.786us - PrepareTime: 348.175us - SinkTime: 172.721us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 701.338us - WaitBfTime: 852.626ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 205.367ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.962us - CompressTime: 0ns - ExecTime: 273.8us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.171us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 91.668us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 329.450ms - RowsProduced: 0 - RpcAvgTime: 289.282ms - RpcCount: 12 - RpcMaxTime: 289.345ms - RpcMinTime: 289.228ms - RpcSumTime: 3s471ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 277ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 910ns - DeserializeAndMergeTime: 0ns - ExecTime: 58.362us - ExprTime: 0ns - GetResultsTime: 6.123us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 36ns - HashTableSize: 0 - InsertKeysToColumnTime: 543ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 46.785us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.289us - SerializeKeyTime: 0ns - SerializeResultTime: 8.658us - 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: [15319] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.980us - BlocksProduced: 0 - CloseTime: 42.664us - ExecTime: 89.671ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 211.613us - ProcessConjunctTime: 21.432us - ProjectionTime: 1.662us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 65.435ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 89.387ms - 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: [10.680us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [65.435ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.894ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 102ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.951ms - ScannerCtxSchedTime: 65.434ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 7.334us - ScannerInitTime: 36.960us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 192ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.7us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.440us - BlockInitTime: 28.656us - BlockLoadTime: 23.781ms - BlocksLoad: 85 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 21.24ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 31.947us - FirstReadTime: 2.305ms - IOTimer: 0ns - InvertedIndexFilterTime: 283ns - 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.879us - OutputIndexResultColumnTimer: 4.358us - RawRowsRead: 338.501K (338501) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 788.830us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 318.144us - CloseTime: 41.9us - GetBlockTime: 28.296us - OpenTime: 77.394us - PrepareTime: 345.176us - SinkTime: 195.586us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 740.342us - WaitBfTime: 851.408ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 205.327ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.459us - CompressTime: 0ns - ExecTime: 317.217us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.639us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 111.822us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 328.465ms - RowsProduced: 0 - RpcAvgTime: 288.392ms - RpcCount: 12 - RpcMaxTime: 288.470ms - RpcMinTime: 288.337ms - RpcSumTime: 3s460ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 579ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 607ns - DeserializeAndMergeTime: 0ns - ExecTime: 101.419us - ExprTime: 0ns - GetResultsTime: 5.71us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 117ns - HashTableSize: 0 - InsertKeysToColumnTime: 525ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 91.683us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.28us - SerializeKeyTime: 0ns - SerializeResultTime: 7.320us - 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: [15325] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.402us - BlocksProduced: 0 - CloseTime: 27.889us - ExecTime: 91.520ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 147.831us - ProcessConjunctTime: 22.262us - ProjectionTime: 1.869us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 59.849ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 91.324ms - 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.957us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [59.849ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 31.426ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 38ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.700ms - ScannerCtxSchedTime: 59.848ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.356us - ScannerInitTime: 31.263us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 202ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.238us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.78us - BlockInitTime: 36.517us - BlockLoadTime: 31.292ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 14.946ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 36.846us - FirstReadTime: 15.736ms - IOTimer: 0ns - InvertedIndexFilterTime: 400ns - 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.327us - OutputIndexResultColumnTimer: 6.144us - RawRowsRead: 341.787K (341787) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 844.930us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 375.935us - CloseTime: 61.887us - GetBlockTime: 46.402us - OpenTime: 73.789us - PrepareTime: 325.858us - SinkTime: 234.655us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 774.563us - WaitBfTime: 851.481ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.130ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.519us - CompressTime: 0ns - ExecTime: 343.398us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 46.212us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 91.659us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 315.621ms - RowsProduced: 0 - RpcAvgTime: 281.522ms - RpcCount: 12 - RpcMaxTime: 281.571ms - RpcMinTime: 281.469ms - RpcSumTime: 3s378ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 327ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 954ns - DeserializeAndMergeTime: 0ns - ExecTime: 91.815us - ExprTime: 0ns - GetResultsTime: 9.256us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 25ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.8us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 75.717us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.47us - SerializeKeyTime: 0ns - SerializeResultTime: 13.258us - 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: [15349] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.147us - BlocksProduced: 0 - CloseTime: 40.65us - ExecTime: 110.964ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 140.577us - ProcessConjunctTime: 24.387us - ProjectionTime: 2.229us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 61.407ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 110.751ms - 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: [7.725us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [61.407ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 49.279ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 102ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.339ms - ScannerCtxSchedTime: 61.405ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.675us - ScannerInitTime: 28.127us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 439ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.773us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.675us - BlockInitTime: 53.55us - BlockLoadTime: 49.113ms - BlocksLoad: 106 - CachedPagesNum: 80 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 43.160ms - FirstReadSeekCount: 210 - FirstReadSeekTime: 64.261us - FirstReadTime: 4.919ms - IOTimer: 0ns - InvertedIndexFilterTime: 443ns - 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.901us - OutputIndexResultColumnTimer: 10.203us - RawRowsRead: 423.736K (423736) - 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: 80 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 866.235us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 348.5us - CloseTime: 93.944us - GetBlockTime: 36.160us - OpenTime: 89.145us - PrepareTime: 327.448us - SinkTime: 202.55us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 764.146us - WaitBfTime: 850.479ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.897ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 37.210us - CompressTime: 0ns - ExecTime: 353.670us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.446us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 114.897us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 328.301ms - RowsProduced: 0 - RpcAvgTime: 288.298ms - RpcCount: 12 - RpcMaxTime: 288.365ms - RpcMinTime: 288.247ms - RpcSumTime: 3s459ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 550ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.984us - DeserializeAndMergeTime: 0ns - ExecTime: 69.28us - ExprTime: 0ns - GetResultsTime: 7.113us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 135ns - HashTableSize: 0 - InsertKeysToColumnTime: 919ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 52.973us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.116us - SerializeKeyTime: 0ns - SerializeResultTime: 10.728us - 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: [15351] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.526us - BlocksProduced: 0 - CloseTime: 47.570us - ExecTime: 98.515ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 170.468us - ProcessConjunctTime: 25.181us - ProjectionTime: 2.77us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 62.587ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 98.273ms - 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.015us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [62.587ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 35.624ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 50ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.689ms - ScannerCtxSchedTime: 62.586ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.197us - ScannerInitTime: 42.448us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 423ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.758us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.725us - BlockInitTime: 41.194us - BlockLoadTime: 35.466ms - BlocksLoad: 104 - CachedPagesNum: 79 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 24.799ms - FirstReadSeekCount: 206 - FirstReadSeekTime: 54.398us - FirstReadTime: 9.719ms - IOTimer: 0ns - InvertedIndexFilterTime: 548ns - 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: 54.226us - OutputIndexResultColumnTimer: 8.979us - RawRowsRead: 416.268K (416268) - 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: 79 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 753.96us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 309.228us - CloseTime: 62.618us - GetBlockTime: 24.586us - OpenTime: 100.235us - PrepareTime: 273.70us - SinkTime: 165.109us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 681.823us - WaitBfTime: 852.701ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 104.302ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.550us - CompressTime: 0ns - ExecTime: 296.397us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.821us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 117.26us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 340.53ms - RowsProduced: 0 - RpcAvgTime: 287.563ms - RpcCount: 12 - RpcMaxTime: 287.617ms - RpcMinTime: 287.510ms - RpcSumTime: 3s450ms - 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=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.125us - DeserializeAndMergeTime: 0ns - ExecTime: 35.105us - ExprTime: 0ns - GetResultsTime: 4.930us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 109ns - HashTableSize: 0 - InsertKeysToColumnTime: 437ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.364us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 887ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.400us - 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: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.28us - BlocksProduced: 0 - CloseTime: 43.833us - ExecTime: 100.528ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 158.252us - ProcessConjunctTime: 33.198us - ProjectionTime: 1.527us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 66.25ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.308ms - 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.306us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [66.025ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 34.217ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 39ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.473ms - ScannerCtxSchedTime: 66.23ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.417us - ScannerInitTime: 34.770us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 337ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.335us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 7.577us - BlockInitTime: 32.139us - BlockLoadTime: 34.50ms - BlocksLoad: 100 - CachedPagesNum: 76 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 30.475ms - FirstReadSeekCount: 198 - FirstReadSeekTime: 41.898us - FirstReadTime: 3.38ms - 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: 17.16us - OutputIndexResultColumnTimer: 5.952us - RawRowsRead: 399.553K (399553) - 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: 76 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 55.8ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 53.573ms - CloseTime: 823.74us - GetBlockTime: 45.186ms - OpenTime: 210.330us - PrepareTime: 390.372us - SinkTime: 8.14ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 28.93ms - WaitBfTime: 789.129ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 52.878ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 257.74 KB - CloseTime: 22.40us - CompressTime: 0ns - ExecTime: 8.154ms - InputRows: 30.907K (30907) - LocalBytesSent: 653.57 KB - LocalSendTime: 155.836us - LocalSentRows: 15.564K (15564) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 122.124us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s491ms - RowsProduced: 30.907K (30907) - RpcAvgTime: 4s467ms - RpcCount: 12 - RpcMaxTime: 4s475ms - RpcMinTime: 4s462ms - RpcSumTime: 53s615ms - SerializeBatchTime: 1.0ms - SplitBlockDistributeByChannelTime: 4.460ms - SplitBlockHashComputeTime: 921.758us - UncompressedRowBatchSize: 665.07 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 41.766ms - CloseTime: 573.669us - DeserializeAndMergeTime: 0ns - ExecTime: 45.327ms - ExprTime: 42.612us - GetResultsTime: 2.857ms - HashTableComputeTime: 41.328ms - HashTableEmplaceTime: 39.202ms - HashTableInputCount: 68.654K (68654) - HashTableIterateTime: 274.299us - HashTableSize: 30.907K (30907) - InsertKeysToColumnTime: 1.87ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 23.345us - ProjectionTime: 0ns - RowsProduced: 30.907K (30907) - SerializeDataTime: 998.482us - SerializeKeyTime: 0ns - SerializeResultTime: 2.880ms - 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, 15333, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.295us - BlocksProduced: 19 - CloseTime: 220.570us - ExecTime: 148.40ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 365.381us - ProcessConjunctTime: 50.866us - ProjectionTime: 4.362ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 369.663ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.663ms - 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: [7.301us, 9.397us, 11.223ms, ] - PerScannerRowsRead: [0, 0, 68.65K, ] - PerScannerWaitTime: [121.702ms, 122.457ms, 125.503ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 10.790ms - MemoryUsage: - FreeBlocks: 2.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 42.571ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.462us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 57.995ms - ScannerCtxSchedTime: 369.658ms - ScannerFilterTime: 17.603us - ScannerGetBlockTime: 11.187ms - ScannerInitTime: 121.698us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 783ns - BlockConditionsFilteredBloomFilterTime: 765ns - BlockConditionsFilteredDictTime: 300ns - BlockConditionsFilteredTime: 13.948us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 399ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 40.362us - BlockInitTime: 182.372us - BlockLoadTime: 52.964ms - BlocksLoad: 155 - CachedPagesNum: 139 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 41.389ms - FirstReadSeekCount: 241 - FirstReadSeekTime: 108.472us - FirstReadTime: 5.62ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.477us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.288ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 641.693us - OutputIndexResultColumnTimer: 16.52us - RawRowsRead: 604.659K (604659) - 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.737ms - ShortPredEvalTime: 1.126ms - TotalPagesNum: 139 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 32.549us PipelineXTask (index=1):(Active: 59.631ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 58.526ms - CloseTime: 513.661us - GetBlockTime: 53.486ms - OpenTime: 153.90us - PrepareTime: 427.840us - SinkTime: 4.779ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.864ms - WaitBfTime: 787.2ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.429ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 255.28 KB - CloseTime: 18.762us - CompressTime: 0ns - ExecTime: 4.908ms - InputRows: 30.552K (30552) - LocalBytesSent: 642.19 KB - LocalSendTime: 87.614us - LocalSentRows: 15.293K (15293) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 118.386us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s895ms - RowsProduced: 30.552K (30552) - RpcAvgTime: 4s870ms - RpcCount: 12 - RpcMaxTime: 4s876ms - RpcMinTime: 4s865ms - RpcSumTime: 58s449ms - SerializeBatchTime: 820.169us - SplitBlockDistributeByChannelTime: 2.559ms - SplitBlockHashComputeTime: 503.316us - UncompressedRowBatchSize: 661.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 42.408ms - CloseTime: 338.963us - DeserializeAndMergeTime: 0ns - ExecTime: 53.589ms - ExprTime: 28.487us - GetResultsTime: 10.739ms - HashTableComputeTime: 42.118ms - HashTableEmplaceTime: 40.244ms - HashTableInputCount: 67.716K (67716) - HashTableIterateTime: 183.487us - HashTableSize: 30.552K (30552) - InsertKeysToColumnTime: 9.752ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 38.681us - ProjectionTime: 0ns - RowsProduced: 30.552K (30552) - SerializeDataTime: 591.540us - SerializeKeyTime: 0ns - SerializeResultTime: 10.757ms - 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, 15335, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.919us - BlocksProduced: 19 - CloseTime: 150.235us - ExecTime: 149.72ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 220.655us - ProcessConjunctTime: 38.710us - ProjectionTime: 3.231ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 393.251ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 145.216ms - 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: [12.094us, 4.602us, 7.627ms, ] - PerScannerRowsRead: [0, 0, 67.72K, ] - PerScannerWaitTime: [130.946ms, 130.996ms, 131.308ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.187ms - MemoryUsage: - FreeBlocks: 2.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 76.83ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.141us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 38.564ms - ScannerCtxSchedTime: 393.246ms - ScannerFilterTime: 12.569us - ScannerGetBlockTime: 7.605ms - ScannerInitTime: 82.840us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 659ns - BlockConditionsFilteredBloomFilterTime: 600ns - BlockConditionsFilteredDictTime: 312ns - BlockConditionsFilteredTime: 8.247us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 413ns - BlockInitSeekCount: 49 - BlockInitSeekTime: 37.775us - BlockInitTime: 138.606us - BlockLoadTime: 83.161ms - BlocksLoad: 160 - CachedPagesNum: 144 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 65.814ms - FirstReadSeekCount: 248 - FirstReadSeekTime: 98.487us - FirstReadTime: 3.742ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.197us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.431ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 507.972us - OutputIndexResultColumnTimer: 9.689us - RawRowsRead: 624.718K (624718) - 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.961ms - ShortPredEvalTime: 615.898us - TotalPagesNum: 144 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 29.205us PipelineXTask (index=2):(Active: 20.366ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 19.207ms - CloseTime: 584.206us - GetBlockTime: 13.187ms - OpenTime: 179.904us - PrepareTime: 383.88us - SinkTime: 5.715ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 19.154ms - WaitBfTime: 788.418ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.618ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 254.08 KB - CloseTime: 14.708us - CompressTime: 0ns - ExecTime: 5.809ms - InputRows: 30.201K (30201) - LocalBytesSent: 635.01 KB - LocalSendTime: 94.256us - LocalSentRows: 15.122K (15122) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 84.556us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s622ms - RowsProduced: 30.201K (30201) - RpcAvgTime: 4s593ms - RpcCount: 12 - RpcMaxTime: 4s602ms - RpcMinTime: 4s586ms - RpcSumTime: 55s126ms - SerializeBatchTime: 736.36us - SplitBlockDistributeByChannelTime: 3.326ms - SplitBlockHashComputeTime: 489.206us - UncompressedRowBatchSize: 653.66 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 10.475ms - CloseTime: 454.899us - DeserializeAndMergeTime: 0ns - ExecTime: 13.24ms - ExprTime: 27.805us - GetResultsTime: 1.980ms - HashTableComputeTime: 10.197ms - HashTableEmplaceTime: 8.532ms - HashTableInputCount: 66.761K (66761) - HashTableIterateTime: 209.441us - HashTableSize: 30.201K (30201) - InsertKeysToColumnTime: 681.91us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 31.917us - ProjectionTime: 0ns - RowsProduced: 30.201K (30201) - SerializeDataTime: 602.854us - SerializeKeyTime: 0ns - SerializeResultTime: 2.11ms - 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, 15321, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.171us - BlocksProduced: 19 - CloseTime: 109.792us - ExecTime: 158.761ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 225.138us - ProcessConjunctTime: 42.709us - ProjectionTime: 2.996ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 318.351ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 154.805ms - 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.756us, 10.060us, 19.847ms, ] - PerScannerRowsRead: [0, 0, 66.76K, ] - PerScannerWaitTime: [105.557ms, 105.775ms, 107.018ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 19.596ms - MemoryUsage: - FreeBlocks: 2.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 85.300ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.89us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.160ms - ScannerCtxSchedTime: 318.346ms - ScannerFilterTime: 11.524us - ScannerGetBlockTime: 19.827ms - ScannerInitTime: 89.674us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 584ns - BlockConditionsFilteredBloomFilterTime: 547ns - BlockConditionsFilteredDictTime: 155ns - BlockConditionsFilteredTime: 7.221us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 334ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 30.448us - BlockInitTime: 109.279us - BlockLoadTime: 104.595ms - BlocksLoad: 165 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 96.203ms - FirstReadSeekCount: 262 - FirstReadSeekTime: 104.405us - FirstReadTime: 4.4ms - IOTimer: 0ns - InvertedIndexFilterTime: 817ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.259ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 444.90us - OutputIndexResultColumnTimer: 11.724us - RawRowsRead: 645.772K (645772) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 242.615K (242615) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 1.786ms - ShortPredEvalTime: 582.508us - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 25.659us PipelineXTask (index=3):(Active: 62.862ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 61.726ms - CloseTime: 558.360us - GetBlockTime: 57.348ms - OpenTime: 180.842us - PrepareTime: 385.951us - SinkTime: 4.41ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 21.166ms - WaitBfTime: 788.708ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.212ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 252.35 KB - CloseTime: 18.976us - CompressTime: 0ns - ExecTime: 4.185ms - InputRows: 30.3K (30300) - LocalBytesSent: 640.97 KB - LocalSendTime: 94.137us - LocalSentRows: 15.264K (15264) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 129.172us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s32ms - RowsProduced: 30.3K (30300) - RpcAvgTime: 5s3ms - RpcCount: 12 - RpcMaxTime: 5s8ms - RpcMinTime: 5s0ms - RpcSumTime: 1m - SerializeBatchTime: 688.820us - SplitBlockDistributeByChannelTime: 1.952ms - SplitBlockHashComputeTime: 512.379us - UncompressedRowBatchSize: 651.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 55.411ms - CloseTime: 379.322us - DeserializeAndMergeTime: 0ns - ExecTime: 57.413ms - ExprTime: 28.651us - GetResultsTime: 1.540ms - HashTableComputeTime: 55.40ms - HashTableEmplaceTime: 52.844ms - HashTableInputCount: 68.072K (68072) - HashTableIterateTime: 185.350us - HashTableSize: 30.3K (30300) - InsertKeysToColumnTime: 681.941us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 16.841us - ProjectionTime: 0ns - RowsProduced: 30.3K (30300) - SerializeDataTime: 495.100us - SerializeKeyTime: 0ns - SerializeResultTime: 1.554ms - 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, 15323, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.464us - BlocksProduced: 19 - CloseTime: 154.705us - ExecTime: 166.36ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 251.777us - ProcessConjunctTime: 29.539us - ProjectionTime: 3.15ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 352.828ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 162.313ms - 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: [7.318us, 6.670us, 7.345ms, ] - PerScannerRowsRead: [0, 0, 68.07K, ] - PerScannerWaitTime: [116.829ms, 117.988ms, 118.011ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.51ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 120.400ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.548us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 42.70ms - ScannerCtxSchedTime: 352.824ms - ScannerFilterTime: 22.456us - ScannerGetBlockTime: 7.314ms - ScannerInitTime: 120.388us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 567ns - BlockConditionsFilteredBloomFilterTime: 395ns - BlockConditionsFilteredDictTime: 237ns - BlockConditionsFilteredTime: 5.947us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 280ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 34.79us - BlockInitTime: 134.465us - BlockLoadTime: 127.204ms - BlocksLoad: 167 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 119.225ms - FirstReadSeekCount: 307 - FirstReadSeekTime: 92.470us - FirstReadTime: 5.544ms - IOTimer: 0ns - InvertedIndexFilterTime: 949ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 999.957us - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 199.251us - OutputIndexResultColumnTimer: 11.997us - RawRowsRead: 650.634K (650634) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 75.379K (75379) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 543.342us - ShortPredEvalTime: 94.434us - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 7.433us PipelineXTask (index=4):(Active: 1.250ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 618.310us - CloseTime: 79.479us - GetBlockTime: 114.962us - OpenTime: 174.401us - PrepareTime: 362.54us - SinkTime: 284.5us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.157ms - WaitBfTime: 789.495ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.615ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.711us - CompressTime: 0ns - ExecTime: 422.960us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 58.24us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 129.231us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s605ms - RowsProduced: 0 - RpcAvgTime: 4s588ms - RpcCount: 12 - RpcMaxTime: 4s588ms - RpcMinTime: 4s588ms - RpcSumTime: 55s60ms - 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 STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.734us - DeserializeAndMergeTime: 0ns - ExecTime: 48.403us - ExprTime: 0ns - GetResultsTime: 10.582us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 96ns - HashTableSize: 0 - InsertKeysToColumnTime: 795ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.434us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.846us - SerializeKeyTime: 0ns - SerializeResultTime: 15.540us - 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, 15347] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.949us - BlocksProduced: 0 - CloseTime: 63.478us - ExecTime: 169.219ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 262.492us - ProcessConjunctTime: 59.489us - ProjectionTime: 3.442us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 259.364ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 168.801ms - 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.228us, 4.586us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [129.334ms, 130.030ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 76.285ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 249ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 51.286ms - ScannerCtxSchedTime: 259.361ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.694us - ScannerInitTime: 73.703us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 505ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.656us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 30 - BlockInitSeekTime: 24.656us - BlockInitTime: 109.655us - BlockLoadTime: 75.894ms - BlocksLoad: 191 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 65.372ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 138.474us - FirstReadTime: 8.787ms - IOTimer: 0ns - InvertedIndexFilterTime: 833ns - 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: 51.754us - OutputIndexResultColumnTimer: 15.488us - RawRowsRead: 761.668K (761668) - 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: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 878.296us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 347.537us - CloseTime: 111.153us - GetBlockTime: 49.740us - OpenTime: 110.392us - PrepareTime: 300.5us - SinkTime: 164.521us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 758.172us - WaitBfTime: 789.361ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 168.262ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.800us - CompressTime: 0ns - ExecTime: 282.45us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.408us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 99.346us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s984ms - RowsProduced: 0 - RpcAvgTime: 4s963ms - RpcCount: 12 - RpcMaxTime: 4s965ms - RpcMinTime: 4s961ms - RpcSumTime: 59s557ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 325ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.866us - DeserializeAndMergeTime: 0ns - ExecTime: 36.232us - ExprTime: 0ns - GetResultsTime: 7.264us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 110ns - HashTableSize: 0 - InsertKeysToColumnTime: 444ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 17.233us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.132us - SerializeKeyTime: 0ns - SerializeResultTime: 10.476us - 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, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.335us - BlocksProduced: 0 - CloseTime: 85.251us - ExecTime: 161.669ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 172.897us - ProcessConjunctTime: 35.664us - ProjectionTime: 2.849us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 255.829ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 161.376ms - 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.194us, 4.291us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [126.859ms, 128.969ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 67.872ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 133ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.485ms - ScannerCtxSchedTime: 255.826ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.796us - ScannerInitTime: 49.288us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 540ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.11us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.163us - BlockInitTime: 70.236us - BlockLoadTime: 67.593ms - BlocksLoad: 192 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 58.983ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 253.861us - FirstReadTime: 7.115ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.252us - 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: 54.419us - OutputIndexResultColumnTimer: 14.463us - RawRowsRead: 765.16K (765160) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 1.587ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 811.624us - CloseTime: 127.57us - GetBlockTime: 98.907us - OpenTime: 321.204us - PrepareTime: 316.357us - SinkTime: 352.452us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.447ms - WaitBfTime: 787.957ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 191.917ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.363us - CompressTime: 0ns - ExecTime: 484.91us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 66.416us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 106.292us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s965ms - RowsProduced: 0 - RpcAvgTime: 4s947ms - RpcCount: 12 - RpcMaxTime: 4s947ms - RpcMinTime: 4s946ms - RpcSumTime: 59s365ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 290ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 6.501us - DeserializeAndMergeTime: 0ns - ExecTime: 48.597us - ExprTime: 0ns - GetResultsTime: 9.18us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 192ns - HashTableSize: 0 - InsertKeysToColumnTime: 415ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.164us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.83us - SerializeKeyTime: 0ns - SerializeResultTime: 12.845us - 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, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.806us - BlocksProduced: 0 - CloseTime: 87.619us - ExecTime: 133.27ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 403.569us - ProcessConjunctTime: 96.958us - ProjectionTime: 3.173us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 206.473ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.458ms - 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.516us, 6.932us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [103.090ms, 103.383ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 61.91ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 156ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.794ms - ScannerCtxSchedTime: 206.470ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.758us - ScannerInitTime: 167.481us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 519ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.561us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 13.786us - BlockInitTime: 62.816us - BlockLoadTime: 60.797ms - BlocksLoad: 193 - CachedPagesNum: 149 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 38.494ms - FirstReadSeekCount: 382 - FirstReadSeekTime: 118.67us - FirstReadTime: 20.935ms - IOTimer: 0ns - InvertedIndexFilterTime: 843ns - 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: 59.789us - OutputIndexResultColumnTimer: 17.532us - RawRowsRead: 772.394K (772394) - 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: 149 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.111ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 548.945us - CloseTime: 66.926us - GetBlockTime: 60.466us - OpenTime: 122.913us - PrepareTime: 362.568us - SinkTime: 340.46us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.33ms - WaitBfTime: 788.567ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 191.264ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.947us - CompressTime: 0ns - ExecTime: 465.724us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.485us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 117.645us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s972ms - RowsProduced: 0 - RpcAvgTime: 4s952ms - RpcCount: 12 - RpcMaxTime: 4s953ms - RpcMinTime: 4s952ms - RpcSumTime: 59s434ms - 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 STREAMING_AGGREGATION_OPERATOR (id=168): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 477ns - DeserializeAndMergeTime: 0ns - ExecTime: 44.259us - ExprTime: 0ns - GetResultsTime: 9.633us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 127ns - HashTableSize: 0 - InsertKeysToColumnTime: 287ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 29.269us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 758ns - SerializeKeyTime: 0ns - SerializeResultTime: 12.514us - 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, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.688us - BlocksProduced: 0 - CloseTime: 55.785us - ExecTime: 134.183ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 198.605us - ProcessConjunctTime: 35.802us - ProjectionTime: 3.545us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 223.788ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 133.881ms - 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.874us, 6.782us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [107.191ms, 116.597ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 55.384ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 224ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.785ms - ScannerCtxSchedTime: 223.784ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.127us - ScannerInitTime: 54.362us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 484ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.753us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 15 - BlockInitSeekTime: 18.696us - BlockInitTime: 94.783us - BlockLoadTime: 55.69ms - BlocksLoad: 192 - CachedPagesNum: 147 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 44.445ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 116.520us - FirstReadTime: 8.918ms - IOTimer: 0ns - InvertedIndexFilterTime: 976ns - 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: 71.321us - OutputIndexResultColumnTimer: 18.494us - RawRowsRead: 767.593K (767593) - 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: 147 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 1.192ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 525.671us - CloseTime: 115.401us - GetBlockTime: 60.232us - OpenTime: 148.631us - PrepareTime: 393.952us - SinkTime: 289.612us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.66ms - WaitBfTime: 788.883ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 180.690ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.284us - CompressTime: 0ns - ExecTime: 423.165us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 36.310us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 121.951us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s971ms - RowsProduced: 0 - RpcAvgTime: 4s952ms - RpcCount: 12 - RpcMaxTime: 4s952ms - RpcMinTime: 4s952ms - RpcSumTime: 59s429ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 429ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.362us - DeserializeAndMergeTime: 0ns - ExecTime: 37.577us - ExprTime: 0ns - GetResultsTime: 5.715us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 130ns - HashTableSize: 0 - InsertKeysToColumnTime: 542ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.381us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 950ns - SerializeKeyTime: 0ns - SerializeResultTime: 9.492us - 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, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.957us - BlocksProduced: 0 - CloseTime: 97.540us - ExecTime: 145.119ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 232.859us - ProcessConjunctTime: 44.351us - ProjectionTime: 3.170us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 238.680ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 144.738ms - 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.963us, 7.247us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [117.886ms, 120.793ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 124.443ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 183ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.233ms - ScannerCtxSchedTime: 238.676ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.598us - ScannerInitTime: 70.187us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 677ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.520us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 39.28us - BlockInitTime: 109.932us - BlockLoadTime: 124.103ms - BlocksLoad: 192 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 113.921ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 113.607us - FirstReadTime: 8.575ms - IOTimer: 0ns - InvertedIndexFilterTime: 871ns - 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.192us - OutputIndexResultColumnTimer: 17.368us - RawRowsRead: 769.413K (769413) - 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: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 1.218ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 546.926us - CloseTime: 147.525us - GetBlockTime: 89.71us - OpenTime: 178.385us - PrepareTime: 334.7us - SinkTime: 239.427us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.58ms - WaitBfTime: 786.664ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.679ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.262us - CompressTime: 0ns - ExecTime: 369.66us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 51.190us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 107.288us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s760ms - RowsProduced: 0 - RpcAvgTime: 4s739ms - RpcCount: 12 - RpcMaxTime: 4s739ms - RpcMinTime: 4s739ms - RpcSumTime: 56s872ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 580ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.607us - DeserializeAndMergeTime: 0ns - ExecTime: 51.646us - ExprTime: 0ns - GetResultsTime: 10.672us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 26ns - HashTableSize: 0 - InsertKeysToColumnTime: 454ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 32.284us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.972us - SerializeKeyTime: 0ns - SerializeResultTime: 14.541us - 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: [15311, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.562us - BlocksProduced: 0 - CloseTime: 105.48us - ExecTime: 218.468ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 236.104us - ProcessConjunctTime: 49.647us - ProjectionTime: 3.540us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 253.81ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 218.57ms - 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.135us, 9.994us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [126.248ms, 126.833ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 122.646ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 204ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 56.309ms - ScannerCtxSchedTime: 253.77ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.202us - ScannerInitTime: 92.928us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 570ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.39us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 20.117us - BlockInitTime: 86.889us - BlockLoadTime: 122.271ms - BlocksLoad: 190 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 111.130ms - FirstReadSeekCount: 376 - FirstReadSeekTime: 145.523us - FirstReadTime: 9.138ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.174us - 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: 82.339us - OutputIndexResultColumnTimer: 20.659us - RawRowsRead: 759.906K (759906) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 1.373ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 794.19us - CloseTime: 105.606us - GetBlockTime: 98.298us - OpenTime: 147.464us - PrepareTime: 316.119us - SinkTime: 488.491us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.256ms - WaitBfTime: 789.658ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.770ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.914us - CompressTime: 0ns - ExecTime: 614.29us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 72.731us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 106.255us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s405ms - RowsProduced: 0 - RpcAvgTime: 4s388ms - RpcCount: 12 - RpcMaxTime: 4s388ms - RpcMinTime: 4s387ms - RpcSumTime: 52s658ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 553ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.58us - DeserializeAndMergeTime: 0ns - ExecTime: 79.497us - ExprTime: 0ns - GetResultsTime: 11.632us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 153ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.276us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 58.76us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.662us - SerializeKeyTime: 0ns - SerializeResultTime: 17.587us - 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: [15327, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.761us - BlocksProduced: 0 - CloseTime: 80.691us - ExecTime: 150.922ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 218.320us - ProcessConjunctTime: 32.188us - ProjectionTime: 3.76us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 264.145ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 150.544ms - 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: [7.294us, 5.890us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [131.919ms, 132.226ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 39.102ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 100ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.91ms - ScannerCtxSchedTime: 264.142ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.194us - ScannerInitTime: 87.487us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 507ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.317us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 16 - BlockInitSeekTime: 16.424us - BlockInitTime: 72.256us - BlockLoadTime: 38.824ms - BlocksLoad: 170 - CachedPagesNum: 132 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 30.596ms - FirstReadSeekCount: 336 - FirstReadSeekTime: 92.484us - FirstReadTime: 6.980ms - IOTimer: 0ns - InvertedIndexFilterTime: 676ns - 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: 41.394us - OutputIndexResultColumnTimer: 13.416us - RawRowsRead: 681.79K (681790) - 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: 132 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 22.494ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.543ms - CloseTime: 529.319us - GetBlockTime: 17.335ms - OpenTime: 113.495us - PrepareTime: 301.243us - SinkTime: 3.992ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.384ms - WaitBfTime: 787.173ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.570ms DATA_STREAM_SINK_OPERATOR (id=169,dst_id=169): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 255.37 KB - CloseTime: 17.845us - CompressTime: 0ns - ExecTime: 4.99ms - InputRows: 30.459K (30459) - LocalBytesSent: 641.01 KB - LocalSendTime: 84.865us - LocalSentRows: 15.265K (15265) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 97.791us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s985ms - RowsProduced: 30.459K (30459) - RpcAvgTime: 4s957ms - RpcCount: 12 - RpcMaxTime: 4s961ms - RpcMinTime: 4s950ms - RpcSumTime: 59s489ms - SerializeBatchTime: 758.827us - SplitBlockDistributeByChannelTime: 1.922ms - SplitBlockHashComputeTime: 524.572us - UncompressedRowBatchSize: 658.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 15.460ms - CloseTime: 365.570us - DeserializeAndMergeTime: 0ns - ExecTime: 17.444ms - ExprTime: 26.269us - GetResultsTime: 1.545ms - HashTableComputeTime: 15.180ms - HashTableEmplaceTime: 8.945ms - HashTableInputCount: 67.464K (67464) - HashTableIterateTime: 182.432us - HashTableSize: 30.459K (30459) - InsertKeysToColumnTime: 699.364us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 18.750us - ProjectionTime: 0ns - RowsProduced: 30.459K (30459) - SerializeDataTime: 493.709us - SerializeKeyTime: 0ns - SerializeResultTime: 1.560ms - 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: [15329, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.236us - BlocksProduced: 19 - CloseTime: 139.53us - ExecTime: 168.153ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 200.892us - ProcessConjunctTime: 27.57us - ProjectionTime: 20.149ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 266.141ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 147.403ms - 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.154us, 94.699ms, ] - PerScannerRowsRead: [0, 67.46K, ] - PerScannerWaitTime: [132.706ms, 133.434ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 94.255ms - MemoryUsage: - FreeBlocks: 2.15 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.756ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 918ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.822ms - ScannerCtxSchedTime: 266.138ms - ScannerFilterTime: 18.851us - ScannerGetBlockTime: 94.664ms - ScannerInitTime: 62.482us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 761ns - BlockConditionsFilteredBloomFilterTime: 268ns - BlockConditionsFilteredDictTime: 213ns - BlockConditionsFilteredTime: 7.351us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 289ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 28.290us - BlockInitTime: 121.494us - BlockLoadTime: 109.974ms - BlocksLoad: 95 - CachedPagesNum: 93 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 104.444ms - FirstReadSeekCount: 165 - FirstReadSeekTime: 67.560us - FirstReadTime: 2.774ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.286us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.566ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 246.881us - OutputIndexResultColumnTimer: 7.346us - RawRowsRead: 366.774K (366774) - 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: 896.48us - ShortPredEvalTime: 161.420us - TotalPagesNum: 93 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.975us Fragment 89: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 5.487ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 5.246ms - CloseTime: 26.570us - GetBlockTime: 1.936ms - OpenTime: 8.597us - PrepareTime: 196.836us - SinkTime: 3.180ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 5.437ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 687.348us DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.75 KB - CloseTime: 9.170us - CompressTime: 0ns - ExecTime: 3.313ms - InputRows: 4.521K (4521) - LocalBytesSent: 195.90 KB - LocalSendTime: 282.325us - LocalSentRows: 2.572K (2572) - MemoryUsage: - PeakMemoryUsage: 526.69 KB - MergeBlockTime: 0ns - OpenTime: 131.35us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.421ms - RowsProduced: 4.521K (4521) - RpcAvgTime: 5.171ms - RpcCount: 12 - RpcMaxTime: 6.160ms - RpcMinTime: 4.683ms - RpcSumTime: 62.52ms - SerializeBatchTime: 537.922us - SplitBlockDistributeByChannelTime: 1.242ms - SplitBlockHashComputeTime: 130.988us - UncompressedRowBatchSize: 154.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 15.422us - ExecTime: 1.892ms - InitProbeSideTime: 356.792us - JoinFilterTimer: 1.321us - MemoryUsage: - PeakMemoryUsage: 72.00 KB - ProbeKeyArena: 72.00 KB - OpenTime: 29.660us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.737us - ProbeFindNextTime: 0ns - ProbeRows: 4.521K (4521) - ProbeTime: 1.643ms - ProbeWhenBuildSideOutputTime: 103.60us - ProbeWhenProbeSideOutputTime: 167.388us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 737.691us - ProjectionTime: 155.804us - RowsProduced: 4.521K (4521) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 45.301us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 78.00 KB - OpenTime: 720ns - ProjectionTime: 0ns - RowsProduced: 4.521K (4521) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s380ms PipelineXTask (index=3):(Active: 4.728ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.465ms - CloseTime: 47.13us - GetBlockTime: 1.606ms - OpenTime: 6.375us - PrepareTime: 202.927us - SinkTime: 2.748ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.582ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 447.149us DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 99.87 KB - CloseTime: 18.567us - CompressTime: 0ns - ExecTime: 2.899ms - InputRows: 3.705K (3705) - LocalBytesSent: 116.92 KB - LocalSendTime: 169.125us - LocalSentRows: 1.535K (1535) - MemoryUsage: - PeakMemoryUsage: 414.25 KB - MergeBlockTime: 0ns - OpenTime: 139.835us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.200ms - RowsProduced: 3.705K (3705) - RpcAvgTime: 5.411ms - RpcCount: 12 - RpcMaxTime: 6.142ms - RpcMinTime: 4.593ms - RpcSumTime: 64.936ms - SerializeBatchTime: 496.564us - SplitBlockDistributeByChannelTime: 1.44ms - SplitBlockHashComputeTime: 115.899us - UncompressedRowBatchSize: 171.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 23.321us - ExecTime: 1.569ms - InitProbeSideTime: 332.868us - JoinFilterTimer: 1.972us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 12.837us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.824us - ProbeFindNextTime: 0ns - ProbeRows: 3.705K (3705) - ProbeTime: 1.360ms - ProbeWhenBuildSideOutputTime: 74.264us - ProbeWhenProbeSideOutputTime: 143.770us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 599.812us - ProjectionTime: 124.667us - RowsProduced: 3.705K (3705) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 35.250us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 70.00 KB - OpenTime: 1.13us - ProjectionTime: 0ns - RowsProduced: 3.705K (3705) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s381ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.826ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.743ms - CloseTime: 25.386us - GetBlockTime: 3.458ms - OpenTime: 2.935us - PrepareTime: 48.495us - SinkTime: 131.210us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.762ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 966.782us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 121.422us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.209us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 3.221ms - CloseTime: 10.924us - ExecTime: 3.279ms - HashTableComputeTime: 2.591ms - HashTableEmplaceTime: 2.6ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.164us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 22 - BytesReceived: 147.44 KB - CloseTime: 10.886us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 389.964us - ExecTime: 196.280us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 70.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 35.00 KB - OpenTime: 14.636us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s379ms PipelineXTask (index=4):(Active: 3.147ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.76ms - CloseTime: 12.122us - GetBlockTime: 2.840ms - OpenTime: 2.566us - PrepareTime: 50.207us - SinkTime: 97.973us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.98ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.6ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 90.974us - InputRows: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.120us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.678ms - CloseTime: 3.645us - ExecTime: 2.699ms - HashTableComputeTime: 2.130ms - HashTableEmplaceTime: 1.607ms - HashTableInputCount: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.53us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 22 - BytesReceived: 149.05 KB - CloseTime: 5.895us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 400.939us - ExecTime: 151.47us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 70.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 35.00 KB - OpenTime: 17.302us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s380ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 7.220ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 7.17ms - CloseTime: 12.252us - GetBlockTime: 380.742us - OpenTime: 1.580us - PrepareTime: 182.56us - SinkTime: 6.508ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 7.181ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.425ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 18.903us - BuildRows: 52.588K (52588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.912ms - BuildTableInsertTime: 4.333ms - BuildTableTime: 4.484ms - CloseTime: 0ns - ExecTime: 6.590ms - InputRows: 52.587K (52587) - MemoryUsage: - BuildBlocks: 3.71 MB - BuildKeyArena: 3.16 MB - HashTable: 461.43 KB - PeakMemoryUsage: 7.32 MB - OpenTime: 97.127us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=149): - BlocksProduced: 34 - BytesReceived: 880.00 KB - CloseTime: 9.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.522ms - ExecTime: 392.404us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.99 MB - MemoryUsage: - Blocks: 3.88 MB - PeakMemoryUsage: 2.48 MB - OpenTime: 16.805us - ProjectionTime: 0ns - RowsProduced: 52.587K (52587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s380ms PipelineXTask (index=5):(Active: 97.411us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.545us - CloseTime: 5.310us - GetBlockTime: 0ns - OpenTime: 2.412us - PrepareTime: 47.870us - SinkTime: 17.928us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.57us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 573.937us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8431 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.711us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.105us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s397ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.915us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.186us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.490us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 7.841ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 7.614ms - CloseTime: 41.52us - GetBlockTime: 3.339ms - OpenTime: 5.375us - PrepareTime: 174.456us - SinkTime: 4.173ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 7.788ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.685ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 262.80 KB - CloseTime: 12.195us - CompressTime: 0ns - ExecTime: 4.263ms - InputRows: 10.526K (10526) - LocalBytesSent: 337.29 KB - LocalSendTime: 93.22us - LocalSentRows: 4.428K (4428) - MemoryUsage: - PeakMemoryUsage: 1.22 MB - MergeBlockTime: 0ns - OpenTime: 101.93us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.916ms - RowsProduced: 10.526K (10526) - RpcAvgTime: 3.767ms - RpcCount: 12 - RpcMaxTime: 5.937ms - RpcMinTime: 917.63us - RpcSumTime: 45.206ms - SerializeBatchTime: 761.854us - SplitBlockDistributeByChannelTime: 1.937ms - SplitBlockHashComputeTime: 251.59us - UncompressedRowBatchSize: 479.41 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 20 - BuildOutputBlock: 0ns - CloseTime: 26.247us - ExecTime: 3.267ms - InitProbeSideTime: 786.291us - JoinFilterTimer: 2.437us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 15.793us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.290us - ProbeFindNextTime: 0ns - ProbeRows: 10.526K (10526) - ProbeTime: 2.952ms - ProbeWhenBuildSideOutputTime: 218.456us - ProbeWhenProbeSideOutputTime: 308.828us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.321ms - ProjectionTime: 200.573us - RowsProduced: 10.526K (10526) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 72.760us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 304.00 KB - OpenTime: 915ns - ProjectionTime: 0ns - RowsProduced: 10.526K (10526) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s372ms PipelineXTask (index=3):(Active: 6.298ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.45ms - CloseTime: 43.203us - GetBlockTime: 2.552ms - OpenTime: 6.371us - PrepareTime: 197.225us - SinkTime: 3.366ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 6.213ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 874.525us DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 82.59 KB - CloseTime: 11.430us - CompressTime: 0ns - ExecTime: 3.508ms - InputRows: 5.899K (5899) - LocalBytesSent: 317.32 KB - LocalSendTime: 151.981us - LocalSentRows: 4.166K (4166) - MemoryUsage: - PeakMemoryUsage: 658.19 KB - MergeBlockTime: 0ns - OpenTime: 140.199us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.14ms - RowsProduced: 5.899K (5899) - RpcAvgTime: 4.985ms - RpcCount: 12 - RpcMaxTime: 5.261ms - RpcMinTime: 4.470ms - RpcSumTime: 59.824ms - SerializeBatchTime: 377.216us - SplitBlockDistributeByChannelTime: 1.586ms - SplitBlockHashComputeTime: 211.395us - UncompressedRowBatchSize: 137.98 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 20 - BuildOutputBlock: 0ns - CloseTime: 29.367us - ExecTime: 2.454ms - InitProbeSideTime: 492.274us - JoinFilterTimer: 3.409us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 12.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.440us - ProbeFindNextTime: 0ns - ProbeRows: 5.899K (5899) - ProbeTime: 2.169ms - ProbeWhenBuildSideOutputTime: 145.21us - ProbeWhenProbeSideOutputTime: 212.176us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.8ms - ProjectionTime: 169.873us - RowsProduced: 5.899K (5899) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 87.139us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 664ns - ProjectionTime: 0ns - RowsProduced: 5.899K (5899) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s378ms PipelineXTask (index=6):(Active: 3.277ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.67ms - CloseTime: 43.833us - GetBlockTime: 1.39ms - OpenTime: 4.524us - PrepareTime: 157.308us - SinkTime: 1.947ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.222ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.41ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 103.27 KB - CloseTime: 30.217us - CompressTime: 0ns - ExecTime: 2.76ms - InputRows: 2.959K (2959) - LocalBytesSent: 51.33 KB - LocalSendTime: 128.474us - LocalSentRows: 674 - MemoryUsage: - PeakMemoryUsage: 344.13 KB - MergeBlockTime: 0ns - OpenTime: 104.17us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.590ms - RowsProduced: 2.959K (2959) - RpcAvgTime: 5.486ms - RpcCount: 12 - RpcMaxTime: 5.943ms - RpcMinTime: 2.123ms - RpcSumTime: 65.833ms - SerializeBatchTime: 489.573us - SplitBlockDistributeByChannelTime: 650.880us - SplitBlockHashComputeTime: 78.298us - UncompressedRowBatchSize: 180.62 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 11.168us - ExecTime: 995.605us - InitProbeSideTime: 202.427us - JoinFilterTimer: 1.21us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 15.894us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.571us - ProbeFindNextTime: 0ns - ProbeRows: 2.959K (2959) - ProbeTime: 853.92us - ProbeWhenBuildSideOutputTime: 49.407us - ProbeWhenProbeSideOutputTime: 83.616us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 384.688us - ProjectionTime: 87.185us - RowsProduced: 2.959K (2959) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 45.364us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 339.55 KB - OpenTime: 673ns - ProjectionTime: 0ns - RowsProduced: 2.959K (2959) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s379ms PipelineXTask (index=9):(Active: 3.778ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.589ms - CloseTime: 28.938us - GetBlockTime: 1.151ms - OpenTime: 3.947us - PrepareTime: 152.858us - SinkTime: 2.378ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.740ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.235ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 86.56 KB - CloseTime: 11.771us - CompressTime: 0ns - ExecTime: 2.490ms - InputRows: 2.913K (2913) - LocalBytesSent: 76.32 KB - LocalSendTime: 165.444us - LocalSentRows: 1.002K (1002) - MemoryUsage: - PeakMemoryUsage: 343.75 KB - MergeBlockTime: 0ns - OpenTime: 106.441us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.741ms - RowsProduced: 2.913K (2913) - RpcAvgTime: 4.775ms - RpcCount: 12 - RpcMaxTime: 5.389ms - RpcMinTime: 4.495ms - RpcSumTime: 57.307ms - SerializeBatchTime: 388.771us - SplitBlockDistributeByChannelTime: 738.752us - SplitBlockHashComputeTime: 116.979us - UncompressedRowBatchSize: 151.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 14.633us - ExecTime: 1.129ms - InitProbeSideTime: 233.564us - JoinFilterTimer: 1.91us - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 10.527us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.902us - ProbeFindNextTime: 0ns - ProbeRows: 2.913K (2913) - ProbeTime: 978.551us - ProbeWhenBuildSideOutputTime: 83.516us - ProbeWhenProbeSideOutputTime: 121.242us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 364.268us - ProjectionTime: 90.739us - RowsProduced: 2.913K (2913) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 27.288us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 307.00 KB - OpenTime: 945ns - ProjectionTime: 0ns - RowsProduced: 2.913K (2913) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s379ms PipelineXTask (index=12):(Active: 2.578ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.369ms - CloseTime: 31.624us - GetBlockTime: 825.432us - OpenTime: 7.106us - PrepareTime: 165.968us - SinkTime: 1.482ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.538ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.664ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.05 KB - CloseTime: 9.763us - CompressTime: 0ns - ExecTime: 1.603ms - InputRows: 3.029K (3029) - LocalBytesSent: 176.17 KB - LocalSendTime: 137.641us - LocalSentRows: 2.313K (2313) - MemoryUsage: - PeakMemoryUsage: 356.75 KB - MergeBlockTime: 0ns - OpenTime: 115.697us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.376ms - RowsProduced: 3.029K (3029) - RpcAvgTime: 4.910ms - RpcCount: 12 - RpcMaxTime: 5.122ms - RpcMinTime: 4.604ms - RpcSumTime: 58.931ms - SerializeBatchTime: 260.100us - SplitBlockDistributeByChannelTime: 547.662us - SplitBlockHashComputeTime: 61.224us - UncompressedRowBatchSize: 57.50 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 19.785us - ExecTime: 826.684us - InitProbeSideTime: 185.558us - JoinFilterTimer: 431ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 16.402us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.768us - ProbeFindNextTime: 0ns - ProbeRows: 3.029K (3029) - ProbeTime: 699.172us - ProbeWhenBuildSideOutputTime: 39.708us - ProbeWhenProbeSideOutputTime: 72.343us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 307.497us - ProjectionTime: 68.300us - RowsProduced: 3.029K (3029) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 23.308us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 2.631us - ProjectionTime: 0ns - RowsProduced: 3.029K (3029) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s380ms PipelineXTask (index=15):(Active: 3.289ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.92ms - CloseTime: 46.414us - GetBlockTime: 1.145ms - OpenTime: 3.815us - PrepareTime: 142.218us - SinkTime: 1.888ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.233ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.616ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 70.05 KB - CloseTime: 16.846us - CompressTime: 0ns - ExecTime: 1.979ms - InputRows: 2.925K (2925) - LocalBytesSent: 109.06 KB - LocalSendTime: 193.560us - LocalSentRows: 1.432K (1432) - MemoryUsage: - PeakMemoryUsage: 351.81 KB - MergeBlockTime: 0ns - OpenTime: 93.198us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.245ms - RowsProduced: 2.925K (2925) - RpcAvgTime: 2.55ms - RpcCount: 12 - RpcMaxTime: 5.909ms - RpcMinTime: 798.673us - RpcSumTime: 24.663ms - SerializeBatchTime: 396.831us - SplitBlockDistributeByChannelTime: 554.60us - SplitBlockHashComputeTime: 68.462us - UncompressedRowBatchSize: 118.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 24.410us - ExecTime: 1.126ms - InitProbeSideTime: 206.302us - JoinFilterTimer: 1.27us - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 11.309us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.120us - ProbeFindNextTime: 0ns - ProbeRows: 2.925K (2925) - ProbeTime: 961.931us - ProbeWhenBuildSideOutputTime: 61.585us - ProbeWhenProbeSideOutputTime: 105.559us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 436.209us - ProjectionTime: 93.464us - RowsProduced: 2.925K (2925) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 33.520us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 280.00 KB - OpenTime: 697ns - ProjectionTime: 0ns - RowsProduced: 2.925K (2925) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s376ms PipelineXTask (index=18):(Active: 2.698ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.485ms - CloseTime: 45.594us - GetBlockTime: 975.62us - OpenTime: 4.791us - PrepareTime: 157.978us - SinkTime: 1.450ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.644ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.458ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 96.94 KB - CloseTime: 24.16us - CompressTime: 0ns - ExecTime: 1.577ms - InputRows: 2.963K (2963) - LocalBytesSent: 62.76 KB - LocalSendTime: 75.620us - LocalSentRows: 824 - MemoryUsage: - PeakMemoryUsage: 348.25 KB - MergeBlockTime: 0ns - OpenTime: 108.192us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.325ms - RowsProduced: 2.963K (2963) - RpcAvgTime: 5.6ms - RpcCount: 12 - RpcMaxTime: 5.276ms - RpcMinTime: 4.663ms - RpcSumTime: 60.76ms - SerializeBatchTime: 307.242us - SplitBlockDistributeByChannelTime: 459.248us - SplitBlockHashComputeTime: 64.187us - UncompressedRowBatchSize: 169.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 19.121us - ExecTime: 963.263us - InitProbeSideTime: 238.69us - JoinFilterTimer: 889ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 13.545us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.303us - ProbeFindNextTime: 0ns - ProbeRows: 2.963K (2963) - ProbeTime: 813.266us - ProbeWhenBuildSideOutputTime: 47.71us - ProbeWhenProbeSideOutputTime: 73.925us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 343.569us - ProjectionTime: 79.286us - RowsProduced: 2.963K (2963) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 28.479us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 210.00 KB - OpenTime: 805ns - ProjectionTime: 0ns - RowsProduced: 2.963K (2963) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s378ms PipelineXTask (index=21):(Active: 3.924ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.704ms - CloseTime: 49.372us - GetBlockTime: 1.286ms - OpenTime: 4.616us - PrepareTime: 155.482us - SinkTime: 2.308ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.859ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.565ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 57.21 KB - CloseTime: 25.215us - CompressTime: 0ns - ExecTime: 2.438ms - InputRows: 2.979K (2979) - LocalBytesSent: 137.55 KB - LocalSendTime: 152.627us - LocalSentRows: 1.806K (1806) - MemoryUsage: - PeakMemoryUsage: 346.81 KB - MergeBlockTime: 0ns - OpenTime: 108.556us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.419ms - RowsProduced: 2.979K (2979) - RpcAvgTime: 5.716ms - RpcCount: 12 - RpcMaxTime: 5.957ms - RpcMinTime: 5.416ms - RpcSumTime: 68.594ms - SerializeBatchTime: 389.354us - SplitBlockDistributeByChannelTime: 897.965us - SplitBlockHashComputeTime: 69.380us - UncompressedRowBatchSize: 93.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 18.140us - ExecTime: 1.260ms - InitProbeSideTime: 240.85us - JoinFilterTimer: 538ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 11.391us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.17us - ProbeFindNextTime: 0ns - ProbeRows: 2.979K (2979) - ProbeTime: 1.102ms - ProbeWhenBuildSideOutputTime: 126.832us - ProbeWhenProbeSideOutputTime: 121.58us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 468.784us - ProjectionTime: 89.290us - RowsProduced: 2.979K (2979) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 35.80us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 633ns - ProjectionTime: 0ns - RowsProduced: 2.979K (2979) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s379ms PipelineXTask (index=24):(Active: 3.936ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.730ms - CloseTime: 42.644us - GetBlockTime: 1.263ms - OpenTime: 5.53us - PrepareTime: 151.961us - SinkTime: 2.412ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.574ms DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 69.96 KB - CloseTime: 9.270us - CompressTime: 0ns - ExecTime: 2.522ms - InputRows: 2.889K (2889) - LocalBytesSent: 106.09 KB - LocalSendTime: 122.467us - LocalSentRows: 1.393K (1393) - MemoryUsage: - PeakMemoryUsage: 341.69 KB - MergeBlockTime: 0ns - OpenTime: 104.628us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.980ms - RowsProduced: 2.889K (2889) - RpcAvgTime: 5.406ms - RpcCount: 12 - RpcMaxTime: 5.928ms - RpcMinTime: 4.981ms - RpcSumTime: 64.879ms - SerializeBatchTime: 448.647us - SplitBlockDistributeByChannelTime: 663.491us - SplitBlockHashComputeTime: 102.508us - UncompressedRowBatchSize: 119.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 31.75us - ExecTime: 1.258ms - InitProbeSideTime: 213.825us - JoinFilterTimer: 504ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 13.450us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.512us - ProbeFindNextTime: 0ns - ProbeRows: 2.889K (2889) - ProbeTime: 1.1ms - ProbeWhenBuildSideOutputTime: 57.162us - ProbeWhenProbeSideOutputTime: 142.323us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 453.986us - ProjectionTime: 180.810us - RowsProduced: 2.889K (2889) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 28.298us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 280.00 KB - OpenTime: 513ns - ProjectionTime: 0ns - RowsProduced: 2.889K (2889) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s379ms PipelineXTask (index=27):(Active: 3.306ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.103ms - CloseTime: 41.28us - GetBlockTime: 1.118ms - OpenTime: 4.504us - PrepareTime: 152.521us - SinkTime: 1.907ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.255ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 472.869us DATA_STREAM_SINK_OPERATOR (id=166,dst_id=166): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 50.84 KB - CloseTime: 16.635us - CompressTime: 0ns - ExecTime: 2.18ms - InputRows: 2.95K (2950) - LocalBytesSent: 150.64 KB - LocalSendTime: 141.306us - LocalSentRows: 1.978K (1978) - MemoryUsage: - PeakMemoryUsage: 346.56 KB - MergeBlockTime: 0ns - OpenTime: 98.819us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.55ms - RowsProduced: 2.95K (2950) - RpcAvgTime: 3.903ms - RpcCount: 12 - RpcMaxTime: 5.959ms - RpcMinTime: 1.594ms - RpcSumTime: 46.846ms - SerializeBatchTime: 278.141us - SplitBlockDistributeByChannelTime: 692.574us - SplitBlockHashComputeTime: 73.795us - UncompressedRowBatchSize: 77.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 19.660us - ExecTime: 1.95ms - InitProbeSideTime: 215.495us - JoinFilterTimer: 975ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 14.40us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.643us - ProbeFindNextTime: 0ns - ProbeRows: 2.95K (2950) - ProbeTime: 942.159us - ProbeWhenBuildSideOutputTime: 67.277us - ProbeWhenProbeSideOutputTime: 105.166us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 390.985us - ProjectionTime: 82.778us - RowsProduced: 2.95K (2950) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 28.674us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 245.00 KB - OpenTime: 673ns - ProjectionTime: 0ns - RowsProduced: 2.95K (2950) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s380ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 3.433ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.276ms - CloseTime: 15.181us - GetBlockTime: 2.909ms - OpenTime: 1.672us - PrepareTime: 134.500us - SinkTime: 234.932us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.387ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.347ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 226.854us - InputRows: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.356us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.741ms - CloseTime: 8.438us - ExecTime: 2.774ms - HashTableComputeTime: 2.220ms - HashTableEmplaceTime: 1.707ms - HashTableInputCount: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.466us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 25.64 KB - CloseTime: 4.756us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 69.64us - ExecTime: 145.146us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 385.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 20.409us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s373ms PipelineXTask (index=4):(Active: 3.966ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.869ms - CloseTime: 21.671us - GetBlockTime: 3.599ms - OpenTime: 1.838us - PrepareTime: 68.982us - SinkTime: 143.903us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.914ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.4ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 119.310us - InputRows: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.193us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 3.453ms - CloseTime: 4.111us - ExecTime: 3.481ms - HashTableComputeTime: 2.762ms - HashTableEmplaceTime: 2.80ms - HashTableInputCount: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.90us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 24.91 KB - CloseTime: 14.498us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 74.783us - ExecTime: 134.926us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 22.441us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s376ms PipelineXTask (index=7):(Active: 3.941ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 3.877ms - CloseTime: 7.349us - GetBlockTime: 3.561ms - OpenTime: 2.558us - PrepareTime: 46.776us - SinkTime: 138.960us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.878ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.341ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 130.506us - InputRows: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.254us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 3.326ms - CloseTime: 175ns - ExecTime: 3.358ms - HashTableComputeTime: 2.645ms - HashTableEmplaceTime: 2.60ms - HashTableInputCount: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 9.532us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 23.59 KB - CloseTime: 5.198us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 83.501us - ExecTime: 197.226us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 14.933us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s376ms PipelineXTask (index=10):(Active: 3.612ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 3.521ms - CloseTime: 10.113us - GetBlockTime: 3.273ms - OpenTime: 1.756us - PrepareTime: 72.465us - SinkTime: 115.251us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.572ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.336ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 108.279us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.146us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 3.124ms - CloseTime: 3.192us - ExecTime: 3.149ms - HashTableComputeTime: 2.542ms - HashTableEmplaceTime: 2.33ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.108us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 23.45 KB - CloseTime: 4.886us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 85.641us - ExecTime: 129.323us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 22.220us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s373ms PipelineXTask (index=13):(Active: 4.6ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 3.909ms - CloseTime: 14.751us - GetBlockTime: 3.640ms - OpenTime: 2.690us - PrepareTime: 71.861us - SinkTime: 103.477us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.951ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.356ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 94.548us - InputRows: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.59us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 3.429ms - CloseTime: 5.187us - ExecTime: 3.464ms - HashTableComputeTime: 2.651ms - HashTableEmplaceTime: 2.92ms - HashTableInputCount: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.4us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 26.16 KB - CloseTime: 7.740us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 85.879us - ExecTime: 167.883us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 385.00 KB - MemoryUsage: - Blocks: 70.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.946us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s373ms PipelineXTask (index=16):(Active: 3.535ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.416ms - CloseTime: 11.122us - GetBlockTime: 3.173ms - OpenTime: 2.46us - PrepareTime: 99.347us - SinkTime: 114.550us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.494ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.722ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 108.574us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.207us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.977ms - CloseTime: 4.363us - ExecTime: 3.24ms - HashTableComputeTime: 2.417ms - HashTableEmplaceTime: 1.827ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 26.7us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 24.71 KB - CloseTime: 5.199us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 79.248us - ExecTime: 164.564us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 20.00 KB - OpenTime: 18.68us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s375ms PipelineXTask (index=19):(Active: 3.490ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 3.400ms - CloseTime: 16.977us - GetBlockTime: 3.197ms - OpenTime: 2.422us - PrepareTime: 66.104us - SinkTime: 77.241us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.441ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.786ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 71.572us - InputRows: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.160us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.990ms - CloseTime: 8.987us - ExecTime: 3.42ms - HashTableComputeTime: 2.336ms - HashTableEmplaceTime: 1.818ms - HashTableInputCount: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 23.745us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 24.52 KB - CloseTime: 5.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 70.250us - ExecTime: 172.156us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 13.318us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s373ms PipelineXTask (index=22):(Active: 2.997ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 2.915ms - CloseTime: 10.571us - GetBlockTime: 2.724ms - OpenTime: 2.447us - PrepareTime: 62.963us - SinkTime: 62.311us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.956ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.459ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 56.27us - InputRows: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.152us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.542ms - CloseTime: 2.823us - ExecTime: 2.578ms - HashTableComputeTime: 2.23ms - HashTableEmplaceTime: 1.524ms - HashTableInputCount: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.52us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 24.91 KB - CloseTime: 6.706us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 59.355us - ExecTime: 142.416us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 15.161us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s377ms PipelineXTask (index=25):(Active: 3.291ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 3.201ms - CloseTime: 14.623us - GetBlockTime: 2.955ms - OpenTime: 1.880us - PrepareTime: 65.924us - SinkTime: 95.829us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.238ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.196ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 89.467us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.127us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 2.800ms - CloseTime: 6.183us - ExecTime: 2.838ms - HashTableComputeTime: 2.212ms - HashTableEmplaceTime: 1.693ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 11.374us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 23.83 KB - CloseTime: 4.45us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 110.391us - ExecTime: 126.627us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 385.00 KB - MemoryUsage: - Blocks: 70.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.67us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s376ms PipelineXTask (index=28):(Active: 3.674ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 3.584ms - CloseTime: 11.626us - GetBlockTime: 3.381ms - OpenTime: 2.283us - PrepareTime: 69.750us - SinkTime: 73.381us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.633ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.689ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 67.415us - InputRows: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.109us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=164): - BlocksProduced: 0 - BuildTime: 3.184ms - CloseTime: 3.926us - ExecTime: 3.210ms - HashTableComputeTime: 2.436ms - HashTableEmplaceTime: 1.927ms - HashTableInputCount: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.417us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) EXCHANGE_OPERATOR (id=163): - BlocksProduced: 14 - BytesReceived: 25.21 KB - CloseTime: 5.454us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 72.949us - ExecTime: 168.60us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 18.591us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s376ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 8.887ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 8.820ms - CloseTime: 12.514us - GetBlockTime: 284.7us - OpenTime: 1.545us - PrepareTime: 48.686us - SinkTime: 8.396ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.845ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.993ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 13.453us - BuildRows: 52.588K (52588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.125ms - BuildTableInsertTime: 6.8ms - BuildTableTime: 6.116ms - CloseTime: 0ns - ExecTime: 8.395ms - InputRows: 52.587K (52587) - MemoryUsage: - BuildBlocks: 3.71 MB - BuildKeyArena: 3.16 MB - HashTable: 461.43 KB - PeakMemoryUsage: 7.32 MB - OpenTime: 9.119us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=149): - BlocksProduced: 38 - BytesReceived: 1.21 MB - CloseTime: 9.430us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.894ms - ExecTime: 283.392us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.73 MB - MemoryUsage: - Blocks: 1.77 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.718us - ProjectionTime: 0ns - RowsProduced: 52.587K (52587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s354ms PipelineXTask (index=5):(Active: 181.494us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.242us - CloseTime: 50.46us - GetBlockTime: 0ns - OpenTime: 2.630us - PrepareTime: 73.340us - SinkTime: 27.824us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 524.395us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 49.449us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.183us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s375ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 47.274us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 65.968us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.25us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 113.858us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 46.971us - CloseTime: 12.350us - GetBlockTime: 0ns - OpenTime: 2.5us - PrepareTime: 48.931us - SinkTime: 30.514us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.851us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 498.886us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.726us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.171us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s375ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.19us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.597us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.839us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 69.22us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 16.970us - CloseTime: 9.621us - GetBlockTime: 0ns - OpenTime: 2.30us - PrepareTime: 37.250us - SinkTime: 6.46us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 55.468us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.613ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.800us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.13us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s372ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.397us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.35us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.978us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 115.363us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.985us - CloseTime: 12.378us - GetBlockTime: 0ns - OpenTime: 3.348us - PrepareTime: 50.752us - SinkTime: 20.292us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.418us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.827ms HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.19us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.233us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s372ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.462us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.443us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.225us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 72.888us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.271us - CloseTime: 4.558us - GetBlockTime: 0ns - OpenTime: 1.905us - PrepareTime: 43.536us - SinkTime: 6.895us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 63.283us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 694.610us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.954us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.117us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s375ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.160us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.482us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.707us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 619.773us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 34.802us - CloseTime: 467.393us - GetBlockTime: 0ns - OpenTime: 2.430us - PrepareTime: 109.629us - SinkTime: 16.258us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 145.494us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 158.5us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 86.741us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 74.6us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s376ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 465.618us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 478.230us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.78us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 83.560us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 24.133us - CloseTime: 5.377us - GetBlockTime: 0ns - OpenTime: 3.556us - PrepareTime: 45.792us - SinkTime: 6.498us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.901us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.757us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.482us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.990us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s376ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.28us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.201us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 112.627us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.415us - CloseTime: 25.850us - GetBlockTime: 0ns - OpenTime: 1.974us - PrepareTime: 58.746us - SinkTime: 8.256us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.533us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 943.746us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.783us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.587us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s375ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 23.743us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.783us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.398us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 106.662us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.970us - CloseTime: 7.300us - GetBlockTime: 0ns - OpenTime: 1.415us - PrepareTime: 50.390us - SinkTime: 15.120us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.865us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 501.63us HASH_JOIN_SINK_OPERATOR (id=165): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc842b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.387us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.802us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s375ms EXCHANGE_OPERATOR (id=149): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.920us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.467us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.874us - 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: 137.881ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 137.586ms - CloseTime: 76.475us - GetBlockTime: 120.796ms - OpenTime: 7.511us - PrepareTime: 156.768us - SinkTime: 11.747ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 386 - NumBlockedTimes: 388 - NumScheduleTimes: 389 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 136.134ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.514ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 122.41 KB - CloseTime: 10.954us - CompressTime: 0ns - ExecTime: 11.550ms - InputRows: 3.484K (3484) - LocalBytesSent: 45.48 KB - LocalSendTime: 43.590us - LocalSentRows: 638 - MemoryUsage: - PeakMemoryUsage: 408.00 KB - MergeBlockTime: 0ns - OpenTime: 72.536us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.825ms - RowsProduced: 3.484K (3484) - RpcAvgTime: 18.112ms - RpcCount: 10 - RpcMaxTime: 18.244ms - RpcMinTime: 18.13ms - RpcSumTime: 181.129ms - SerializeBatchTime: 552.133us - SplitBlockDistributeByChannelTime: 4.708ms - SplitBlockHashComputeTime: 2.750ms - UncompressedRowBatchSize: 209.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 5.963ms - CloseTime: 5.257us - ExecTime: 6.613ms - HashTableComputeTime: 3.853ms - HashTableEmplaceTime: 2.603ms - HashTableInputCount: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.70us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 732 - BuildOutputBlock: 0ns - CloseTime: 37.816us - ExecTime: 102.993ms - InitProbeSideTime: 28.788ms - JoinFilterTimer: 77.633us - MemoryUsage: - PeakMemoryUsage: 69.20 KB - ProbeKeyArena: 69.20 KB - OpenTime: 16.57us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 239.158us - ProbeFindNextTime: 0ns - ProbeRows: 3.295033M (3295033) - ProbeTime: 92.831ms - ProbeWhenBuildSideOutputTime: 3.835ms - ProbeWhenProbeSideOutputTime: 690.396us - ProbeWhenProcessHashTableTime: 10.54us - ProbeWhenSearchHashTableTime: 49.233ms - ProjectionTime: 7.461ms - RowsProduced: 3.484K (3484) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s72ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 1.489K (1489) - BytesReceived: 15.67 MB - CloseTime: 18.747us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 14.113ms - ExecTime: 6.679ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.67 MB - MemoryUsage: - Blocks: 19.66 MB - PeakMemoryUsage: 4.67 MB - OpenTime: 17.172us - ProjectionTime: 0ns - RowsProduced: 3.295033M (3295033) - SendersBlockedTotalTimer(*): 42s12ms - WaitForDependencyTime: 0ns - WaitForData0: 2s891ms PipelineXTask (index=2):(Active: 118.253ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 117.897ms - CloseTime: 55.505us - GetBlockTime: 102.792ms - OpenTime: 5.854us - PrepareTime: 250.188us - SinkTime: 10.404ms - GetBlockCounter: 785 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 390 - NumBlockedTimes: 392 - NumScheduleTimes: 393 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 117.358ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.123ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 123.31 KB - CloseTime: 12.565us - CompressTime: 0ns - ExecTime: 10.219ms - InputRows: 3.529K (3529) - LocalBytesSent: 46.40 KB - LocalSendTime: 28.496us - LocalSentRows: 651 - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 72.486us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.754ms - RowsProduced: 3.529K (3529) - RpcAvgTime: 16.629ms - RpcCount: 10 - RpcMaxTime: 16.867ms - RpcMinTime: 16.451ms - RpcSumTime: 166.292ms - SerializeBatchTime: 638.180us - SplitBlockDistributeByChannelTime: 3.850ms - SplitBlockHashComputeTime: 2.446ms - UncompressedRowBatchSize: 212.19 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=162): - BlocksProduced: 0 - BuildTime: 5.217ms - CloseTime: 4.334us - ExecTime: 5.794ms - HashTableComputeTime: 3.275ms - HashTableEmplaceTime: 2.132ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.162us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 731 - BuildOutputBlock: 0ns - CloseTime: 28.330us - ExecTime: 87.860ms - InitProbeSideTime: 24.143ms - JoinFilterTimer: 65.949us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 14.492us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 187.693us - ProbeFindNextTime: 0ns - ProbeRows: 3.295637M (3295637) - ProbeTime: 78.481ms - ProbeWhenBuildSideOutputTime: 3.321ms - ProbeWhenProbeSideOutputTime: 606.821us - ProbeWhenProcessHashTableTime: 28.513us - ProbeWhenSearchHashTableTime: 41.295ms - ProjectionTime: 6.884ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s72ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 1.483K (1483) - BytesReceived: 15.67 MB - CloseTime: 6.675us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 13.362ms - ExecTime: 5.936ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.74 MB - MemoryUsage: - Blocks: 19.78 MB - PeakMemoryUsage: 4.74 MB - OpenTime: 17.87us - ProjectionTime: 0ns - RowsProduced: 3.295637M (3295637) - SendersBlockedTotalTimer(*): 42s425ms - WaitForDependencyTime: 0ns - WaitForData0: 2s948ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.175ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.89ms - CloseTime: 12.170us - GetBlockTime: 175.926us - OpenTime: 2.443us - PrepareTime: 64.925us - SinkTime: 793.409us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 956.833us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.411ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.629us - BuildRows: 3.485K (3485) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 577.648us - BuildTableInsertTime: 72.768us - BuildTableTime: 76.968us - CloseTime: 0ns - ExecTime: 807.782us - InputRows: 3.484K (3484) - MemoryUsage: - BuildBlocks: 234.75 KB - BuildKeyArena: 54.45 KB - HashTable: 33.02 KB - PeakMemoryUsage: 322.22 KB - OpenTime: 21.4us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.423us - RuntimeFilterComputeTime: 45.489us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 17 - BytesReceived: 67.39 KB - CloseTime: 10.418us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 183.593us - ExecTime: 178.280us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 231.00 KB - MemoryUsage: - Blocks: 66.00 KB - PeakMemoryUsage: 66.00 KB - OpenTime: 11.243us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s18ms PipelineXTask (index=3):(Active: 795.507us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 733.696us - CloseTime: 3.120us - GetBlockTime: 135.90us - OpenTime: 1.833us - PrepareTime: 50.760us - SinkTime: 524.964us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 771.137us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.328ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.897us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 326.6us - BuildTableInsertTime: 55.862us - BuildTableTime: 57.34us - CloseTime: 0ns - ExecTime: 535.96us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.78 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.17 KB - OpenTime: 14.28us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 55.420us - RuntimeFilterComputeTime: 43.54us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 17 - BytesReceived: 69.42 KB - CloseTime: 2.294us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 190.765us - ExecTime: 141.303us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 231.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 33.00 KB - OpenTime: 12.53us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s19ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 117.511ms, % non-child: 0.00%) - CoreChangeTimes: 90 - ExecuteTime: 117.141ms - CloseTime: 57.648us - GetBlockTime: 103.17ms - OpenTime: 6.447us - PrepareTime: 269.117us - SinkTime: 10.339ms - GetBlockCounter: 791 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 209 - NumBlockedTimes: 211 - NumScheduleTimes: 212 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 110.23ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.771ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.47 KB - CloseTime: 19.50us - CompressTime: 0ns - ExecTime: 10.145ms - InputRows: 3.591K (3591) - LocalBytesSent: 210.27 KB - LocalSendTime: 211.470us - LocalSentRows: 2.95K (2950) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 73.928us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.550ms - RowsProduced: 3.591K (3591) - RpcAvgTime: 675.70us - RpcCount: 2 - RpcMaxTime: 712.791us - RpcMinTime: 637.349us - RpcSumTime: 1.350ms - SerializeBatchTime: 188.897us - SplitBlockDistributeByChannelTime: 4.347ms - SplitBlockHashComputeTime: 2.551ms - UncompressedRowBatchSize: 47.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.938ms - CloseTime: 3.724us - ExecTime: 6.593ms - HashTableComputeTime: 3.992ms - HashTableEmplaceTime: 2.935ms - HashTableInputCount: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.25us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 741 - BuildOutputBlock: 0ns - CloseTime: 20.317us - ExecTime: 82.66ms - InitProbeSideTime: 28.795ms - JoinFilterTimer: 75.998us - MemoryUsage: - PeakMemoryUsage: 69.17 KB - ProbeKeyArena: 69.17 KB - OpenTime: 23.425us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 194.491us - ProbeFindNextTime: 0ns - ProbeRows: 3.296837M (3296837) - ProbeTime: 73.62ms - ProbeWhenBuildSideOutputTime: 3.688ms - ProbeWhenProbeSideOutputTime: 641.424us - ProbeWhenProcessHashTableTime: 19.943us - ProbeWhenSearchHashTableTime: 31.252ms - ProjectionTime: 6.422ms - RowsProduced: 3.591K (3591) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s38ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 876 - BytesReceived: 1.87 MB - CloseTime: 8.664us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.652ms - ExecTime: 11.565ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.68 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.52 MB - OpenTime: 34.551us - ProjectionTime: 0ns - RowsProduced: 3.296837M (3296837) - SendersBlockedTotalTimer(*): 23s387ms - WaitForDependencyTime: 0ns - WaitForData0: 3s114ms PipelineXTask (index=2):(Active: 143.215ms, % non-child: 0.00%) - CoreChangeTimes: 90 - ExecuteTime: 142.969ms - CloseTime: 64.657us - GetBlockTime: 126.630ms - OpenTime: 5.71us - PrepareTime: 151.573us - SinkTime: 12.180ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 210 - NumBlockedTimes: 212 - NumScheduleTimes: 213 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 116.464ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.373ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 63.69 KB - CloseTime: 17.811us - CompressTime: 0ns - ExecTime: 11.961ms - InputRows: 9.221K (9221) - LocalBytesSent: 547.46 KB - LocalSendTime: 111.75us - LocalSentRows: 7.68K (7680) - MemoryUsage: - PeakMemoryUsage: 920.00 KB - MergeBlockTime: 0ns - OpenTime: 70.750us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.777ms - RowsProduced: 9.221K (9221) - RpcAvgTime: 889.610us - RpcCount: 2 - RpcMaxTime: 933.74us - RpcMinTime: 846.147us - RpcSumTime: 1.779ms - SerializeBatchTime: 199.730us - SplitBlockDistributeByChannelTime: 5.751ms - SplitBlockHashComputeTime: 2.979ms - UncompressedRowBatchSize: 112.75 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 8.465ms - CloseTime: 19.62us - ExecTime: 9.147ms - HashTableComputeTime: 5.737ms - HashTableEmplaceTime: 4.141ms - HashTableInputCount: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.867us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 732 - BuildOutputBlock: 0ns - CloseTime: 12.862us - ExecTime: 83.700ms - InitProbeSideTime: 30.379ms - JoinFilterTimer: 101.189us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 19.978us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 183.725us - ProbeFindNextTime: 0ns - ProbeRows: 3.295461M (3295461) - ProbeTime: 70.983ms - ProbeWhenBuildSideOutputTime: 4.5ms - ProbeWhenProbeSideOutputTime: 665.951us - ProbeWhenProcessHashTableTime: 378.418us - ProbeWhenSearchHashTableTime: 25.995ms - ProjectionTime: 7.593ms - RowsProduced: 9.221K (9221) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s27ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 871 - BytesReceived: 1.86 MB - CloseTime: 8.748us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.600ms - ExecTime: 23.547ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.36 MB - MemoryUsage: - Blocks: 19.73 MB - PeakMemoryUsage: 19.62 MB - OpenTime: 10.506us - ProjectionTime: 0ns - RowsProduced: 3.295461M (3295461) - SendersBlockedTotalTimer(*): 23s418ms - WaitForDependencyTime: 0ns - WaitForData0: 3s86ms PipelineXTask (index=4):(Active: 137.193ms, % non-child: 0.00%) - CoreChangeTimes: 74 - ExecuteTime: 136.964ms - CloseTime: 35.215us - GetBlockTime: 122.702ms - OpenTime: 5.700us - PrepareTime: 155.515us - SinkTime: 10.298ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 177 - NumBlockedTimes: 179 - NumScheduleTimes: 180 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 125.874ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 179.892ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 24.27 KB - CloseTime: 12.769us - CompressTime: 0ns - ExecTime: 10.98ms - InputRows: 3.523K (3523) - LocalBytesSent: 210.90 KB - LocalSendTime: 124.641us - LocalSentRows: 2.959K (2959) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 76.636us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.565ms - RowsProduced: 3.523K (3523) - RpcAvgTime: 1.353ms - RpcCount: 2 - RpcMaxTime: 1.417ms - RpcMinTime: 1.289ms - RpcSumTime: 2.707ms - SerializeBatchTime: 106.203us - SplitBlockDistributeByChannelTime: 4.417ms - SplitBlockHashComputeTime: 2.640ms - UncompressedRowBatchSize: 41.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.901ms - CloseTime: 2.857us - ExecTime: 6.690ms - HashTableComputeTime: 3.835ms - HashTableEmplaceTime: 2.606ms - HashTableInputCount: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.384us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 720 - BuildOutputBlock: 0ns - CloseTime: 7.46us - ExecTime: 100.53ms - InitProbeSideTime: 31.358ms - JoinFilterTimer: 94.688us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 13.957us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 183.107us - ProbeFindNextTime: 0ns - ProbeRows: 3.295492M (3295492) - ProbeTime: 90.69ms - ProbeWhenBuildSideOutputTime: 3.926ms - ProbeWhenProbeSideOutputTime: 782.760us - ProbeWhenProcessHashTableTime: 14.44us - ProbeWhenSearchHashTableTime: 44.387ms - ProjectionTime: 7.287ms - RowsProduced: 3.523K (3523) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s960ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 871 - BytesReceived: 1.86 MB - CloseTime: 7.643us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.596ms - ExecTime: 12.962ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.31 MB - MemoryUsage: - Blocks: 19.64 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 13.885us - ProjectionTime: 0ns - RowsProduced: 3.295492M (3295492) - SendersBlockedTotalTimer(*): 11s566ms - WaitForDependencyTime: 0ns - WaitForData0: 2s977ms PipelineXTask (index=6):(Active: 126.12ms, % non-child: 0.00%) - CoreChangeTimes: 82 - ExecuteTime: 125.747ms - CloseTime: 37.592us - GetBlockTime: 111.766ms - OpenTime: 5.967us - PrepareTime: 187.9us - SinkTime: 10.114ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 203 - NumBlockedTimes: 205 - NumScheduleTimes: 206 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 106.647ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 109.13ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.93 KB - CloseTime: 16.155us - CompressTime: 0ns - ExecTime: 9.978ms - InputRows: 3.657K (3657) - LocalBytesSent: 215.90 KB - LocalSendTime: 119.707us - LocalSentRows: 3.029K (3029) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 97.590us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.296ms - RowsProduced: 3.657K (3657) - RpcAvgTime: 796.353us - RpcCount: 2 - RpcMaxTime: 896.628us - RpcMinTime: 696.78us - RpcSumTime: 1.592ms - SerializeBatchTime: 107.767us - SplitBlockDistributeByChannelTime: 4.284ms - SplitBlockHashComputeTime: 2.657ms - UncompressedRowBatchSize: 46.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 6.266ms - CloseTime: 3.543us - ExecTime: 6.938ms - HashTableComputeTime: 4.300ms - HashTableEmplaceTime: 3.220ms - HashTableInputCount: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.908us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 736 - BuildOutputBlock: 0ns - CloseTime: 8.834us - ExecTime: 88.841ms - InitProbeSideTime: 37.700ms - JoinFilterTimer: 80.16us - MemoryUsage: - PeakMemoryUsage: 69.27 KB - ProbeKeyArena: 69.27 KB - OpenTime: 16.390us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 200.788us - ProbeFindNextTime: 0ns - ProbeRows: 3.296171M (3296171) - ProbeTime: 79.236ms - ProbeWhenBuildSideOutputTime: 3.975ms - ProbeWhenProbeSideOutputTime: 672.705us - ProbeWhenProcessHashTableTime: 9.976us - ProbeWhenSearchHashTableTime: 27.580ms - ProjectionTime: 7.47ms - RowsProduced: 3.657K (3657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s41ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 874 - BytesReceived: 1.87 MB - CloseTime: 5.709us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.657ms - ExecTime: 13.161ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.12 MB - MemoryUsage: - Blocks: 19.64 MB - PeakMemoryUsage: 18.88 MB - OpenTime: 15.964us - ProjectionTime: 0ns - RowsProduced: 3.296171M (3296171) - SendersBlockedTotalTimer(*): 11s975ms - WaitForDependencyTime: 0ns - WaitForData0: 2s999ms PipelineXTask (index=8):(Active: 110.471ms, % non-child: 0.00%) - CoreChangeTimes: 78 - ExecuteTime: 110.201ms - CloseTime: 53.457us - GetBlockTime: 96.331ms - OpenTime: 4.775us - PrepareTime: 180.870us - SinkTime: 9.938ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 205 - NumBlockedTimes: 207 - NumScheduleTimes: 208 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 109.484ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.487ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.64 KB - CloseTime: 15.851us - CompressTime: 0ns - ExecTime: 9.761ms - InputRows: 3.665K (3665) - LocalBytesSent: 215.34 KB - LocalSendTime: 120.429us - LocalSentRows: 3.021K (3021) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 82.667us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.146ms - RowsProduced: 3.665K (3665) - RpcAvgTime: 1.206ms - RpcCount: 2 - RpcMaxTime: 1.251ms - RpcMinTime: 1.161ms - RpcSumTime: 2.412ms - SerializeBatchTime: 155.240us - SplitBlockDistributeByChannelTime: 4.102ms - SplitBlockHashComputeTime: 2.571ms - UncompressedRowBatchSize: 47.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 8.894ms - CloseTime: 7.857us - ExecTime: 9.579ms - HashTableComputeTime: 7.59ms - HashTableEmplaceTime: 5.931ms - HashTableInputCount: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.800us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 726 - BuildOutputBlock: 0ns - CloseTime: 16.57us - ExecTime: 78.932ms - InitProbeSideTime: 27.365ms - JoinFilterTimer: 77.853us - MemoryUsage: - PeakMemoryUsage: 69.14 KB - ProbeKeyArena: 69.14 KB - OpenTime: 14.816us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 178.302us - ProbeFindNextTime: 0ns - ProbeRows: 3.29521M (3295210) - ProbeTime: 69.783ms - ProbeWhenBuildSideOutputTime: 3.607ms - ProbeWhenProbeSideOutputTime: 622.377us - ProbeWhenProcessHashTableTime: 9.428us - ProbeWhenSearchHashTableTime: 29.673ms - ProjectionTime: 6.647ms - RowsProduced: 3.665K (3665) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s41ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 874 - BytesReceived: 1.87 MB - CloseTime: 7.918us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.611ms - ExecTime: 5.82ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.97 MB - MemoryUsage: - Blocks: 19.64 MB - PeakMemoryUsage: 19.43 MB - OpenTime: 35.732us - ProjectionTime: 0ns - RowsProduced: 3.29521M (3295210) - SendersBlockedTotalTimer(*): 21s236ms - WaitForDependencyTime: 0ns - WaitForData0: 3s96ms PipelineXTask (index=10):(Active: 129.508ms, % non-child: 0.00%) - CoreChangeTimes: 76 - ExecuteTime: 129.291ms - CloseTime: 47.535us - GetBlockTime: 115.936ms - OpenTime: 5.377us - PrepareTime: 141.753us - SinkTime: 9.518ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 173 - NumBlockedTimes: 175 - NumScheduleTimes: 176 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 115.861ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.336ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.00 KB - CloseTime: 12.800us - CompressTime: 0ns - ExecTime: 9.326ms - InputRows: 3.497K (3497) - LocalBytesSent: 207.64 KB - LocalSendTime: 95.918us - LocalSentRows: 2.913K (2913) - MemoryUsage: - PeakMemoryUsage: 412.00 KB - MergeBlockTime: 0ns - OpenTime: 66.765us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.591ms - RowsProduced: 3.497K (3497) - RpcAvgTime: 3.435ms - RpcCount: 2 - RpcMaxTime: 3.441ms - RpcMinTime: 3.429ms - RpcSumTime: 6.871ms - SerializeBatchTime: 112.281us - SplitBlockDistributeByChannelTime: 3.920ms - SplitBlockHashComputeTime: 2.514ms - UncompressedRowBatchSize: 43.05 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.306ms - CloseTime: 3.426us - ExecTime: 6.19ms - HashTableComputeTime: 3.429ms - HashTableEmplaceTime: 2.340ms - HashTableInputCount: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.540us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 730 - BuildOutputBlock: 0ns - CloseTime: 19.956us - ExecTime: 102.130ms - InitProbeSideTime: 26.550ms - JoinFilterTimer: 88.111us - MemoryUsage: - PeakMemoryUsage: 69.20 KB - ProbeKeyArena: 69.20 KB - OpenTime: 13.819us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 227.892us - ProbeFindNextTime: 0ns - ProbeRows: 3.295336M (3295336) - ProbeTime: 92.769ms - ProbeWhenBuildSideOutputTime: 3.844ms - ProbeWhenProbeSideOutputTime: 690.674us - ProbeWhenProcessHashTableTime: 9.534us - ProbeWhenSearchHashTableTime: 52.808ms - ProjectionTime: 6.761ms - RowsProduced: 3.497K (3497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s960ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 872 - BytesReceived: 1.86 MB - CloseTime: 6.627us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.688ms - ExecTime: 5.47ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.06 MB - MemoryUsage: - Blocks: 19.67 MB - PeakMemoryUsage: 18.74 MB - OpenTime: 15.205us - ProjectionTime: 0ns - RowsProduced: 3.295336M (3295336) - SendersBlockedTotalTimer(*): 11s233ms - WaitForDependencyTime: 0ns - WaitForData0: 2s998ms PipelineXTask (index=12):(Active: 116.152ms, % non-child: 0.00%) - CoreChangeTimes: 76 - ExecuteTime: 115.883ms - CloseTime: 65.393us - GetBlockTime: 102.250ms - OpenTime: 7.415us - PrepareTime: 165.212us - SinkTime: 9.859ms - GetBlockCounter: 786 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 194 - NumBlockedTimes: 196 - NumScheduleTimes: 197 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 114.892ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.380ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.22 KB - CloseTime: 22.526us - CompressTime: 0ns - ExecTime: 9.690ms - InputRows: 3.473K (3473) - LocalBytesSent: 205.92 KB - LocalSendTime: 245.638us - LocalSentRows: 2.889K (2889) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 78.138us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.522ms - RowsProduced: 3.473K (3473) - RpcAvgTime: 835.987us - RpcCount: 2 - RpcMaxTime: 902.32us - RpcMinTime: 769.943us - RpcSumTime: 1.671ms - SerializeBatchTime: 195.591us - SplitBlockDistributeByChannelTime: 4.94ms - SplitBlockHashComputeTime: 2.405ms - UncompressedRowBatchSize: 43.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 8.461ms - CloseTime: 6.520us - ExecTime: 9.133ms - HashTableComputeTime: 6.559ms - HashTableEmplaceTime: 5.528ms - HashTableInputCount: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.906us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 730 - BuildOutputBlock: 0ns - CloseTime: 17.109us - ExecTime: 85.168ms - InitProbeSideTime: 24.517ms - JoinFilterTimer: 101.756us - MemoryUsage: - PeakMemoryUsage: 69.03 KB - ProbeKeyArena: 69.03 KB - OpenTime: 17.959us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 175.364us - ProbeFindNextTime: 0ns - ProbeRows: 3.295972M (3295972) - ProbeTime: 75.968ms - ProbeWhenBuildSideOutputTime: 4.420ms - ProbeWhenProbeSideOutputTime: 745.192us - ProbeWhenProcessHashTableTime: 21.623us - ProbeWhenSearchHashTableTime: 37.394ms - ProjectionTime: 6.766ms - RowsProduced: 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s41ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 871 - BytesReceived: 1.87 MB - CloseTime: 12.670us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.586ms - ExecTime: 5.195ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.21 MB - MemoryUsage: - Blocks: 19.62 MB - PeakMemoryUsage: 19.15 MB - OpenTime: 14.436us - ProjectionTime: 0ns - RowsProduced: 3.295972M (3295972) - SendersBlockedTotalTimer(*): 15s906ms - WaitForDependencyTime: 0ns - WaitForData0: 3s79ms PipelineXTask (index=14):(Active: 149.512ms, % non-child: 0.00%) - CoreChangeTimes: 79 - ExecuteTime: 149.244ms - CloseTime: 80.46us - GetBlockTime: 126.756ms - OpenTime: 5.120us - PrepareTime: 160.425us - SinkTime: 18.453ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 190 - NumBlockedTimes: 192 - NumScheduleTimes: 193 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 123.363ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 134.94ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 24.27 KB - CloseTime: 19.887us - CompressTime: 0ns - ExecTime: 18.261ms - InputRows: 3.529K (3529) - LocalBytesSent: 211.22 KB - LocalSendTime: 245.645us - LocalSentRows: 2.963K (2963) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 69.40us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.481ms - RowsProduced: 3.529K (3529) - RpcAvgTime: 684.277us - RpcCount: 2 - RpcMaxTime: 694.885us - RpcMinTime: 673.670us - RpcSumTime: 1.368ms - SerializeBatchTime: 294.547us - SplitBlockDistributeByChannelTime: 11.846ms - SplitBlockHashComputeTime: 2.863ms - UncompressedRowBatchSize: 41.72 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12.786ms - CloseTime: 14.290us - ExecTime: 13.655ms - HashTableComputeTime: 3.572ms - HashTableEmplaceTime: 2.405ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.909us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 734 - BuildOutputBlock: 0ns - CloseTime: 28.560us - ExecTime: 105.42ms - InitProbeSideTime: 28.333ms - JoinFilterTimer: 97.598us - MemoryUsage: - PeakMemoryUsage: 68.97 KB - ProbeKeyArena: 68.97 KB - OpenTime: 23.465us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 177.656us - ProbeFindNextTime: 0ns - ProbeRows: 3.295121M (3295121) - ProbeTime: 86.132ms - ProbeWhenBuildSideOutputTime: 4.139ms - ProbeWhenProbeSideOutputTime: 683.847us - ProbeWhenProcessHashTableTime: 19.620us - ProbeWhenSearchHashTableTime: 43.481ms - ProjectionTime: 7.383ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s993ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 871 - BytesReceived: 1.86 MB - CloseTime: 10.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.543ms - ExecTime: 5.139ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.87 MB - MemoryUsage: - Blocks: 19.64 MB - PeakMemoryUsage: 19.03 MB - OpenTime: 13.957us - ProjectionTime: 0ns - RowsProduced: 3.295121M (3295121) - SendersBlockedTotalTimer(*): 13s340ms - WaitForDependencyTime: 0ns - WaitForData0: 3s33ms PipelineXTask (index=16):(Active: 109.615ms, % non-child: 0.00%) - CoreChangeTimes: 62 - ExecuteTime: 109.347ms - CloseTime: 67.870us - GetBlockTime: 96.724ms - OpenTime: 5.256us - PrepareTime: 167.512us - SinkTime: 9.110ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 157 - NumBlockedTimes: 159 - NumScheduleTimes: 160 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 106.228ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.419ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.43 KB - CloseTime: 25.496us - CompressTime: 0ns - ExecTime: 8.929ms - InputRows: 3.573K (3573) - LocalBytesSent: 212.34 KB - LocalSendTime: 119.498us - LocalSentRows: 2.979K (2979) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 68.412us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.808ms - RowsProduced: 3.573K (3573) - RpcAvgTime: 1.581ms - RpcCount: 2 - RpcMaxTime: 1.658ms - RpcMinTime: 1.504ms - RpcSumTime: 3.163ms - SerializeBatchTime: 86.721us - SplitBlockDistributeByChannelTime: 3.775ms - SplitBlockHashComputeTime: 2.460ms - UncompressedRowBatchSize: 43.77 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.41ms - CloseTime: 4.696us - ExecTime: 5.642ms - HashTableComputeTime: 3.278ms - HashTableEmplaceTime: 2.209ms - HashTableInputCount: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.963us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 14.358us - ExecTime: 84.139ms - InitProbeSideTime: 25.542ms - JoinFilterTimer: 70.48us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 16.521us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 175.670us - ProbeFindNextTime: 0ns - ProbeRows: 3.296297M (3296297) - ProbeTime: 75.569ms - ProbeWhenBuildSideOutputTime: 3.315ms - ProbeWhenProbeSideOutputTime: 604.193us - ProbeWhenProcessHashTableTime: 7.262us - ProbeWhenSearchHashTableTime: 38.42ms - ProjectionTime: 6.139ms - RowsProduced: 3.573K (3573) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s27ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 873 - BytesReceived: 1.87 MB - CloseTime: 16.273us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.648ms - ExecTime: 4.550ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.93 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.19 MB - OpenTime: 29.663us - ProjectionTime: 0ns - RowsProduced: 3.296297M (3296297) - SendersBlockedTotalTimer(*): 14s916ms - WaitForDependencyTime: 0ns - WaitForData0: 3s87ms PipelineXTask (index=18):(Active: 141.384ms, % non-child: 0.00%) - CoreChangeTimes: 72 - ExecuteTime: 141.96ms - CloseTime: 46.123us - GetBlockTime: 123.703ms - OpenTime: 6.166us - PrepareTime: 212.863us - SinkTime: 13.114ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 183 - NumBlockedTimes: 185 - NumScheduleTimes: 186 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 136.181ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.839ms DATA_STREAM_SINK_OPERATOR (id=163,dst_id=163): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.37 KB - CloseTime: 11.478us - CompressTime: 0ns - ExecTime: 12.953ms - InputRows: 3.516K (3516) - LocalBytesSent: 208.49 KB - LocalSendTime: 286.500us - LocalSentRows: 2.925K (2925) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 117.816us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.916ms - RowsProduced: 3.516K (3516) - RpcAvgTime: 932.372us - RpcCount: 2 - RpcMaxTime: 1.20ms - RpcMinTime: 844.381us - RpcSumTime: 1.864ms - SerializeBatchTime: 121.766us - SplitBlockDistributeByChannelTime: 4.846ms - SplitBlockHashComputeTime: 2.943ms - UncompressedRowBatchSize: 43.56 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.853ms - CloseTime: 9.117us - ExecTime: 6.725ms - HashTableComputeTime: 3.632ms - HashTableEmplaceTime: 2.424ms - HashTableInputCount: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.276us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) HASH_JOIN_OPERATOR (id=161): - BlocksProduced: 732 - BuildOutputBlock: 0ns - CloseTime: 13.645us - ExecTime: 99.825ms - InitProbeSideTime: 29.478ms - JoinFilterTimer: 108.561us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 13.926us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 226.863us - ProbeFindNextTime: 0ns - ProbeRows: 3.295426M (3295426) - ProbeTime: 88.651ms - ProbeWhenBuildSideOutputTime: 4.517ms - ProbeWhenProbeSideOutputTime: 870.78us - ProbeWhenProcessHashTableTime: 8.969us - ProbeWhenSearchHashTableTime: 42.737ms - ProjectionTime: 8.169ms - RowsProduced: 3.516K (3516) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s42ms EXCHANGE_OPERATOR (id=160): - BlocksProduced: 872 - BytesReceived: 1.86 MB - CloseTime: 6.589us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.518ms - ExecTime: 13.812ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.21 MB - MemoryUsage: - Blocks: 19.60 MB - PeakMemoryUsage: 18.87 MB - OpenTime: 16.161us - ProjectionTime: 0ns - RowsProduced: 3.295426M (3295426) - SendersBlockedTotalTimer(*): 12s16ms - WaitForDependencyTime: 0ns - WaitForData0: 3s14ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.6ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 916.414us - CloseTime: 11.869us - GetBlockTime: 151.14us - OpenTime: 3.162us - PrepareTime: 67.540us - SinkTime: 587.440us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 958.233us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.338ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.884us - BuildRows: 3.592K (3592) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 360.395us - BuildTableInsertTime: 58.98us - BuildTableTime: 63.198us - CloseTime: 0ns - ExecTime: 611.917us - InputRows: 3.591K (3591) - MemoryUsage: - BuildBlocks: 241.94 KB - BuildKeyArena: 56.13 KB - HashTable: 49.54 KB - PeakMemoryUsage: 347.60 KB - OpenTime: 33.120us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.850us - RuntimeFilterComputeTime: 47.643us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 97.04 KB - CloseTime: 9.127us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 317.71us - ExecTime: 157.495us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.366us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s11ms PipelineXTask (index=3):(Active: 1.385ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.257ms - CloseTime: 8.872us - GetBlockTime: 221.590us - OpenTime: 1.908us - PrepareTime: 111.45us - SinkTime: 906.942us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.345ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.368ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.137us - BuildRows: 9.222K (9222) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 570.760us - BuildTableInsertTime: 173.422us - BuildTableTime: 175.407us - CloseTime: 0ns - ExecTime: 935.332us - InputRows: 9.221K (9221) - MemoryUsage: - BuildBlocks: 621.30 KB - BuildKeyArena: 144.09 KB - HashTable: 109.03 KB - PeakMemoryUsage: 874.42 KB - OpenTime: 34.376us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.652us - RuntimeFilterComputeTime: 97.126us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 238.62 KB - CloseTime: 6.974us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 287.833us - ExecTime: 234.807us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 370.00 KB - MemoryUsage: - Blocks: 74.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.716us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s15ms PipelineXTask (index=5):(Active: 817.755us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 736.270us - CloseTime: 5.544us - GetBlockTime: 130.29us - OpenTime: 2.950us - PrepareTime: 66.751us - SinkTime: 467.411us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 777.320us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.46ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.207us - BuildRows: 3.524K (3524) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 302.162us - BuildTableInsertTime: 59.527us - BuildTableTime: 61.364us - CloseTime: 0ns - ExecTime: 485.378us - InputRows: 3.523K (3523) - MemoryUsage: - BuildBlocks: 237.34 KB - BuildKeyArena: 55.06 KB - HashTable: 33.21 KB - PeakMemoryUsage: 325.60 KB - OpenTime: 24.983us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.881us - RuntimeFilterComputeTime: 24.536us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 96.23 KB - CloseTime: 4.379us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 225.137us - ExecTime: 133.654us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.357us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=7):(Active: 686.461us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 563.74us - CloseTime: 4.285us - GetBlockTime: 101.855us - OpenTime: 1.843us - PrepareTime: 110.921us - SinkTime: 379.965us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 659.834us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.599ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.419us - BuildRows: 3.658K (3658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 249.602us - BuildTableInsertTime: 55.968us - BuildTableTime: 57.242us - CloseTime: 0ns - ExecTime: 424.370us - InputRows: 3.657K (3657) - MemoryUsage: - BuildBlocks: 246.38 KB - BuildKeyArena: 57.16 KB - HashTable: 49.87 KB - PeakMemoryUsage: 353.39 KB - OpenTime: 48.47us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.934us - RuntimeFilterComputeTime: 26.18us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 100.24 KB - CloseTime: 3.666us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 227.840us - ExecTime: 114.222us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.270us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=9):(Active: 686.479us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 608.888us - CloseTime: 3.642us - GetBlockTime: 107.746us - OpenTime: 2.570us - PrepareTime: 64.400us - SinkTime: 402.292us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 660.384us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.490ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.682us - BuildRows: 3.666K (3666) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 273.468us - BuildTableInsertTime: 46.135us - BuildTableTime: 47.386us - CloseTime: 0ns - ExecTime: 418.308us - InputRows: 3.665K (3665) - MemoryUsage: - BuildBlocks: 246.93 KB - BuildKeyArena: 57.28 KB - HashTable: 49.90 KB - PeakMemoryUsage: 354.11 KB - OpenTime: 19.674us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.50us - RuntimeFilterComputeTime: 33.856us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 99.90 KB - CloseTime: 3.109us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 202.236us - ExecTime: 128.249us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 25.888us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=11):(Active: 736.231us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 646.613us - CloseTime: 5.627us - GetBlockTime: 109.725us - OpenTime: 1.750us - PrepareTime: 77.627us - SinkTime: 457.356us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 707.856us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.55ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.439us - BuildRows: 3.498K (3498) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 323.896us - BuildTableInsertTime: 60.510us - BuildTableTime: 61.757us - CloseTime: 0ns - ExecTime: 486.363us - InputRows: 3.497K (3497) - MemoryUsage: - BuildBlocks: 235.61 KB - BuildKeyArena: 54.66 KB - HashTable: 33.08 KB - PeakMemoryUsage: 323.34 KB - OpenTime: 32.828us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.799us - RuntimeFilterComputeTime: 24.155us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 95.19 KB - CloseTime: 4.769us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 243.20us - ExecTime: 118.79us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 151.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.774us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=13):(Active: 780.698us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 710.632us - CloseTime: 4.667us - GetBlockTime: 98.805us - OpenTime: 1.604us - PrepareTime: 57.833us - SinkTime: 527.136us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 740.407us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.601ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.782us - BuildRows: 3.474K (3474) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 383.82us - BuildTableInsertTime: 53.654us - BuildTableTime: 55.270us - CloseTime: 0ns - ExecTime: 537.758us - InputRows: 3.473K (3473) - MemoryUsage: - BuildBlocks: 233.99 KB - BuildKeyArena: 54.28 KB - HashTable: 32.97 KB - PeakMemoryUsage: 321.23 KB - OpenTime: 15.759us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.709us - RuntimeFilterComputeTime: 43.189us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 95.05 KB - CloseTime: 3.766us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 266.846us - ExecTime: 116.328us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 151.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 22.121us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=15):(Active: 694.943us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 606.269us - CloseTime: 5.750us - GetBlockTime: 109.6us - OpenTime: 1.753us - PrepareTime: 74.799us - SinkTime: 422.834us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 665.976us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.268ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.982us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 281.253us - BuildTableInsertTime: 62.165us - BuildTableTime: 63.311us - CloseTime: 0ns - ExecTime: 437.512us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.76 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.15 KB - OpenTime: 18.558us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.174us - RuntimeFilterComputeTime: 23.884us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 95.08 KB - CloseTime: 4.797us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 197.375us - ExecTime: 121.264us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.486us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=17):(Active: 701.648us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 621.519us - CloseTime: 4.832us - GetBlockTime: 125.139us - OpenTime: 1.967us - PrepareTime: 67.316us - SinkTime: 410.647us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 671.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.376ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.79us - BuildRows: 3.574K (3574) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 239.872us - BuildTableInsertTime: 66.652us - BuildTableTime: 67.903us - CloseTime: 0ns - ExecTime: 444.363us - InputRows: 3.573K (3573) - MemoryUsage: - BuildBlocks: 240.72 KB - BuildKeyArena: 55.84 KB - HashTable: 33.46 KB - PeakMemoryUsage: 330.01 KB - OpenTime: 37.450us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.294us - RuntimeFilterComputeTime: 42.509us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 97.06 KB - CloseTime: 3.894us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 195.913us - ExecTime: 129.544us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 9.678us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s17ms PipelineXTask (index=19):(Active: 718.512us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 658.258us - CloseTime: 4.341us - GetBlockTime: 102.611us - OpenTime: 1.590us - PrepareTime: 49.940us - SinkTime: 475.139us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 691.59us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.158ms HASH_JOIN_SINK_OPERATOR (id=161): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.548us - BuildRows: 3.517K (3517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 219.946us - BuildTableInsertTime: 46.209us - BuildTableTime: 47.924us - CloseTime: 0ns - ExecTime: 488.362us - InputRows: 3.516K (3516) - MemoryUsage: - BuildBlocks: 236.88 KB - BuildKeyArena: 54.95 KB - HashTable: 33.18 KB - PeakMemoryUsage: 325.01 KB - OpenTime: 17.251us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 115.883us - RuntimeFilterComputeTime: 23.376us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=158): - BlocksProduced: 19 - BytesReceived: 93.37 KB - CloseTime: 3.521us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 265.191us - ExecTime: 107.640us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.761us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s15ms Fragment 91: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 298.947ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 298.561ms - CloseTime: 106.137us - GetBlockTime: 4.951ms - OpenTime: 55.53us - PrepareTime: 216.297us - SinkTime: 290.477ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 10 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 179.366ms - WaitBfTime: 883.591ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 360.714ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.147K (1147) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.44 MB - CloseTime: 13.254us - CompressTime: 0ns - ExecTime: 290.209ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 34.33 MB - LocalSendTime: 34.956ms - LocalSentRows: 3.9993M (3999300) - MemoryUsage: - PeakMemoryUsage: 50.64 MB - MergeBlockTime: 0ns - OpenTime: 71.26us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s572ms - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 54.411ms - RpcCount: 190 - RpcMaxTime: 5s184ms - RpcMinTime: 5s153ms - RpcSumTime: 10s338ms - SerializeBatchTime: 6.175ms - SplitBlockDistributeByChannelTime: 83.436ms - SplitBlockHashComputeTime: 62.332ms - UncompressedRowBatchSize: 7.30 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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: 2.523us - BlocksProduced: 1.183K (1183) - CloseTime: 89.113us - ExecTime: 109.24ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 137.484us - ProcessConjunctTime: 9.490us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 180.617ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 104.303ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [61.255ms, 55.325ms, 42.470ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [59.176ms, 61.350ms, 60.089ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 124.500ms - MemoryUsage: - FreeBlocks: 25.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 47.206ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 53.981us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 62.767ms - ScannerCtxSchedTime: 180.611ms - ScannerFilterTime: 30.813ms - ScannerGetBlockTime: 127.751ms - ScannerInitTime: 25.232us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 5.162us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 16.782us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 18.715us - BlockInitTime: 208.376us - BlockLoadTime: 171.128ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 589 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 293.801us - FirstReadTime: 166.628ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.405us - 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: 163.558us - OutputIndexResultColumnTimer: 127.6us - 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: 269.102ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 268.586ms - CloseTime: 108.164us - GetBlockTime: 4.958ms - OpenTime: 85.734us - PrepareTime: 312.798us - SinkTime: 260.226ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 10 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 190.113ms - WaitBfTime: 883.605ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 362.185ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.146K (1146) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.44 MB - CloseTime: 13.253us - CompressTime: 0ns - ExecTime: 259.946ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 34.33 MB - LocalSendTime: 24.803ms - LocalSentRows: 3.999335M (3999335) - MemoryUsage: - PeakMemoryUsage: 51.58 MB - MergeBlockTime: 0ns - OpenTime: 89.423us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s608ms - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 51.496ms - RpcCount: 190 - RpcMaxTime: 4s899ms - RpcMinTime: 4s884ms - RpcSumTime: 9s784ms - SerializeBatchTime: 10.548ms - SplitBlockDistributeByChannelTime: 100.957ms - SplitBlockHashComputeTime: 84.642ms - UncompressedRowBatchSize: 7.30 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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: 14.855us - BlocksProduced: 1.182K (1182) - CloseTime: 91.597us - ExecTime: 144.473ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 153.536us - ProcessConjunctTime: 7.585us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 187.613ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 139.755ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [48.079ms, 73.788ms, 4.328ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [61.678ms, 65.043ms, 60.891ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 115.192ms - MemoryUsage: - FreeBlocks: 23.70 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 52.154ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 59.682us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 66.398ms - ScannerCtxSchedTime: 187.604ms - ScannerFilterTime: 8.413ms - ScannerGetBlockTime: 117.286ms - ScannerInitTime: 45.343us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 3.803us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.463us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 27.506us - BlockInitTime: 238.521us - BlockLoadTime: 158.970ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 590 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 274.160us - FirstReadTime: 155.378ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.553us - 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: 171.912us - OutputIndexResultColumnTimer: 149.701us - 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: 266.715ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 266.397ms - CloseTime: 63.893us - GetBlockTime: 4.210ms - OpenTime: 78.802us - PrepareTime: 168.399us - SinkTime: 259.449ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 7 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 169.96ms - WaitBfTime: 883.555ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.4ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 832 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.66 MB - CloseTime: 15.302us - CompressTime: 0ns - ExecTime: 259.205ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 24.83 MB - LocalSendTime: 4.358ms - LocalSentRows: 2.893449M (2893449) - MemoryUsage: - PeakMemoryUsage: 36.14 MB - MergeBlockTime: 0ns - OpenTime: 63.530us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16s532ms - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 82.802ms - RpcCount: 138 - RpcMaxTime: 5s732ms - RpcMinTime: 5s693ms - RpcSumTime: 11s426ms - SerializeBatchTime: 23.105ms - SplitBlockDistributeByChannelTime: 133.59ms - SplitBlockHashComputeTime: 67.98ms - UncompressedRowBatchSize: 5.29 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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: 1.901us - BlocksProduced: 856 - CloseTime: 44.655us - ExecTime: 91.603ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 143.906us - ProcessConjunctTime: 6.856us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 219.116ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 87.592ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [17.715ms, 71.682ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [146.559ms, 72.557ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 87.341ms - MemoryUsage: - FreeBlocks: 16.24 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 402.655us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 48.452us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 36.529ms - ScannerCtxSchedTime: 219.111ms - ScannerFilterTime: 268.518us - ScannerGetBlockTime: 88.846ms - ScannerInitTime: 54.490us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.236us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.136us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 41.984us - BlockInitTime: 256.145us - BlockLoadTime: 87.487ms - BlocksLoad: 865 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 180.58us - FirstReadTime: 85.171ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.829us - 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.502us - OutputIndexResultColumnTimer: 81.585us - 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: 252.159ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 251.862ms - CloseTime: 52.741us - GetBlockTime: 4.301ms - OpenTime: 71.945us - PrepareTime: 164.128us - SinkTime: 245.285ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 149.884ms - WaitBfTime: 883.668ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 292.268ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 832 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.66 MB - CloseTime: 14.467us - CompressTime: 0ns - ExecTime: 245.61ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 24.83 MB - LocalSendTime: 3.520ms - LocalSentRows: 2.893465M (2893465) - MemoryUsage: - PeakMemoryUsage: 36.45 MB - MergeBlockTime: 0ns - OpenTime: 56.145us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 728.980ms - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 81.979ms - RpcCount: 138 - RpcMaxTime: 5s683ms - RpcMinTime: 5s629ms - RpcSumTime: 11s313ms - SerializeBatchTime: 6.627ms - SplitBlockDistributeByChannelTime: 120.799ms - SplitBlockHashComputeTime: 78.907ms - UncompressedRowBatchSize: 5.28 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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: 1.761us - BlocksProduced: 856 - CloseTime: 34.801us - ExecTime: 78.607ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 133.0us - ProcessConjunctTime: 8.779us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 124.752ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 74.481ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [13.095ms, 11.454ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [62.332ms, 62.420ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.23ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 192.221us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 47.428us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.876ms - ScannerCtxSchedTime: 124.747ms - ScannerFilterTime: 215.529us - ScannerGetBlockTime: 24.46ms - ScannerInitTime: 45.46us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.729us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.825us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 28.14us - BlockInitTime: 159.127us - BlockLoadTime: 23.74ms - BlocksLoad: 863 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 100.957us - FirstReadTime: 21.616ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.216us - 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: 64.983us - OutputIndexResultColumnTimer: 50.699us - 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: 80.426ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 80.85ms - CloseTime: 59.800us - GetBlockTime: 2.119ms - OpenTime: 46.10us - PrepareTime: 227.573us - SinkTime: 76.665ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 79.681ms - WaitBfTime: 883.730ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 392.514ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 545 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.09 MB - CloseTime: 17.553us - CompressTime: 0ns - ExecTime: 76.643ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 16.16 MB - LocalSendTime: 2.190ms - LocalSentRows: 1.883142M (1883142) - MemoryUsage: - PeakMemoryUsage: 23.53 MB - MergeBlockTime: 0ns - OpenTime: 121.498us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 552.643ms - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 76.95ms - RpcCount: 91 - RpcMaxTime: 3s521ms - RpcMinTime: 3s403ms - RpcSumTime: 6s924ms - SerializeBatchTime: 3.11ms - SplitBlockDistributeByChannelTime: 26.977ms - SplitBlockHashComputeTime: 27.761ms - UncompressedRowBatchSize: 3.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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: 1.376us - BlocksProduced: 557 - CloseTime: 37.840us - ExecTime: 253.336ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 106.592us - ProcessConjunctTime: 7.211us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 63.517ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 251.236ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [182.132ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [63.517ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 178.293ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 129.174us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.134us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.903ms - ScannerCtxSchedTime: 63.514ms - ScannerFilterTime: 2.694ms - ScannerGetBlockTime: 179.241ms - ScannerInitTime: 21.207us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.69us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.743us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.781us - BlockInitTime: 59.622us - BlockLoadTime: 178.185ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 125.851us - FirstReadTime: 176.577ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.193us - 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: 90.12us - OutputIndexResultColumnTimer: 59.567us - 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: 106.378ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 106.22ms - CloseTime: 77.706us - GetBlockTime: 2.653ms - OpenTime: 44.599us - PrepareTime: 225.752us - SinkTime: 101.684ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 105.937ms - WaitBfTime: 883.768ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 334.437ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 544 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.09 MB - CloseTime: 17.572us - CompressTime: 0ns - ExecTime: 101.581ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 16.16 MB - LocalSendTime: 2.294ms - LocalSentRows: 1.88317M (1883170) - MemoryUsage: - PeakMemoryUsage: 22.97 MB - MergeBlockTime: 0ns - OpenTime: 66.256us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 139.918ms - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 112.556ms - RpcCount: 91 - RpcMaxTime: 5s183ms - RpcMinTime: 5s59ms - RpcSumTime: 10s242ms - SerializeBatchTime: 4.685ms - SplitBlockDistributeByChannelTime: 39.646ms - SplitBlockHashComputeTime: 34.976ms - UncompressedRowBatchSize: 3.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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.502us - BlocksProduced: 557 - CloseTime: 56.146us - ExecTime: 202.623ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 111.32us - ProcessConjunctTime: 6.539us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 64.268ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 200.31ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [54.570ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [64.268ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 53.818ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 80.243us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 31.415us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.336ms - ScannerCtxSchedTime: 64.267ms - ScannerFilterTime: 128.29us - ScannerGetBlockTime: 54.311ms - ScannerInitTime: 23.358us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 752ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.658us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.284us - BlockInitTime: 28.26us - BlockLoadTime: 53.762ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 58.836us - FirstReadTime: 52.977ms - IOTimer: 0ns - InvertedIndexFilterTime: 835ns - 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: 45.136us - OutputIndexResultColumnTimer: 29.116us - 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: 201.154ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 200.868ms - CloseTime: 41.813us - GetBlockTime: 953.810us - OpenTime: 42.357us - PrepareTime: 194.365us - SinkTime: 199.294ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 40.198ms - WaitBfTime: 883.806ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.701ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 218 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 830.92 KB - CloseTime: 14.330us - CompressTime: 0ns - ExecTime: 199.298ms - InputRows: 876.727K (876727) - LocalBytesSent: 6.27 MB - LocalSendTime: 842.355us - LocalSentRows: 730.599K (730599) - MemoryUsage: - PeakMemoryUsage: 9.20 MB - MergeBlockTime: 0ns - OpenTime: 65.603us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s39ms - RowsProduced: 876.727K (876727) - RpcAvgTime: 174.877ms - RpcCount: 36 - RpcMaxTime: 3s153ms - RpcMinTime: 3s142ms - RpcSumTime: 6s295ms - SerializeBatchTime: 25.356ms - SplitBlockDistributeByChannelTime: 91.76ms - SplitBlockHashComputeTime: 12.129ms - UncompressedRowBatchSize: 1.33 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 2s749ms - 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: 1.500us - BlocksProduced: 216 - CloseTime: 24.774us - ExecTime: 75.587ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 127.936us - ProcessConjunctTime: 7.51us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 65.163ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 74.575ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [7.041ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [65.163ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.775ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 110.647us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.905us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.372ms - ScannerCtxSchedTime: 65.162ms - ScannerFilterTime: 33.617us - ScannerGetBlockTime: 6.953ms - ScannerInitTime: 19.774us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 377ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.520us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 6.667us - BlockInitTime: 28.404us - BlockLoadTime: 6.799ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 22.118us - FirstReadTime: 6.489ms - IOTimer: 0ns - InvertedIndexFilterTime: 461ns - 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.780us - OutputIndexResultColumnTimer: 11.527us - 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=7):(Active: 271.694ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 271.408ms - CloseTime: 57.492us - GetBlockTime: 3.895ms - OpenTime: 46.791us - PrepareTime: 174.341us - SinkTime: 265.178ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 8 - NumScheduleTimes: 11 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 152.266ms - WaitBfTime: 883.841ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 276.737ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 810 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.91 MB - CloseTime: 15.692us - CompressTime: 0ns - ExecTime: 264.958ms - InputRows: 3.39021M (3390210) - LocalBytesSent: 24.25 MB - LocalSendTime: 26.471ms - LocalSentRows: 2.825654M (2825654) - MemoryUsage: - PeakMemoryUsage: 39.48 MB - MergeBlockTime: 0ns - OpenTime: 63.124us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 656.466ms - RowsProduced: 3.39021M (3390210) - RpcAvgTime: 84.427ms - RpcCount: 135 - RpcMaxTime: 5s723ms - RpcMinTime: 5s674ms - RpcSumTime: 11s397ms - SerializeBatchTime: 6.748ms - SplitBlockDistributeByChannelTime: 121.417ms - SplitBlockHashComputeTime: 46.455ms - UncompressedRowBatchSize: 5.16 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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: 1.147us - BlocksProduced: 836 - CloseTime: 37.966us - ExecTime: 90.320ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 110.107us - ProcessConjunctTime: 6.697us - ProjectionTime: 0ns - RowsProduced: 3.39021M (3390210) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 142.131ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 86.600ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [19.760ms, 14.296ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [68.261ms, 73.869ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 31.728ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 327.990us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 48.401us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 43.676ms - ScannerCtxSchedTime: 142.125ms - ScannerFilterTime: 460.111us - ScannerGetBlockTime: 33.251ms - ScannerInitTime: 23.219us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.151us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.694us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 18.484us - BlockInitTime: 157.902us - BlockLoadTime: 31.664ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 211.423us - FirstReadTime: 29.133ms - 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: 2 - OutputColumnTime: 134.843us - OutputIndexResultColumnTimer: 100.943us - 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=8):(Active: 260.628ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 260.166ms - CloseTime: 101.623us - GetBlockTime: 4.947ms - OpenTime: 165.337us - PrepareTime: 187.260us - SinkTime: 252.176ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 168.734ms - WaitBfTime: 882.229ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 391.276ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.187K (1187) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.60 MB - CloseTime: 14.429us - CompressTime: 0ns - ExecTime: 251.922ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 35.60 MB - LocalSendTime: 6.197ms - LocalSentRows: 4.147463M (4147463) - MemoryUsage: - PeakMemoryUsage: 54.08 MB - MergeBlockTime: 0ns - OpenTime: 72.504us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s740ms - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 45.202ms - RpcCount: 197 - RpcMaxTime: 4s532ms - RpcMinTime: 4s372ms - RpcSumTime: 8s904ms - SerializeBatchTime: 9.562ms - SplitBlockDistributeByChannelTime: 59.564ms - SplitBlockHashComputeTime: 92.550ms - UncompressedRowBatchSize: 7.57 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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: 3.283us - BlocksProduced: 1.227K (1227) - CloseTime: 83.508us - ExecTime: 114.934ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 229.311us - ProcessConjunctTime: 36.308us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 146.545ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 110.41ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [110.435ms, 76.419ms, 55.896ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [50.256ms, 45.133ms, 51.155ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 210.523ms - MemoryUsage: - FreeBlocks: 26.82 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 503.363us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 59.891us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 58.134ms - ScannerCtxSchedTime: 146.539ms - ScannerFilterTime: 29.801ms - ScannerGetBlockTime: 212.474ms - ScannerInitTime: 95.671us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.209us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 18.679us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 43.266us - BlockInitTime: 291.221us - BlockLoadTime: 210.588ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 229.923us - FirstReadTime: 207.634ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.458us - 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.899us - OutputIndexResultColumnTimer: 117.946us - 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=9):(Active: 252.686ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 252.341ms - CloseTime: 107.131us - GetBlockTime: 3.992ms - OpenTime: 90.266us - PrepareTime: 140.405us - SinkTime: 245.484ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 10 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 142.591ms - WaitBfTime: 882.389ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 401.452ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.187K (1187) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.61 MB - CloseTime: 22.947us - CompressTime: 0ns - ExecTime: 245.246ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 35.59 MB - LocalSendTime: 5.519ms - LocalSentRows: 4.146231M (4146231) - MemoryUsage: - PeakMemoryUsage: 54.05 MB - MergeBlockTime: 0ns - OpenTime: 53.961us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s948ms - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 30.191ms - RpcCount: 198 - RpcMaxTime: 3s60ms - RpcMinTime: 2s917ms - RpcSumTime: 5s977ms - SerializeBatchTime: 8.840ms - SplitBlockDistributeByChannelTime: 81.391ms - SplitBlockHashComputeTime: 66.341ms - UncompressedRowBatchSize: 7.58 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 15s562ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 37.857ms - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 5.891ms - 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.337us - BlocksProduced: 1.228K (1228) - CloseTime: 80.177us - ExecTime: 101.652ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 142.599us - ProcessConjunctTime: 9.313us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 169.525ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 97.701ms - 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: 0 - expr_input_rows: 1.658112M (1658112) 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.03632M (1036320) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [64.837ms, 89.519ms, 31.735ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [56.337ms, 56.474ms, 56.713ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 176.429ms - MemoryUsage: - FreeBlocks: 23.10 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 90.908ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 52.466us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 55.429ms - ScannerCtxSchedTime: 169.519ms - ScannerFilterTime: 7.89ms - ScannerGetBlockTime: 178.575ms - ScannerInitTime: 64.70us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.171us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 26.994us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 63.786us - BlockInitTime: 347.694us - BlockLoadTime: 253.498ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 620 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 256.586us - FirstReadTime: 250.186ms - IOTimer: 0ns - InvertedIndexFilterTime: 14.545us - 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: 146.280us - OutputIndexResultColumnTimer: 101.900us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 116.624ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 116.103ms - CloseTime: 53.270us - GetBlockTime: 964.110us - OpenTime: 254.554us - PrepareTime: 201.562us - SinkTime: 114.586ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 31.615ms - WaitBfTime: 798.478ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 77.434ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 226 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.06 MB - CloseTime: 15.670us - CompressTime: 0ns - ExecTime: 114.596ms - InputRows: 876.719K (876719) - LocalBytesSent: 1.25 MB - LocalSendTime: 33.410ms - LocalSentRows: 146.115K (146115) - MemoryUsage: - PeakMemoryUsage: 2.52 MB - MergeBlockTime: 0ns - OpenTime: 60.421us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17s246ms - RowsProduced: 876.719K (876719) - RpcAvgTime: 510.443ms - RpcCount: 180 - RpcMaxTime: 11s176ms - RpcMinTime: 5s394ms - RpcSumTime: 1m31s - SerializeBatchTime: 53.805ms - SplitBlockDistributeByChannelTime: 11.804ms - SplitBlockHashComputeTime: 9.483ms - UncompressedRowBatchSize: 6.67 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 4.441us - BlocksProduced: 216 - CloseTime: 33.54us - ExecTime: 138.441ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 342.977us - ProcessConjunctTime: 48.419us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 125.201ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.151ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [8.811ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [125.201ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.393ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 115.869us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.303us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.912ms - ScannerCtxSchedTime: 125.199ms - ScannerFilterTime: 70.437us - ScannerGetBlockTime: 8.675ms - ScannerInitTime: 160.344us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 530ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.44us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 8.253us - BlockInitTime: 43.546us - BlockLoadTime: 8.399ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 33.907us - FirstReadTime: 7.856ms - IOTimer: 0ns - InvertedIndexFilterTime: 601ns - 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: 22.541us - OutputIndexResultColumnTimer: 18.348us - 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=1):(Active: 300.236ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 299.722ms - CloseTime: 73.955us - GetBlockTime: 15.695ms - OpenTime: 129.102us - PrepareTime: 301.256us - SinkTime: 261.402ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 8 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 145.149ms - WaitBfTime: 799.451ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.791ms DATA_STREAM_SINK_OPERATOR (id=160,dst_id=160): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 818 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.57 MB - CloseTime: 15.998us - CompressTime: 0ns - ExecTime: 261.203ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 4.85 MB - LocalSendTime: 948.504us - LocalSentRows: 564.71K (564710) - MemoryUsage: - PeakMemoryUsage: 8.29 MB - MergeBlockTime: 0ns - OpenTime: 80.653us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18s92ms - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 143.497ms - RpcCount: 674 - RpcMaxTime: 12s96ms - RpcMinTime: 6s154ms - RpcSumTime: 1m36s - SerializeBatchTime: 58.24ms - SplitBlockDistributeByChannelTime: 76.261ms - SplitBlockHashComputeTime: 69.33ms - UncompressedRowBatchSize: 25.80 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 3.46us - BlocksProduced: 836 - CloseTime: 55.25us - ExecTime: 172.424ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 305.691us - ProcessConjunctTime: 21.350us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 266.115ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.674ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 50, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 51, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [21.672ms, 22.630ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [133.981ms, 132.133ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 42.893ms - MemoryUsage: - FreeBlocks: 13.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 287.224us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44.864us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 28.910ms - ScannerCtxSchedTime: 266.107ms - ScannerFilterTime: 222.764us - ScannerGetBlockTime: 43.827ms - ScannerInitTime: 76.850us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.321us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.870us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 18.128us - BlockInitTime: 142.264us - BlockLoadTime: 42.896ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 143.875us - FirstReadTime: 41.251ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.490us - 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: 99.376us - OutputIndexResultColumnTimer: 56.707us - 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 Fragment 92: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 78.144ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 77.861ms - CloseTime: 81.887us - GetBlockTime: 66.469ms - OpenTime: 23.178us - PrepareTime: 140.851us - SinkTime: 8.925ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 155 - NumBlockedTimes: 157 - NumScheduleTimes: 158 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 77.558ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 239.122ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 157.64 KB - CloseTime: 20.817us - CompressTime: 0ns - ExecTime: 8.870ms - InputRows: 4.001K (4001) - LocalBytesSent: 37.94 KB - LocalSendTime: 18.528us - LocalSentRows: 563 - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 70.990us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s89ms - RowsProduced: 4.001K (4001) - RpcAvgTime: 1s87ms - RpcCount: 10 - RpcMaxTime: 1s87ms - RpcMinTime: 1s86ms - RpcSumTime: 10s871ms - SerializeBatchTime: 417.524us - SplitBlockDistributeByChannelTime: 4.864ms - SplitBlockHashComputeTime: 781.223us - UncompressedRowBatchSize: 239.94 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 165 - BuildOutputBlock: 0ns - CloseTime: 25.863us - ExecTime: 62.341ms - InitProbeSideTime: 23.79ms - JoinFilterTimer: 21.697us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 34.508us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 125.700us - ProbeFindNextTime: 0ns - ProbeRows: 694.766K (694766) - ProbeTime: 59.631ms - ProbeWhenBuildSideOutputTime: 2.15ms - ProbeWhenProbeSideOutputTime: 604.340us - ProbeWhenProcessHashTableTime: 20.447us - ProbeWhenSearchHashTableTime: 29.945ms - ProjectionTime: 1.442ms - RowsProduced: 4.001K (4001) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 291 - BytesReceived: 15.76 MB - CloseTime: 11.193us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.794ms - ExecTime: 3.333ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.55 MB - MemoryUsage: - Blocks: 1.98 MB - PeakMemoryUsage: 1.98 MB - OpenTime: 16.849us - ProjectionTime: 0ns - RowsProduced: 694.766K (694766) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s426ms PipelineXTask (index=2):(Active: 77.340ms, % non-child: 0.00%) - CoreChangeTimes: 28 - ExecuteTime: 77.99ms - CloseTime: 74.958us - GetBlockTime: 65.274ms - OpenTime: 4.748us - PrepareTime: 124.447us - SinkTime: 9.391ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 153 - NumBlockedTimes: 155 - NumScheduleTimes: 156 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 76.795ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 263.937ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 160.06 KB - CloseTime: 29.980us - CompressTime: 0ns - ExecTime: 9.367ms - InputRows: 4.088K (4088) - LocalBytesSent: 39.76 KB - LocalSendTime: 25.688us - LocalSentRows: 590 - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 58.580us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s81ms - RowsProduced: 4.088K (4088) - RpcAvgTime: 1s80ms - RpcCount: 10 - RpcMaxTime: 1s80ms - RpcMinTime: 1s79ms - RpcSumTime: 10s802ms - SerializeBatchTime: 499.438us - SplitBlockDistributeByChannelTime: 5.107ms - SplitBlockHashComputeTime: 861.173us - UncompressedRowBatchSize: 244.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 33.88us - ExecTime: 61.66ms - InitProbeSideTime: 21.916ms - JoinFilterTimer: 21.215us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 16.278us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 114.463us - ProbeFindNextTime: 0ns - ProbeRows: 694.445K (694445) - ProbeTime: 58.614ms - ProbeWhenBuildSideOutputTime: 1.908ms - ProbeWhenProbeSideOutputTime: 630.984us - ProbeWhenProcessHashTableTime: 14.426us - ProbeWhenSearchHashTableTime: 30.165ms - ProjectionTime: 1.330ms - RowsProduced: 4.088K (4088) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 293 - BytesReceived: 15.76 MB - CloseTime: 7.763us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.271ms - ExecTime: 3.311ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.20 MB - MemoryUsage: - Blocks: 1.98 MB - PeakMemoryUsage: 1.98 MB - OpenTime: 11.411us - ProjectionTime: 0ns - RowsProduced: 694.445K (694445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s418ms PipelineXTask (index=4):(Active: 76.727ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 76.469ms - CloseTime: 61.16us - GetBlockTime: 64.465ms - OpenTime: 5.619us - PrepareTime: 138.732us - SinkTime: 9.649ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 154 - NumBlockedTimes: 156 - NumScheduleTimes: 157 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 76.206ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 247.553ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 158.85 KB - CloseTime: 16.892us - CompressTime: 0ns - ExecTime: 9.611ms - InputRows: 4.073K (4073) - LocalBytesSent: 40.56 KB - LocalSendTime: 33.104us - LocalSentRows: 602 - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 83.806us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s87ms - RowsProduced: 4.073K (4073) - RpcAvgTime: 1s85ms - RpcCount: 10 - RpcMaxTime: 1s86ms - RpcMinTime: 1s85ms - RpcSumTime: 10s859ms - SerializeBatchTime: 488.742us - SplitBlockDistributeByChannelTime: 5.379ms - SplitBlockHashComputeTime: 866.798us - UncompressedRowBatchSize: 242.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 33.325us - ExecTime: 60.189ms - InitProbeSideTime: 21.638ms - JoinFilterTimer: 20.351us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 15.580us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 134.425us - ProbeFindNextTime: 0ns - ProbeRows: 695.779K (695779) - ProbeTime: 57.718ms - ProbeWhenBuildSideOutputTime: 1.974ms - ProbeWhenProbeSideOutputTime: 579.162us - ProbeWhenProcessHashTableTime: 17.93us - ProbeWhenSearchHashTableTime: 29.307ms - ProjectionTime: 1.417ms - RowsProduced: 4.073K (4073) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 291 - BytesReceived: 15.78 MB - CloseTime: 7.29us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.359ms - ExecTime: 3.471ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.37 MB - MemoryUsage: - Blocks: 2.88 MB - PeakMemoryUsage: 2.88 MB - OpenTime: 12.14us - ProjectionTime: 0ns - RowsProduced: 695.779K (695779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s425ms PipelineXTask (index=6):(Active: 78.599ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 78.311ms - CloseTime: 57.810us - GetBlockTime: 67.56ms - OpenTime: 5.660us - PrepareTime: 199.578us - SinkTime: 8.839ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 156 - NumBlockedTimes: 158 - NumScheduleTimes: 159 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 78.106ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 237.309ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 154.17 KB - CloseTime: 18.38us - CompressTime: 0ns - ExecTime: 8.819ms - InputRows: 3.922K (3922) - LocalBytesSent: 37.66 KB - LocalSendTime: 29.196us - LocalSentRows: 559 - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 91.689us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s86ms - RowsProduced: 3.922K (3922) - RpcAvgTime: 1s85ms - RpcCount: 10 - RpcMaxTime: 1s85ms - RpcMinTime: 1s84ms - RpcSumTime: 10s852ms - SerializeBatchTime: 401.522us - SplitBlockDistributeByChannelTime: 4.679ms - SplitBlockHashComputeTime: 841.447us - UncompressedRowBatchSize: 234.81 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 24.520us - ExecTime: 62.616ms - InitProbeSideTime: 23.854ms - JoinFilterTimer: 22.163us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 10.8us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 137.91us - ProbeFindNextTime: 0ns - ProbeRows: 695.836K (695836) - ProbeTime: 60.67ms - ProbeWhenBuildSideOutputTime: 1.833ms - ProbeWhenProbeSideOutputTime: 618.773us - ProbeWhenProcessHashTableTime: 15.998us - ProbeWhenSearchHashTableTime: 29.498ms - ProjectionTime: 1.418ms - RowsProduced: 3.922K (3922) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 291 - BytesReceived: 15.79 MB - CloseTime: 10.359us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.203ms - ExecTime: 3.609ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.02 MB - MemoryUsage: - Blocks: 1.98 MB - PeakMemoryUsage: 1.98 MB - OpenTime: 27.573us - ProjectionTime: 0ns - RowsProduced: 695.836K (695836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s423ms PipelineXTask (index=8):(Active: 76.986ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 76.809ms - CloseTime: 38.839us - GetBlockTime: 65.639ms - OpenTime: 4.350us - PrepareTime: 110.568us - SinkTime: 9.0ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 157 - NumBlockedTimes: 159 - NumScheduleTimes: 160 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 72.659ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 263.478ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 151.52 KB - CloseTime: 16.354us - CompressTime: 0ns - ExecTime: 8.924ms - InputRows: 3.873K (3873) - LocalBytesSent: 38.54 KB - LocalSendTime: 24.772us - LocalSentRows: 572 - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 46.997us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s86ms - RowsProduced: 3.873K (3873) - RpcAvgTime: 1s84ms - RpcCount: 10 - RpcMaxTime: 1s85ms - RpcMinTime: 1s83ms - RpcSumTime: 10s846ms - SerializeBatchTime: 399.948us - SplitBlockDistributeByChannelTime: 5.24ms - SplitBlockHashComputeTime: 751.143us - UncompressedRowBatchSize: 230.47 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 12.865us - ExecTime: 61.875ms - InitProbeSideTime: 20.804ms - JoinFilterTimer: 20.269us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.387us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 122.963us - ProbeFindNextTime: 0ns - ProbeRows: 695.57K (695570) - ProbeTime: 59.380ms - ProbeWhenBuildSideOutputTime: 1.812ms - ProbeWhenProbeSideOutputTime: 571.461us - ProbeWhenProcessHashTableTime: 12.997us - ProbeWhenSearchHashTableTime: 32.375ms - ProjectionTime: 1.406ms - RowsProduced: 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 292 - BytesReceived: 15.75 MB - CloseTime: 6.56us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.670ms - ExecTime: 3.16ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.92 MB - MemoryUsage: - Blocks: 1.80 MB - PeakMemoryUsage: 1.80 MB - OpenTime: 12.869us - ProjectionTime: 0ns - RowsProduced: 695.57K (695570) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s408ms PipelineXTask (index=10):(Active: 77.456ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 77.191ms - CloseTime: 55.568us - GetBlockTime: 65.225ms - OpenTime: 4.726us - PrepareTime: 164.940us - SinkTime: 9.473ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 155 - NumBlockedTimes: 157 - NumScheduleTimes: 158 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 76.800ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 224.713ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 160.09 KB - CloseTime: 16.785us - CompressTime: 0ns - ExecTime: 9.432ms - InputRows: 4.104K (4104) - LocalBytesSent: 41.10 KB - LocalSendTime: 12.930us - LocalSentRows: 610 - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 91.996us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s88ms - RowsProduced: 4.104K (4104) - RpcAvgTime: 1s84ms - RpcCount: 10 - RpcMaxTime: 1s85ms - RpcMinTime: 1s83ms - RpcSumTime: 10s848ms - SerializeBatchTime: 482.464us - SplitBlockDistributeByChannelTime: 5.218ms - SplitBlockHashComputeTime: 782.821us - UncompressedRowBatchSize: 243.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 28.887us - ExecTime: 61.147ms - InitProbeSideTime: 22.83ms - JoinFilterTimer: 23.582us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 10.324us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 133.865us - ProbeFindNextTime: 0ns - ProbeRows: 694.608K (694608) - ProbeTime: 58.587ms - ProbeWhenBuildSideOutputTime: 1.900ms - ProbeWhenProbeSideOutputTime: 588.267us - ProbeWhenProcessHashTableTime: 17.291us - ProbeWhenSearchHashTableTime: 29.845ms - ProjectionTime: 1.423ms - RowsProduced: 4.104K (4104) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 289 - BytesReceived: 15.75 MB - CloseTime: 6.399us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.212ms - ExecTime: 3.222ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.36 MB - MemoryUsage: - Blocks: 1.63 MB - PeakMemoryUsage: 1.63 MB - OpenTime: 19.475us - ProjectionTime: 0ns - RowsProduced: 694.608K (694608) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s446ms PipelineXTask (index=12):(Active: 75.512ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 75.320ms - CloseTime: 43.408us - GetBlockTime: 63.798ms - OpenTime: 6.785us - PrepareTime: 118.20us - SinkTime: 9.175ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 154 - NumBlockedTimes: 156 - NumScheduleTimes: 157 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 74.643ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 222.212ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 160.39 KB - CloseTime: 14.574us - CompressTime: 0ns - ExecTime: 9.101ms - InputRows: 4.072K (4072) - LocalBytesSent: 38.48 KB - LocalSendTime: 31.584us - LocalSentRows: 571 - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 60.430us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s88ms - RowsProduced: 4.072K (4072) - RpcAvgTime: 1s87ms - RpcCount: 10 - RpcMaxTime: 1s87ms - RpcMinTime: 1s86ms - RpcSumTime: 10s872ms - SerializeBatchTime: 410.678us - SplitBlockDistributeByChannelTime: 5.121ms - SplitBlockHashComputeTime: 859.577us - UncompressedRowBatchSize: 244.28 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=157): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 17.546us - ExecTime: 59.893ms - InitProbeSideTime: 21.467ms - JoinFilterTimer: 20.45us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 10.978us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 129.193us - ProbeFindNextTime: 0ns - ProbeRows: 695.248K (695248) - ProbeTime: 57.554ms - ProbeWhenBuildSideOutputTime: 1.896ms - ProbeWhenProbeSideOutputTime: 627.752us - ProbeWhenProcessHashTableTime: 15.325us - ProbeWhenSearchHashTableTime: 29.486ms - ProjectionTime: 1.258ms - RowsProduced: 4.072K (4072) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=156): - BlocksProduced: 290 - BytesReceived: 15.75 MB - CloseTime: 7.917us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.396ms - ExecTime: 3.70ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.71 MB - MemoryUsage: - Blocks: 1.81 MB - PeakMemoryUsage: 1.81 MB - OpenTime: 14.998us - ProjectionTime: 0ns - RowsProduced: 695.248K (695248) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s444ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.206ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.103ms - CloseTime: 25.400us - GetBlockTime: 94.768us - OpenTime: 3.129us - PrepareTime: 68.568us - SinkTime: 927.46us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.159ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.59ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.979us - BuildRows: 4.002K (4002) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 497.641us - BuildTableInsertTime: 179.672us - BuildTableTime: 186.347us - CloseTime: 0ns - ExecTime: 948.728us - InputRows: 4.001K (4001) - MemoryUsage: - BuildBlocks: 234.39 KB - BuildKeyArena: 148.00 KB - HashTable: 51.54 KB - PeakMemoryUsage: 429.92 KB - OpenTime: 27.630us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 33.430us - RuntimeFilterComputeTime: 146.27us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 16 - BytesReceived: 86.19 KB - CloseTime: 23.5us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 143.363us - ExecTime: 113.214us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 199.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.790us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 373.462ms PipelineXTask (index=3):(Active: 785.1us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 703.675us - CloseTime: 14.698us - GetBlockTime: 72.337us - OpenTime: 1.972us - PrepareTime: 59.542us - SinkTime: 593.701us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 760.99us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.530ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.230us - BuildRows: 4.089K (4089) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 296.690us - BuildTableInsertTime: 121.638us - BuildTableTime: 125.754us - CloseTime: 0ns - ExecTime: 604.474us - InputRows: 4.088K (4088) - MemoryUsage: - BuildBlocks: 239.50 KB - BuildKeyArena: 148.00 KB - HashTable: 51.97 KB - PeakMemoryUsage: 435.46 KB - OpenTime: 13.291us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.362us - RuntimeFilterComputeTime: 108.502us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 16 - BytesReceived: 88.54 KB - CloseTime: 12.136us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 248.114us - ExecTime: 102.207us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 199.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 21.73us - ProjectionTime: 0ns - RowsProduced: 4.088K (4088) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 365.934ms PipelineXTask (index=5):(Active: 653.643us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 588.331us - CloseTime: 7.644us - GetBlockTime: 39.646us - OpenTime: 2.877us - PrepareTime: 49.363us - SinkTime: 513.309us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 635.779us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.761ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.560us - BuildRows: 4.074K (4074) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 173.134us - BuildTableInsertTime: 211.383us - BuildTableTime: 213.789us - CloseTime: 0ns - ExecTime: 527.501us - InputRows: 4.073K (4073) - MemoryUsage: - BuildBlocks: 238.63 KB - BuildKeyArena: 148.00 KB - HashTable: 51.90 KB - PeakMemoryUsage: 434.52 KB - OpenTime: 15.997us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.690us - RuntimeFilterComputeTime: 99.454us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 16 - BytesReceived: 84.94 KB - CloseTime: 6.9us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 157.180us - ExecTime: 58.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 199.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.871us - ProjectionTime: 0ns - RowsProduced: 4.073K (4073) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 374.133ms PipelineXTask (index=7):(Active: 611.621us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 536.933us - CloseTime: 5.938us - GetBlockTime: 65.790us - OpenTime: 2.26us - PrepareTime: 61.204us - SinkTime: 445.585us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 597.489us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.323ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.545us - BuildRows: 3.923K (3923) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 172.607us - BuildTableInsertTime: 148.814us - BuildTableTime: 151.65us - CloseTime: 0ns - ExecTime: 475.202us - InputRows: 3.922K (3922) - MemoryUsage: - BuildBlocks: 229.79 KB - BuildKeyArena: 144.00 KB - HashTable: 51.16 KB - PeakMemoryUsage: 420.94 KB - OpenTime: 31.192us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.718us - RuntimeFilterComputeTime: 97.548us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 16 - BytesReceived: 82.06 KB - CloseTime: 4.868us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 148.507us - ExecTime: 80.412us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 199.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.78us - ProjectionTime: 0ns - RowsProduced: 3.922K (3922) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 373.970ms PipelineXTask (index=9):(Active: 782.975us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 703.541us - CloseTime: 8.652us - GetBlockTime: 65.877us - OpenTime: 1.813us - PrepareTime: 63.748us - SinkTime: 609.199us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 766.40us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.335ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.783us - BuildRows: 3.874K (3874) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 241.285us - BuildTableInsertTime: 256.645us - BuildTableTime: 258.541us - CloseTime: 0ns - ExecTime: 630.1us - InputRows: 3.873K (3873) - MemoryUsage: - BuildBlocks: 226.88 KB - BuildKeyArena: 144.00 KB - HashTable: 50.92 KB - PeakMemoryUsage: 417.79 KB - OpenTime: 22.573us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.52us - RuntimeFilterComputeTime: 85.160us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 16 - BytesReceived: 84.80 KB - CloseTime: 7.679us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 153.885us - ExecTime: 93.24us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 156.75 KB - MemoryUsage: - Blocks: 199.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 22.373us - ProjectionTime: 0ns - RowsProduced: 3.873K (3873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 374.143ms PipelineXTask (index=11):(Active: 875.196us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 809.507us - CloseTime: 5.823us - GetBlockTime: 69.361us - OpenTime: 2.130us - PrepareTime: 52.490us - SinkTime: 706.165us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 861.59us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.495ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.24us - BuildRows: 4.105K (4105) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 328.270us - BuildTableInsertTime: 219.890us - BuildTableTime: 222.256us - CloseTime: 0ns - ExecTime: 721.788us - InputRows: 4.104K (4104) - MemoryUsage: - BuildBlocks: 240.46 KB - BuildKeyArena: 152.00 KB - HashTable: 52.05 KB - PeakMemoryUsage: 440.50 KB - OpenTime: 17.398us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 40.735us - RuntimeFilterComputeTime: 89.377us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 16 - BytesReceived: 88.66 KB - CloseTime: 4.827us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 154.921us - ExecTime: 88.490us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 199.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.885us - ProjectionTime: 0ns - RowsProduced: 4.104K (4104) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 374.157ms PipelineXTask (index=13):(Active: 611.934us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 550.202us - CloseTime: 7.547us - GetBlockTime: 55.237us - OpenTime: 2.619us - PrepareTime: 46.584us - SinkTime: 465.246us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 596.44us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.215ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.195us - BuildRows: 4.073K (4073) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 210.134us - BuildTableInsertTime: 135.117us - BuildTableTime: 136.638us - CloseTime: 0ns - ExecTime: 477.937us - InputRows: 4.072K (4072) - MemoryUsage: - BuildBlocks: 238.54 KB - BuildKeyArena: 148.00 KB - HashTable: 51.89 KB - PeakMemoryUsage: 434.42 KB - OpenTime: 14.109us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.473us - RuntimeFilterComputeTime: 93.353us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 16 - BytesReceived: 87.21 KB - CloseTime: 6.781us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 170.106us - ExecTime: 66.953us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 156.75 KB - MemoryUsage: - Blocks: 199.50 KB - PeakMemoryUsage: 0.00 - OpenTime: 8.321us - ProjectionTime: 0ns - RowsProduced: 4.072K (4072) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 366.642ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 58.983ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 58.651ms - CloseTime: 113.406us - GetBlockTime: 50.743ms - OpenTime: 15.451us - PrepareTime: 149.35us - SinkTime: 6.324ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 101 - NumBlockedTimes: 103 - NumScheduleTimes: 104 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 57.819ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 106.687ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.73 KB - CloseTime: 22.284us - CompressTime: 0ns - ExecTime: 6.327ms - InputRows: 4.133K (4133) - LocalBytesSent: 238.09 KB - LocalSendTime: 109.133us - LocalSentRows: 3.534K (3534) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 58.79us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.189ms - RowsProduced: 4.133K (4133) - RpcAvgTime: 646.861us - RpcCount: 2 - RpcMaxTime: 650.662us - RpcMinTime: 643.61us - RpcSumTime: 1.293ms - SerializeBatchTime: 154.312us - SplitBlockDistributeByChannelTime: 3.602ms - SplitBlockHashComputeTime: 637.276us - UncompressedRowBatchSize: 41.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 58.880us - ExecTime: 48.231ms - InitProbeSideTime: 18.778ms - JoinFilterTimer: 20.123us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 29.930us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 82.558us - ProbeFindNextTime: 0ns - ProbeRows: 696.522K (696522) - ProbeTime: 46.426ms - ProbeWhenBuildSideOutputTime: 1.334ms - ProbeWhenProbeSideOutputTime: 456.50us - ProbeWhenProcessHashTableTime: 17.420us - ProbeWhenSearchHashTableTime: 23.106ms - ProjectionTime: 969.829us - RowsProduced: 4.133K (4133) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s584ms EXCHANGE_OPERATOR (id=156): - BlocksProduced: 210 - BytesReceived: 5.27 MB - CloseTime: 26.902us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.550ms - ExecTime: 2.190ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.28 MB - MemoryUsage: - Blocks: 18.84 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 18.781us - ProjectionTime: 0ns - RowsProduced: 696.522K (696522) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s247ms PipelineXTask (index=2):(Active: 58.543ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 58.336ms - CloseTime: 56.789us - GetBlockTime: 49.668ms - OpenTime: 3.118us - PrepareTime: 123.885us - SinkTime: 7.162ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 101 - NumBlockedTimes: 103 - NumScheduleTimes: 104 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 58.223ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.945ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.19 KB - CloseTime: 17.720us - CompressTime: 0ns - ExecTime: 7.148ms - InputRows: 4.044K (4044) - LocalBytesSent: 232.58 KB - LocalSendTime: 294.50us - LocalSentRows: 3.452K (3452) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 57.262us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.342ms - RowsProduced: 4.044K (4044) - RpcAvgTime: 1.966ms - RpcCount: 2 - RpcMaxTime: 3.219ms - RpcMinTime: 714.86us - RpcSumTime: 3.933ms - SerializeBatchTime: 239.432us - SplitBlockDistributeByChannelTime: 3.870ms - SplitBlockHashComputeTime: 624.748us - UncompressedRowBatchSize: 41.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 23.676us - ExecTime: 46.957ms - InitProbeSideTime: 19.594ms - JoinFilterTimer: 21.191us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.66us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 73.738us - ProbeFindNextTime: 0ns - ProbeRows: 694.151K (694151) - ProbeTime: 45.187ms - ProbeWhenBuildSideOutputTime: 1.367ms - ProbeWhenProbeSideOutputTime: 448.718us - ProbeWhenProcessHashTableTime: 40.887us - ProbeWhenSearchHashTableTime: 20.971ms - ProjectionTime: 1.3ms - RowsProduced: 4.044K (4044) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s587ms EXCHANGE_OPERATOR (id=156): - BlocksProduced: 206 - BytesReceived: 5.23 MB - CloseTime: 10.921us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.414ms - ExecTime: 2.278ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.13 MB - MemoryUsage: - Blocks: 19.20 MB - PeakMemoryUsage: 19.20 MB - OpenTime: 23.52us - ProjectionTime: 0ns - RowsProduced: 694.151K (694151) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s162ms PipelineXTask (index=4):(Active: 55.449ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 55.247ms - CloseTime: 50.473us - GetBlockTime: 47.314ms - OpenTime: 3.596us - PrepareTime: 127.229us - SinkTime: 6.398ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 101 - NumBlockedTimes: 103 - NumScheduleTimes: 104 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 55.133ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.892ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.63 KB - CloseTime: 20.141us - CompressTime: 0ns - ExecTime: 6.367ms - InputRows: 4.055K (4055) - LocalBytesSent: 231.44 KB - LocalSendTime: 117.861us - LocalSentRows: 3.435K (3435) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 64.23us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.305ms - RowsProduced: 4.055K (4055) - RpcAvgTime: 723.291us - RpcCount: 2 - RpcMaxTime: 728.365us - RpcMinTime: 718.218us - RpcSumTime: 1.446ms - SerializeBatchTime: 88.915us - SplitBlockDistributeByChannelTime: 3.824ms - SplitBlockHashComputeTime: 621.573us - UncompressedRowBatchSize: 43.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 13.750us - ExecTime: 44.664ms - InitProbeSideTime: 18.541ms - JoinFilterTimer: 15.978us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 12.16us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 69.232us - ProbeFindNextTime: 0ns - ProbeRows: 695.934K (695934) - ProbeTime: 42.870ms - ProbeWhenBuildSideOutputTime: 1.448ms - ProbeWhenProbeSideOutputTime: 486.743us - ProbeWhenProcessHashTableTime: 26.175us - ProbeWhenSearchHashTableTime: 19.847ms - ProjectionTime: 907.459us - RowsProduced: 4.055K (4055) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s587ms EXCHANGE_OPERATOR (id=156): - BlocksProduced: 209 - BytesReceived: 5.27 MB - CloseTime: 12.152us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.867ms - ExecTime: 2.259ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.63 MB - MemoryUsage: - Blocks: 19.21 MB - PeakMemoryUsage: 19.21 MB - OpenTime: 15.694us - ProjectionTime: 0ns - RowsProduced: 695.934K (695934) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s283ms PipelineXTask (index=6):(Active: 63.910ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 63.752ms - CloseTime: 35.785us - GetBlockTime: 55.325ms - OpenTime: 3.878us - PrepareTime: 101.513us - SinkTime: 6.874ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 99 - NumBlockedTimes: 101 - NumScheduleTimes: 102 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 63.613ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 191.542ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.72 KB - CloseTime: 14.276us - CompressTime: 0ns - ExecTime: 6.848ms - InputRows: 3.96K (3960) - LocalBytesSent: 229.36 KB - LocalSendTime: 114.142us - LocalSentRows: 3.404K (3404) - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 55.940us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.254ms - RowsProduced: 3.96K (3960) - RpcAvgTime: 4.797ms - RpcCount: 2 - RpcMaxTime: 4.838ms - RpcMinTime: 4.756ms - RpcSumTime: 9.595ms - SerializeBatchTime: 105.463us - SplitBlockDistributeByChannelTime: 4.4ms - SplitBlockHashComputeTime: 731.848us - UncompressedRowBatchSize: 38.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12.731us - ExecTime: 52.418ms - InitProbeSideTime: 21.817ms - JoinFilterTimer: 24.627us - MemoryUsage: - PeakMemoryUsage: 468.00 KB - ProbeKeyArena: 468.00 KB - OpenTime: 10.577us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 89.169us - ProbeFindNextTime: 0ns - ProbeRows: 694.145K (694145) - ProbeTime: 50.477ms - ProbeWhenBuildSideOutputTime: 1.586ms - ProbeWhenProbeSideOutputTime: 513.215us - ProbeWhenProcessHashTableTime: 20.826us - ProbeWhenSearchHashTableTime: 23.419ms - ProjectionTime: 1.56ms - RowsProduced: 3.96K (3960) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s493ms EXCHANGE_OPERATOR (id=156): - BlocksProduced: 208 - BytesReceived: 5.25 MB - CloseTime: 6.306us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.501ms - ExecTime: 2.419ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.40 MB - MemoryUsage: - Blocks: 19.95 MB - PeakMemoryUsage: 19.95 MB - OpenTime: 8.746us - ProjectionTime: 0ns - RowsProduced: 694.145K (694145) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s241ms PipelineXTask (index=8):(Active: 68.986ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 68.789ms - CloseTime: 49.636us - GetBlockTime: 59.572ms - OpenTime: 3.746us - PrepareTime: 125.580us - SinkTime: 7.335ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 101 - NumBlockedTimes: 103 - NumScheduleTimes: 104 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 68.629ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 255.753ms DATA_STREAM_SINK_OPERATOR (id=158,dst_id=158): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.81 KB - CloseTime: 19.860us - CompressTime: 0ns - ExecTime: 7.313ms - InputRows: 3.933K (3933) - LocalBytesSent: 225.97 KB - LocalSendTime: 152.903us - LocalSentRows: 3.354K (3354) - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 65.632us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.840ms - RowsProduced: 3.933K (3933) - RpcAvgTime: 727.167us - RpcCount: 2 - RpcMaxTime: 738.270us - RpcMinTime: 716.64us - RpcSumTime: 1.454ms - SerializeBatchTime: 174.170us - SplitBlockDistributeByChannelTime: 3.990ms - SplitBlockHashComputeTime: 774.238us - UncompressedRowBatchSize: 40.49 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 13.228us - ExecTime: 56.102ms - InitProbeSideTime: 24.341ms - JoinFilterTimer: 28.373us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.207us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 76.933us - ProbeFindNextTime: 0ns - ProbeRows: 695.323K (695323) - ProbeTime: 54.80ms - ProbeWhenBuildSideOutputTime: 1.709ms - ProbeWhenProbeSideOutputTime: 522.25us - ProbeWhenProcessHashTableTime: 20.965us - ProbeWhenSearchHashTableTime: 23.901ms - ProjectionTime: 1.125ms - RowsProduced: 3.933K (3933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s498ms EXCHANGE_OPERATOR (id=156): - BlocksProduced: 209 - BytesReceived: 5.25 MB - CloseTime: 11.741us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.56ms - ExecTime: 2.945ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.45 MB - MemoryUsage: - Blocks: 19.92 MB - PeakMemoryUsage: 19.92 MB - OpenTime: 15.407us - ProjectionTime: 0ns - RowsProduced: 695.323K (695323) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s245ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.669ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.582ms - CloseTime: 15.20us - GetBlockTime: 132.151us - OpenTime: 1.761us - PrepareTime: 65.506us - SinkTime: 1.342ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.630ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.395ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.549us - BuildRows: 4.134K (4134) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 619.212us - BuildTableInsertTime: 357.17us - BuildTableTime: 362.800us - CloseTime: 0ns - ExecTime: 1.372ms - InputRows: 4.133K (4133) - MemoryUsage: - BuildBlocks: 242.12 KB - BuildKeyArena: 152.00 KB - HashTable: 52.19 KB - PeakMemoryUsage: 442.30 KB - OpenTime: 37.40us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.906us - RuntimeFilterComputeTime: 249.967us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 17 - BytesReceived: 77.07 KB - CloseTime: 11.80us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 293.884us - ExecTime: 142.69us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.00 KB - OpenTime: 9.975us - ProjectionTime: 0ns - RowsProduced: 4.133K (4133) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s913ms PipelineXTask (index=3):(Active: 829.601us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 670.803us - CloseTime: 5.681us - GetBlockTime: 74.354us - OpenTime: 1.692us - PrepareTime: 145.220us - SinkTime: 539.85us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 806.208us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.228ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.431us - BuildRows: 4.045K (4045) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 198.776us - BuildTableInsertTime: 170.257us - BuildTableTime: 172.31us - CloseTime: 0ns - ExecTime: 646.376us - InputRows: 4.044K (4044) - MemoryUsage: - BuildBlocks: 236.92 KB - BuildKeyArena: 148.00 KB - HashTable: 51.75 KB - PeakMemoryUsage: 432.67 KB - OpenTime: 110.847us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.765us - RuntimeFilterComputeTime: 119.265us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 17 - BytesReceived: 74.50 KB - CloseTime: 4.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 281.261us - ExecTime: 86.264us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.00 KB - OpenTime: 14.300us - ProjectionTime: 0ns - RowsProduced: 4.044K (4044) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s915ms PipelineXTask (index=5):(Active: 1.32ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 945.142us - CloseTime: 7.72us - GetBlockTime: 75.568us - OpenTime: 1.770us - PrepareTime: 73.824us - SinkTime: 792.999us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.5ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.906ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.543us - BuildRows: 4.056K (4056) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 451.677us - BuildTableInsertTime: 158.357us - BuildTableTime: 160.377us - CloseTime: 0ns - ExecTime: 803.633us - InputRows: 4.055K (4055) - MemoryUsage: - BuildBlocks: 237.58 KB - BuildKeyArena: 148.00 KB - HashTable: 51.81 KB - PeakMemoryUsage: 433.38 KB - OpenTime: 15.184us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.861us - RuntimeFilterComputeTime: 114.724us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 17 - BytesReceived: 74.40 KB - CloseTime: 5.766us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 212.807us - ExecTime: 109.157us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.00 KB - OpenTime: 36.193us - ProjectionTime: 0ns - RowsProduced: 4.055K (4055) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s916ms PipelineXTask (index=7):(Active: 1.12ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 923.159us - CloseTime: 8.730us - GetBlockTime: 91.114us - OpenTime: 13.957us - PrepareTime: 60.769us - SinkTime: 740.128us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 981.890us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.982ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.849us - BuildRows: 3.961K (3961) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 202.388us - BuildTableInsertTime: 252.143us - BuildTableTime: 254.786us - CloseTime: 0ns - ExecTime: 753.53us - InputRows: 3.96K (3960) - MemoryUsage: - BuildBlocks: 232.02 KB - BuildKeyArena: 144.00 KB - HashTable: 51.34 KB - PeakMemoryUsage: 423.36 KB - OpenTime: 18.453us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.940us - RuntimeFilterComputeTime: 207.683us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 17 - BytesReceived: 74.31 KB - CloseTime: 6.537us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 252.535us - ExecTime: 108.600us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.00 KB - OpenTime: 19.970us - ProjectionTime: 0ns - RowsProduced: 3.96K (3960) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s916ms PipelineXTask (index=9):(Active: 1.350ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.275ms - CloseTime: 11.216us - GetBlockTime: 89.225us - OpenTime: 1.563us - PrepareTime: 56.980us - SinkTime: 1.103ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.316ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.960ms HASH_JOIN_SINK_OPERATOR (id=157): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.629us - BuildRows: 3.934K (3934) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 227.670us - BuildTableInsertTime: 401.772us - BuildTableTime: 406.673us - CloseTime: 0ns - ExecTime: 1.115ms - InputRows: 3.933K (3933) - MemoryUsage: - BuildBlocks: 230.42 KB - BuildKeyArena: 144.00 KB - HashTable: 51.21 KB - PeakMemoryUsage: 421.62 KB - OpenTime: 18.475us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 198.194us - RuntimeFilterComputeTime: 216.917us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=154): - BlocksProduced: 17 - BytesReceived: 73.73 KB - CloseTime: 9.215us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 324.500us - ExecTime: 103.286us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 114.00 KB - PeakMemoryUsage: 114.00 KB - OpenTime: 12.727us - ProjectionTime: 0ns - RowsProduced: 3.933K (3933) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s918ms Fragment 93: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 367.626ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 367.290ms - CloseTime: 68.811us - GetBlockTime: 2.345ms - OpenTime: 57.898us - PrepareTime: 200.880us - SinkTime: 363.774ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 357.778ms - WaitBfTime: 883.547ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 257.478ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 504 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.75 MB - CloseTime: 25.853us - CompressTime: 0ns - ExecTime: 363.667ms - InputRows: 2.082156M (2082156) - LocalBytesSent: 38.01 MB - LocalSendTime: 2.711ms - LocalSentRows: 866.424K (866424) - MemoryUsage: - PeakMemoryUsage: 69.74 MB - MergeBlockTime: 0ns - OpenTime: 57.938us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s600ms - RowsProduced: 2.082156M (2082156) - RpcAvgTime: 126.655ms - RpcCount: 291 - RpcMaxTime: 5s282ms - RpcMinTime: 5s248ms - RpcSumTime: 36s856ms - SerializeBatchTime: 154.411ms - SplitBlockDistributeByChannelTime: 117.91ms - SplitBlockHashComputeTime: 68.214ms - UncompressedRowBatchSize: 54.53 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 2s293ms - WaitForLocalExchangeBuffer4: 2s297ms - 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=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.652us - BlocksProduced: 514 - CloseTime: 40.280us - ExecTime: 345.184ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.104us - ProcessConjunctTime: 10.924us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 60.882ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 342.834ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, 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.24627M (1246270) RuntimeFilter: (id = 49, 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: 623.135K (623135) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [124.813ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [60.882ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 101.318ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 112.433ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 29.350us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 107.746ms - ScannerCtxSchedTime: 60.872ms - ScannerFilterTime: 21.707ms - ScannerGetBlockTime: 102.873ms - ScannerInitTime: 28.97us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 927ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.361us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 14.709us - BlockInitTime: 88.847us - BlockLoadTime: 213.887ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 112.395ms - FirstReadTime: 211.803ms - 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: 2 - OutputColumnTime: 156.49us - OutputIndexResultColumnTimer: 66.977us - 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: 370.339ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 370.11ms - CloseTime: 57.462us - GetBlockTime: 13.160ms - OpenTime: 78.545us - PrepareTime: 183.457us - SinkTime: 355.609ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 335.832ms - WaitBfTime: 883.384ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 273.727ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.80 MB - CloseTime: 14.429us - CompressTime: 0ns - ExecTime: 355.519ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 38.15 MB - LocalSendTime: 2.318ms - LocalSentRows: 869.712K (869712) - MemoryUsage: - PeakMemoryUsage: 69.14 MB - MergeBlockTime: 0ns - OpenTime: 67.92us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s654ms - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 128.124ms - RpcCount: 291 - RpcMaxTime: 5s353ms - RpcMinTime: 5s288ms - RpcSumTime: 37s284ms - SerializeBatchTime: 139.846ms - SplitBlockDistributeByChannelTime: 127.992ms - SplitBlockHashComputeTime: 65.247ms - UncompressedRowBatchSize: 54.61 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 2s293ms - WaitForLocalExchangeBuffer4: 2s297ms - 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=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.308us - BlocksProduced: 515 - CloseTime: 39.844us - ExecTime: 258.799ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 141.303us - ProcessConjunctTime: 23.81us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 59.763ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 245.639ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, 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.24627M (1246270) RuntimeFilter: (id = 49, 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: 623.135K (623135) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [133.645ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [59.763ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 117.896ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 54.588ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.654us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 92.674ms - ScannerCtxSchedTime: 59.749ms - ScannerFilterTime: 14.54ms - ScannerGetBlockTime: 119.381ms - ScannerInitTime: 36.794us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 924ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.179us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 13.234us - BlockInitTime: 86.952us - BlockLoadTime: 172.752ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 54.653ms - FirstReadTime: 170.838ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.151us - 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: 119.7us - OutputIndexResultColumnTimer: 55.139us - 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=2):(Active: 356.287ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 355.961ms - CloseTime: 73.907us - GetBlockTime: 2.277ms - OpenTime: 67.643us - PrepareTime: 174.771us - SinkTime: 352.514ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 324.202ms - WaitBfTime: 879.987ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 317.646ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 509 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.76 MB - CloseTime: 22.51us - CompressTime: 0ns - ExecTime: 352.418ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 38.21 MB - LocalSendTime: 2.716ms - LocalSentRows: 871.015K (871015) - MemoryUsage: - PeakMemoryUsage: 69.57 MB - MergeBlockTime: 0ns - OpenTime: 51.707us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s581ms - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 123.352ms - RpcCount: 292 - RpcMaxTime: 5s208ms - RpcMinTime: 5s90ms - RpcSumTime: 36s19ms - SerializeBatchTime: 172.842ms - SplitBlockDistributeByChannelTime: 96.305ms - SplitBlockHashComputeTime: 61.872ms - UncompressedRowBatchSize: 54.54 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 2s293ms - WaitForLocalExchangeBuffer4: 2s297ms - 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=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.467us - BlocksProduced: 515 - CloseTime: 47.931us - ExecTime: 330.960ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.427us - ProcessConjunctTime: 12.844us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 60.943ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 328.662ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, 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.24627M (1246270) RuntimeFilter: (id = 49, 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: 623.135K (623135) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [183.411ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [60.943ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 167.99ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 87.771ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.19us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 94.872ms - ScannerCtxSchedTime: 60.926ms - ScannerFilterTime: 14.804ms - ScannerGetBlockTime: 168.407ms - ScannerInitTime: 38.823us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.24us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.686us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 17.167us - BlockInitTime: 102.281us - BlockLoadTime: 254.84ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 86.943ms - FirstReadTime: 252.304ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.344us - 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.123us - OutputIndexResultColumnTimer: 50.275us - 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 :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 403.590ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 403.82ms - CloseTime: 68.600us - GetBlockTime: 2.864ms - OpenTime: 179.19us - PrepareTime: 247.78us - SinkTime: 398.325ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 378.537ms - WaitBfTime: 798.451ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.353ms DATA_STREAM_SINK_OPERATOR (id=156,dst_id=156): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.27 MB - CloseTime: 17.730us - CompressTime: 0ns - ExecTime: 398.210ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 53.40 MB - LocalSendTime: 4.174ms - LocalSentRows: 1.21731M (1217310) - MemoryUsage: - PeakMemoryUsage: 95.92 MB - MergeBlockTime: 0ns - OpenTime: 71.624us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s459ms - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 375.969ms - RpcCount: 209 - RpcMaxTime: 15s747ms - RpcMinTime: 15s681ms - RpcSumTime: 1m18s - SerializeBatchTime: 139.481ms - SplitBlockDistributeByChannelTime: 157.559ms - SplitBlockHashComputeTime: 70.53ms - UncompressedRowBatchSize: 38.98 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.282us - BlocksProduced: 514 - CloseTime: 46.316us - ExecTime: 266.978ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 298.267us - ProcessConjunctTime: 35.678us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 133.693ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 264.31ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 48, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 49, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [132.807ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [133.693ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 130.670ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 970.216us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 32.301us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 91.598ms - ScannerCtxSchedTime: 133.681ms - ScannerFilterTime: 406.715us - ScannerGetBlockTime: 132.164ms - ScannerInitTime: 111.296us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.71us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.610us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.947us - BlockInitTime: 100.887us - BlockLoadTime: 131.766ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 942.647us - FirstReadTime: 129.684ms - 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: 156.114us - OutputIndexResultColumnTimer: 67.9us - 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 Fragment 94: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 3.529ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 3.375ms - CloseTime: 20.148us - GetBlockTime: 925.542us - OpenTime: 4.814us - PrepareTime: 122.781us - SinkTime: 2.356ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.493ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.643ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 177.51 KB - CloseTime: 8.793us - CompressTime: 0ns - ExecTime: 2.426ms - InputRows: 7.79K (7790) - LocalBytesSent: 191.51 KB - LocalSendTime: 35.12us - LocalSentRows: 3.269K (3269) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 62.995us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.181ms - RowsProduced: 7.79K (7790) - RpcAvgTime: 20.910ms - RpcCount: 7 - RpcMaxTime: 21.671ms - RpcMinTime: 20.223ms - RpcSumTime: 146.372ms - SerializeBatchTime: 609.887us - SplitBlockDistributeByChannelTime: 817.563us - SplitBlockHashComputeTime: 278.377us - UncompressedRowBatchSize: 271.50 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 8.880us - ExecTime: 875.727us - InitProbeSideTime: 205.773us - JoinFilterTimer: 479ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.558us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.380us - ProbeFindNextTime: 0ns - ProbeRows: 7.79K (7790) - ProbeTime: 689.716us - ProbeWhenBuildSideOutputTime: 16.314us - ProbeWhenProbeSideOutputTime: 213.689us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 193.217us - ProjectionTime: 148.797us - RowsProduced: 7.79K (7790) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 55.614us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 3.443us - ProjectionTime: 0ns - RowsProduced: 7.79K (7790) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 99.424ms PipelineXTask (index=3):(Active: 2.811ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.651ms - CloseTime: 25.350us - GetBlockTime: 686.902us - OpenTime: 17.594us - PrepareTime: 111.48us - SinkTime: 1.910ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.774ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.313ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 150.88 KB - CloseTime: 10.233us - CompressTime: 0ns - ExecTime: 1.989ms - InputRows: 6.547K (6547) - LocalBytesSent: 159.35 KB - LocalSendTime: 35.459us - LocalSentRows: 2.72K (2720) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 69.648us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.398ms - RowsProduced: 6.547K (6547) - RpcAvgTime: 22.583ms - RpcCount: 7 - RpcMaxTime: 23.753ms - RpcMinTime: 19.624ms - RpcSumTime: 158.84ms - SerializeBatchTime: 509.626us - SplitBlockDistributeByChannelTime: 672.971us - SplitBlockHashComputeTime: 280.492us - UncompressedRowBatchSize: 229.98 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 12.913us - ExecTime: 696.432us - InitProbeSideTime: 162.465us - JoinFilterTimer: 550ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.474us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 730ns - ProbeFindNextTime: 0ns - ProbeRows: 6.547K (6547) - ProbeTime: 559.101us - ProbeWhenBuildSideOutputTime: 15.962us - ProbeWhenProbeSideOutputTime: 147.970us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 181.621us - ProjectionTime: 100.363us - RowsProduced: 6.547K (6547) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 7.655us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 488.00 KB - OpenTime: 744ns - ProjectionTime: 0ns - RowsProduced: 6.547K (6547) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 104.706ms PipelineXTask (index=6):(Active: 1.855ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.695ms - CloseTime: 19.479us - GetBlockTime: 494.624us - OpenTime: 7.274us - PrepareTime: 127.468us - SinkTime: 1.158ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.824ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.207ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 93.86 KB - CloseTime: 8.204us - CompressTime: 0ns - ExecTime: 1.237ms - InputRows: 3.957K (3957) - LocalBytesSent: 93.01 KB - LocalSendTime: 38.999us - LocalSentRows: 1.588K (1588) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 71.700us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.653ms - RowsProduced: 3.957K (3957) - RpcAvgTime: 23.689ms - RpcCount: 7 - RpcMaxTime: 23.779ms - RpcMinTime: 23.618ms - RpcSumTime: 165.829ms - SerializeBatchTime: 330.594us - SplitBlockDistributeByChannelTime: 335.619us - SplitBlockHashComputeTime: 152.669us - UncompressedRowBatchSize: 142.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 9.711us - ExecTime: 504.666us - InitProbeSideTime: 128.178us - JoinFilterTimer: 216ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 19.38us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 360ns - ProbeFindNextTime: 0ns - ProbeRows: 3.957K (3957) - ProbeTime: 355.393us - ProbeWhenBuildSideOutputTime: 7.48us - ProbeWhenProbeSideOutputTime: 78.440us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 114.68us - ProjectionTime: 114.574us - RowsProduced: 3.957K (3957) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 13.116us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 686ns - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 99.562ms PipelineXTask (index=9):(Active: 1.886ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.728ms - CloseTime: 35.495us - GetBlockTime: 490.691us - OpenTime: 4.997us - PrepareTime: 113.24us - SinkTime: 1.197ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.840ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.789ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.08 KB - CloseTime: 13.165us - CompressTime: 0ns - ExecTime: 1.274ms - InputRows: 3.842K (3842) - LocalBytesSent: 93.19 KB - LocalSendTime: 26.807us - LocalSentRows: 1.591K (1591) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 65.325us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.633ms - RowsProduced: 3.842K (3842) - RpcAvgTime: 23.717ms - RpcCount: 7 - RpcMaxTime: 23.780ms - RpcMinTime: 23.626ms - RpcSumTime: 166.19ms - SerializeBatchTime: 343.461us - SplitBlockDistributeByChannelTime: 347.301us - SplitBlockHashComputeTime: 174.875us - UncompressedRowBatchSize: 135.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 19.589us - ExecTime: 509.638us - InitProbeSideTime: 114.812us - JoinFilterTimer: 248ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.799us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 619ns - ProbeFindNextTime: 0ns - ProbeRows: 3.842K (3842) - ProbeTime: 368.717us - ProbeWhenBuildSideOutputTime: 33.359us - ProbeWhenProbeSideOutputTime: 83.168us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 102.886us - ProjectionTime: 100.802us - RowsProduced: 3.842K (3842) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 9.438us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 823ns - ProjectionTime: 0ns - RowsProduced: 3.842K (3842) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 105.60ms PipelineXTask (index=12):(Active: 2.313ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.151ms - CloseTime: 43.122us - GetBlockTime: 575.995us - OpenTime: 3.368us - PrepareTime: 111.555us - SinkTime: 1.518ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.261ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.641ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.01 KB - CloseTime: 23.898us - CompressTime: 0ns - ExecTime: 1.595ms - InputRows: 3.849K (3849) - LocalBytesSent: 93.75 KB - LocalSendTime: 51.412us - LocalSentRows: 1.6K (1600) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 55.105us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.432ms - RowsProduced: 3.849K (3849) - RpcAvgTime: 21.78ms - RpcCount: 7 - RpcMaxTime: 21.559ms - RpcMinTime: 20.594ms - RpcSumTime: 147.552ms - SerializeBatchTime: 370.874us - SplitBlockDistributeByChannelTime: 414.568us - SplitBlockHashComputeTime: 244.532us - UncompressedRowBatchSize: 135.67 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 14.273us - ExecTime: 586.840us - InitProbeSideTime: 148.722us - JoinFilterTimer: 415ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.954us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 570ns - ProbeFindNextTime: 0ns - ProbeRows: 3.849K (3849) - ProbeTime: 446.771us - ProbeWhenBuildSideOutputTime: 6.863us - ProbeWhenProbeSideOutputTime: 87.392us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 165.103us - ProjectionTime: 105.190us - RowsProduced: 3.849K (3849) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 10.277us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 764ns - ProjectionTime: 0ns - RowsProduced: 3.849K (3849) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 100.275ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.250ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 515.736us - CloseTime: 34.312us - GetBlockTime: 27.640us - OpenTime: 437.805us - PrepareTime: 251.686us - SinkTime: 24.280us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.204ms - WaitBfTime: 4.170ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 533.496us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 24.733us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.183us - 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: 39.835us - BlocksProduced: 0 - CloseTime: 32.135us - ExecTime: 23.995ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 531.788us - ProcessConjunctTime: 254.160us - ProjectionTime: 2.184us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 17.364ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 23.401ms - 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.112us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [17.364ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.957ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 72ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 6.21ms - ScannerCtxSchedTime: 17.362ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.576us - ScannerInitTime: 117.882us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 3.79us - BlockConditionsFilteredBloomFilterTime: 11.845us - BlockConditionsFilteredDictTime: 220.35us - BlockConditionsFilteredTime: 341.32us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 78.236us - BlockInitSeekCount: 37 - BlockInitSeekTime: 380.555us - BlockInitTime: 854.88us - BlockLoadTime: 5.297ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 71.157us - FirstReadSeekCount: 441 - FirstReadSeekTime: 118.4us - FirstReadTime: 2.386ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.888us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 27.2us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 30.468us - OutputIndexResultColumnTimer: 665ns - 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: 30.456us - ShortPredEvalTime: 592.88us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 894.938us PipelineXTask (index=4):(Active: 832.379us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 342.208us - CloseTime: 47.108us - GetBlockTime: 35.574us - OpenTime: 270.641us - PrepareTime: 163.69us - SinkTime: 11.307us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 774.706us - WaitBfTime: 3.774ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.699ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.667us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.220us - 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: 29.893us - BlocksProduced: 0 - CloseTime: 44.274us - ExecTime: 62.508ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 369.130us - ProcessConjunctTime: 161.406us - ProjectionTime: 1.943us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 649.228K (649228) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 18.542ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 62.58ms - 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.620us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [18.542ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 43.424ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 99ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.502ms - ScannerCtxSchedTime: 18.540ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.172us - ScannerInitTime: 58.342us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 649228] - BitmapIndexFilterTimer: 2.702us - BlockConditionsFilteredBloomFilterTime: 6.65us - BlockConditionsFilteredDictTime: 93.975us - BlockConditionsFilteredTime: 260.541us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 131.976us - BlockInitSeekCount: 26 - BlockInitSeekTime: 26.702us - BlockInitTime: 395.7us - BlockLoadTime: 42.882ms - BlocksLoad: 405 - CachedPagesNum: 509 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.337ms - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 194.357us - FirstReadTime: 6.354ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.207us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 25.39ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 935.245us - OutputIndexResultColumnTimer: 31.378us - 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: 25.293ms - ShortPredEvalTime: 1.292ms - TotalPagesNum: 509 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.885ms PipelineXTask (index=7):(Active: 751.418us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 314.597us - CloseTime: 19.620us - GetBlockTime: 16.118us - OpenTime: 274.99us - PrepareTime: 135.282us - SinkTime: 7.119us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 723.145us - WaitBfTime: 291.57us - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.423ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 7.796us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.183us - 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: 29.622us - BlocksProduced: 0 - CloseTime: 18.340us - ExecTime: 80.140ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 354.200us - ProcessConjunctTime: 154.896us - ProjectionTime: 2.181us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 921.434K (921434) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 18.810ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 79.749ms - 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.175us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [18.810ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 60.859ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.184ms - ScannerCtxSchedTime: 18.808ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.320us - ScannerInitTime: 73.10us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921434] - BitmapIndexFilterTimer: 3.225us - BlockConditionsFilteredBloomFilterTime: 9.188us - BlockConditionsFilteredDictTime: 140.648us - BlockConditionsFilteredTime: 311.664us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 124.796us - BlockInitSeekCount: 31 - BlockInitSeekTime: 29.346us - BlockInitTime: 483.222us - BlockLoadTime: 60.132ms - BlocksLoad: 410 - CachedPagesNum: 516 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.213ms - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 202.778us - FirstReadTime: 6.698ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.877us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 41.658ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 947.932us - OutputIndexResultColumnTimer: 31.117us - 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: 41.914ms - ShortPredEvalTime: 1.559ms - TotalPagesNum: 516 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.872ms PipelineXTask (index=10):(Active: 779.394us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 329.647us - CloseTime: 25.944us - GetBlockTime: 18.702us - OpenTime: 266.692us - PrepareTime: 148.343us - SinkTime: 12.772us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 744.713us - WaitBfTime: 557.970us - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.533ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 15.768us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.646us - 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: 30.327us - BlocksProduced: 0 - CloseTime: 24.355us - ExecTime: 101.291ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 350.485us - ProcessConjunctTime: 141.101us - ProjectionTime: 2.30us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.061902M (1061902) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 18.995ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 100.895ms - 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.010us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [18.995ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 81.796ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 61ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 35.482ms - ScannerCtxSchedTime: 18.993ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.835us - ScannerInitTime: 74.685us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1061902] - BitmapIndexFilterTimer: 3.487us - BlockConditionsFilteredBloomFilterTime: 9.489us - BlockConditionsFilteredDictTime: 120.169us - BlockConditionsFilteredTime: 304.190us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 132.744us - BlockInitSeekCount: 35 - BlockInitSeekTime: 31.596us - BlockInitTime: 507.74us - BlockLoadTime: 81.10ms - BlocksLoad: 345 - CachedPagesNum: 436 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 37.899ms - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 201.864us - FirstReadTime: 6.674ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.927us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.218ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 3.625ms - OutputIndexResultColumnTimer: 32.760us - 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.512ms - ShortPredEvalTime: 3.628ms - TotalPagesNum: 436 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.235ms PipelineXTask (index=13):(Active: 1.140ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 537.402us - CloseTime: 55.537us - GetBlockTime: 55.736us - OpenTime: 372.166us - PrepareTime: 164.784us - SinkTime: 80.616us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.73ms - WaitBfTime: 5.370ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.301ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 83.402us - InputRows: 25.985K (25985) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.426us - 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: 36.653us - BlocksProduced: 7 - CloseTime: 53.290us - ExecTime: 40.859ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 461.956us - ProcessConjunctTime: 251.875us - ProjectionTime: 396.488us - RowsProduced: 25.985K (25985) - RowsRead: 25.985K (25985) - RuntimeFilterInfo: - filter id = -1 filtered: 349.77K (349770) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 27.824ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 39.884ms - 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: [9.856ms, ] - PerScannerRowsRead: [25.98K, ] - PerScannerWaitTime: [27.824ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 9.609ms - MemoryUsage: - FreeBlocks: 1.84 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 740.573us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 309ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.801ms - ScannerCtxSchedTime: 27.823ms - ScannerFilterTime: 60.174us - ScannerGetBlockTime: 9.753ms - ScannerInitTime: 61.810us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 349770] - BitmapIndexFilterTimer: 713ns - BlockConditionsFilteredBloomFilterTime: 1.792us - BlockConditionsFilteredDictTime: 21.258us - BlockConditionsFilteredTime: 54.266us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 23.933us - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.441us - BlockInitTime: 88.925us - BlockLoadTime: 10.151ms - BlocksLoad: 61 - CachedPagesNum: 199 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.712ms - FirstReadSeekCount: 180 - FirstReadSeekTime: 42.157us - FirstReadTime: 1.49ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.705us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.639ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 749.452us - OutputIndexResultColumnTimer: 8.297us - 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: 759.828us - ShortPredEvalTime: 708.33us - TotalPagesNum: 199 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 725.47us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 180.10us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 106.389us - CloseTime: 6.816us - GetBlockTime: 4.880us - OpenTime: 1.876us - PrepareTime: 60.830us - SinkTime: 86.552us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.454us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 275.742us HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.335us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.551us - BuildTableInsertTime: 35.264us - BuildTableTime: 38.471us - CloseTime: 0ns - ExecTime: 101.792us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 15.678us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.172us - RuntimeFilterComputeTime: 15.106us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.651us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.394us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 24.625us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3.918ms PipelineXTask (index=5):(Active: 123.674us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.5us - CloseTime: 8.552us - GetBlockTime: 0ns - OpenTime: 1.621us - PrepareTime: 71.548us - SinkTime: 18.336us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.522us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.921ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83f7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.801us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.206us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.831us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.923us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 164.184us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.102us - CloseTime: 10.134us - GetBlockTime: 0ns - OpenTime: 2.111us - PrepareTime: 107.916us - SinkTime: 23.810us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 147.800us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.950ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83f7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 72.165us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 48.383us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.368us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.197us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.996us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 145.759us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.457us - CloseTime: 6.301us - GetBlockTime: 0ns - OpenTime: 1.934us - PrepareTime: 111.550us - SinkTime: 11.159us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 133.728us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.967ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83f7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 59.536us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 48.121us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.354us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 39.755us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 33.773us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 100.10us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 30.607us - CloseTime: 6.240us - GetBlockTime: 0ns - OpenTime: 1.986us - PrepareTime: 56.606us - SinkTime: 17.143us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 2 - NumScheduleTimes: 2 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.553us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.987ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83f7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.725us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.507us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.136us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.540us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.616us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.888ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.630ms - CloseTime: 54.138us - GetBlockTime: 515.976us - OpenTime: 7.594us - PrepareTime: 185.620us - SinkTime: 980.122us - GetBlockCounter: 14 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.812ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.740ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.04 KB - CloseTime: 29.518us - CompressTime: 0ns - ExecTime: 1.123ms - InputRows: 3.962K (3962) - LocalBytesSent: 134.77 KB - LocalSendTime: 75.774us - LocalSentRows: 2.3K (2300) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 116.364us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s547ms - RowsProduced: 3.962K (3962) - RpcAvgTime: 3s529ms - RpcCount: 5 - RpcMaxTime: 3s532ms - RpcMinTime: 3s526ms - RpcSumTime: 17s647ms - SerializeBatchTime: 291.456us - SplitBlockDistributeByChannelTime: 209.285us - SplitBlockHashComputeTime: 108.168us - UncompressedRowBatchSize: 100.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 20.992us - ExecTime: 445.524us - InitProbeSideTime: 113.220us - JoinFilterTimer: 200ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 19.786us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 710ns - ProbeFindNextTime: 0ns - ProbeRows: 3.962K (3962) - ProbeTime: 284.627us - ProbeWhenBuildSideOutputTime: 5.400us - ProbeWhenProbeSideOutputTime: 88.882us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 53.878us - ProjectionTime: 111.18us - RowsProduced: 3.962K (3962) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 71.261us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 681ns - ProjectionTime: 0ns - RowsProduced: 3.962K (3962) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 360.815ms PipelineXTask (index=3):(Active: 1.555ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.381ms - CloseTime: 61.949us - GetBlockTime: 430.798us - OpenTime: 8.167us - PrepareTime: 98.60us - SinkTime: 905.907us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.484ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.876ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.39 KB - CloseTime: 25.205us - CompressTime: 0ns - ExecTime: 980.854us - InputRows: 4.024K (4024) - LocalBytesSent: 137.46 KB - LocalSendTime: 37.753us - LocalSentRows: 2.346K (2346) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 51.33us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s549ms - RowsProduced: 4.024K (4024) - RpcAvgTime: 3s532ms - RpcCount: 5 - RpcMaxTime: 3s534ms - RpcMinTime: 3s531ms - RpcSumTime: 17s663ms - SerializeBatchTime: 215.669us - SplitBlockDistributeByChannelTime: 340.15us - SplitBlockHashComputeTime: 114.860us - UncompressedRowBatchSize: 101.21 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 33.666us - ExecTime: 470.12us - InitProbeSideTime: 107.801us - JoinFilterTimer: 152ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.306us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 628ns - ProbeFindNextTime: 0ns - ProbeRows: 4.024K (4024) - ProbeTime: 328.731us - ProbeWhenBuildSideOutputTime: 13.930us - ProbeWhenProbeSideOutputTime: 129.358us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 46.251us - ProjectionTime: 84.335us - RowsProduced: 4.024K (4024) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 8.969us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 2.32us - ProjectionTime: 0ns - RowsProduced: 4.024K (4024) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 379.243ms PipelineXTask (index=6):(Active: 1.687ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.463ms - CloseTime: 45.506us - GetBlockTime: 405.264us - OpenTime: 4.920us - PrepareTime: 165.834us - SinkTime: 1.15ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.629ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.238ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 68.19 KB - CloseTime: 18.412us - CompressTime: 0ns - ExecTime: 1.139ms - InputRows: 4.045K (4045) - LocalBytesSent: 136.23 KB - LocalSendTime: 49.842us - LocalSentRows: 2.325K (2325) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 106.872us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s534ms - RowsProduced: 4.045K (4045) - RpcAvgTime: 3s515ms - RpcCount: 5 - RpcMaxTime: 3s519ms - RpcMinTime: 3s511ms - RpcSumTime: 17s578ms - SerializeBatchTime: 246.368us - SplitBlockDistributeByChannelTime: 349.356us - SplitBlockHashComputeTime: 111.679us - UncompressedRowBatchSize: 103.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 22.123us - ExecTime: 429.759us - InitProbeSideTime: 91.884us - JoinFilterTimer: 127ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.850us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 815ns - ProbeFindNextTime: 0ns - ProbeRows: 4.045K (4045) - ProbeTime: 308.51us - ProbeWhenBuildSideOutputTime: 7.442us - ProbeWhenProbeSideOutputTime: 137.168us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 47.713us - ProjectionTime: 78.542us - RowsProduced: 4.045K (4045) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 8.263us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 642ns - ProjectionTime: 0ns - RowsProduced: 4.045K (4045) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 378.650ms PipelineXTask (index=9):(Active: 1.746ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.548ms - CloseTime: 30.703us - GetBlockTime: 688.479us - OpenTime: 4.202us - PrepareTime: 142.833us - SinkTime: 820.152us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.689ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.231ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.37 KB - CloseTime: 14.415us - CompressTime: 0ns - ExecTime: 900.386us - InputRows: 3.986K (3986) - LocalBytesSent: 135.70 KB - LocalSendTime: 43.994us - LocalSentRows: 2.316K (2316) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 67.235us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s557ms - RowsProduced: 3.986K (3986) - RpcAvgTime: 3s537ms - RpcCount: 5 - RpcMaxTime: 3s539ms - RpcMinTime: 3s534ms - RpcSumTime: 17s688ms - SerializeBatchTime: 191.953us - SplitBlockDistributeByChannelTime: 232.651us - SplitBlockHashComputeTime: 119.422us - UncompressedRowBatchSize: 100.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 13.388us - ExecTime: 696.260us - InitProbeSideTime: 192.898us - JoinFilterTimer: 189ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.76us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 916ns - ProbeFindNextTime: 0ns - ProbeRows: 3.986K (3986) - ProbeTime: 485.928us - ProbeWhenBuildSideOutputTime: 6.670us - ProbeWhenProbeSideOutputTime: 205.197us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 49.941us - ProjectionTime: 179.371us - RowsProduced: 3.986K (3986) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 11.743us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 713ns - ProjectionTime: 0ns - RowsProduced: 3.986K (3986) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 378.352ms PipelineXTask (index=12):(Active: 61.230ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 61.64ms - CloseTime: 34.452us - GetBlockTime: 59.969ms - OpenTime: 4.236us - PrepareTime: 121.536us - SinkTime: 1.45ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.971ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.723ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 67.24 KB - CloseTime: 18.63us - CompressTime: 0ns - ExecTime: 1.121ms - InputRows: 4.017K (4017) - LocalBytesSent: 136.05 KB - LocalSendTime: 49.503us - LocalSentRows: 2.322K (2322) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 59.815us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s546ms - RowsProduced: 4.017K (4017) - RpcAvgTime: 3s522ms - RpcCount: 5 - RpcMaxTime: 3s524ms - RpcMinTime: 3s519ms - RpcSumTime: 17s610ms - SerializeBatchTime: 180.199us - SplitBlockDistributeByChannelTime: 364.197us - SplitBlockHashComputeTime: 170.514us - UncompressedRowBatchSize: 102.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 12.449us - ExecTime: 59.978ms - InitProbeSideTime: 184.418us - JoinFilterTimer: 240ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.75us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 814ns - ProbeFindNextTime: 0ns - ProbeRows: 4.017K (4017) - ProbeTime: 59.746ms - ProbeWhenBuildSideOutputTime: 6.941us - ProbeWhenProbeSideOutputTime: 59.447ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 66.918us - ProjectionTime: 199.868us - RowsProduced: 4.017K (4017) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 7.246us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 800ns - ProjectionTime: 0ns - RowsProduced: 4.017K (4017) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 318.804ms PipelineXTask (index=15):(Active: 1.320ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.169ms - CloseTime: 22.885us - GetBlockTime: 473.396us - OpenTime: 4.673us - PrepareTime: 116.991us - SinkTime: 655.408us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.286ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.962ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 38.02 KB - CloseTime: 8.680us - CompressTime: 0ns - ExecTime: 729.995us - InputRows: 2.239K (2239) - LocalBytesSent: 76.58 KB - LocalSendTime: 40.234us - LocalSentRows: 1.307K (1307) - MemoryUsage: - PeakMemoryUsage: 187.00 KB - MergeBlockTime: 0ns - OpenTime: 67.485us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s546ms - RowsProduced: 2.239K (2239) - RpcAvgTime: 3s526ms - RpcCount: 5 - RpcMaxTime: 3s528ms - RpcMinTime: 3s523ms - RpcSumTime: 17s633ms - SerializeBatchTime: 117.708us - SplitBlockDistributeByChannelTime: 191.323us - SplitBlockHashComputeTime: 85.558us - UncompressedRowBatchSize: 56.42 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 12.510us - ExecTime: 488.405us - InitProbeSideTime: 84.984us - JoinFilterTimer: 179ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 16.868us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 511ns - ProbeFindNextTime: 0ns - ProbeRows: 2.239K (2239) - ProbeTime: 321.178us - ProbeWhenBuildSideOutputTime: 9.390us - ProbeWhenProbeSideOutputTime: 156.633us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.700us - ProjectionTime: 131.978us - RowsProduced: 2.239K (2239) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 11.843us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 228.00 KB - OpenTime: 3.161us - ProjectionTime: 0ns - RowsProduced: 2.239K (2239) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 378.742ms PipelineXTask (index=18):(Active: 389.257us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 208.46us - CloseTime: 22.106us - GetBlockTime: 24.165us - OpenTime: 7.331us - PrepareTime: 143.884us - SinkTime: 156.536us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 358.387us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.823ms DATA_STREAM_SINK_OPERATOR (id=154,dst_id=154): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.937us - CompressTime: 0ns - ExecTime: 259.678us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 23.772us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 88.504us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s546ms - RowsProduced: 0 - RpcAvgTime: 3s531ms - RpcCount: 5 - RpcMaxTime: 3s531ms - RpcMinTime: 3s531ms - RpcSumTime: 17s659ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 574ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=153): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.961us - ExecTime: 40.86us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.810us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.316us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.131us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 4.609us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.583us - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 376.760ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.186ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 532.919us - CloseTime: 49.50us - GetBlockTime: 21.498us - OpenTime: 434.870us - PrepareTime: 156.938us - SinkTime: 27.718us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.124ms - WaitBfTime: 15.482ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.386ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 27.952us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.156us - 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: 55.499us - BlocksProduced: 0 - CloseTime: 46.254us - ExecTime: 126.286ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 528.819us - ProcessConjunctTime: 291.400us - ProjectionTime: 1.511us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 125.190ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 125.688ms - 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.642us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [125.190ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 445.314us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 62ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 499.849us - ScannerCtxSchedTime: 125.188ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.113us - ScannerInitTime: 63.544us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 631ns - BlockConditionsFilteredBloomFilterTime: 1.714us - BlockConditionsFilteredDictTime: 172.457us - BlockConditionsFilteredTime: 208.400us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 28.404us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.905us - BlockInitTime: 246.922us - BlockLoadTime: 271.345us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 703ns - IOTimer: 0ns - InvertedIndexFilterTime: 2.146us - 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.104ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 466.447us - CloseTime: 52.161us - GetBlockTime: 55.210us - OpenTime: 365.965us - PrepareTime: 209.285us - SinkTime: 23.252us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.42ms - WaitBfTime: 45.559ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.127ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.664us - 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: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 34.915us - BlocksProduced: 0 - CloseTime: 49.217us - ExecTime: 335.568ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 468.529us - ProcessConjunctTime: 243.765us - ProjectionTime: 2.46us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 656.744K (656744) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 143.85ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 334.994ms - 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: [12.971us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [143.085ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 191.815ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 123ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.572ms - ScannerCtxSchedTime: 143.83ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.177us - ScannerInitTime: 67.146us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656744] - BitmapIndexFilterTimer: 1.532us - BlockConditionsFilteredBloomFilterTime: 4.932us - BlockConditionsFilteredDictTime: 73.700us - BlockConditionsFilteredTime: 168.568us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 73.431us - BlockInitSeekCount: 17 - BlockInitSeekTime: 24.175us - BlockInitTime: 255.86us - BlockLoadTime: 191.426ms - BlocksLoad: 367 - CachedPagesNum: 461 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.543ms - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 211.125us - FirstReadTime: 64.580ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.700us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 117.96ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 784.231us - OutputIndexResultColumnTimer: 30.808us - 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: 117.414ms - ShortPredEvalTime: 1.25ms - TotalPagesNum: 461 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.395ms PipelineXTask (index=7):(Active: 1.126ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 454.44us - CloseTime: 43.238us - GetBlockTime: 53.778us - OpenTime: 367.886us - PrepareTime: 250.508us - SinkTime: 10.631us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.72ms - WaitBfTime: 45.921ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.478ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.46us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.134us - 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: 55.622us - BlocksProduced: 0 - CloseTime: 40.603us - ExecTime: 304.394ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 475.758us - ProcessConjunctTime: 210.206us - ProjectionTime: 1.675us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 916.15K (916150) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 143.460ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 303.823ms - 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.507us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [143.460ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 160.271ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 90ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.663ms - ScannerCtxSchedTime: 143.458ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.716us - ScannerInitTime: 81.750us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 916150] - BitmapIndexFilterTimer: 2.346us - BlockConditionsFilteredBloomFilterTime: 10.739us - BlockConditionsFilteredDictTime: 213.982us - BlockConditionsFilteredTime: 368.274us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 118.466us - BlockInitSeekCount: 25 - BlockInitSeekTime: 24.848us - BlockInitTime: 528.802us - BlockLoadTime: 159.596ms - BlocksLoad: 384 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 85.63ms - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 249.838us - FirstReadTime: 7.804ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.767us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 56.520ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.372ms - OutputIndexResultColumnTimer: 43.760us - 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: 56.923ms - ShortPredEvalTime: 1.867ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.85ms PipelineXTask (index=10):(Active: 38.280ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.32ms - CloseTime: 53.346us - GetBlockTime: 39.77us - OpenTime: 18.946ms - PrepareTime: 237.519us - SinkTime: 16.815us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.226ms - WaitBfTime: 45.933ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.379ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.813us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.42us - 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: 52.56us - BlocksProduced: 0 - CloseTime: 50.954us - ExecTime: 320.98ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 19.122ms - ProcessConjunctTime: 14.569ms - ProjectionTime: 1.468us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.157826M (1157826) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 176.613ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 300.884ms - 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: [17.902us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [176.613ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 124.159ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 60ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.132ms - ScannerCtxSchedTime: 176.612ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.522us - ScannerInitTime: 4.297ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1157826] - BitmapIndexFilterTimer: 2.817us - BlockConditionsFilteredBloomFilterTime: 7.530us - BlockConditionsFilteredDictTime: 105.794us - BlockConditionsFilteredTime: 282.196us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 135.476us - BlockInitSeekCount: 33 - BlockInitSeekTime: 32.406us - BlockInitTime: 446.184us - BlockLoadTime: 123.432ms - BlocksLoad: 382 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 7.197ms - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 235.946us - FirstReadTime: 63.428ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.240us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 35.309ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 10.201ms - OutputIndexResultColumnTimer: 28.893us - 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: 35.619ms - ShortPredEvalTime: 2.409ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.682ms PipelineXTask (index=13):(Active: 1.84ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 466.746us - CloseTime: 40.440us - GetBlockTime: 46.662us - OpenTime: 378.943us - PrepareTime: 186.994us - SinkTime: 14.53us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.32ms - WaitBfTime: 44.479ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.2ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 13.912us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.100us - 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.375us - BlocksProduced: 0 - CloseTime: 37.152us - ExecTime: 196.378ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 496.687us - ProcessConjunctTime: 230.374us - ProjectionTime: 1.824us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 932.61K (932610) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 137.743ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 195.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] - PerScannerRunningTime: [7.581us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [137.743ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 57.959ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 149ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.553ms - ScannerCtxSchedTime: 137.742ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.862us - ScannerInitTime: 85.457us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 932610] - BitmapIndexFilterTimer: 2.248us - BlockConditionsFilteredBloomFilterTime: 12.691us - BlockConditionsFilteredDictTime: 140.411us - BlockConditionsFilteredTime: 256.258us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 81.364us - BlockInitSeekCount: 25 - BlockInitSeekTime: 635.242us - BlockInitTime: 997.184us - BlockLoadTime: 57.336ms - BlocksLoad: 260 - CachedPagesNum: 332 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 10.936ms - FirstReadSeekCount: 771 - FirstReadSeekTime: 168.876us - FirstReadTime: 17.516ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.773us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 17.357ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.387ms - OutputIndexResultColumnTimer: 28.774us - 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: 17.645ms - ShortPredEvalTime: 2.909ms - TotalPagesNum: 332 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.499ms PipelineXTask (index=16):(Active: 30.680ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.269ms - CloseTime: 36.972us - GetBlockTime: 31.625us - OpenTime: 15.204ms - PrepareTime: 160.120us - SinkTime: 11.316us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.79ms - WaitBfTime: 45.624ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.810ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.555us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.217us - 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: 31.535us - BlocksProduced: 0 - CloseTime: 34.272us - ExecTime: 209.647ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 15.297ms - ProcessConjunctTime: 15.46ms - ProjectionTime: 1.535us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.006286M (1006286) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 160.499ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.282ms - 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.879us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [160.499ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 33.676ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 46ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 33.717ms - ScannerCtxSchedTime: 160.497ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.891us - ScannerInitTime: 69.878us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 1006286] - BitmapIndexFilterTimer: 2.21us - BlockConditionsFilteredBloomFilterTime: 6.837us - BlockConditionsFilteredDictTime: 62.728us - BlockConditionsFilteredTime: 196.26us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 89.961us - BlockInitSeekCount: 26 - BlockInitSeekTime: 192.841us - BlockInitTime: 477.662us - BlockLoadTime: 33.134ms - BlocksLoad: 291 - CachedPagesNum: 372 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 11.866ms - FirstReadSeekCount: 864 - FirstReadSeekTime: 192.749us - FirstReadTime: 5.572ms - IOTimer: 0ns - InvertedIndexFilterTime: 20.501us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.747ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.716ms - OutputIndexResultColumnTimer: 34.226us - 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: 4.30ms - ShortPredEvalTime: 3.416ms - TotalPagesNum: 372 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.530ms PipelineXTask (index=19):(Active: 1.171ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 528.246us - CloseTime: 35.370us - GetBlockTime: 43.320us - OpenTime: 392.688us - PrepareTime: 204.267us - SinkTime: 66.388us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.125ms - WaitBfTime: 46.88ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.301ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 65.965us - InputRows: 22.273K (22273) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.138us - 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: 38.382us - BlocksProduced: 6 - CloseTime: 32.278us - ExecTime: 157.249ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 536.957us - ProcessConjunctTime: 269.856us - ProjectionTime: 256.483us - RowsProduced: 22.273K (22273) - RowsRead: 22.273K (22273) - RuntimeFilterInfo: - filter id = -1 filtered: 338.22K (338220) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 147.560ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.375ms - 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: [6.350ms, ] - PerScannerRowsRead: [22.27K, ] - PerScannerWaitTime: [147.560ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.157ms - MemoryUsage: - FreeBlocks: 1.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 732.589us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 167ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.727ms - ScannerCtxSchedTime: 147.559ms - ScannerFilterTime: 39.62us - ScannerGetBlockTime: 6.287ms - ScannerInitTime: 60.250us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 338220] - BitmapIndexFilterTimer: 800ns - BlockConditionsFilteredBloomFilterTime: 1.852us - BlockConditionsFilteredDictTime: 19.377us - BlockConditionsFilteredTime: 46.177us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.145us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.658us - BlockInitTime: 79.362us - BlockLoadTime: 6.695ms - BlocksLoad: 57 - CachedPagesNum: 184 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 1.283ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 50.903us - FirstReadTime: 909.705us - IOTimer: 0ns - InvertedIndexFilterTime: 2.595us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.850ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 383.924us - OutputIndexResultColumnTimer: 4.295us - 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: 537.337us - ShortPredEvalTime: 485.280us - TotalPagesNum: 184 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 440.679us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 29.211ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.82ms - CloseTime: 17.978us - GetBlockTime: 5.651us - OpenTime: 3.40us - PrepareTime: 89.275us - SinkTime: 29.38ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 241.880us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.591ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.583us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.385us - BuildTableInsertTime: 28.961ms - BuildTableTime: 28.966ms - CloseTime: 0ns - ExecTime: 29.56ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 18.344us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.511us - RuntimeFilterComputeTime: 18.393us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=151): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 8.779us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.63us - ExecTime: 49.230us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 35.585us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 15.48ms PipelineXTask (index=5):(Active: 178.849us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.754us - CloseTime: 19.588us - GetBlockTime: 0ns - OpenTime: 3.344us - PrepareTime: 100.620us - SinkTime: 23.102us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.880us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.444ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83fc - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.705us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.959us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 44.312ms EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 17.366us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 34.638us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.395us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 132.796us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.756us - CloseTime: 6.14us - GetBlockTime: 0ns - OpenTime: 2.513us - PrepareTime: 79.43us - SinkTime: 17.612us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.904us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.527ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83fc - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.642us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.395us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 44.281ms EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.44us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.561us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 112.804us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.589us - CloseTime: 6.955us - GetBlockTime: 0ns - OpenTime: 2.283us - PrepareTime: 62.877us - SinkTime: 15.224us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.447us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.563ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83fc - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.884us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.869us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 44.265ms EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.500us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.970us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.632us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 178.511us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.787us - CloseTime: 4.524us - GetBlockTime: 0ns - OpenTime: 1.939us - PrepareTime: 136.483us - SinkTime: 15.20us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 167.330us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 833.934us HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83fc - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.743us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.888us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 45.19ms EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.938us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 96.764us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 93.3us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 4.372ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 31.734us - CloseTime: 4.263ms - GetBlockTime: 0ns - OpenTime: 2.713us - PrepareTime: 69.508us - SinkTime: 14.750us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.572us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 684.699us HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83fc - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.414us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.774us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 45.62ms EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.261ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 4.287ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.110us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 117.778us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 40.846us - CloseTime: 8.355us - GetBlockTime: 0ns - OpenTime: 2.540us - PrepareTime: 61.372us - SinkTime: 23.336us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.211us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.502ms HASH_JOIN_SINK_OPERATOR (id=153): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83fc - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.865us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.835us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.706ms EXCHANGE_OPERATOR (id=151): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.136us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.954us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.956us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 95: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 519.820us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 225.643us - CloseTime: 48.872us - GetBlockTime: 23.982us - OpenTime: 94.990us - PrepareTime: 144.348us - SinkTime: 94.386us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 464.406us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.280ms DATA_STREAM_SINK_OPERATOR (id=151,dst_id=151): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 14.375us - CompressTime: 0ns - ExecTime: 148.490us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 8.317us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 2.840us - OpenTime: 40.483us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.587ms - RowsProduced: 80 - RpcAvgTime: 10.27ms - RpcCount: 1 - RpcMaxTime: 10.27ms - RpcMinTime: 10.27ms - RpcSumTime: 10.27ms - SerializeBatchTime: 9.370us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 473ns - BlocksProduced: 1 - CloseTime: 31.912us - ExecTime: 3.403ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 160.958us - ProcessConjunctTime: 30.713us - ProjectionTime: 3.833us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.898ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 3.182ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [36.352us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [2.898ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.192us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 200.534us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 286.415us - ScannerCtxSchedTime: 2.897ms - ScannerFilterTime: 838ns - ScannerGetBlockTime: 30.597us - ScannerInitTime: 33.181us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 270ns - BlockConditionsFilteredBloomFilterTime: 966ns - BlockConditionsFilteredDictTime: 21.249us - BlockConditionsFilteredTime: 31.593us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 4.60us - BlockInitSeekCount: 6 - BlockInitSeekTime: 11.645us - BlockInitTime: 63.87us - BlockLoadTime: 107.474us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.118us - FirstReadTime: 6.414us - IOTimer: 0ns - InvertedIndexFilterTime: 1.257us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.537us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 6.967us - OutputIndexResultColumnTimer: 263ns - 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: 78ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.639us Fragment 96: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 26.204ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 25.954ms - CloseTime: 33.90us - GetBlockTime: 24.207ms - OpenTime: 1.750us - PrepareTime: 206.977us - SinkTime: 1.654ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.152ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 515.280us DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 345.65 KB - CloseTime: 28.100us - CompressTime: 0ns - ExecTime: 1.718ms - InputRows: 4.277K (4277) - LocalBytesSent: 309.07 KB - LocalSendTime: 191.802us - LocalSentRows: 4.277K (4277) - MemoryUsage: - PeakMemoryUsage: 392.00 KB - MergeBlockTime: 496.390us - OpenTime: 57.650us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s52ms - RowsProduced: 4.277K (4277) - RpcAvgTime: 3s25ms - RpcCount: 2 - RpcMaxTime: 6s51ms - RpcMinTime: 6s51ms - RpcSumTime: 6s51ms - SerializeBatchTime: 722.273us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 629.87 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.640us - DeserializeAndMergeTime: 0ns - ExecTime: 24.104ms - GetResultsTime: 12.809ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.57ms - HashTableSize: 163.478K (163478) - InsertKeysToColumnTime: 4.966ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.867us - ProjectionTime: 1.86ms - RowsProduced: 4.277K (4277) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s890ms PipelineXTask (index=2):(Active: 24.95ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 23.905ms - CloseTime: 43.683us - GetBlockTime: 22.758ms - OpenTime: 830ns - PrepareTime: 139.476us - SinkTime: 1.64ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.32ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 606.739us DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 359.02 KB - CloseTime: 37.923us - CompressTime: 0ns - ExecTime: 1.141ms - InputRows: 4.452K (4452) - LocalBytesSent: 321.72 KB - LocalSendTime: 81.261us - LocalSentRows: 4.452K (4452) - MemoryUsage: - PeakMemoryUsage: 328.00 KB - MergeBlockTime: 200.170us - OpenTime: 56.721us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s52ms - RowsProduced: 4.452K (4452) - RpcAvgTime: 3s26ms - RpcCount: 2 - RpcMaxTime: 6s52ms - RpcMinTime: 6s52ms - RpcSumTime: 6s52ms - SerializeBatchTime: 574.852us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 655.65 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.767us - DeserializeAndMergeTime: 0ns - ExecTime: 22.664ms - GetResultsTime: 11.531ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 930.340us - HashTableSize: 163.775K (163775) - InsertKeysToColumnTime: 4.500ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.412us - ProjectionTime: 987.460us - RowsProduced: 4.452K (4452) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s890ms PipelineXTask (index=4):(Active: 22.986ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.800ms - CloseTime: 20.712us - GetBlockTime: 21.702ms - OpenTime: 1.63us - PrepareTime: 156.493us - SinkTime: 1.36ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 22.956ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.612ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 352.80 KB - CloseTime: 15.20us - CompressTime: 0ns - ExecTime: 1.78ms - InputRows: 4.375K (4375) - LocalBytesSent: 316.16 KB - LocalSendTime: 87.636us - LocalSentRows: 4.375K (4375) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 259.420us - OpenTime: 37.819us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s53ms - RowsProduced: 4.375K (4375) - RpcAvgTime: 3s26ms - RpcCount: 2 - RpcMaxTime: 6s52ms - RpcMinTime: 6s52ms - RpcSumTime: 6s52ms - SerializeBatchTime: 517.34us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 644.30 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.317us - DeserializeAndMergeTime: 0ns - ExecTime: 21.626ms - GetResultsTime: 11.558ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.108ms - HashTableSize: 163.641K (163641) - InsertKeysToColumnTime: 4.826ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.312us - ProjectionTime: 788.827us - RowsProduced: 4.375K (4375) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s889ms PipelineXTask (index=6):(Active: 24.542ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 24.394ms - CloseTime: 21.746us - GetBlockTime: 22.938ms - OpenTime: 899ns - PrepareTime: 120.299us - SinkTime: 1.396ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.499ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 779.810us DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 365.24 KB - CloseTime: 18.878us - CompressTime: 0ns - ExecTime: 1.441ms - InputRows: 4.533K (4533) - LocalBytesSent: 327.55 KB - LocalSendTime: 280.396us - LocalSentRows: 4.533K (4533) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 397.722us - OpenTime: 39.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s53ms - RowsProduced: 4.533K (4533) - RpcAvgTime: 3s26ms - RpcCount: 2 - RpcMaxTime: 6s52ms - RpcMinTime: 6s52ms - RpcSumTime: 6s52ms - SerializeBatchTime: 518.953us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 667.54 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 811ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.867ms - GetResultsTime: 12.820ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.217ms - HashTableSize: 163.983K (163983) - InsertKeysToColumnTime: 5.75ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.6us - ProjectionTime: 852.901us - RowsProduced: 4.533K (4533) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s890ms PipelineXTask (index=8):(Active: 24.662ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.529ms - CloseTime: 17.797us - GetBlockTime: 22.835ms - OpenTime: 472ns - PrepareTime: 108.130us - SinkTime: 1.629ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.605ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 844.968us DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 349.74 KB - CloseTime: 15.483us - CompressTime: 0ns - ExecTime: 1.663ms - InputRows: 4.332K (4332) - LocalBytesSent: 313.04 KB - LocalSendTime: 306.293us - LocalSentRows: 4.332K (4332) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 398.374us - OpenTime: 31.551us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s53ms - RowsProduced: 4.332K (4332) - RpcAvgTime: 3s25ms - RpcCount: 2 - RpcMaxTime: 6s51ms - RpcMinTime: 6s51ms - RpcSumTime: 6s51ms - SerializeBatchTime: 734.52us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 637.95 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 614ns - DeserializeAndMergeTime: 0ns - ExecTime: 22.747ms - GetResultsTime: 12.552ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.191ms - HashTableSize: 163.426K (163426) - InsertKeysToColumnTime: 5.47ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.234us - ProjectionTime: 884.207us - RowsProduced: 4.332K (4332) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s890ms PipelineXTask (index=10):(Active: 37.856ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.734ms - CloseTime: 21.50us - GetBlockTime: 36.74ms - OpenTime: 934ns - PrepareTime: 92.712us - SinkTime: 1.573ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 37.825ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.541ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 358.78 KB - CloseTime: 17.27us - CompressTime: 0ns - ExecTime: 1.600ms - InputRows: 4.45K (4450) - LocalBytesSent: 321.57 KB - LocalSendTime: 118.270us - LocalSentRows: 4.45K (4450) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 411.647us - OpenTime: 30.884us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s40ms - RowsProduced: 4.45K (4450) - RpcAvgTime: 3s19ms - RpcCount: 2 - RpcMaxTime: 6s39ms - RpcMinTime: 6s39ms - RpcSumTime: 6s39ms - SerializeBatchTime: 796.689us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 655.37 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.360us - DeserializeAndMergeTime: 0ns - ExecTime: 35.946ms - GetResultsTime: 19.692ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.633ms - HashTableSize: 162.829K (162829) - InsertKeysToColumnTime: 7.477ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.321us - ProjectionTime: 1.304ms - RowsProduced: 4.45K (4450) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s889ms PipelineXTask (index=12):(Active: 25.615ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 25.494ms - CloseTime: 27.322us - GetBlockTime: 24.118ms - OpenTime: 1.257us - PrepareTime: 79.736us - SinkTime: 1.283ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.563ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.604ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 352.25 KB - CloseTime: 23.63us - CompressTime: 0ns - ExecTime: 1.317ms - InputRows: 4.358K (4358) - LocalBytesSent: 314.92 KB - LocalSendTime: 147.75us - LocalSentRows: 4.358K (4358) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 289.884us - OpenTime: 34.861us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s52ms - RowsProduced: 4.358K (4358) - RpcAvgTime: 3s25ms - RpcCount: 2 - RpcMaxTime: 6s50ms - RpcMinTime: 6s50ms - RpcSumTime: 6s50ms - SerializeBatchTime: 587.676us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 641.77 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.312us - DeserializeAndMergeTime: 0ns - ExecTime: 24.6ms - GetResultsTime: 12.135ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.25ms - HashTableSize: 163.825K (163825) - InsertKeysToColumnTime: 5.180ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.113us - ProjectionTime: 1.85ms - RowsProduced: 4.358K (4358) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s889ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 122.831ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 122.747ms - CloseTime: 15.54us - GetBlockTime: 966.206us - OpenTime: 3.258us - PrepareTime: 59.899us - SinkTime: 121.480ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.667ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.259ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 4.981us - DeserializeAndMergeTime: 6.888ms - ExecTime: 121.484ms - ExprTime: 0ns - HashTableComputeTime: 114.143ms - HashTableEmplaceTime: 107.69ms - HashTableInputCount: 163.478K (163478) - InputRows: 163.478K (163478) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 121.352ms - OpenTime: 23.893us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 62 - BytesReceived: 2.69 MB - CloseTime: 8.740us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.500ms - ExecTime: 948.947us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.23 MB - MemoryUsage: - Blocks: 3.55 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.813us - ProjectionTime: 0ns - RowsProduced: 163.478K (163478) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s655ms PipelineXTask (index=3):(Active: 120.944ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 120.846ms - CloseTime: 23.243us - GetBlockTime: 943.945us - OpenTime: 3.490us - PrepareTime: 63.146us - SinkTime: 119.569ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.837ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 96.667ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 7.11us - DeserializeAndMergeTime: 3.274ms - ExecTime: 119.573ms - ExprTime: 0ns - HashTableComputeTime: 115.771ms - HashTableEmplaceTime: 108.831ms - HashTableInputCount: 163.775K (163775) - InputRows: 163.775K (163775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 119.450ms - OpenTime: 26.778us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 60 - BytesReceived: 2.69 MB - CloseTime: 5.619us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.372ms - ExecTime: 926.754us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.13 MB - MemoryUsage: - Blocks: 3.43 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.554us - ProjectionTime: 0ns - RowsProduced: 163.775K (163775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s673ms PipelineXTask (index=5):(Active: 152.706ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 152.628ms - CloseTime: 14.815us - GetBlockTime: 992.57us - OpenTime: 3.383us - PrepareTime: 52.52us - SinkTime: 151.304ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.750ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 157.208ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 8.787us - DeserializeAndMergeTime: 3.801ms - ExecTime: 151.305ms - ExprTime: 0ns - HashTableComputeTime: 147.38ms - HashTableEmplaceTime: 139.277ms - 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.181ms - OpenTime: 18.857us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 62 - BytesReceived: 2.70 MB - CloseTime: 4.970us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.223ms - ExecTime: 956.552us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.01 MB - MemoryUsage: - Blocks: 3.69 MB - PeakMemoryUsage: 0.00 - OpenTime: 15.488us - ProjectionTime: 0ns - RowsProduced: 163.641K (163641) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s581ms PipelineXTask (index=7):(Active: 140.599ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 140.501ms - CloseTime: 12.726us - GetBlockTime: 982.36us - OpenTime: 2.673us - PrepareTime: 76.500us - SinkTime: 139.174ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.352ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 86.685ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 6.376us - DeserializeAndMergeTime: 3.418ms - ExecTime: 139.171ms - ExprTime: 0ns - HashTableComputeTime: 135.353ms - HashTableEmplaceTime: 128.147ms - HashTableInputCount: 163.983K (163983) - InputRows: 163.983K (163983) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 139.51ms - OpenTime: 21.969us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 62 - BytesReceived: 2.70 MB - CloseTime: 5.549us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.892ms - ExecTime: 964.496us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.55 MB - MemoryUsage: - Blocks: 2.78 MB - PeakMemoryUsage: 0.00 - OpenTime: 28.588us - ProjectionTime: 0ns - RowsProduced: 163.983K (163983) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s664ms PipelineXTask (index=9):(Active: 98.527ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 98.448ms - CloseTime: 11.538us - GetBlockTime: 1.210ms - OpenTime: 2.304us - PrepareTime: 57.3us - SinkTime: 96.891ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.318ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.84ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 7.196us - DeserializeAndMergeTime: 3.826ms - ExecTime: 96.888ms - ExprTime: 0ns - HashTableComputeTime: 92.661ms - HashTableEmplaceTime: 84.307ms - HashTableInputCount: 163.426K (163426) - InputRows: 163.426K (163426) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 96.780ms - OpenTime: 16.902us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 62 - BytesReceived: 2.71 MB - CloseTime: 3.695us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.599ms - ExecTime: 1.193ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.63 MB - MemoryUsage: - Blocks: 4.25 MB - PeakMemoryUsage: 0.00 - OpenTime: 19.438us - ProjectionTime: 0ns - RowsProduced: 163.426K (163426) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s652ms PipelineXTask (index=11):(Active: 331.823ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 331.738ms - CloseTime: 13.883us - GetBlockTime: 972.471us - OpenTime: 2.783us - PrepareTime: 60.5us - SinkTime: 330.417ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 26 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 91.195ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.426ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 7.297us - DeserializeAndMergeTime: 3.346ms - ExecTime: 330.429ms - ExprTime: 0ns - HashTableComputeTime: 326.668ms - HashTableEmplaceTime: 319.543ms - HashTableInputCount: 162.829K (162829) - InputRows: 162.829K (162829) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 330.317ms - OpenTime: 27.864us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 60 - BytesReceived: 2.69 MB - CloseTime: 5.514us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.354ms - ExecTime: 944.277us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.49 MB - MemoryUsage: - Blocks: 2.58 MB - PeakMemoryUsage: 0.00 - OpenTime: 12.518us - ProjectionTime: 0ns - RowsProduced: 162.829K (162829) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s476ms PipelineXTask (index=13):(Active: 102.827ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 102.720ms - CloseTime: 22.573us - GetBlockTime: 1.108ms - OpenTime: 2.428us - PrepareTime: 71.17us - SinkTime: 101.229ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.296ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.37ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 7.184us - DeserializeAndMergeTime: 3.848ms - ExecTime: 101.236ms - ExprTime: 0ns - HashTableComputeTime: 96.934ms - HashTableEmplaceTime: 89.69ms - HashTableInputCount: 163.825K (163825) - InputRows: 163.825K (163825) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 101.101ms - OpenTime: 35.658us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 64 - BytesReceived: 2.71 MB - CloseTime: 13.82us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.225ms - ExecTime: 1.89ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.04 MB - MemoryUsage: - Blocks: 2.58 MB - PeakMemoryUsage: 0.00 - OpenTime: 15.435us - ProjectionTime: 0ns - RowsProduced: 163.825K (163825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s656ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 22.540ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.380ms - CloseTime: 17.11us - GetBlockTime: 21.214ms - OpenTime: 534ns - PrepareTime: 136.350us - SinkTime: 1.118ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 22.516ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.825ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 352.86 KB - CloseTime: 14.129us - CompressTime: 0ns - ExecTime: 1.189ms - InputRows: 4.367K (4367) - LocalBytesSent: 315.58 KB - LocalSendTime: 88.154us - LocalSentRows: 4.367K (4367) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 249.254us - OpenTime: 67.110us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.584ms - RowsProduced: 4.367K (4367) - RpcAvgTime: 9.780ms - RpcCount: 2 - RpcMaxTime: 19.561ms - RpcMinTime: 19.561ms - RpcSumTime: 19.561ms - SerializeBatchTime: 554.183us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 643.12 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 903ns - DeserializeAndMergeTime: 0ns - ExecTime: 21.149ms - GetResultsTime: 11.259ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.169ms - HashTableSize: 163.44K (163440) - InsertKeysToColumnTime: 4.581ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.766us - ProjectionTime: 816.733us - RowsProduced: 4.367K (4367) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s316ms PipelineXTask (index=2):(Active: 52.707ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 52.529ms - CloseTime: 30.566us - GetBlockTime: 50.57ms - OpenTime: 2.574us - PrepareTime: 138.661us - SinkTime: 2.352ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 52.668ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 229.876us DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 355.11 KB - CloseTime: 25.489us - CompressTime: 0ns - ExecTime: 2.430ms - InputRows: 4.403K (4403) - LocalBytesSent: 318.17 KB - LocalSendTime: 177.843us - LocalSentRows: 4.403K (4403) - MemoryUsage: - PeakMemoryUsage: 392.00 KB - MergeBlockTime: 451.863us - OpenTime: 82.242us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.595ms - RowsProduced: 4.403K (4403) - RpcAvgTime: 11.927ms - RpcCount: 2 - RpcMaxTime: 23.855ms - RpcMinTime: 23.855ms - RpcSumTime: 23.855ms - SerializeBatchTime: 1.190ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 648.47 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.365us - DeserializeAndMergeTime: 0ns - ExecTime: 49.828ms - GetResultsTime: 24.367ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.99ms - HashTableSize: 163.489K (163489) - InsertKeysToColumnTime: 11.316ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.137us - ProjectionTime: 2.202ms - RowsProduced: 4.403K (4403) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s317ms PipelineXTask (index=4):(Active: 33.931ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.768ms - CloseTime: 18.961us - GetBlockTime: 32.229ms - OpenTime: 902ns - PrepareTime: 135.763us - SinkTime: 1.470ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 33.901ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.373ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 341.69 KB - CloseTime: 14.237us - CompressTime: 0ns - ExecTime: 1.533ms - InputRows: 4.236K (4236) - LocalBytesSent: 306.11 KB - LocalSendTime: 107.874us - LocalSentRows: 4.236K (4236) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 302.7us - OpenTime: 64.840us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 21.360ms - RowsProduced: 4.236K (4236) - RpcAvgTime: 6.995ms - RpcCount: 2 - RpcMaxTime: 13.990ms - RpcMinTime: 13.990ms - RpcSumTime: 13.990ms - SerializeBatchTime: 723.927us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 623.85 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.156us - DeserializeAndMergeTime: 0ns - ExecTime: 32.112ms - GetResultsTime: 16.400ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.507ms - HashTableSize: 163.705K (163705) - InsertKeysToColumnTime: 6.894ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.949us - ProjectionTime: 1.276ms - RowsProduced: 4.236K (4236) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s317ms PipelineXTask (index=6):(Active: 24.776ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.667ms - CloseTime: 11.612us - GetBlockTime: 23.516ms - OpenTime: 845ns - PrepareTime: 89.674us - SinkTime: 1.95ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.756ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.59ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 357.29 KB - CloseTime: 9.689us - CompressTime: 0ns - ExecTime: 1.131ms - InputRows: 4.435K (4435) - LocalBytesSent: 320.49 KB - LocalSendTime: 83.505us - LocalSentRows: 4.435K (4435) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 249.965us - OpenTime: 37.23us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.135ms - RowsProduced: 4.435K (4435) - RpcAvgTime: 8.217ms - RpcCount: 2 - RpcMaxTime: 16.434ms - RpcMinTime: 16.434ms - RpcSumTime: 16.434ms - SerializeBatchTime: 513.511us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 653.17 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 677ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.438ms - GetResultsTime: 11.545ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 974.431us - HashTableSize: 163.547K (163547) - InsertKeysToColumnTime: 4.636ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.570us - ProjectionTime: 958.185us - RowsProduced: 4.435K (4435) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s317ms PipelineXTask (index=8):(Active: 27.96ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 26.945ms - CloseTime: 19.716us - GetBlockTime: 25.363ms - OpenTime: 585ns - PrepareTime: 124.199us - SinkTime: 1.510ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 27.57ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.217ms DATA_STREAM_SINK_OPERATOR (id=149,dst_id=149): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 351.98 KB - CloseTime: 15.687us - CompressTime: 0ns - ExecTime: 1.558ms - InputRows: 4.369K (4369) - LocalBytesSent: 315.71 KB - LocalSendTime: 108.868us - LocalSentRows: 4.369K (4369) - MemoryUsage: - PeakMemoryUsage: 324.00 KB - MergeBlockTime: 236.262us - OpenTime: 48.667us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.369ms - RowsProduced: 4.369K (4369) - RpcAvgTime: 8.86ms - RpcCount: 2 - RpcMaxTime: 16.172ms - RpcMinTime: 16.172ms - RpcSumTime: 16.172ms - SerializeBatchTime: 849.428us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 643.45 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=148): - BlocksProduced: 41 - CloseTime: 1.235us - DeserializeAndMergeTime: 0ns - ExecTime: 25.267ms - GetResultsTime: 12.430ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.122ms - HashTableSize: 163.902K (163902) - InsertKeysToColumnTime: 5.368ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.663us - ProjectionTime: 1.169ms - RowsProduced: 4.369K (4369) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s317ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 87.509ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 87.415ms - CloseTime: 14.37us - GetBlockTime: 1.44ms - OpenTime: 2.180us - PrepareTime: 68.319us - SinkTime: 85.948ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.378ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.71ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 4.971us - DeserializeAndMergeTime: 3.652ms - ExecTime: 85.952ms - ExprTime: 0ns - HashTableComputeTime: 81.913ms - HashTableEmplaceTime: 74.332ms - HashTableInputCount: 163.44K (163440) - InputRows: 163.44K (163440) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 85.836ms - OpenTime: 29.206us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 74 - BytesReceived: 4.11 MB - CloseTime: 7.264us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.283ms - ExecTime: 1.37ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.30 MB - MemoryUsage: - Blocks: 1024.00 KB - PeakMemoryUsage: 1024.00 KB - OpenTime: 20.357us - ProjectionTime: 0ns - RowsProduced: 163.44K (163440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s225ms PipelineXTask (index=3):(Active: 79.661ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 79.557ms - CloseTime: 28.915us - GetBlockTime: 843.232us - OpenTime: 3.415us - PrepareTime: 62.258us - SinkTime: 78.325ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.387ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.816ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 20.237us - DeserializeAndMergeTime: 3.217ms - ExecTime: 78.340ms - ExprTime: 0ns - HashTableComputeTime: 74.777ms - HashTableEmplaceTime: 67.590ms - HashTableInputCount: 163.489K (163489) - InputRows: 163.489K (163489) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 78.222ms - OpenTime: 20.96us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 72 - BytesReceived: 4.13 MB - CloseTime: 6.985us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.239ms - ExecTime: 834.797us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.02 MB - MemoryUsage: - Blocks: 1.81 MB - PeakMemoryUsage: 1.81 MB - OpenTime: 18.758us - ProjectionTime: 0ns - RowsProduced: 163.489K (163489) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s225ms PipelineXTask (index=5):(Active: 81.944ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 81.858ms - CloseTime: 20.639us - GetBlockTime: 789.894us - OpenTime: 2.667us - PrepareTime: 52.765us - SinkTime: 80.699ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.652ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.633ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 16.891us - DeserializeAndMergeTime: 3.268ms - ExecTime: 80.706ms - ExprTime: 0ns - HashTableComputeTime: 77.45ms - HashTableEmplaceTime: 69.978ms - HashTableInputCount: 163.705K (163705) - InputRows: 163.705K (163705) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 80.601ms - OpenTime: 19.663us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 72 - BytesReceived: 4.14 MB - CloseTime: 3.2us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.573ms - ExecTime: 783.326us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.88 MB - MemoryUsage: - Blocks: 1.50 MB - PeakMemoryUsage: 1.50 MB - OpenTime: 20.471us - ProjectionTime: 0ns - RowsProduced: 163.705K (163705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s213ms PipelineXTask (index=7):(Active: 86.185ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 86.99ms - CloseTime: 9.776us - GetBlockTime: 904.308us - OpenTime: 2.685us - PrepareTime: 63.710us - SinkTime: 84.757ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.868ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.639ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 3.515us - DeserializeAndMergeTime: 3.160ms - ExecTime: 84.762ms - ExprTime: 0ns - HashTableComputeTime: 81.219ms - HashTableEmplaceTime: 74.304ms - HashTableInputCount: 163.547K (163547) - InputRows: 163.547K (163547) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 84.654ms - OpenTime: 31.182us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 74 - BytesReceived: 4.12 MB - CloseTime: 5.280us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.512ms - ExecTime: 869.144us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.83 MB - MemoryUsage: - Blocks: 528.00 KB - PeakMemoryUsage: 528.25 KB - OpenTime: 16.626us - ProjectionTime: 0ns - RowsProduced: 163.547K (163547) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s225ms PipelineXTask (index=9):(Active: 100.674ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 100.595ms - CloseTime: 12.733us - GetBlockTime: 946.137us - OpenTime: 3.128us - PrepareTime: 54.141us - SinkTime: 99.175ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.644ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.321ms AGGREGATION_SINK_OPERATOR (id=148): - BuildTime: 0ns - CloseTime: 8.72us - DeserializeAndMergeTime: 3.593ms - ExecTime: 99.170ms - ExprTime: 0ns - HashTableComputeTime: 89.905ms - HashTableEmplaceTime: 82.147ms - HashTableInputCount: 163.902K (163902) - InputRows: 163.902K (163902) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 99.45ms - OpenTime: 17.489us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=147): - BlocksProduced: 73 - BytesReceived: 4.14 MB - CloseTime: 4.68us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.691ms - ExecTime: 933.222us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.77 MB - MemoryUsage: - Blocks: 1.50 MB - PeakMemoryUsage: 1.50 MB - OpenTime: 22.26us - ProjectionTime: 0ns - RowsProduced: 163.902K (163902) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s212ms Fragment 97: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 159.494ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 158.760ms - CloseTime: 532.226us - GetBlockTime: 107.519ms - OpenTime: 6.552us - PrepareTime: 185.209us - SinkTime: 50.878ms - GetBlockCounter: 67 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 115.123ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.426ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 55 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.07 MB - CloseTime: 13.440us - CompressTime: 0ns - ExecTime: 50.926ms - InputRows: 166.649K (166649) - LocalBytesSent: 4.67 MB - LocalSendTime: 301.907us - LocalSentRows: 69.321K (69321) - MemoryUsage: - PeakMemoryUsage: 11.22 MB - MergeBlockTime: 0ns - OpenTime: 61.394us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 915.131ms - RowsProduced: 166.649K (166649) - RpcAvgTime: 242.691ms - RpcCount: 28 - RpcMaxTime: 976.506ms - RpcMinTime: 962.673ms - RpcSumTime: 6s795ms - SerializeBatchTime: 18.674ms - SplitBlockDistributeByChannelTime: 19.722ms - SplitBlockHashComputeTime: 8.519ms - UncompressedRowBatchSize: 6.67 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 43 - BuildConvertToPartitionedTime: 0ns - BuildTime: 84.515ms - CloseTime: 489.36us - DeserializeAndMergeTime: 0ns - ExecTime: 91.562ms - ExprTime: 114.456us - GetResultsTime: 6.334ms - HashTableComputeTime: 38.479ms - HashTableEmplaceTime: 31.52ms - HashTableInputCount: 54.869K (54869) - HashTableIterateTime: 509.207us - HashTableSize: 54.869K (54869) - InsertKeysToColumnTime: 2.96ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 34.382us - ProjectionTime: 0ns - RowsProduced: 166.649K (166649) - SerializeDataTime: 46.861ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.351ms - StreamingAggTime: 45.105ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 25.488us - ExecTime: 15.920ms - InitProbeSideTime: 3.245ms - JoinFilterTimer: 8.821us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 20.776us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.141us - ProbeFindNextTime: 0ns - ProbeRows: 166.649K (166649) - ProbeTime: 13.362ms - ProbeWhenBuildSideOutputTime: 443.908us - ProbeWhenProbeSideOutputTime: 4.447ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.868ms - ProjectionTime: 2.338ms - RowsProduced: 166.649K (166649) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 317.353us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 2.56 MB - OpenTime: 1.540us - ProjectionTime: 0ns - RowsProduced: 166.649K (166649) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 205.624ms PipelineXTask (index=5):(Active: 174.166ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 173.173ms - CloseTime: 805.612us - GetBlockTime: 104.923ms - OpenTime: 3.898us - PrepareTime: 176.203us - SinkTime: 67.829ms - GetBlockCounter: 71 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 115.129ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.490ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.70 MB - CloseTime: 19.187us - CompressTime: 0ns - ExecTime: 67.888ms - InputRows: 151.447K (151447) - LocalBytesSent: 4.27 MB - LocalSendTime: 189.87us - LocalSentRows: 63.032K (63032) - MemoryUsage: - PeakMemoryUsage: 10.25 MB - MergeBlockTime: 0ns - OpenTime: 68.688us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s27ms - RowsProduced: 151.447K (151447) - RpcAvgTime: 262.635ms - RpcCount: 26 - RpcMaxTime: 1s67ms - RpcMinTime: 775.403ms - RpcSumTime: 6s828ms - SerializeBatchTime: 18.18ms - SplitBlockDistributeByChannelTime: 24.125ms - SplitBlockHashComputeTime: 21.6ms - UncompressedRowBatchSize: 6.09 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 41 - BuildConvertToPartitionedTime: 0ns - BuildTime: 62.241ms - CloseTime: 749.69us - DeserializeAndMergeTime: 0ns - ExecTime: 68.860ms - ExprTime: 119.764us - GetResultsTime: 5.652ms - HashTableComputeTime: 39.579ms - HashTableEmplaceTime: 37.55ms - HashTableInputCount: 57.335K (57335) - HashTableIterateTime: 382.401us - HashTableSize: 57.335K (57335) - InsertKeysToColumnTime: 1.966ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 27.227us - ProjectionTime: 0ns - RowsProduced: 151.447K (151447) - SerializeDataTime: 11.237ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.677ms - StreamingAggTime: 9.669ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 44 - BuildOutputBlock: 0ns - CloseTime: 28.904us - ExecTime: 36.210ms - InitProbeSideTime: 3.2ms - JoinFilterTimer: 7.875us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 13.289us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.69us - ProbeFindNextTime: 0ns - ProbeRows: 151.447K (151447) - ProbeTime: 33.670ms - ProbeWhenBuildSideOutputTime: 779.155us - ProbeWhenProbeSideOutputTime: 4.765ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.672ms - ProjectionTime: 2.294ms - RowsProduced: 151.447K (151447) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 44 - CloseTime: 0ns - ExecTime: 335.204us - GetBlockFailedTime: 12 - MemoryUsage: - PeakMemoryUsage: 2.24 MB - OpenTime: 777ns - ProjectionTime: 0ns - RowsProduced: 151.447K (151447) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 186.879ms PipelineXTask (index=10):(Active: 131.306ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 130.487ms - CloseTime: 637.895us - GetBlockTime: 77.694ms - OpenTime: 4.200us - PrepareTime: 168.814us - SinkTime: 52.407ms - GetBlockCounter: 72 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 95.42ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 81.112ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 45 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.70 MB - CloseTime: 20.217us - CompressTime: 0ns - ExecTime: 52.478ms - InputRows: 149.805K (149805) - LocalBytesSent: 4.27 MB - LocalSendTime: 162.749us - LocalSentRows: 62.594K (62594) - MemoryUsage: - PeakMemoryUsage: 10.08 MB - MergeBlockTime: 0ns - OpenTime: 74.157us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 917.733ms - RowsProduced: 149.805K (149805) - RpcAvgTime: 249.22ms - RpcCount: 22 - RpcMaxTime: 965.833ms - RpcMinTime: 697.204ms - RpcSumTime: 5s478ms - SerializeBatchTime: 23.741ms - SplitBlockDistributeByChannelTime: 18.666ms - SplitBlockHashComputeTime: 6.482ms - UncompressedRowBatchSize: 6.06 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 39 - BuildConvertToPartitionedTime: 0ns - BuildTime: 55.302ms - CloseTime: 591.249us - DeserializeAndMergeTime: 0ns - ExecTime: 60.567ms - ExprTime: 94.922us - GetResultsTime: 4.472ms - HashTableComputeTime: 46.281ms - HashTableEmplaceTime: 43.919ms - HashTableInputCount: 55.154K (55154) - HashTableIterateTime: 302.670us - HashTableSize: 55.154K (55154) - InsertKeysToColumnTime: 1.416ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 32.800us - ProjectionTime: 0ns - RowsProduced: 149.805K (149805) - SerializeDataTime: 9.456ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.486ms - StreamingAggTime: 8.54ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 22.336us - ExecTime: 17.133ms - InitProbeSideTime: 6.308ms - JoinFilterTimer: 6.292us - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 14.290us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.746us - ProbeFindNextTime: 0ns - ProbeRows: 149.805K (149805) - ProbeTime: 14.758ms - ProbeWhenBuildSideOutputTime: 269.631us - ProbeWhenProbeSideOutputTime: 3.752ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.150ms - ProjectionTime: 2.157ms - RowsProduced: 149.805K (149805) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 324.943us - GetBlockFailedTime: 15 - MemoryUsage: - PeakMemoryUsage: 1.60 MB - OpenTime: 683ns - ProjectionTime: 0ns - RowsProduced: 149.805K (149805) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 229.802ms PipelineXTask (index=15):(Active: 213.637ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 212.923ms - CloseTime: 522.335us - GetBlockTime: 140.9ms - OpenTime: 4.812us - PrepareTime: 180.723us - SinkTime: 72.622ms - GetBlockCounter: 59 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 109.894ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 178.757ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 46 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.65 MB - CloseTime: 18.515us - CompressTime: 0ns - ExecTime: 72.671ms - InputRows: 148.637K (148637) - LocalBytesSent: 4.22 MB - LocalSendTime: 245.503us - LocalSentRows: 62.143K (62143) - MemoryUsage: - PeakMemoryUsage: 9.84 MB - MergeBlockTime: 0ns - OpenTime: 58.708us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 792.969ms - RowsProduced: 148.637K (148637) - RpcAvgTime: 267.198ms - RpcCount: 21 - RpcMaxTime: 831.867ms - RpcMinTime: 782.626ms - RpcSumTime: 5s611ms - SerializeBatchTime: 17.514ms - SplitBlockDistributeByChannelTime: 17.929ms - SplitBlockHashComputeTime: 7.417ms - UncompressedRowBatchSize: 5.98 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 39 - BuildConvertToPartitionedTime: 0ns - BuildTime: 112.45ms - CloseTime: 475.662us - DeserializeAndMergeTime: 0ns - ExecTime: 118.845ms - ExprTime: 95.783us - GetResultsTime: 6.113ms - HashTableComputeTime: 101.905ms - HashTableEmplaceTime: 99.2ms - HashTableInputCount: 55.784K (55784) - HashTableIterateTime: 423.320us - HashTableSize: 55.784K (55784) - InsertKeysToColumnTime: 2.76ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 30.512us - ProjectionTime: 0ns - RowsProduced: 148.637K (148637) - SerializeDataTime: 11.122ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.145ms - StreamingAggTime: 8.976ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 40 - BuildOutputBlock: 0ns - CloseTime: 20.162us - ExecTime: 21.164ms - InitProbeSideTime: 10.83ms - JoinFilterTimer: 8.93us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.874us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.548us - ProbeFindNextTime: 0ns - ProbeRows: 148.637K (148637) - ProbeTime: 18.734ms - ProbeWhenBuildSideOutputTime: 333.315us - ProbeWhenProbeSideOutputTime: 3.572ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.472ms - ProjectionTime: 2.143ms - RowsProduced: 148.637K (148637) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 40 - CloseTime: 0ns - ExecTime: 278.21us - GetBlockFailedTime: 4 - MemoryUsage: - PeakMemoryUsage: 3.20 MB - OpenTime: 1.656us - ProjectionTime: 0ns - RowsProduced: 148.637K (148637) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 166.455ms PipelineXTask (index=20):(Active: 118.431ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 117.705ms - CloseTime: 540.785us - GetBlockTime: 63.18ms - OpenTime: 5.735us - PrepareTime: 172.711us - SinkTime: 54.250ms - GetBlockCounter: 70 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 106.249ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 110.679ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 54 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.76 MB - CloseTime: 11.304us - CompressTime: 0ns - ExecTime: 54.296ms - InputRows: 152.034K (152034) - LocalBytesSent: 4.34 MB - LocalSendTime: 182.103us - LocalSentRows: 63.449K (63449) - MemoryUsage: - PeakMemoryUsage: 10.90 MB - MergeBlockTime: 0ns - OpenTime: 64.558us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 947.389ms - RowsProduced: 152.034K (152034) - RpcAvgTime: 246.479ms - RpcCount: 27 - RpcMaxTime: 1s15ms - RpcMinTime: 727.881ms - RpcSumTime: 6s654ms - SerializeBatchTime: 18.508ms - SplitBlockDistributeByChannelTime: 19.812ms - SplitBlockHashComputeTime: 7.251ms - UncompressedRowBatchSize: 6.17 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 39 - BuildConvertToPartitionedTime: 0ns - BuildTime: 42.326ms - CloseTime: 499.606us - DeserializeAndMergeTime: 0ns - ExecTime: 49.111ms - ExprTime: 106.348us - GetResultsTime: 6.48ms - HashTableComputeTime: 33.51ms - HashTableEmplaceTime: 30.541ms - HashTableInputCount: 55.808K (55808) - HashTableIterateTime: 387.653us - HashTableSize: 55.808K (55808) - InsertKeysToColumnTime: 2.56ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 40.318us - ProjectionTime: 0ns - RowsProduced: 152.034K (152034) - SerializeDataTime: 10.305ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.72ms - StreamingAggTime: 8.374ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 40 - BuildOutputBlock: 0ns - CloseTime: 18.232us - ExecTime: 13.866ms - InitProbeSideTime: 2.835ms - JoinFilterTimer: 6.695us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 12.553us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.853us - ProbeFindNextTime: 0ns - ProbeRows: 152.034K (152034) - ProbeTime: 11.398ms - ProbeWhenBuildSideOutputTime: 318.679us - ProbeWhenProbeSideOutputTime: 3.434ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.523ms - ProjectionTime: 2.273ms - RowsProduced: 152.034K (152034) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 40 - CloseTime: 0ns - ExecTime: 269.673us - GetBlockFailedTime: 17 - MemoryUsage: - PeakMemoryUsage: 1.60 MB - OpenTime: 872ns - ProjectionTime: 0ns - RowsProduced: 152.034K (152034) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 252.18ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 15.298ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 15.204ms - CloseTime: 19.974us - GetBlockTime: 14.469ms - OpenTime: 4.692us - PrepareTime: 62.91us - SinkTime: 385.858us - GetBlockCounter: 67 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.223ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.462ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 366.82us - InputRows: 155.598K (155598) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.463us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 43 - BuildOutputBlock: 0ns - CloseTime: 19.98us - ExecTime: 14.122ms - InitProbeSideTime: 2.604ms - JoinFilterTimer: 6.202us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 25.410us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.16us - ProbeFindNextTime: 0ns - ProbeRows: 155.598K (155598) - ProbeTime: 11.204ms - ProbeWhenBuildSideOutputTime: 461.727us - ProbeWhenProbeSideOutputTime: 3.707ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.247ms - ProjectionTime: 2.726ms - RowsProduced: 155.598K (155598) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 43 - CloseTime: 0ns - ExecTime: 224.341us - GetBlockFailedTime: 24 - MemoryUsage: - PeakMemoryUsage: 1.16 MB - OpenTime: 521ns - ProjectionTime: 0ns - RowsProduced: 155.598K (155598) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 325.97ms PipelineXTask (index=6):(Active: 28.366ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 28.296ms - CloseTime: 17.248us - GetBlockTime: 27.590ms - OpenTime: 3.382us - PrepareTime: 43.187us - SinkTime: 350.726us - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.770ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.522ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 310.552us - InputRows: 150.328K (150328) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.225us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 43 - BuildOutputBlock: 0ns - CloseTime: 16.227us - ExecTime: 27.283ms - InitProbeSideTime: 15.103ms - JoinFilterTimer: 7.67us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 13.947us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.883us - ProbeFindNextTime: 0ns - ProbeRows: 150.328K (150328) - ProbeTime: 24.303ms - ProbeWhenBuildSideOutputTime: 433.485us - ProbeWhenProbeSideOutputTime: 4.356ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.280ms - ProjectionTime: 2.805ms - RowsProduced: 150.328K (150328) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 43 - CloseTime: 0ns - ExecTime: 189.436us - GetBlockFailedTime: 22 - MemoryUsage: - PeakMemoryUsage: 1.16 MB - OpenTime: 1.714us - ProjectionTime: 0ns - RowsProduced: 150.328K (150328) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 308.771ms PipelineXTask (index=11):(Active: 23.170ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 23.50ms - CloseTime: 15.712us - GetBlockTime: 22.382ms - OpenTime: 2.822us - PrepareTime: 91.880us - SinkTime: 323.709us - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.999ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.695ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 295.553us - InputRows: 155.388K (155388) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.147us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 13.694us - ExecTime: 22.87ms - InitProbeSideTime: 2.765ms - JoinFilterTimer: 7.542us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 42.10us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.553us - ProbeFindNextTime: 0ns - ProbeRows: 155.388K (155388) - ProbeTime: 19.79ms - ProbeWhenBuildSideOutputTime: 431.539us - ProbeWhenProbeSideOutputTime: 4.154ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 10.573ms - ProjectionTime: 2.789ms - RowsProduced: 155.388K (155388) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 182.321us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 1.16 MB - OpenTime: 668ns - ProjectionTime: 0ns - RowsProduced: 155.388K (155388) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 310.925ms PipelineXTask (index=16):(Active: 29.66ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 28.980ms - CloseTime: 11.803us - GetBlockTime: 28.301ms - OpenTime: 4.555us - PrepareTime: 53.595us - SinkTime: 356.515us - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.994ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.30ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 329.299us - InputRows: 158.38K (158380) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.188us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 10.197us - ExecTime: 27.947ms - InitProbeSideTime: 2.794ms - JoinFilterTimer: 7.195us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.958us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.262us - ProbeFindNextTime: 0ns - ProbeRows: 158.38K (158380) - ProbeTime: 24.971ms - ProbeWhenBuildSideOutputTime: 429.513us - ProbeWhenProbeSideOutputTime: 16.877ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.650ms - ProjectionTime: 2.802ms - RowsProduced: 158.38K (158380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 208.904us - GetBlockFailedTime: 19 - MemoryUsage: - PeakMemoryUsage: 1.45 MB - OpenTime: 525ns - ProjectionTime: 0ns - RowsProduced: 158.38K (158380) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 305.373ms PipelineXTask (index=21):(Active: 16.485ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 16.381ms - CloseTime: 37.187us - GetBlockTime: 15.592ms - OpenTime: 2.231us - PrepareTime: 56.6us - SinkTime: 420.499us - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.385ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.140ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 389.339us - InputRows: 148.878K (148878) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.286us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 34.258us - ExecTime: 15.280ms - InitProbeSideTime: 2.783ms - JoinFilterTimer: 7.267us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 20.56us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.662us - ProbeFindNextTime: 0ns - ProbeRows: 148.878K (148878) - ProbeTime: 12.337ms - ProbeWhenBuildSideOutputTime: 473.808us - ProbeWhenProbeSideOutputTime: 4.192ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.529ms - ProjectionTime: 2.721ms - RowsProduced: 148.878K (148878) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 41 - CloseTime: 0ns - ExecTime: 197.396us - GetBlockFailedTime: 22 - MemoryUsage: - PeakMemoryUsage: 1.16 MB - OpenTime: 570ns - ProjectionTime: 0ns - RowsProduced: 148.878K (148878) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 320.384ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 1.210ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 580.9us - CloseTime: 53.733us - GetBlockTime: 89.351us - OpenTime: 421.296us - PrepareTime: 146.975us - SinkTime: 38.451us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.145ms - WaitBfTime: 18.812ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.410ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 42.901us - InputRows: 583 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.560us - 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: 42.934us - BlocksProduced: 2 - CloseTime: 50.123us - ExecTime: 131.307ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 505.66us - ProcessConjunctTime: 258.813us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 44.974ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 130.664ms - 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: [84.008ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [44.974ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 81.36ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 854.711us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 154ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 28.641ms - ScannerCtxSchedTime: 44.971ms - ScannerFilterTime: 119.748us - ScannerGetBlockTime: 83.834ms - ScannerInitTime: 97.707us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 2.228us - BlockConditionsFilteredBloomFilterTime: 9.520us - BlockConditionsFilteredDictTime: 228.577us - BlockConditionsFilteredTime: 339.762us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 60.67us - BlockInitSeekCount: 37 - BlockInitSeekTime: 391.452us - BlockInitTime: 863.76us - BlockLoadTime: 83.775ms - BlocksLoad: 152 - CachedPagesNum: 312 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 70.123us - FirstReadTime: 1.193ms - IOTimer: 0ns - InvertedIndexFilterTime: 15.373us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 79.669ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 120.324us - OutputIndexResultColumnTimer: 28.902us - 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: 1.226ms - TotalPagesNum: 312 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 81.271us PipelineXTask (index=7):(Active: 3.449ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 2.66ms - CloseTime: 42.960us - GetBlockTime: 460.263us - OpenTime: 1.199ms - PrepareTime: 130.827us - SinkTime: 253.168us - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.833ms - WaitBfTime: 23.123ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.969ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 243.497us - InputRows: 128.11K (128110) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.342us - 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: 61.722us - BlocksProduced: 35 - CloseTime: 40.116us - ExecTime: 277.989ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.273ms - ProcessConjunctTime: 227.755us - 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: 56.749ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 276.228ms - 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: [195.642ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [56.749ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 193.86ms - MemoryUsage: - FreeBlocks: 2.14 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.108ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.979us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 131.83ms - ScannerCtxSchedTime: 56.735ms - ScannerFilterTime: 477.276us - ScannerGetBlockTime: 194.954ms - ScannerInitTime: 878.954us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 1.540us - BlockConditionsFilteredBloomFilterTime: 3.45us - BlockConditionsFilteredDictTime: 81.3us - BlockConditionsFilteredTime: 141.649us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 36.736us - BlockInitSeekCount: 26 - BlockInitSeekTime: 29.719us - BlockInitTime: 258.89us - BlockLoadTime: 194.701ms - BlocksLoad: 405 - CachedPagesNum: 1.107K (1107) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 121.638us - FirstReadTime: 3.341ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.835us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 181.985ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.460ms - OutputIndexResultColumnTimer: 72.268us - 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: 4.192ms - TotalPagesNum: 1.107K (1107) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 227.840us PipelineXTask (index=12):(Active: 2.234ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 1.635ms - CloseTime: 57.229us - GetBlockTime: 693.199us - OpenTime: 377.878us - PrepareTime: 154.161us - SinkTime: 397.68us - GetBlockCounter: 75 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.154ms - WaitBfTime: 19.759ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.284ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 388.96us - InputRows: 273.17K (273170) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.170us - 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: 35.799us - BlocksProduced: 75 - CloseTime: 53.916us - ExecTime: 325.428ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 475.798us - ProcessConjunctTime: 224.685us - 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: 59.252ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 324.222ms - 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: [230.509ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [59.252ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 227.60ms - MemoryUsage: - FreeBlocks: 4.97 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.110ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.42us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 158.543ms - ScannerCtxSchedTime: 59.238ms - ScannerFilterTime: 523.166us - ScannerGetBlockTime: 229.783ms - ScannerInitTime: 96.188us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 2.63us - BlockConditionsFilteredBloomFilterTime: 4.865us - BlockConditionsFilteredDictTime: 126.900us - BlockConditionsFilteredTime: 221.275us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 55.45us - BlockInitSeekCount: 31 - BlockInitSeekTime: 27.829us - BlockInitTime: 365.350us - BlockLoadTime: 229.494ms - BlocksLoad: 410 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 125.642us - FirstReadTime: 3.329ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.999us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 212.70ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.536ms - OutputIndexResultColumnTimer: 64.876us - 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.962ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 244.165us PipelineXTask (index=17):(Active: 2.232ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 1.795ms - CloseTime: 47.449us - GetBlockTime: 752.469us - OpenTime: 244.416us - PrepareTime: 137.631us - SinkTime: 611.768us - GetBlockCounter: 89 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.926ms - WaitBfTime: 18.823ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.331ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 592.2us - InputRows: 329.927K (329927) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.195us - 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: 26.284us - BlocksProduced: 89 - CloseTime: 44.672us - ExecTime: 286.658ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 335.33us - ProcessConjunctTime: 124.794us - 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: 46.980ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 285.545ms - 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: [185.722ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [46.980ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 181.927ms - MemoryUsage: - FreeBlocks: 5.67 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.383ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.765us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 143.987ms - ScannerCtxSchedTime: 46.970ms - ScannerFilterTime: 453.38us - ScannerGetBlockTime: 185.87ms - ScannerInitTime: 76.567us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 1.935us - BlockConditionsFilteredBloomFilterTime: 4.497us - BlockConditionsFilteredDictTime: 95.455us - BlockConditionsFilteredTime: 171.671us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 41.515us - BlockInitSeekCount: 35 - BlockInitSeekTime: 23.655us - BlockInitTime: 302.977us - BlockLoadTime: 185.51ms - BlocksLoad: 345 - CachedPagesNum: 934 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 118.329us - FirstReadTime: 2.751ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.466us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 166.818ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 6.648ms - OutputIndexResultColumnTimer: 59.980us - 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.363ms - TotalPagesNum: 934 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 200.945us PipelineXTask (index=22):(Active: 815.38us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 438.61us - CloseTime: 27.293us - GetBlockTime: 81.482us - OpenTime: 193.833us - PrepareTime: 147.181us - SinkTime: 119.988us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 766.242us - WaitBfTime: 19.96ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.763ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 117.847us - InputRows: 36.782K (36782) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 884ns - 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: 23.23us - BlocksProduced: 10 - CloseTime: 25.325us - ExecTime: 64.390ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 282.195us - ProcessConjunctTime: 118.395us - 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: 46.915ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 64.3ms - 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: [14.000ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [46.915ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 13.779ms - MemoryUsage: - FreeBlocks: 3.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 858.816us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 497ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.504ms - ScannerCtxSchedTime: 46.914ms - ScannerFilterTime: 61.28us - ScannerGetBlockTime: 13.910ms - ScannerInitTime: 37.142us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 393ns - BlockConditionsFilteredBloomFilterTime: 1.353us - BlockConditionsFilteredDictTime: 18.255us - BlockConditionsFilteredTime: 41.363us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 13.197us - BlockInitSeekCount: 8 - BlockInitSeekTime: 13.658us - BlockInitTime: 79.38us - BlockLoadTime: 14.459ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 20.531us - FirstReadTime: 470.258us - IOTimer: 0ns - InvertedIndexFilterTime: 3.116us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 12.19ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 686.787us - OutputIndexResultColumnTimer: 8.766us - 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: 861.671us - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 34.309us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 201.25us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 127.45us - CloseTime: 8.907us - GetBlockTime: 8.422us - OpenTime: 1.797us - PrepareTime: 59.376us - SinkTime: 98.192us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 184.839us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.192ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.264us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.586us - BuildTableInsertTime: 20.310us - BuildTableTime: 23.700us - CloseTime: 0ns - ExecTime: 111.21us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 13.801us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.812us - RuntimeFilterComputeTime: 24.192us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 7.590us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.676us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 18.319us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18.187ms PipelineXTask (index=8):(Active: 129.610us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.114us - CloseTime: 6.587us - GetBlockTime: 0ns - OpenTime: 1.528us - PrepareTime: 80.405us - SinkTime: 22.428us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 117.208us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.179ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.500us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.399us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.469ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.77us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.417us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.564us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 106.626us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 31.917us - CloseTime: 6.307us - GetBlockTime: 0ns - OpenTime: 2.442us - PrepareTime: 60.498us - SinkTime: 15.743us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.859us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.629ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.921us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.280us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.455ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.864us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.772us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.263us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 98.263us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.296us - CloseTime: 6.494us - GetBlockTime: 0ns - OpenTime: 1.686us - PrepareTime: 58.93us - SinkTime: 16.33us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.391us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.343ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.166us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.508us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 21.368ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.96us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.814us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.117us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 123.683us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 36.84us - CloseTime: 7.130us - GetBlockTime: 0ns - OpenTime: 2.39us - PrepareTime: 74.389us - SinkTime: 21.388us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.737us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.998us HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 57.202us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 36.133us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 23.431ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.538us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.106us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.772us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=4):(Active: 1.907ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.845ms - CloseTime: 7.637us - GetBlockTime: 70.685us - OpenTime: 2.231us - PrepareTime: 47.208us - SinkTime: 1.736ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.888ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.123ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 2.805us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 349.163us - BuildTableInsertTime: 1.278ms - BuildTableTime: 1.341ms - CloseTime: 0ns - ExecTime: 1.739ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 6.283us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=142): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 5.962us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.383us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.26 MB - MemoryUsage: - Blocks: 728.00 KB - PeakMemoryUsage: 472.00 KB - OpenTime: 17.472us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4.480ms PipelineXTask (index=9):(Active: 82.863us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.275us - CloseTime: 8.995us - GetBlockTime: 0ns - OpenTime: 2.489us - PrepareTime: 41.384us - SinkTime: 8.775us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 68.242us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.132ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.478us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.303us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 7.230ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.991us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.366us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.604us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 71.831us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.900us - CloseTime: 4.255us - GetBlockTime: 0ns - OpenTime: 2.260us - PrepareTime: 40.530us - SinkTime: 4.938us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 61.598us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.145ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.436us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.478us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 7.229ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.892us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.408us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.680us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 84.676us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.705us - CloseTime: 7.518us - GetBlockTime: 0ns - OpenTime: 2.106us - PrepareTime: 43.422us - SinkTime: 12.219us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 71.462us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 570.654us HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 20.814us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.114us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 6.838ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.585us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.569us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.96us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 67.76us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 18.974us - CloseTime: 6.115us - GetBlockTime: 0ns - OpenTime: 1.818us - PrepareTime: 36.680us - SinkTime: 6.110us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 55.970us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 702.704us HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83de - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.751us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.821us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 6.720ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.748us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.628us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.136us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 129.969ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 129.74ms - CloseTime: 709.466us - GetBlockTime: 67.152ms - OpenTime: 5.456us - PrepareTime: 172.533us - SinkTime: 61.568ms - GetBlockCounter: 67 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 129.72ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.177ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.07 MB - CloseTime: 27.735us - CompressTime: 0ns - ExecTime: 61.641ms - InputRows: 176.807K (176807) - LocalBytesSent: 6.92 MB - LocalSendTime: 356.796us - LocalSentRows: 103.302K (103302) - MemoryUsage: - PeakMemoryUsage: 14.25 MB - MergeBlockTime: 0ns - OpenTime: 74.255us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s444ms - RowsProduced: 176.807K (176807) - RpcAvgTime: 1s874ms - RpcCount: 20 - RpcMaxTime: 7s497ms - RpcMinTime: 7s496ms - RpcSumTime: 37s485ms - SerializeBatchTime: 18.693ms - SplitBlockDistributeByChannelTime: 28.882ms - SplitBlockHashComputeTime: 9.668ms - UncompressedRowBatchSize: 5.02 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 49 - BuildConvertToPartitionedTime: 0ns - BuildTime: 39.991ms - CloseTime: 652.706us - DeserializeAndMergeTime: 0ns - ExecTime: 47.691ms - ExprTime: 111.819us - GetResultsTime: 6.773ms - HashTableComputeTime: 27.844ms - HashTableEmplaceTime: 24.857ms - HashTableInputCount: 56.159K (56159) - HashTableIterateTime: 561.425us - HashTableSize: 56.159K (56159) - InsertKeysToColumnTime: 2.199ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 30.856us - ProjectionTime: 0ns - RowsProduced: 176.807K (176807) - SerializeDataTime: 13.405ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.797ms - StreamingAggTime: 11.164ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 51 - BuildOutputBlock: 0ns - CloseTime: 21.745us - ExecTime: 19.564ms - InitProbeSideTime: 3.751ms - JoinFilterTimer: 22.102us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 12.931us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 28.222us - ProbeFindNextTime: 0ns - ProbeRows: 176.807K (176807) - ProbeTime: 16.827ms - ProbeWhenBuildSideOutputTime: 493.771us - ProbeWhenProbeSideOutputTime: 5.843ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.883ms - ProjectionTime: 2.474ms - RowsProduced: 176.807K (176807) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 51 - CloseTime: 0ns - ExecTime: 308.434us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 12.37 MB - OpenTime: 824ns - ProjectionTime: 0ns - RowsProduced: 176.807K (176807) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s739ms PipelineXTask (index=5):(Active: 96.245ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 95.430ms - CloseTime: 611.948us - GetBlockTime: 50.264ms - OpenTime: 6.744us - PrepareTime: 189.582us - SinkTime: 44.878ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 95.576ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.499ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.04 MB - CloseTime: 15.680us - CompressTime: 0ns - ExecTime: 44.968ms - InputRows: 174.207K (174207) - LocalBytesSent: 6.79 MB - LocalSendTime: 417.877us - LocalSentRows: 101.328K (101328) - MemoryUsage: - PeakMemoryUsage: 13.70 MB - MergeBlockTime: 0ns - OpenTime: 101.61us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s467ms - RowsProduced: 174.207K (174207) - RpcAvgTime: 1s876ms - RpcCount: 20 - RpcMaxTime: 7s509ms - RpcMinTime: 7s505ms - RpcSumTime: 37s536ms - SerializeBatchTime: 14.143ms - SplitBlockDistributeByChannelTime: 19.523ms - SplitBlockHashComputeTime: 7.639ms - UncompressedRowBatchSize: 4.97 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 48 - BuildConvertToPartitionedTime: 0ns - BuildTime: 30.643ms - CloseTime: 562.775us - DeserializeAndMergeTime: 0ns - ExecTime: 36.802ms - ExprTime: 103.688us - GetResultsTime: 5.395ms - HashTableComputeTime: 21.953ms - HashTableEmplaceTime: 20.19ms - HashTableInputCount: 56.264K (56264) - HashTableIterateTime: 386.468us - HashTableSize: 56.264K (56264) - InsertKeysToColumnTime: 1.734ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 32.604us - ProjectionTime: 0ns - RowsProduced: 174.207K (174207) - SerializeDataTime: 9.824ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.422ms - StreamingAggTime: 7.914ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 28.377us - ExecTime: 13.673ms - InitProbeSideTime: 2.541ms - JoinFilterTimer: 8.859us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.543us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 34.9us - ProbeFindNextTime: 0ns - ProbeRows: 174.207K (174207) - ProbeTime: 11.656ms - ProbeWhenBuildSideOutputTime: 343.941us - ProbeWhenProbeSideOutputTime: 4.122ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.445ms - ProjectionTime: 1.776ms - RowsProduced: 174.207K (174207) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 222.593us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 10.57 MB - OpenTime: 3.913us - ProjectionTime: 0ns - RowsProduced: 174.207K (174207) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s740ms PipelineXTask (index=10):(Active: 114.846ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 114.141ms - CloseTime: 525.380us - GetBlockTime: 63.591ms - OpenTime: 4.720us - PrepareTime: 167.445us - SinkTime: 50.198ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 114.215ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.337ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.04 MB - CloseTime: 21.259us - CompressTime: 0ns - ExecTime: 50.270ms - InputRows: 174.666K (174666) - LocalBytesSent: 6.80 MB - LocalSendTime: 314.601us - LocalSentRows: 101.863K (101863) - MemoryUsage: - PeakMemoryUsage: 14.09 MB - MergeBlockTime: 0ns - OpenTime: 80.991us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s456ms - RowsProduced: 174.666K (174666) - RpcAvgTime: 1s874ms - RpcCount: 20 - RpcMaxTime: 7s499ms - RpcMinTime: 7s496ms - RpcSumTime: 37s489ms - SerializeBatchTime: 13.914ms - SplitBlockDistributeByChannelTime: 24.288ms - SplitBlockHashComputeTime: 8.288ms - UncompressedRowBatchSize: 4.95 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 47 - BuildConvertToPartitionedTime: 0ns - BuildTime: 40.596ms - CloseTime: 479.332us - DeserializeAndMergeTime: 0ns - ExecTime: 46.204ms - ExprTime: 112.492us - GetResultsTime: 4.850ms - HashTableComputeTime: 29.630ms - HashTableEmplaceTime: 26.585ms - HashTableInputCount: 56.581K (56581) - HashTableIterateTime: 377.27us - HashTableSize: 56.581K (56581) - InsertKeysToColumnTime: 1.541ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 29.187us - ProjectionTime: 0ns - RowsProduced: 174.666K (174666) - SerializeDataTime: 11.162ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.874ms - StreamingAggTime: 9.842ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 20.876us - ExecTime: 17.367ms - InitProbeSideTime: 3.468ms - JoinFilterTimer: 15.510us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.158us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 37.475us - ProbeFindNextTime: 0ns - ProbeRows: 174.666K (174666) - ProbeTime: 14.704ms - ProbeWhenBuildSideOutputTime: 395.49us - ProbeWhenProbeSideOutputTime: 4.910ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.136ms - ProjectionTime: 2.410ms - RowsProduced: 174.666K (174666) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 300.97us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 12.38 MB - OpenTime: 951ns - ProjectionTime: 0ns - RowsProduced: 174.666K (174666) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s741ms PipelineXTask (index=15):(Active: 107.388ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 106.689ms - CloseTime: 511.578us - GetBlockTime: 52.925ms - OpenTime: 7.433us - PrepareTime: 151.88us - SinkTime: 53.436ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 105.728ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.649ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.00 MB - CloseTime: 13.168us - CompressTime: 0ns - ExecTime: 53.484ms - InputRows: 175.505K (175505) - LocalBytesSent: 6.73 MB - LocalSendTime: 282.482us - LocalSentRows: 102.548K (102548) - MemoryUsage: - PeakMemoryUsage: 13.96 MB - MergeBlockTime: 0ns - OpenTime: 61.314us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s452ms - RowsProduced: 175.505K (175505) - RpcAvgTime: 1s874ms - RpcCount: 20 - RpcMaxTime: 7s498ms - RpcMinTime: 7s496ms - RpcSumTime: 37s488ms - SerializeBatchTime: 13.969ms - SplitBlockDistributeByChannelTime: 26.474ms - SplitBlockHashComputeTime: 9.60ms - UncompressedRowBatchSize: 4.88 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 48 - BuildConvertToPartitionedTime: 0ns - BuildTime: 32.104ms - CloseTime: 477.984us - DeserializeAndMergeTime: 0ns - ExecTime: 37.334ms - ExprTime: 112.912us - GetResultsTime: 4.554ms - HashTableComputeTime: 20.748ms - HashTableEmplaceTime: 18.723ms - HashTableInputCount: 56.141K (56141) - HashTableIterateTime: 316.258us - HashTableSize: 56.141K (56141) - InsertKeysToColumnTime: 1.516ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 35.63us - ProjectionTime: 0ns - RowsProduced: 175.505K (175505) - SerializeDataTime: 11.825ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.574ms - StreamingAggTime: 10.614ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 15.768us - ExecTime: 15.673ms - InitProbeSideTime: 3.222ms - JoinFilterTimer: 10.864us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 15.931us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.277us - ProbeFindNextTime: 0ns - ProbeRows: 175.505K (175505) - ProbeTime: 13.553ms - ProbeWhenBuildSideOutputTime: 461.275us - ProbeWhenProbeSideOutputTime: 4.830ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.778ms - ProjectionTime: 1.884ms - RowsProduced: 175.505K (175505) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 245.927us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 12.27 MB - OpenTime: 582ns - ProjectionTime: 0ns - RowsProduced: 175.505K (175505) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s741ms PipelineXTask (index=20):(Active: 112.282ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 111.174ms - CloseTime: 910.367us - GetBlockTime: 57.277ms - OpenTime: 6.891us - PrepareTime: 183.667us - SinkTime: 53.600ms - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 111.227ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.670ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.85 MB - CloseTime: 25.123us - CompressTime: 0ns - ExecTime: 53.674ms - InputRows: 166.984K (166984) - LocalBytesSent: 6.40 MB - LocalSendTime: 320.133us - LocalSentRows: 97.565K (97565) - MemoryUsage: - PeakMemoryUsage: 13.59 MB - MergeBlockTime: 0ns - OpenTime: 72.247us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s448ms - RowsProduced: 166.984K (166984) - RpcAvgTime: 1s873ms - RpcCount: 20 - RpcMaxTime: 7s496ms - RpcMinTime: 7s490ms - RpcSumTime: 37s468ms - SerializeBatchTime: 14.846ms - SplitBlockDistributeByChannelTime: 26.487ms - SplitBlockHashComputeTime: 8.636ms - UncompressedRowBatchSize: 4.64 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 45 - BuildConvertToPartitionedTime: 0ns - BuildTime: 34.61ms - CloseTime: 822.358us - DeserializeAndMergeTime: 0ns - ExecTime: 40.741ms - ExprTime: 88.774us - GetResultsTime: 5.643ms - HashTableComputeTime: 23.122ms - HashTableEmplaceTime: 20.698ms - HashTableInputCount: 56.115K (56115) - HashTableIterateTime: 503.746us - HashTableSize: 56.115K (56115) - InsertKeysToColumnTime: 1.908ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 44.176us - ProjectionTime: 0ns - RowsProduced: 166.984K (166984) - SerializeDataTime: 11.667ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.663ms - StreamingAggTime: 10.93ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 50.337us - ExecTime: 16.970ms - InitProbeSideTime: 3.141ms - JoinFilterTimer: 10.369us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 18.266us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.155us - ProbeFindNextTime: 0ns - ProbeRows: 166.984K (166984) - ProbeTime: 14.563ms - ProbeWhenBuildSideOutputTime: 345.404us - ProbeWhenProbeSideOutputTime: 5.919ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.771ms - ProjectionTime: 2.163ms - RowsProduced: 166.984K (166984) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 239.320us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 12.62 MB - OpenTime: 630ns - ProjectionTime: 0ns - RowsProduced: 166.984K (166984) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s741ms PipelineXTask (index=25):(Active: 135.324ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 134.33ms - CloseTime: 1.115ms - GetBlockTime: 75.286ms - OpenTime: 5.253us - PrepareTime: 164.66us - SinkTime: 58.339ms - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 134.126ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.800ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.80 MB - CloseTime: 23.567us - CompressTime: 0ns - ExecTime: 58.391ms - InputRows: 162.535K (162535) - LocalBytesSent: 6.26 MB - LocalSendTime: 598.414us - LocalSentRows: 94.774K (94774) - MemoryUsage: - PeakMemoryUsage: 12.51 MB - MergeBlockTime: 0ns - OpenTime: 72.967us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s429ms - RowsProduced: 162.535K (162535) - RpcAvgTime: 1s870ms - RpcCount: 20 - RpcMaxTime: 7s486ms - RpcMinTime: 7s479ms - RpcSumTime: 37s414ms - SerializeBatchTime: 16.509ms - SplitBlockDistributeByChannelTime: 28.372ms - SplitBlockHashComputeTime: 8.754ms - UncompressedRowBatchSize: 4.56 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 47.770ms - CloseTime: 1.40ms - DeserializeAndMergeTime: 0ns - ExecTime: 55.524ms - ExprTime: 126.291us - GetResultsTime: 6.447ms - HashTableComputeTime: 37.439ms - HashTableEmplaceTime: 34.509ms - HashTableInputCount: 56.686K (56686) - HashTableIterateTime: 517.898us - HashTableSize: 56.686K (56686) - InsertKeysToColumnTime: 2.217ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 25.167us - ProjectionTime: 0ns - RowsProduced: 162.535K (162535) - SerializeDataTime: 11.29ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.502ms - StreamingAggTime: 9.153ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 44.477us - ExecTime: 19.991ms - InitProbeSideTime: 3.813ms - JoinFilterTimer: 8.90us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 13.168us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.225us - ProbeFindNextTime: 0ns - ProbeRows: 162.535K (162535) - ProbeTime: 16.977ms - ProbeWhenBuildSideOutputTime: 345.630us - ProbeWhenProbeSideOutputTime: 6.445ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.545ms - ProjectionTime: 2.607ms - RowsProduced: 162.535K (162535) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 490.176us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 12.61 MB - OpenTime: 750ns - ProjectionTime: 0ns - RowsProduced: 162.535K (162535) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s741ms PipelineXTask (index=30):(Active: 91.793ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 90.390ms - CloseTime: 1.190ms - GetBlockTime: 48.295ms - OpenTime: 4.934us - PrepareTime: 200.229us - SinkTime: 41.834ms - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 90.545ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.444ms DATA_STREAM_SINK_OPERATOR (id=147,dst_id=147): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.83 MB - CloseTime: 28.178us - CompressTime: 0ns - ExecTime: 41.905ms - InputRows: 163.764K (163764) - LocalBytesSent: 6.34 MB - LocalSendTime: 274.308us - LocalSentRows: 95.544K (95544) - MemoryUsage: - PeakMemoryUsage: 13.48 MB - MergeBlockTime: 0ns - OpenTime: 67.703us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s461ms - RowsProduced: 163.764K (163764) - RpcAvgTime: 1s874ms - RpcCount: 20 - RpcMaxTime: 7s498ms - RpcMinTime: 7s496ms - RpcSumTime: 37s487ms - SerializeBatchTime: 11.933ms - SplitBlockDistributeByChannelTime: 20.170ms - SplitBlockHashComputeTime: 6.832ms - UncompressedRowBatchSize: 4.61 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=146): - BlocksProduced: 45 - BuildConvertToPartitionedTime: 0ns - BuildTime: 29.492ms - CloseTime: 1.95ms - DeserializeAndMergeTime: 0ns - ExecTime: 36.538ms - ExprTime: 72.69us - GetResultsTime: 5.722ms - HashTableComputeTime: 22.179ms - HashTableEmplaceTime: 19.810ms - HashTableInputCount: 55.063K (55063) - HashTableIterateTime: 362.433us - HashTableSize: 55.063K (55063) - InsertKeysToColumnTime: 1.746ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 67.138us - ProjectionTime: 0ns - RowsProduced: 163.764K (163764) - SerializeDataTime: 8.618ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.747ms - StreamingAggTime: 6.549ms HASH_JOIN_OPERATOR (id=145): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 40.111us - ExecTime: 12.602ms - InitProbeSideTime: 2.308ms - JoinFilterTimer: 9.30us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.512us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.273us - ProbeFindNextTime: 0ns - ProbeRows: 163.764K (163764) - ProbeTime: 10.502ms - ProbeWhenBuildSideOutputTime: 287.134us - ProbeWhenProbeSideOutputTime: 3.963ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.22ms - ProjectionTime: 1.875ms - RowsProduced: 163.764K (163764) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 219.245us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 12.63 MB - OpenTime: 1.954us - ProjectionTime: 0ns - RowsProduced: 163.764K (163764) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s742ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 24.78ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.0ms - CloseTime: 14.922us - GetBlockTime: 23.516ms - OpenTime: 4.720us - PrepareTime: 52.339us - SinkTime: 351.246us - GetBlockCounter: 54 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.54ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.735ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 322.909us - InputRows: 185.404K (185404) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.186us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 52 - BuildOutputBlock: 0ns - CloseTime: 12.597us - ExecTime: 23.230ms - InitProbeSideTime: 2.493ms - JoinFilterTimer: 7.149us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.955us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.175us - ProbeFindNextTime: 0ns - ProbeRows: 185.404K (185404) - ProbeTime: 19.636ms - ProbeWhenBuildSideOutputTime: 302.520us - ProbeWhenProbeSideOutputTime: 12.791ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.138ms - ProjectionTime: 3.459ms - RowsProduced: 185.404K (185404) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s559ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 52 - CloseTime: 0ns - ExecTime: 231.384us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 14.86 MB - OpenTime: 594ns - ProjectionTime: 0ns - RowsProduced: 185.404K (185404) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 180.643ms PipelineXTask (index=6):(Active: 21.960ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.879ms - CloseTime: 14.964us - GetBlockTime: 21.493ms - OpenTime: 3.563us - PrepareTime: 56.623us - SinkTime: 275.915us - GetBlockCounter: 51 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.936ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.997ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 255.625us - InputRows: 174.292K (174292) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.21us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 12.280us - ExecTime: 21.254ms - InitProbeSideTime: 2.148ms - JoinFilterTimer: 5.829us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 7.957us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.449us - ProbeFindNextTime: 0ns - ProbeRows: 174.292K (174292) - ProbeTime: 18.231ms - ProbeWhenBuildSideOutputTime: 268.530us - ProbeWhenProbeSideOutputTime: 12.245ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.813ms - ProjectionTime: 2.909ms - RowsProduced: 174.292K (174292) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s556ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 189.838us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 14.06 MB - OpenTime: 2.80us - ProjectionTime: 0ns - RowsProduced: 174.292K (174292) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 181.34ms PipelineXTask (index=11):(Active: 17.754ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.635ms - CloseTime: 19.782us - GetBlockTime: 17.260ms - OpenTime: 7.477us - PrepareTime: 86.228us - SinkTime: 267.255us - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 17.710ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 235.416us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 247.745us - InputRows: 170.328K (170328) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.101us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 16.350us - ExecTime: 17.70ms - InitProbeSideTime: 2.226ms - JoinFilterTimer: 6.173us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 42.910us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.386us - ProbeFindNextTime: 0ns - ProbeRows: 170.328K (170328) - ProbeTime: 14.287ms - ProbeWhenBuildSideOutputTime: 291.498us - ProbeWhenProbeSideOutputTime: 8.46ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.927ms - ProjectionTime: 2.622ms - RowsProduced: 170.328K (170328) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s559ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 186.670us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.77 MB - OpenTime: 3.145us - ProjectionTime: 0ns - RowsProduced: 170.328K (170328) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 182.137ms PipelineXTask (index=16):(Active: 16.379ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 16.300ms - CloseTime: 17.423us - GetBlockTime: 15.948ms - OpenTime: 4.780us - PrepareTime: 51.607us - SinkTime: 255.789us - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.353ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.320ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 238.73us - InputRows: 166.735K (166735) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.187us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 14.529us - ExecTime: 15.737ms - InitProbeSideTime: 2.337ms - JoinFilterTimer: 4.132us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.251us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.971us - ProbeFindNextTime: 0ns - ProbeRows: 166.735K (166735) - ProbeTime: 12.966ms - ProbeWhenBuildSideOutputTime: 300.726us - ProbeWhenProbeSideOutputTime: 6.974ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.699ms - ProjectionTime: 2.665ms - RowsProduced: 166.735K (166735) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s556ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 187.935us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.63 MB - OpenTime: 475ns - ProjectionTime: 0ns - RowsProduced: 166.735K (166735) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 179.999ms PipelineXTask (index=21):(Active: 20.393ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 20.306ms - CloseTime: 27.220us - GetBlockTime: 19.863ms - OpenTime: 4.553us - PrepareTime: 49.614us - SinkTime: 317.238us - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.357ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.84ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 293.192us - InputRows: 166.354K (166354) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.234us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 24.71us - ExecTime: 19.640ms - InitProbeSideTime: 2.384ms - JoinFilterTimer: 6.427us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 19.770us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.184us - ProbeFindNextTime: 0ns - ProbeRows: 166.354K (166354) - ProbeTime: 16.714ms - ProbeWhenBuildSideOutputTime: 311.814us - ProbeWhenProbeSideOutputTime: 10.120ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.903ms - ProjectionTime: 2.779ms - RowsProduced: 166.354K (166354) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s558ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 192.784us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.27 MB - OpenTime: 506ns - ProjectionTime: 0ns - RowsProduced: 166.354K (166354) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 180.386ms PipelineXTask (index=26):(Active: 12.489ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 12.392ms - CloseTime: 18.668us - GetBlockTime: 11.944ms - OpenTime: 5.497us - PrepareTime: 67.732us - SinkTime: 342.641us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.461ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.469ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 324.370us - InputRows: 163.029K (163029) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.140us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 15.444us - ExecTime: 11.786ms - InitProbeSideTime: 1.928ms - JoinFilterTimer: 4.224us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 33.214us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.59us - ProbeFindNextTime: 0ns - ProbeRows: 163.029K (163029) - ProbeTime: 9.907ms - ProbeWhenBuildSideOutputTime: 231.19us - ProbeWhenProbeSideOutputTime: 4.523ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.582ms - ProjectionTime: 1.759ms - RowsProduced: 163.029K (163029) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s556ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 150.766us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.02 MB - OpenTime: 435ns - ProjectionTime: 0ns - RowsProduced: 163.029K (163029) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 180.543ms PipelineXTask (index=31):(Active: 28.513ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 28.419ms - CloseTime: 30.572us - GetBlockTime: 27.871ms - OpenTime: 4.930us - PrepareTime: 53.391us - SinkTime: 388.934us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 28.454ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.175ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 365.752us - InputRows: 168.326K (168326) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.116us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=144): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 26.850us - ExecTime: 27.532ms - InitProbeSideTime: 3.295ms - JoinFilterTimer: 9.99us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.338us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.753us - ProbeFindNextTime: 0ns - ProbeRows: 168.326K (168326) - ProbeTime: 23.671ms - ProbeWhenBuildSideOutputTime: 381.584us - ProbeWhenProbeSideOutputTime: 13.628ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.108ms - ProjectionTime: 3.685ms - RowsProduced: 168.326K (168326) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s558ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 269.35us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.20 MB - OpenTime: 548ns - ProjectionTime: 0ns - RowsProduced: 168.326K (168326) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 177.401ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 9.2ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.449ms - CloseTime: 31.358us - GetBlockTime: 41.292us - OpenTime: 4.364ms - PrepareTime: 147.382us - SinkTime: 13.78us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.43ms - WaitBfTime: 40.322ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.304ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.24us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.33us - 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: 43.991us - BlocksProduced: 0 - CloseTime: 28.843us - ExecTime: 147.987ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 4.444ms - ProcessConjunctTime: 250.968us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 142.963ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.473ms - 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.813us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [142.963ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 112.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 457.82us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 56ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 510.614us - ScannerCtxSchedTime: 142.961ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 987ns - ScannerInitTime: 4.39ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 838ns - BlockConditionsFilteredBloomFilterTime: 2.149us - BlockConditionsFilteredDictTime: 156.902us - BlockConditionsFilteredTime: 183.911us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 16.599us - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.15us - BlockInitTime: 227.905us - BlockLoadTime: 239.47us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 506ns - IOTimer: 0ns - InvertedIndexFilterTime: 3.355us - 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: 956.907us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 537.626us - CloseTime: 37.924us - GetBlockTime: 137.413us - OpenTime: 236.460us - PrepareTime: 135.312us - SinkTime: 114.660us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 905.181us - WaitBfTime: 38.82ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.654ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 111.333us - InputRows: 25.619K (25619) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.92us - 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: 34.95us - BlocksProduced: 8 - CloseTime: 34.533us - ExecTime: 352.324ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 326.891us - ProcessConjunctTime: 134.275us - 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: 188.368ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 351.829ms - 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: [158.556ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [188.368ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 156.732ms - MemoryUsage: - FreeBlocks: 672.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.26ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 489ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 84.182ms - ScannerCtxSchedTime: 188.363ms - ScannerFilterTime: 334.408us - ScannerGetBlockTime: 158.49ms - ScannerInitTime: 46.415us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 1.290us - BlockConditionsFilteredBloomFilterTime: 1.963us - BlockConditionsFilteredDictTime: 71.652us - BlockConditionsFilteredTime: 124.757us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 32.949us - BlockInitSeekCount: 17 - BlockInitSeekTime: 20.919us - BlockInitTime: 212.192us - BlockLoadTime: 158.45ms - BlocksLoad: 367 - CachedPagesNum: 1.008K (1008) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 91.383us - FirstReadTime: 2.763ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.657us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 150.515ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 714.73us - OutputIndexResultColumnTimer: 46.10us - 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.110ms - TotalPagesNum: 1.008K (1008) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 157.344us PipelineXTask (index=12):(Active: 1.824ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.219ms - CloseTime: 33.245us - GetBlockTime: 286.170us - OpenTime: 360.170us - PrepareTime: 199.429us - SinkTime: 473.829us - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.769ms - WaitBfTime: 42.818ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.605ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 453.100us - InputRows: 167.427K (167427) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.60us - 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: 31.165us - BlocksProduced: 46 - CloseTime: 29.640us - ExecTime: 427.252ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 476.701us - ProcessConjunctTime: 208.519us - 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: 169.560ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 426.474ms - 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: [232.182ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [169.560ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 229.711ms - MemoryUsage: - FreeBlocks: 3.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.41ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.742us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 117.283ms - ScannerCtxSchedTime: 169.554ms - ScannerFilterTime: 432.952us - ScannerGetBlockTime: 231.545ms - ScannerInitTime: 81.746us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.283us - BlockConditionsFilteredBloomFilterTime: 2.942us - BlockConditionsFilteredDictTime: 91.777us - BlockConditionsFilteredTime: 144.8us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.736us - BlockInitSeekCount: 25 - BlockInitSeekTime: 18.88us - BlockInitTime: 224.579us - BlockLoadTime: 231.441ms - BlocksLoad: 384 - CachedPagesNum: 1.062K (1062) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 104.482us - FirstReadTime: 2.848ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.415us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 188.690ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 33.715ms - OutputIndexResultColumnTimer: 49.463us - 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.737ms - TotalPagesNum: 1.062K (1062) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 167.470us PipelineXTask (index=17):(Active: 37.949ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 19.579ms - CloseTime: 26.651us - GetBlockTime: 477.712us - OpenTime: 18.135ms - PrepareTime: 196.204us - SinkTime: 825.910us - GetBlockCounter: 113 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.711ms - WaitBfTime: 42.342ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.989ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 804.581us - InputRows: 394.725K (394725) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.250us - 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: 73.314us - BlocksProduced: 113 - CloseTime: 24.80us - ExecTime: 490.120ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 18.229ms - ProcessConjunctTime: 17.882ms - 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: 159.434ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 471.409ms - 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: [232.249ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [159.434ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 228.501ms - MemoryUsage: - FreeBlocks: 7.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.361ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.75us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 169.162ms - ScannerCtxSchedTime: 159.421ms - ScannerFilterTime: 519.695us - ScannerGetBlockTime: 231.517ms - ScannerInitTime: 150.765us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 2.287us - BlockConditionsFilteredBloomFilterTime: 16.358us - BlockConditionsFilteredDictTime: 143.364us - BlockConditionsFilteredTime: 235.21us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 47.780us - BlockInitSeekCount: 33 - BlockInitSeekTime: 28.152us - BlockInitTime: 376.191us - BlockLoadTime: 231.491ms - BlocksLoad: 382 - CachedPagesNum: 1.044K (1044) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 101.144us - FirstReadTime: 3.241ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.844us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 208.106ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 9.150ms - OutputIndexResultColumnTimer: 49.470us - 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: 7.152ms - TotalPagesNum: 1.044K (1044) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 174.425us PipelineXTask (index=22):(Active: 1.839ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.271ms - CloseTime: 40.178us - GetBlockTime: 364.752us - OpenTime: 353.909us - PrepareTime: 164.388us - SinkTime: 478.520us - GetBlockCounter: 67 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.782ms - WaitBfTime: 40.649ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.355ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 471.494us - InputRows: 249.28K (249280) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.629us - 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: 39.720us - BlocksProduced: 67 - CloseTime: 36.860us - ExecTime: 413.771ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 468.527us - ProcessConjunctTime: 167.368us - 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: 126.935ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 412.912ms - 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: [129.322ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [126.935ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 126.993ms - MemoryUsage: - FreeBlocks: 5.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.52ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.118us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 107.5ms - ScannerCtxSchedTime: 126.929ms - ScannerFilterTime: 347.844us - ScannerGetBlockTime: 128.836ms - ScannerInitTime: 124.320us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.922us - BlockConditionsFilteredBloomFilterTime: 5.687us - BlockConditionsFilteredDictTime: 91.437us - BlockConditionsFilteredTime: 147.209us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 29.554us - BlockInitSeekCount: 25 - BlockInitSeekTime: 220.418us - BlockInitTime: 444.936us - BlockLoadTime: 128.834ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 83.875us - FirstReadTime: 2.86ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.613us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 114.668ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 5.125ms - OutputIndexResultColumnTimer: 37.182us - 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.441ms - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 130.488us PipelineXTask (index=27):(Active: 40.403ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 20.767ms - CloseTime: 33.655us - GetBlockTime: 542.724us - OpenTime: 19.375ms - PrepareTime: 214.724us - SinkTime: 739.93us - GetBlockCounter: 96 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.459ms - WaitBfTime: 40.354ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.953ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 720.954us - InputRows: 325.275K (325275) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.146us - 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: 42.427us - BlocksProduced: 96 - CloseTime: 31.152us - ExecTime: 378.821ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 19.506ms - ProcessConjunctTime: 19.225ms - 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: 199.987ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 358.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: [125.461ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [199.987ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 122.823ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 862.661us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.658us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 130.832ms - ScannerCtxSchedTime: 199.979ms - ScannerFilterTime: 479.696us - ScannerGetBlockTime: 124.787ms - ScannerInitTime: 85.966us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.526us - BlockConditionsFilteredBloomFilterTime: 3.665us - BlockConditionsFilteredDictTime: 85.896us - BlockConditionsFilteredTime: 158.818us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.546us - BlockInitSeekCount: 26 - BlockInitSeekTime: 393.672us - BlockInitTime: 633.523us - BlockLoadTime: 124.532ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 112.419us - FirstReadTime: 2.572ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.672us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 95.934ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 7.878ms - OutputIndexResultColumnTimer: 42.915us - 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: 14.486ms - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 158.710us PipelineXTask (index=32):(Active: 1.19ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 553.441us - CloseTime: 27.500us - GetBlockTime: 105.532us - OpenTime: 275.252us - PrepareTime: 154.132us - SinkTime: 136.896us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 981.847us - WaitBfTime: 37.238ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.92ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 135.403us - InputRows: 32.142K (32142) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.158us - 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: 27.757us - BlocksProduced: 9 - CloseTime: 25.762us - ExecTime: 135.80ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 372.126us - ProcessConjunctTime: 165.620us - 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: 123.926ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 134.579ms - 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.726ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [123.926ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.602ms - MemoryUsage: - FreeBlocks: 2.65 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 504.817us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 508ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.123ms - ScannerCtxSchedTime: 123.925ms - ScannerFilterTime: 26.869us - ScannerGetBlockTime: 8.683ms - ScannerInitTime: 61.712us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 311ns - BlockConditionsFilteredBloomFilterTime: 840ns - BlockConditionsFilteredDictTime: 13.826us - BlockConditionsFilteredTime: 24.420us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.408us - BlockInitSeekCount: 9 - BlockInitSeekTime: 5.910us - BlockInitTime: 54.114us - BlockLoadTime: 9.10ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 9.679us - FirstReadTime: 328.865us - IOTimer: 0ns - InvertedIndexFilterTime: 1.329us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.507ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 324.528us - OutputIndexResultColumnTimer: 3.890us - 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: 616.290us - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 19.591us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 625.408us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 541.967us - CloseTime: 9.943us - GetBlockTime: 6.983us - OpenTime: 2.680us - PrepareTime: 64.742us - SinkTime: 509.554us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 210.365us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.348ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.560us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.227us - BuildTableInsertTime: 427.41us - BuildTableTime: 436.456us - CloseTime: 0ns - ExecTime: 534.196us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 25.227us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.77us - RuntimeFilterComputeTime: 17.586us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=140): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 8.278us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.228us - ExecTime: 30.689us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.345us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 37.97ms PipelineXTask (index=8):(Active: 98.565us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.163us - CloseTime: 5.178us - GetBlockTime: 0ns - OpenTime: 2.77us - PrepareTime: 54.645us - SinkTime: 16.590us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.751us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.240ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.760us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.470us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 35.955ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.673us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.31us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.521us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 224.229us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 57.139us - CloseTime: 7.908us - GetBlockTime: 0ns - OpenTime: 2.967us - PrepareTime: 148.78us - SinkTime: 28.688us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 203.378us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.361ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 134.84us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 105.630us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.433ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.979us - 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: 21.30us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 145.632us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 69.224us - CloseTime: 7.790us - GetBlockTime: 0ns - OpenTime: 3.77us - PrepareTime: 60.566us - SinkTime: 43.208us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.678us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 414.299us HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 58.100us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.541us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.547ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.32us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.675us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.771us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 118.340us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.592us - CloseTime: 5.270us - GetBlockTime: 0ns - OpenTime: 10.772us - PrepareTime: 53.726us - SinkTime: 15.303us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.320us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 692.244us HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.764us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.778us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.322ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.27us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.242us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.292us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 173.803us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 70.169us - CloseTime: 31.480us - GetBlockTime: 0ns - OpenTime: 2.330us - PrepareTime: 64.617us - SinkTime: 44.871us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 133.645us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.770ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 62.826us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.595us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 38.656ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 22.335us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 41.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.585us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 106.39us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.708us - CloseTime: 6.110us - GetBlockTime: 0ns - OpenTime: 2.456us - PrepareTime: 59.569us - SinkTime: 14.422us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.606us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.557ms HASH_JOIN_SINK_OPERATOR (id=145): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 28.935us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.592us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 38.618ms EXCHANGE_OPERATOR (id=140): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.336us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.665us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.473us - 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: 168.467ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 168.397ms - CloseTime: 12.974us - GetBlockTime: 108.315us - OpenTime: 2.237us - PrepareTime: 49.337us - SinkTime: 168.176ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 4.762ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.368ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 14.335us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 164.610ms - BuildTableInsertTime: 3.347ms - BuildTableTime: 3.420ms - CloseTime: 0ns - ExecTime: 168.181ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 11.454us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=142): - BlocksProduced: 22 - BytesReceived: 291.35 KB - CloseTime: 9.819us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 22.641ms - ExecTime: 105.989us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 104.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.234us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s553ms PipelineXTask (index=9):(Active: 1.124ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.622us - CloseTime: 1.33ms - GetBlockTime: 0ns - OpenTime: 1.964us - PrepareTime: 49.464us - SinkTime: 18.274us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.306us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.96ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.836us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.57us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s736ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.30ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.41ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.629us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 139.408us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 61.796us - CloseTime: 16.940us - GetBlockTime: 0ns - OpenTime: 2.350us - PrepareTime: 52.227us - SinkTime: 39.165us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.176us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.573ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.996us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.823us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s739ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.46us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.183us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.126us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 94.265us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 27.700us - CloseTime: 5.142us - GetBlockTime: 0ns - OpenTime: 2.267us - PrepareTime: 39.917us - SinkTime: 9.382us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.205us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.686ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 14.138us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 4.900us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s739ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.686us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.538us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.986us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 116.856us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 37.320us - CloseTime: 13.703us - GetBlockTime: 0ns - OpenTime: 2.723us - PrepareTime: 58.657us - SinkTime: 18.550us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.251us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 232.301us HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.134us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.69us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s741ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.343us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.653us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.617us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 108.269us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 54.365us - CloseTime: 9.314us - GetBlockTime: 0ns - OpenTime: 1.824us - PrepareTime: 38.70us - SinkTime: 17.511us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 73.256us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.329ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.36us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.18us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s738ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.472us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.310us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.163us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 76.945us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 20.246us - CloseTime: 4.350us - GetBlockTime: 0ns - OpenTime: 2.244us - PrepareTime: 45.296us - SinkTime: 6.296us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.38us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.330ms HASH_JOIN_SINK_OPERATOR (id=144): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc83e3 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 15.842us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.850us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s740ms EXCHANGE_OPERATOR (id=142): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.872us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.816us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.224us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 98: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.260ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.905ms - CloseTime: 52.587us - GetBlockTime: 91.257us - OpenTime: 146.212us - PrepareTime: 149.119us - SinkTime: 1.640ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.199ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.81ms DATA_STREAM_SINK_OPERATOR (id=142,dst_id=142): - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 582.21 KB - CloseTime: 12.603us - CompressTime: 0ns - ExecTime: 1.693ms - InputRows: 43.597K (43597) - LocalBytesSent: 549.72 KB - LocalSendTime: 245.763us - LocalSentRows: 43.597K (43597) - MemoryUsage: - PeakMemoryUsage: 100.00 KB - MergeBlockTime: 91.226us - OpenTime: 43.698us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s730ms - RowsProduced: 43.597K (43597) - RpcAvgTime: 147.145ms - RpcCount: 11 - RpcMaxTime: 1s618ms - RpcMinTime: 1s618ms - RpcSumTime: 1s618ms - SerializeBatchTime: 1.127ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 1.10 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=141. table name = DIM_WORKER): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21815] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 720ns - BlocksProduced: 11 - CloseTime: 37.186us - ExecTime: 3.338ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 207.724us - ProcessConjunctTime: 36.258us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - RowsRead: 43.597K (43597) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.443ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 3.15ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [WORKER_ID] - PerScannerRunningTime: [753.186us, ] - PerScannerRowsRead: [43.60K, ] - PerScannerWaitTime: [1.443ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 706.21us - MemoryUsage: - FreeBlocks: 724.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 674.912us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 554ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 1.585ms - ScannerCtxSchedTime: 1.438ms - ScannerFilterTime: 6.612us - ScannerGetBlockTime: 741.143us - ScannerInitTime: 66.850us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 239ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.509us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 479.74us - BlockInitTime: 509.141us - BlockLoadTime: 1.302ms - BlocksLoad: 12 - CachedPagesNum: 5 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 11 - FirstReadSeekTime: 9.10us - FirstReadTime: 743.282us - IOTimer: 0ns - InvertedIndexFilterTime: 480ns - 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.887us - OutputIndexResultColumnTimer: 1.654us - 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.87, port:9060)): PipelineXTask (index=0):(Active: 548.954us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 227.680us - CloseTime: 38.282us - GetBlockTime: 21.550us - OpenTime: 110.597us - PrepareTime: 165.543us - SinkTime: 78.470us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 503.98us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.771ms DATA_STREAM_SINK_OPERATOR (id=140,dst_id=140): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 12.257us - CompressTime: 0ns - ExecTime: 151.753us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 5.549us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 2.240us - OpenTime: 61.358us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.352ms - RowsProduced: 80 - RpcAvgTime: 13.439ms - RpcCount: 1 - RpcMaxTime: 13.439ms - RpcMinTime: 13.439ms - RpcSumTime: 13.439ms - SerializeBatchTime: 9.488us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 260ns - BlocksProduced: 1 - CloseTime: 23.205us - ExecTime: 18.482ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 169.866us - ProcessConjunctTime: 36.263us - ProjectionTime: 4.31us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.980ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 18.263ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [27.278us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [17.980ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.126us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 192.355us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 73ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 279.318us - ScannerCtxSchedTime: 17.978ms - ScannerFilterTime: 1.22us - ScannerGetBlockTime: 20.766us - ScannerInitTime: 59.347us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 239ns - BlockConditionsFilteredBloomFilterTime: 1.265us - BlockConditionsFilteredDictTime: 4.573us - BlockConditionsFilteredTime: 15.388us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 4.617us - BlockInitSeekCount: 6 - BlockInitSeekTime: 10.767us - BlockInitTime: 50.510us - BlockLoadTime: 92.944us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 5.685us - FirstReadTime: 7.388us - IOTimer: 0ns - InvertedIndexFilterTime: 1.336us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.998us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.972us - OutputIndexResultColumnTimer: 252ns - 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: 60ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.19us Fragment 100: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 471.32us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 282.966us - CloseTime: 10.255us - GetBlockTime: 30.675us - OpenTime: 3.585us - PrepareTime: 166.880us - SinkTime: 230.340us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 453.70us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 522.449us DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.831us - CompressTime: 0ns - ExecTime: 369.412us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.0us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 131.544us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.149ms - RowsProduced: 0 - RpcAvgTime: 12.608ms - RpcCount: 12 - RpcMaxTime: 12.651ms - RpcMinTime: 12.545ms - RpcSumTime: 151.303ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 657ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 739ns - DeserializeAndMergeTime: 0ns - ExecTime: 40.120us - GetResultsTime: 6.467us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 32ns - HashTableSize: 0 - InsertKeysToColumnTime: 516ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.922us - ProjectionTime: 8.707us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s938ms PipelineXTask (index=2):(Active: 598.822us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 462.626us - CloseTime: 13.328us - GetBlockTime: 31.770us - OpenTime: 3.10us - PrepareTime: 113.729us - SinkTime: 401.351us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 576.579us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.713ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.844us - CompressTime: 0ns - ExecTime: 496.271us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 84.0us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 84.924us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.119ms - RowsProduced: 0 - RpcAvgTime: 12.653ms - RpcCount: 12 - RpcMaxTime: 12.745ms - RpcMinTime: 12.546ms - RpcSumTime: 151.844ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 628ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 684ns - DeserializeAndMergeTime: 0ns - ExecTime: 40.517us - GetResultsTime: 8.714us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 34ns - HashTableSize: 0 - InsertKeysToColumnTime: 532ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.614us - ProjectionTime: 10.571us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s937ms PipelineXTask (index=4):(Active: 647.307us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 459.9us - CloseTime: 14.424us - GetBlockTime: 38.5us - OpenTime: 2.286us - PrepareTime: 165.704us - SinkTime: 399.17us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 625.836us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 797.927us DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.292us - CompressTime: 0ns - ExecTime: 545.236us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 53.179us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 134.612us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.426ms - RowsProduced: 0 - RpcAvgTime: 12.582ms - RpcCount: 12 - RpcMaxTime: 12.670ms - RpcMinTime: 12.466ms - RpcSumTime: 150.989ms - 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 AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 461ns - DeserializeAndMergeTime: 0ns - ExecTime: 43.432us - GetResultsTime: 6.37us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 123ns - HashTableSize: 0 - InsertKeysToColumnTime: 581ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.875us - ProjectionTime: 12.410us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s938ms PipelineXTask (index=6):(Active: 449.478us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 300.690us - CloseTime: 7.942us - GetBlockTime: 22.697us - OpenTime: 2.792us - PrepareTime: 131.331us - SinkTime: 256.873us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 434.115us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.82ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 6.749us - CompressTime: 0ns - ExecTime: 362.412us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 49.665us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 99.162us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.623ms - RowsProduced: 0 - RpcAvgTime: 12.633ms - RpcCount: 12 - RpcMaxTime: 12.676ms - RpcMinTime: 12.581ms - RpcSumTime: 151.604ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 688ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 319ns - DeserializeAndMergeTime: 0ns - ExecTime: 28.312us - GetResultsTime: 5.223us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 31ns - HashTableSize: 0 - InsertKeysToColumnTime: 533ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.866us - ProjectionTime: 7.842us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s936ms PipelineXTask (index=8):(Active: 440.454us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 270.614us - CloseTime: 26.656us - GetBlockTime: 18.603us - OpenTime: 3.485us - PrepareTime: 134.87us - SinkTime: 230.939us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 407.40us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 774.926us DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.772us - CompressTime: 0ns - ExecTime: 348.622us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 49.428us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 95.80us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.606ms - RowsProduced: 0 - RpcAvgTime: 12.628ms - RpcCount: 12 - RpcMaxTime: 12.659ms - RpcMinTime: 12.583ms - RpcSumTime: 151.544ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 415ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.16us - DeserializeAndMergeTime: 0ns - ExecTime: 26.147us - GetResultsTime: 4.313us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 33ns - HashTableSize: 0 - InsertKeysToColumnTime: 398ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.619us - ProjectionTime: 7.609us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s938ms PipelineXTask (index=10):(Active: 491.896us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 320.64us - CloseTime: 8.150us - GetBlockTime: 31.53us - OpenTime: 2.703us - PrepareTime: 155.552us - SinkTime: 264.228us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 477.444us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 893.535us DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 6.930us - CompressTime: 0ns - ExecTime: 398.642us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 43.733us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 127.974us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.383ms - RowsProduced: 0 - RpcAvgTime: 12.470ms - RpcCount: 12 - RpcMaxTime: 12.549ms - RpcMinTime: 12.313ms - RpcSumTime: 149.643ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 795ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 511ns - DeserializeAndMergeTime: 0ns - ExecTime: 38.977us - GetResultsTime: 5.535us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 33ns - HashTableSize: 0 - InsertKeysToColumnTime: 507ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.22us - ProjectionTime: 9.315us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s938ms PipelineXTask (index=12):(Active: 511.347us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 253.84us - CloseTime: 12.868us - GetBlockTime: 12.640us - OpenTime: 2.958us - PrepareTime: 235.631us - SinkTime: 222.668us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 490.999us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.136ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.252us - CompressTime: 0ns - ExecTime: 436.559us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.650us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 203.933us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.355ms - RowsProduced: 0 - RpcAvgTime: 12.477ms - RpcCount: 12 - RpcMaxTime: 12.526ms - RpcMinTime: 12.413ms - RpcSumTime: 149.730ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 526ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 699ns - DeserializeAndMergeTime: 0ns - ExecTime: 20.963us - GetResultsTime: 3.5us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 30ns - HashTableSize: 0 - InsertKeysToColumnTime: 168ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.855us - ProjectionTime: 6.331us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s937ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 103.652us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.635us - CloseTime: 3.242us - GetBlockTime: 1.585us - OpenTime: 2.500us - PrepareTime: 75.510us - SinkTime: 1.880us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.324ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 445ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.961us - 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.438us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.329us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.661us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.93 KB - OpenTime: 28.239us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s936ms PipelineXTask (index=3):(Active: 165.258us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 27.563us - CloseTime: 10.465us - GetBlockTime: 3.62us - OpenTime: 2.610us - PrepareTime: 118.578us - SinkTime: 3.579us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 147.590us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.675ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 1.131us - DeserializeAndMergeTime: 0ns - ExecTime: 71.2us - 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: 66.426us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.53us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.108us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.93 KB - OpenTime: 34.8us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s937ms PipelineXTask (index=5):(Active: 115.181us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 32.109us - CloseTime: 7.948us - GetBlockTime: 3.50us - OpenTime: 3.209us - PrepareTime: 66.783us - SinkTime: 6.296us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.417us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 531.625us AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 781ns - DeserializeAndMergeTime: 0ns - ExecTime: 34.193us - 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: 27.609us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.16us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.184us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.93 KB - OpenTime: 16.878us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s938ms PipelineXTask (index=7):(Active: 90.19us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.194us - CloseTime: 3.150us - GetBlockTime: 1.656us - OpenTime: 3.56us - PrepareTime: 54.995us - SinkTime: 1.749us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.265us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.690ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 377ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.458us - 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.312us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.269us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.797us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.93 KB - OpenTime: 17.306us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s937ms PipelineXTask (index=9):(Active: 138.251us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.689us - CloseTime: 2.164us - GetBlockTime: 1.727us - OpenTime: 3.136us - PrepareTime: 102.803us - SinkTime: 1.588us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 128.347us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.14ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 248ns - DeserializeAndMergeTime: 0ns - ExecTime: 58.622us - 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: 56.451us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.590us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.328us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.93 KB - OpenTime: 18.480us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s936ms PipelineXTask (index=11):(Active: 85.693us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 28.261us - CloseTime: 6.107us - GetBlockTime: 2.396us - OpenTime: 2.857us - PrepareTime: 43.443us - SinkTime: 2.690us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 72.418us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.68ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 613ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.902us - 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.510us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.798us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.93 KB - OpenTime: 11.397us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s936ms PipelineXTask (index=13):(Active: 97.384us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.225us - CloseTime: 5.658us - GetBlockTime: 2.546us - OpenTime: 2.468us - PrepareTime: 60.120us - SinkTime: 3.168us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.159us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.173ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 658ns - DeserializeAndMergeTime: 0ns - ExecTime: 25.399us - 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.594us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.369us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.145us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.93 KB - OpenTime: 15.12us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s937ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 927.762us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 722.358us - CloseTime: 30.570us - GetBlockTime: 26.697us - OpenTime: 2.840us - PrepareTime: 166.495us - SinkTime: 677.484us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 889.985us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.604ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.506us - CompressTime: 0ns - ExecTime: 837.876us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 139.137us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 135.516us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.687ms - RowsProduced: 0 - RpcAvgTime: 1.921ms - RpcCount: 12 - RpcMaxTime: 2.160ms - RpcMinTime: 1.679ms - RpcSumTime: 23.60ms - 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 AGGREGATION_OPERATOR (id=137): - BlocksProduced: 0 - CloseTime: 1.264us - DeserializeAndMergeTime: 0ns - ExecTime: 35.472us - GetResultsTime: 4.663us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 60ns - HashTableSize: 0 - InsertKeysToColumnTime: 397ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.269us - ProjectionTime: 14.400us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s949ms PipelineXTask (index=2):(Active: 460.101us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 291.926us - CloseTime: 18.848us - GetBlockTime: 24.877us - OpenTime: 1.494us - PrepareTime: 143.144us - SinkTime: 252.148us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 435.738us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.67ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.760us - CompressTime: 0ns - ExecTime: 377.56us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.765us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 110.506us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.789ms - RowsProduced: 0 - RpcAvgTime: 2.602ms - RpcCount: 12 - RpcMaxTime: 2.691ms - RpcMinTime: 2.522ms - RpcSumTime: 31.226ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 653ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 923ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.609us - GetResultsTime: 4.923us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 47ns - HashTableSize: 0 - InsertKeysToColumnTime: 500ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.567us - ProjectionTime: 11.908us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s949ms PipelineXTask (index=4):(Active: 356.177us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 217.700us - CloseTime: 8.423us - GetBlockTime: 13.296us - OpenTime: 3.607us - PrepareTime: 121.332us - SinkTime: 186.965us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 341.110us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.275ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.383us - CompressTime: 0ns - ExecTime: 282.653us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.181us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 88.537us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.585ms - RowsProduced: 0 - RpcAvgTime: 2.364ms - RpcCount: 12 - RpcMaxTime: 2.474ms - RpcMinTime: 2.167ms - RpcSumTime: 28.377ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 301ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 271ns - DeserializeAndMergeTime: 0ns - ExecTime: 21.38us - GetResultsTime: 3.114us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 24ns - HashTableSize: 0 - InsertKeysToColumnTime: 326ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.197us - ProjectionTime: 5.624us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s949ms PipelineXTask (index=6):(Active: 416.989us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 254.286us - CloseTime: 8.36us - GetBlockTime: 11.728us - OpenTime: 2.572us - PrepareTime: 147.756us - SinkTime: 228.979us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 404.108us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.485ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 6.986us - CompressTime: 0ns - ExecTime: 348.128us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.500us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 112.475us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.362ms - RowsProduced: 0 - RpcAvgTime: 2.225ms - RpcCount: 12 - RpcMaxTime: 2.301ms - RpcMinTime: 2.139ms - RpcSumTime: 26.710ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 339ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 327ns - DeserializeAndMergeTime: 0ns - ExecTime: 17.118us - GetResultsTime: 2.608us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 25ns - HashTableSize: 0 - InsertKeysToColumnTime: 146ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.524us - ProjectionTime: 5.212us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s949ms PipelineXTask (index=8):(Active: 717.83us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 518.781us - CloseTime: 13.286us - GetBlockTime: 38.597us - OpenTime: 2.491us - PrepareTime: 177.907us - SinkTime: 458.655us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 696.651us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.46ms DATA_STREAM_SINK_OPERATOR (id=138,dst_id=138): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.457us - CompressTime: 0ns - ExecTime: 593.735us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 73.450us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 100.178us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.465ms - RowsProduced: 0 - RpcAvgTime: 2.354ms - RpcCount: 12 - RpcMaxTime: 2.598ms - RpcMinTime: 2.226ms - RpcSumTime: 28.253ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 780ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 830ns - DeserializeAndMergeTime: 0ns - ExecTime: 46.207us - GetResultsTime: 9.534us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 75ns - HashTableSize: 0 - InsertKeysToColumnTime: 972ns - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.824us - ProjectionTime: 13.200us - RowsProduced: 0 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 18s948ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 96.301us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.771us - CloseTime: 11.752us - GetBlockTime: 3.833us - OpenTime: 2.162us - PrepareTime: 53.69us - SinkTime: 4.120us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.829us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.69ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 963ns - DeserializeAndMergeTime: 0ns - ExecTime: 20.102us - 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.709us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.87us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.189us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.38 KB - OpenTime: 15.407us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s948ms PipelineXTask (index=3):(Active: 95.844us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 25.441us - CloseTime: 5.925us - GetBlockTime: 2.240us - OpenTime: 3.72us - PrepareTime: 57.570us - SinkTime: 2.472us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 83.417us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 891.722us AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 672ns - DeserializeAndMergeTime: 0ns - ExecTime: 27.847us - 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: 24.572us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.412us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.77us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.38 KB - OpenTime: 17.301us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s949ms PipelineXTask (index=5):(Active: 93.926us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 13.460us - CloseTime: 3.145us - GetBlockTime: 1.105us - OpenTime: 1.909us - PrepareTime: 71.43us - SinkTime: 1.477us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.96us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 956.70us AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 337ns - DeserializeAndMergeTime: 0ns - ExecTime: 31.88us - 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: 29.79us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.325us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.958us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.38 KB - OpenTime: 19.705us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s949ms PipelineXTask (index=7):(Active: 72.95us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 12.363us - CloseTime: 3.153us - GetBlockTime: 1.175us - OpenTime: 1.796us - PrepareTime: 51.240us - SinkTime: 1.68us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.716us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 978.187us AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 355ns - DeserializeAndMergeTime: 0ns - ExecTime: 18.747us - 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: 17.195us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.422us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.168us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.38 KB - OpenTime: 16.705us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s949ms PipelineXTask (index=9):(Active: 91.543us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 13.805us - CloseTime: 7.178us - GetBlockTime: 1.195us - OpenTime: 2.923us - PrepareTime: 63.590us - SinkTime: 1.385us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.934us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.886ms AGGREGATION_SINK_OPERATOR (id=137): - BuildTime: 0ns - CloseTime: 288ns - DeserializeAndMergeTime: 0ns - ExecTime: 25.880us - 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: 24.96us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=136): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.445us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.984us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.38 KB - OpenTime: 18.404us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s948ms Fragment 101: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 845.789us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 456.104us - CloseTime: 57.805us - GetBlockTime: 91.900us - OpenTime: 11.250us - PrepareTime: 311.763us - SinkTime: 321.933us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 777.321us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.333ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.978us - CompressTime: 0ns - ExecTime: 406.658us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 30.464us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.343us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.902ms - RowsProduced: 0 - RpcAvgTime: 13.722ms - RpcCount: 5 - RpcMaxTime: 13.873ms - RpcMinTime: 13.577ms - RpcSumTime: 68.613ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 535ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 738ns - DeserializeAndMergeTime: 0ns - ExecTime: 49.350us - ExprTime: 0ns - GetResultsTime: 8.406us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 194ns - HashTableSize: 0 - InsertKeysToColumnTime: 532ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 34.392us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.156us - SerializeKeyTime: 0ns - SerializeResultTime: 12.506us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.52us - ExecTime: 40.667us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 19.886us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.40us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.161us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.859us - ExecTime: 45.492us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.622us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.20us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 18.240us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.479us - ExecTime: 42.618us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.335us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 7.747us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.992us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s934ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 20.53us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.43us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.801us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s996ms PipelineXTask (index=5):(Active: 758.272us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 395.759us - CloseTime: 49.784us - GetBlockTime: 72.426us - OpenTime: 11.314us - PrepareTime: 294.699us - SinkTime: 258.589us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 697.895us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.523ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.640us - CompressTime: 0ns - ExecTime: 349.261us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 62.992us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.517us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.377ms - RowsProduced: 0 - RpcAvgTime: 12.796ms - RpcCount: 5 - RpcMaxTime: 12.889ms - RpcMinTime: 12.722ms - RpcSumTime: 63.983ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 500ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 746ns - DeserializeAndMergeTime: 0ns - ExecTime: 38.206us - ExprTime: 0ns - GetResultsTime: 6.183us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 132ns - HashTableSize: 0 - InsertKeysToColumnTime: 414ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.862us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.754us - SerializeKeyTime: 0ns - SerializeResultTime: 8.140us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.438us - ExecTime: 36.362us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 18.457us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.231us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.772us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.450us - ExecTime: 28.324us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.165us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.174us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.265us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.868us - ExecTime: 49.926us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.218us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.694us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 22.492us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s939ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.163us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 47.855us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.413us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s997ms PipelineXTask (index=10):(Active: 703.33us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 302.24us - CloseTime: 76.952us - GetBlockTime: 57.460us - OpenTime: 15.107us - PrepareTime: 301.214us - SinkTime: 203.633us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 615.739us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 826.371us DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.732us - CompressTime: 0ns - ExecTime: 302.620us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.140us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 73.529us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.674ms - RowsProduced: 0 - RpcAvgTime: 15.445ms - RpcCount: 5 - RpcMaxTime: 15.486ms - RpcMinTime: 15.410ms - RpcSumTime: 77.228ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 342ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.545us - DeserializeAndMergeTime: 0ns - ExecTime: 54.567us - ExprTime: 0ns - GetResultsTime: 11.340us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 120ns - HashTableSize: 0 - InsertKeysToColumnTime: 252ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 36.737us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.808us - SerializeKeyTime: 0ns - SerializeResultTime: 13.668us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 23.153us - ExecTime: 71.924us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 38.781us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.924us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 5.758us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.240us - ExecTime: 28.356us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 9.920us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.651us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.48us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 7.844us - ExecTime: 40.293us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.232us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.570us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.810us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s932ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.366us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.873us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.315us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s998ms PipelineXTask (index=15):(Active: 728.499us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 362.339us - CloseTime: 55.394us - GetBlockTime: 80.468us - OpenTime: 13.757us - PrepareTime: 287.493us - SinkTime: 241.790us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 662.488us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.921ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.680us - CompressTime: 0ns - ExecTime: 349.130us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 21.437us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.12us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.613ms - RowsProduced: 0 - RpcAvgTime: 14.849ms - RpcCount: 5 - RpcMaxTime: 14.926ms - RpcMinTime: 14.781ms - RpcSumTime: 74.246ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 547ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.127us - DeserializeAndMergeTime: 0ns - ExecTime: 40.140us - ExprTime: 0ns - GetResultsTime: 7.505us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 97ns - HashTableSize: 0 - InsertKeysToColumnTime: 524ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.637us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.36us - SerializeKeyTime: 0ns - SerializeResultTime: 9.769us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.359us - ExecTime: 33.375us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.149us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.963us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.515us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.112us - ExecTime: 51.652us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.949us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.676us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 24.485us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.144us - ExecTime: 45.788us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.601us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.983us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.586us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s936ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.386us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.573us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s997ms PipelineXTask (index=20):(Active: 694.75us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 322.861us - CloseTime: 48.88us - GetBlockTime: 62.506us - OpenTime: 12.271us - PrepareTime: 302.195us - SinkTime: 224.491us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 636.534us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.131ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.330us - CompressTime: 0ns - ExecTime: 329.679us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.37us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 93.342us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.49ms - RowsProduced: 0 - RpcAvgTime: 13.260ms - RpcCount: 5 - RpcMaxTime: 13.481ms - RpcMinTime: 12.428ms - RpcSumTime: 66.302ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 530ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 996ns - DeserializeAndMergeTime: 0ns - ExecTime: 36.915us - ExprTime: 0ns - GetResultsTime: 6.118us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 36ns - HashTableSize: 0 - InsertKeysToColumnTime: 395ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.179us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.777us - SerializeKeyTime: 0ns - SerializeResultTime: 8.206us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.395us - ExecTime: 36.709us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 21.137us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.170us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.772us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.263us - ExecTime: 32.642us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 10.989us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.75us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 15.29us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 10.942us - ExecTime: 42.147us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.182us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.832us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.396us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s938ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.962us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.463us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.645us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s997ms PipelineXTask (index=25):(Active: 892.762us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 552.317us - CloseTime: 70.730us - GetBlockTime: 90.250us - OpenTime: 8.807us - PrepareTime: 253.680us - SinkTime: 425.895us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 811.895us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.517ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.552us - CompressTime: 0ns - ExecTime: 527.264us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 35.510us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.568us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.294ms - RowsProduced: 0 - RpcAvgTime: 12.695ms - RpcCount: 5 - RpcMaxTime: 12.810ms - RpcMinTime: 12.585ms - RpcSumTime: 63.478ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 676ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 864ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.282us - ExprTime: 0ns - GetResultsTime: 8.603us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 78ns - HashTableSize: 0 - InsertKeysToColumnTime: 659ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.109us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.460us - SerializeKeyTime: 0ns - SerializeResultTime: 11.251us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.40us - ExecTime: 37.905us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.59us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.452us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 8.739us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.422us - ExecTime: 53.572us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.545us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.473us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 26.273us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.930us - ExecTime: 41.739us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.186us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.537us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.737us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s938ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 27.844us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 44.698us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.305us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s997ms PipelineXTask (index=30):(Active: 722.848us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 331.951us - CloseTime: 59.614us - GetBlockTime: 62.644us - OpenTime: 12.354us - PrepareTime: 311.50us - SinkTime: 233.180us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 654.507us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.85ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.400us - CompressTime: 0ns - ExecTime: 318.287us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.381us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 64.166us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.192ms - RowsProduced: 0 - RpcAvgTime: 14.9ms - RpcCount: 5 - RpcMaxTime: 14.75ms - RpcMinTime: 13.949ms - RpcSumTime: 70.49ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 446ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.11us - DeserializeAndMergeTime: 0ns - ExecTime: 38.7us - ExprTime: 0ns - GetResultsTime: 7.44us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 43ns - HashTableSize: 0 - InsertKeysToColumnTime: 520ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 26.4us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.976us - SerializeKeyTime: 0ns - SerializeResultTime: 9.105us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.516us - ExecTime: 31.470us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.82us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.475us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.66us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.164us - ExecTime: 37.327us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.537us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.234us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 14.770us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.895us - ExecTime: 41.395us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.410us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.516us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.391us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s934ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.25us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.806us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.70us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s994ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.490ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.425ms - CloseTime: 13.369us - GetBlockTime: 242.487us - OpenTime: 3.93us - PrepareTime: 40.767us - SinkTime: 969.228us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.428ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.854ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.570us - BuildRows: 4.186K (4186) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 434.588us - BuildTableInsertTime: 433.390us - BuildTableTime: 454.231us - CloseTime: 0ns - ExecTime: 967.684us - InputRows: 4.185K (4185) - MemoryUsage: - BuildBlocks: 192.07 KB - BuildKeyArena: 148.00 KB - HashTable: 48.36 KB - PeakMemoryUsage: 384.42 KB - OpenTime: 7.270us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 17 - BytesReceived: 35.90 KB - CloseTime: 10.609us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 219.27us - ExecTime: 249.455us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 42.00 KB - PeakMemoryUsage: 42.00 KB - OpenTime: 16.663us - ProjectionTime: 0ns - RowsProduced: 4.185K (4185) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s340ms PipelineXTask (index=6):(Active: 1.410ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.339ms - CloseTime: 14.914us - GetBlockTime: 218.145us - OpenTime: 3.454us - PrepareTime: 46.367us - SinkTime: 950.399us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.364ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.518ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 24.430us - BuildRows: 6.289K (6289) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 447.261us - BuildTableInsertTime: 378.839us - BuildTableTime: 401.286us - CloseTime: 0ns - ExecTime: 951.93us - InputRows: 6.288K (6288) - MemoryUsage: - BuildBlocks: 288.58 KB - BuildKeyArena: 220.00 KB - HashTable: 56.57 KB - PeakMemoryUsage: 561.14 KB - OpenTime: 6.961us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 17 - BytesReceived: 51.35 KB - CloseTime: 12.373us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 246.203us - ExecTime: 232.302us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 280.00 KB - MemoryUsage: - Blocks: 42.00 KB - PeakMemoryUsage: 42.00 KB - OpenTime: 22.972us - ProjectionTime: 0ns - RowsProduced: 6.288K (6288) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s338ms PipelineXTask (index=11):(Active: 900.889us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 810.375us - CloseTime: 6.233us - GetBlockTime: 182.724us - OpenTime: 2.350us - PrepareTime: 74.817us - SinkTime: 529.542us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 868.983us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.392ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.430us - BuildRows: 4.05K (4050) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 217.471us - BuildTableInsertTime: 240.93us - BuildTableTime: 251.201us - CloseTime: 0ns - ExecTime: 534.808us - InputRows: 4.049K (4049) - MemoryUsage: - BuildBlocks: 185.84 KB - BuildKeyArena: 144.00 KB - HashTable: 47.82 KB - PeakMemoryUsage: 373.66 KB - OpenTime: 9.272us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 17 - BytesReceived: 35.62 KB - CloseTime: 5.97us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 170.396us - ExecTime: 200.828us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 153.00 KB - MemoryUsage: - Blocks: 23.00 KB - PeakMemoryUsage: 23.00 KB - OpenTime: 25.83us - ProjectionTime: 0ns - RowsProduced: 4.049K (4049) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s341ms PipelineXTask (index=16):(Active: 961.989us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 894.658us - CloseTime: 6.146us - GetBlockTime: 190.600us - OpenTime: 2.607us - PrepareTime: 50.962us - SinkTime: 574.688us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 919.487us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.639ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.830us - BuildRows: 4.021K (4021) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 292.601us - BuildTableInsertTime: 211.304us - BuildTableTime: 223.42us - CloseTime: 0ns - ExecTime: 578.417us - InputRows: 4.02K (4020) - MemoryUsage: - BuildBlocks: 184.50 KB - BuildKeyArena: 144.00 KB - HashTable: 47.71 KB - PeakMemoryUsage: 372.20 KB - OpenTime: 9.64us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 17 - BytesReceived: 35.44 KB - CloseTime: 4.690us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 171.371us - ExecTime: 193.227us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 153.00 KB - MemoryUsage: - Blocks: 42.00 KB - PeakMemoryUsage: 42.00 KB - OpenTime: 11.935us - ProjectionTime: 0ns - RowsProduced: 4.02K (4020) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s341ms PipelineXTask (index=21):(Active: 1.48ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 998.308us - CloseTime: 4.275us - GetBlockTime: 211.774us - OpenTime: 3.354us - PrepareTime: 36.862us - SinkTime: 686.935us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.19ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.930ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 63.142us - BuildRows: 4.285K (4285) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 341.156us - BuildTableInsertTime: 214.76us - BuildTableTime: 225.768us - CloseTime: 0ns - ExecTime: 691.280us - InputRows: 4.284K (4284) - MemoryUsage: - BuildBlocks: 196.62 KB - BuildKeyArena: 152.00 KB - HashTable: 48.74 KB - PeakMemoryUsage: 393.36 KB - OpenTime: 9.864us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 17 - BytesReceived: 36.14 KB - CloseTime: 3.580us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 186.574us - ExecTime: 213.113us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 171.00 KB - MemoryUsage: - Blocks: 48.00 KB - PeakMemoryUsage: 48.00 KB - OpenTime: 9.214us - ProjectionTime: 0ns - RowsProduced: 4.284K (4284) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s341ms PipelineXTask (index=26):(Active: 951.753us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 898.191us - CloseTime: 5.733us - GetBlockTime: 131.336us - OpenTime: 3.180us - PrepareTime: 38.886us - SinkTime: 673.992us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 924.42us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.799ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.685us - BuildRows: 3.929K (3929) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 328.650us - BuildTableInsertTime: 283.990us - BuildTableTime: 293.14us - CloseTime: 0ns - ExecTime: 677.377us - InputRows: 3.928K (3928) - MemoryUsage: - BuildBlocks: 180.28 KB - BuildKeyArena: 140.00 KB - HashTable: 47.35 KB - PeakMemoryUsage: 363.62 KB - OpenTime: 9.511us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 17 - BytesReceived: 33.18 KB - CloseTime: 4.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 149.194us - ExecTime: 124.741us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 153.00 KB - MemoryUsage: - Blocks: 44.00 KB - PeakMemoryUsage: 44.00 KB - OpenTime: 12.146us - ProjectionTime: 0ns - RowsProduced: 3.928K (3928) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s342ms PipelineXTask (index=31):(Active: 949.388us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 888.28us - CloseTime: 5.875us - GetBlockTime: 95.403us - OpenTime: 2.760us - PrepareTime: 46.374us - SinkTime: 706.717us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 921.901us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.481ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.365us - BuildRows: 3.988K (3988) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 278.123us - BuildTableInsertTime: 361.469us - BuildTableTime: 373.885us - CloseTime: 0ns - ExecTime: 716.633us - InputRows: 3.987K (3987) - MemoryUsage: - BuildBlocks: 182.99 KB - BuildKeyArena: 144.00 KB - HashTable: 47.58 KB - PeakMemoryUsage: 370.56 KB - OpenTime: 13.422us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 17 - BytesReceived: 33.36 KB - CloseTime: 4.978us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 240.224us - ExecTime: 101.905us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 155.00 KB - MemoryUsage: - Blocks: 42.00 KB - PeakMemoryUsage: 42.00 KB - OpenTime: 11.718us - ProjectionTime: 0ns - RowsProduced: 3.987K (3987) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s339ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.906ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.845ms - CloseTime: 2.965us - GetBlockTime: 688.883us - OpenTime: 2.436us - PrepareTime: 51.106us - SinkTime: 1.123ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.895ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.298ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.220us - BuildRows: 12.635K (12635) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 470.610us - BuildTableInsertTime: 591.730us - BuildTableTime: 627.379us - CloseTime: 0ns - ExecTime: 1.137ms - InputRows: 12.634K (12634) - MemoryUsage: - BuildBlocks: 481.18 KB - BuildKeyArena: 252.00 KB - HashTable: 113.36 KB - PeakMemoryUsage: 842.53 KB - OpenTime: 14.992us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 486ns - DeserializeAndMergeTime: 0ns - ExecTime: 694.394us - GetResultsTime: 650.942us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 72.481us - HashTableSize: 12.634K (12634) - InsertKeysToColumnTime: 301.956us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.47us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 341.786ms PipelineXTask (index=7):(Active: 20.212ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.151ms - CloseTime: 3.199us - GetBlockTime: 1.92ms - OpenTime: 2.798us - PrepareTime: 49.365us - SinkTime: 19.27ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.435ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.327ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.876us - BuildRows: 12.7K (12700) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.240ms - BuildTableInsertTime: 711.841us - BuildTableTime: 730.426us - CloseTime: 0ns - ExecTime: 19.39ms - InputRows: 12.699K (12699) - MemoryUsage: - BuildBlocks: 483.65 KB - BuildKeyArena: 256.00 KB - HashTable: 113.61 KB - PeakMemoryUsage: 849.26 KB - OpenTime: 14.892us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 696ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.100ms - GetResultsTime: 1.47ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 77.458us - HashTableSize: 12.699K (12699) - InsertKeysToColumnTime: 308.493us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.381us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 335.810ms PipelineXTask (index=12):(Active: 19.21ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 18.966ms - CloseTime: 4.591us - GetBlockTime: 17.921ms - OpenTime: 2.806us - PrepareTime: 41.607us - SinkTime: 1.14ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.966ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.660ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.250us - BuildRows: 12.662K (12662) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 362.514us - BuildTableInsertTime: 574.945us - BuildTableTime: 608.238us - CloseTime: 0ns - ExecTime: 1.23ms - InputRows: 12.661K (12661) - MemoryUsage: - BuildBlocks: 482.21 KB - BuildKeyArena: 252.00 KB - HashTable: 113.46 KB - PeakMemoryUsage: 843.66 KB - OpenTime: 12.924us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 1.304us - DeserializeAndMergeTime: 0ns - ExecTime: 17.930ms - GetResultsTime: 17.877ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 102.323us - HashTableSize: 12.661K (12661) - InsertKeysToColumnTime: 467.996us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.624us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 341.415ms PipelineXTask (index=17):(Active: 1.427ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.379ms - CloseTime: 2.75us - GetBlockTime: 596.549us - OpenTime: 3.197us - PrepareTime: 38.910us - SinkTime: 754.159us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.417ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.667ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.815us - BuildRows: 12.575K (12575) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 246.166us - BuildTableInsertTime: 456.7us - BuildTableTime: 477.828us - CloseTime: 0ns - ExecTime: 761.779us - InputRows: 12.574K (12574) - MemoryUsage: - BuildBlocks: 478.89 KB - BuildKeyArena: 252.00 KB - HashTable: 113.13 KB - PeakMemoryUsage: 840.01 KB - OpenTime: 8.887us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 574ns - DeserializeAndMergeTime: 0ns - ExecTime: 587.687us - GetResultsTime: 554.300us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 69.925us - HashTableSize: 12.574K (12574) - InsertKeysToColumnTime: 303.929us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.866us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 341.330ms PipelineXTask (index=22):(Active: 1.965ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.897ms - CloseTime: 4.136us - GetBlockTime: 965.41us - OpenTime: 1.739us - PrepareTime: 56.660us - SinkTime: 905.793us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.953ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.865ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.488us - BuildRows: 12.578K (12578) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 377.895us - BuildTableInsertTime: 456.757us - BuildTableTime: 483.163us - CloseTime: 0ns - ExecTime: 910.656us - InputRows: 12.577K (12577) - MemoryUsage: - BuildBlocks: 479.01 KB - BuildKeyArena: 252.00 KB - HashTable: 113.14 KB - PeakMemoryUsage: 840.14 KB - OpenTime: 7.531us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 749ns - DeserializeAndMergeTime: 0ns - ExecTime: 967.474us - GetResultsTime: 925.765us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 117.897us - HashTableSize: 12.577K (12577) - InsertKeysToColumnTime: 527.953us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.79us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 340.594ms PipelineXTask (index=27):(Active: 17.348ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 17.307ms - CloseTime: 2.735us - GetBlockTime: 853.740us - OpenTime: 1.444us - PrepareTime: 32.595us - SinkTime: 16.426ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.332ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.527ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.745us - BuildRows: 12.844K (12844) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.788ms - BuildTableInsertTime: 565.140us - BuildTableTime: 604.818us - CloseTime: 0ns - ExecTime: 16.428ms - InputRows: 12.843K (12843) - MemoryUsage: - BuildBlocks: 489.14 KB - BuildKeyArena: 256.00 KB - HashTable: 114.18 KB - PeakMemoryUsage: 855.31 KB - OpenTime: 4.309us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 619ns - DeserializeAndMergeTime: 0ns - ExecTime: 855.791us - GetResultsTime: 815.530us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 82.204us - HashTableSize: 12.843K (12843) - InsertKeysToColumnTime: 378.875us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.593us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 342.483ms PipelineXTask (index=32):(Active: 1.240ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.197ms - CloseTime: 1.977us - GetBlockTime: 610.635us - OpenTime: 2.67us - PrepareTime: 34.4us - SinkTime: 561.330us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.230ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.257ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.682us - BuildRows: 12.564K (12564) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 208.989us - BuildTableInsertTime: 312.478us - BuildTableTime: 328.924us - CloseTime: 0ns - ExecTime: 567.323us - InputRows: 12.563K (12563) - MemoryUsage: - BuildBlocks: 478.47 KB - BuildKeyArena: 252.00 KB - HashTable: 113.08 KB - PeakMemoryUsage: 839.55 KB - OpenTime: 7.321us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 347ns - DeserializeAndMergeTime: 0ns - ExecTime: 617.117us - GetResultsTime: 591.45us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 75.516us - HashTableSize: 12.563K (12563) - InsertKeysToColumnTime: 330.346us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.850us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 343.908ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 11.182ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 11.116ms - CloseTime: 13.288us - GetBlockTime: 641.932us - OpenTime: 2.224us - PrepareTime: 41.235us - SinkTime: 10.106ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.99ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.522ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 33.297us - BuildRows: 128.654K (128654) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.912ms - BuildTableInsertTime: 6.788ms - BuildTableTime: 7.26ms - CloseTime: 0ns - ExecTime: 10.88ms - InputRows: 128.653K (128653) - MemoryUsage: - BuildBlocks: 3.93 MB - BuildKeyArena: 2.46 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.87 MB - OpenTime: 5.657us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 66 - BytesReceived: 1.38 MB - CloseTime: 10.10us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.507ms - ExecTime: 625.128us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.08 MB - MemoryUsage: - Blocks: 384.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.616us - ProjectionTime: 0ns - RowsProduced: 128.653K (128653) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s915ms PipelineXTask (index=8):(Active: 12.284ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 12.220ms - CloseTime: 8.198us - GetBlockTime: 695.836us - OpenTime: 2.228us - PrepareTime: 43.975us - SinkTime: 11.164ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.175ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.372ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 44.495us - BuildRows: 127.532K (127532) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.117ms - BuildTableInsertTime: 7.713ms - BuildTableTime: 7.883ms - CloseTime: 0ns - ExecTime: 11.150ms - InputRows: 127.531K (127531) - MemoryUsage: - BuildBlocks: 3.89 MB - BuildKeyArena: 2.44 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.81 MB - OpenTime: 8.151us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 66 - BytesReceived: 1.36 MB - CloseTime: 5.319us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.522ms - ExecTime: 662.59us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.17 MB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.92us - ProjectionTime: 0ns - RowsProduced: 127.531K (127531) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s913ms PipelineXTask (index=13):(Active: 8.985ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 8.879ms - CloseTime: 15.39us - GetBlockTime: 627.47us - OpenTime: 2.447us - PrepareTime: 76.162us - SinkTime: 7.891ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.894ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.12ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.690us - BuildRows: 127.865K (127865) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.824ms - BuildTableInsertTime: 4.769ms - BuildTableTime: 4.910ms - CloseTime: 0ns - ExecTime: 7.898ms - InputRows: 127.864K (127864) - MemoryUsage: - BuildBlocks: 3.90 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.83 MB - OpenTime: 25.95us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 66 - BytesReceived: 1.37 MB - CloseTime: 10.850us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.402ms - ExecTime: 629.731us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.17 MB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 31.713us - ProjectionTime: 0ns - RowsProduced: 127.864K (127864) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s917ms PipelineXTask (index=18):(Active: 11.557ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 11.500ms - CloseTime: 9.209us - GetBlockTime: 718.300us - OpenTime: 2.250us - PrepareTime: 37.331us - SinkTime: 10.453ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.468ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.646ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.633us - BuildRows: 128.03K (128030) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.715ms - BuildTableInsertTime: 7.321ms - BuildTableTime: 7.572ms - CloseTime: 0ns - ExecTime: 10.436ms - InputRows: 128.029K (128029) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.84 MB - OpenTime: 6.303us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 66 - BytesReceived: 1.37 MB - CloseTime: 6.477us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.594ms - ExecTime: 682.321us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.08 MB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.374us - ProjectionTime: 0ns - RowsProduced: 128.029K (128029) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s919ms PipelineXTask (index=23):(Active: 13.301ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 13.222ms - CloseTime: 23.224us - GetBlockTime: 812.398us - OpenTime: 2.814us - PrepareTime: 42.156us - SinkTime: 12.39ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 13.204ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.629ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 30.573us - BuildRows: 127.837K (127837) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.94ms - BuildTableInsertTime: 8.339ms - BuildTableTime: 8.781ms - CloseTime: 0ns - ExecTime: 12.29ms - InputRows: 127.836K (127836) - MemoryUsage: - BuildBlocks: 3.90 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.83 MB - OpenTime: 13.189us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 66 - BytesReceived: 1.37 MB - CloseTime: 21.18us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.433ms - ExecTime: 802.385us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.07 MB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.429us - ProjectionTime: 0ns - RowsProduced: 127.836K (127836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s916ms PipelineXTask (index=28):(Active: 13.65ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 12.992ms - CloseTime: 26.376us - GetBlockTime: 758.37us - OpenTime: 2.510us - PrepareTime: 35.113us - SinkTime: 11.885ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.943ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.611ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 44.949us - BuildRows: 127.388K (127388) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.213ms - BuildTableInsertTime: 8.212ms - BuildTableTime: 8.483ms - CloseTime: 0ns - ExecTime: 11.859ms - InputRows: 127.387K (127387) - MemoryUsage: - BuildBlocks: 3.89 MB - BuildKeyArena: 2.44 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.81 MB - OpenTime: 4.227us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 66 - BytesReceived: 1.37 MB - CloseTime: 22.631us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.417ms - ExecTime: 755.144us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1008.00 KB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.414us - ProjectionTime: 0ns - RowsProduced: 127.387K (127387) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s919ms PipelineXTask (index=33):(Active: 8.373ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 8.303ms - CloseTime: 21.158us - GetBlockTime: 666.745us - OpenTime: 2.820us - PrepareTime: 35.804us - SinkTime: 7.338ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.281ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.579ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.397us - BuildRows: 128.325K (128325) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.537ms - BuildTableInsertTime: 4.495ms - BuildTableTime: 4.667ms - CloseTime: 0ns - ExecTime: 7.322ms - InputRows: 128.324K (128324) - MemoryUsage: - BuildBlocks: 3.92 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.85 MB - OpenTime: 4.306us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 66 - BytesReceived: 1.38 MB - CloseTime: 7.806us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.471ms - ExecTime: 645.366us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.08 MB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.639us - ProjectionTime: 0ns - RowsProduced: 128.324K (128324) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s919ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=4):(Active: 60.476ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 60.396ms - CloseTime: 12.884us - GetBlockTime: 81.199us - OpenTime: 2.966us - PrepareTime: 58.102us - SinkTime: 60.235ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.670ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.582ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 4.568us - DeserializeAndMergeTime: 125.76us - ExecTime: 60.259ms - ExprTime: 0ns - HashTableComputeTime: 3.659ms - HashTableEmplaceTime: 3.203ms - HashTableInputCount: 12.634K (12634) - InputRows: 12.634K (12634) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 60.211ms - OpenTime: 21.963us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 7.28us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 99.303us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 504.00 KB - PeakMemoryUsage: 505.50 KB - OpenTime: 17.441us - ProjectionTime: 0ns - RowsProduced: 12.634K (12634) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 275.132ms PipelineXTask (index=9):(Active: 5.388ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.261ms - CloseTime: 24.324us - GetBlockTime: 71.91us - OpenTime: 2.833us - PrepareTime: 92.636us - SinkTime: 5.119ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.343ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.435ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 4.917us - DeserializeAndMergeTime: 130.894us - ExecTime: 5.159ms - ExprTime: 0ns - HashTableComputeTime: 4.860ms - HashTableEmplaceTime: 4.304ms - 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.94ms - OpenTime: 41.738us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 17.710us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 116.259us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 36.331us - ProjectionTime: 0ns - RowsProduced: 12.699K (12699) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 323.139ms PipelineXTask (index=14):(Active: 5.226ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.157ms - CloseTime: 10.409us - GetBlockTime: 69.398us - OpenTime: 3.140us - PrepareTime: 48.922us - SinkTime: 5.7ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.196ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.607ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.7us - DeserializeAndMergeTime: 144.332us - ExecTime: 5.21ms - ExprTime: 0ns - HashTableComputeTime: 4.700ms - HashTableEmplaceTime: 4.109ms - 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.985ms - OpenTime: 16.523us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 7.254us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 87.960us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 17.971us - ProjectionTime: 0ns - RowsProduced: 12.661K (12661) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 322.313ms PipelineXTask (index=19):(Active: 5.279ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 5.208ms - CloseTime: 13.571us - GetBlockTime: 72.526us - OpenTime: 3.174us - PrepareTime: 48.685us - SinkTime: 5.68ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.223ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.80ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.180us - DeserializeAndMergeTime: 123.545us - ExecTime: 5.86ms - ExprTime: 0ns - HashTableComputeTime: 4.845ms - HashTableEmplaceTime: 4.225ms - HashTableInputCount: 12.574K (12574) - InputRows: 12.574K (12574) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.49ms - OpenTime: 20.85us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 9.824us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 88.34us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 13.702us - ProjectionTime: 0ns - RowsProduced: 12.574K (12574) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 322.447ms PipelineXTask (index=24):(Active: 4.908ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.800ms - CloseTime: 14.374us - GetBlockTime: 78.157us - OpenTime: 3.584us - PrepareTime: 82.479us - SinkTime: 4.658ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.874ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.146ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 4.333us - DeserializeAndMergeTime: 143.753us - ExecTime: 4.697ms - ExprTime: 0ns - HashTableComputeTime: 4.454ms - HashTableEmplaceTime: 3.984ms - 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.642ms - OpenTime: 36.807us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 8.803us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 104.537us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 28.661us - ProjectionTime: 0ns - RowsProduced: 12.577K (12577) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 318.713ms PipelineXTask (index=29):(Active: 5.101ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 5.28ms - CloseTime: 9.80us - GetBlockTime: 92.637us - OpenTime: 3.27us - PrepareTime: 56.292us - SinkTime: 4.869ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.75ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.315ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 1.891us - DeserializeAndMergeTime: 137.954us - ExecTime: 4.890ms - ExprTime: 0ns - HashTableComputeTime: 4.619ms - HashTableEmplaceTime: 4.145ms - 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.853ms - OpenTime: 21.821us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 6.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 99.461us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 7.723us - ProjectionTime: 0ns - RowsProduced: 12.843K (12843) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 319.457ms PipelineXTask (index=34):(Active: 5.10ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.929ms - CloseTime: 21.193us - GetBlockTime: 62.834us - OpenTime: 2.620us - PrepareTime: 52.9us - SinkTime: 4.804ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.958ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.523ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 6.899us - DeserializeAndMergeTime: 120.635us - ExecTime: 4.828ms - ExprTime: 0ns - HashTableComputeTime: 4.509ms - HashTableEmplaceTime: 4.2ms - 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.780ms - OpenTime: 21.299us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 12.55us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.206us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 840.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.50 KB - OpenTime: 14.234us - ProjectionTime: 0ns - RowsProduced: 12.563K (12563) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 316.789ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 787.414us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 418.895us - CloseTime: 63.395us - GetBlockTime: 73.686us - OpenTime: 8.667us - PrepareTime: 289.868us - SinkTime: 309.799us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 715.68us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.808ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.137us - CompressTime: 0ns - ExecTime: 422.876us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.503us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 98.601us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.438ms - RowsProduced: 0 - RpcAvgTime: 1.151ms - RpcCount: 7 - RpcMaxTime: 1.254ms - RpcMinTime: 1.65ms - RpcSumTime: 8.57ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 568ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.433us - DeserializeAndMergeTime: 0ns - ExecTime: 42.851us - ExprTime: 0ns - GetResultsTime: 12.15us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 94ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.297us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.891us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 3.206us - SerializeKeyTime: 0ns - SerializeResultTime: 15.320us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.994us - ExecTime: 31.947us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.553us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.281us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.792us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 15.941us - ExecTime: 51.680us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.477us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.716us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.290us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.960us - ExecTime: 41.741us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.242us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 5.245us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 14.232us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s840ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.852us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 38.313us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.161us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s66ms PipelineXTask (index=5):(Active: 711.236us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 321.922us - CloseTime: 114.197us - GetBlockTime: 43.914us - OpenTime: 14.298us - PrepareTime: 253.972us - SinkTime: 229.860us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 588.668us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.62ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.720us - CompressTime: 0ns - ExecTime: 326.229us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 14.93us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 72.972us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.901ms - RowsProduced: 0 - RpcAvgTime: 621.906us - RpcCount: 7 - RpcMaxTime: 686.102us - RpcMinTime: 521.64us - RpcSumTime: 4.353ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 482ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.464us - DeserializeAndMergeTime: 0ns - ExecTime: 36.817us - ExprTime: 0ns - GetResultsTime: 6.856us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 32ns - HashTableSize: 0 - InsertKeysToColumnTime: 474ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.892us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.367us - SerializeKeyTime: 0ns - SerializeResultTime: 8.758us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 41.640us - ExecTime: 66.916us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.360us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.575us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 4.736us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 5.169us - ExecTime: 26.526us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.56us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.412us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.440us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 10.273us - ExecTime: 37.447us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.646us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.166us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.998us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s804ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 22.203us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.199us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.295us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s67ms PipelineXTask (index=10):(Active: 716.462us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 422.567us - CloseTime: 28.516us - GetBlockTime: 68.78us - OpenTime: 8.262us - PrepareTime: 251.463us - SinkTime: 323.148us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 679.692us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.297ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.667us - CompressTime: 0ns - ExecTime: 391.970us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.161us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.836us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.54ms - RowsProduced: 0 - RpcAvgTime: 838.533us - RpcCount: 7 - RpcMaxTime: 958.121us - RpcMinTime: 723.969us - RpcSumTime: 5.869ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 612ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 351ns - DeserializeAndMergeTime: 0ns - ExecTime: 31.353us - ExprTime: 0ns - GetResultsTime: 7.949us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 52ns - HashTableSize: 0 - InsertKeysToColumnTime: 590ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 18.350us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.891us - SerializeKeyTime: 0ns - SerializeResultTime: 10.582us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.742us - ExecTime: 38.760us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.721us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.836us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 9.282us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 3.536us - ExecTime: 29.411us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 7.608us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.396us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.464us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.548us - ExecTime: 37.330us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.95us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 4.724us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.934us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s852ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.295us - 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: 21.55us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s63ms PipelineXTask (index=15):(Active: 820.87us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 512.297us - CloseTime: 60.484us - GetBlockTime: 84.273us - OpenTime: 6.684us - PrepareTime: 235.364us - SinkTime: 399.941us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 752.95us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.589ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 29.522us - CompressTime: 0ns - ExecTime: 491.529us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 17.758us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 62.710us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.555ms - RowsProduced: 0 - RpcAvgTime: 1.250ms - RpcCount: 7 - RpcMaxTime: 1.707ms - RpcMinTime: 576.593us - RpcSumTime: 8.753ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 310ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.152us - DeserializeAndMergeTime: 0ns - ExecTime: 44.732us - ExprTime: 0ns - GetResultsTime: 9.940us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 71ns - HashTableSize: 0 - InsertKeysToColumnTime: 480ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 28.681us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 3.478us - SerializeKeyTime: 0ns - SerializeResultTime: 12.816us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.804us - ExecTime: 52.173us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 23.46us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 11.633us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.207us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.472us - ExecTime: 36.93us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 7.299us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.804us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 17.464us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 6.924us - ExecTime: 35.755us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 11.642us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.956us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.369us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s841ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.528us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.604us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.601us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s63ms PipelineXTask (index=20):(Active: 639.11us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 285.295us - CloseTime: 43.470us - GetBlockTime: 56.595us - OpenTime: 9.185us - PrepareTime: 270.464us - SinkTime: 195.203us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 587.480us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 28.159ms DATA_STREAM_SINK_OPERATOR (id=136,dst_id=136): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.820us - CompressTime: 0ns - ExecTime: 296.304us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 13.965us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 84.777us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.98ms - RowsProduced: 0 - RpcAvgTime: 632.537us - RpcCount: 7 - RpcMaxTime: 693.123us - RpcMinTime: 535.932us - RpcSumTime: 4.427ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 542ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=135): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 710ns - DeserializeAndMergeTime: 0ns - ExecTime: 40.70us - ExprTime: 0ns - GetResultsTime: 5.153us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 112ns - HashTableSize: 0 - InsertKeysToColumnTime: 421ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 29.702us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.303us - SerializeKeyTime: 0ns - SerializeResultTime: 8.112us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=134): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.356us - ExecTime: 29.852us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.501us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.104us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.656us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=133): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.372us - ExecTime: 36.649us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 17.393us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.83us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 11.292us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=132): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 4.790us - ExecTime: 32.308us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 8.770us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.916us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 10.160us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s839ms EXCHANGE_OPERATOR (id=131): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.134us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.734us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.437us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s65ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 913.733us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 837.703us - CloseTime: 22.280us - GetBlockTime: 141.601us - OpenTime: 1.844us - PrepareTime: 47.523us - SinkTime: 593.675us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 865.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.415ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.539us - BuildRows: 3.853K (3853) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 238.438us - BuildTableInsertTime: 272.337us - BuildTableTime: 288.270us - CloseTime: 0ns - ExecTime: 600.803us - InputRows: 3.852K (3852) - MemoryUsage: - BuildBlocks: 176.79 KB - BuildKeyArena: 136.00 KB - HashTable: 47.05 KB - PeakMemoryUsage: 355.84 KB - OpenTime: 11.592us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 19 - BytesReceived: 46.20 KB - CloseTime: 11.777us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 218.594us - ExecTime: 155.937us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 107.00 KB - MemoryUsage: - Blocks: 23.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.316us - ProjectionTime: 0ns - RowsProduced: 3.852K (3852) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s322ms PipelineXTask (index=6):(Active: 1.224ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 1.166ms - CloseTime: 7.705us - GetBlockTime: 112.237us - OpenTime: 2.107us - PrepareTime: 42.266us - SinkTime: 937.796us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.170ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.262ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.12us - BuildRows: 5.708K (5708) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 310.214us - BuildTableInsertTime: 520.615us - BuildTableTime: 539.66us - CloseTime: 0ns - ExecTime: 944.177us - InputRows: 5.707K (5707) - MemoryUsage: - BuildBlocks: 261.94 KB - BuildKeyArena: 200.00 KB - HashTable: 54.30 KB - PeakMemoryUsage: 512.23 KB - OpenTime: 10.211us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 19 - BytesReceived: 65.65 KB - CloseTime: 5.935us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 198.93us - ExecTime: 121.768us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 151.00 KB - MemoryUsage: - Blocks: 42.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.348us - ProjectionTime: 0ns - RowsProduced: 5.707K (5707) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s323ms PipelineXTask (index=11):(Active: 916.380us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 850.376us - CloseTime: 6.177us - GetBlockTime: 105.686us - OpenTime: 2.487us - PrepareTime: 50.761us - SinkTime: 660.632us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 887.120us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.451ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.109us - BuildRows: 3.994K (3994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 353.701us - BuildTableInsertTime: 242.451us - BuildTableTime: 265.747us - CloseTime: 0ns - ExecTime: 665.9us - InputRows: 3.993K (3993) - MemoryUsage: - BuildBlocks: 183.26 KB - BuildKeyArena: 144.00 KB - HashTable: 47.61 KB - PeakMemoryUsage: 370.86 KB - OpenTime: 8.419us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 19 - BytesReceived: 48.77 KB - CloseTime: 4.939us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 246.126us - ExecTime: 124.642us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 111.00 KB - MemoryUsage: - Blocks: 23.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 24.967us - ProjectionTime: 0ns - RowsProduced: 3.993K (3993) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s323ms PipelineXTask (index=16):(Active: 849.265us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 796.768us - CloseTime: 7.660us - GetBlockTime: 83.842us - OpenTime: 2.80us - PrepareTime: 37.117us - SinkTime: 627.452us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 818.153us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.466ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.769us - BuildRows: 3.79K (3790) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 172.868us - BuildTableInsertTime: 385.728us - BuildTableTime: 398.64us - CloseTime: 0ns - ExecTime: 633.89us - InputRows: 3.789K (3789) - MemoryUsage: - BuildBlocks: 173.90 KB - BuildKeyArena: 136.00 KB - HashTable: 46.81 KB - PeakMemoryUsage: 352.70 KB - OpenTime: 9.424us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 19 - BytesReceived: 46.16 KB - CloseTime: 5.808us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 195.673us - ExecTime: 90.154us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 105.00 KB - MemoryUsage: - Blocks: 21.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 9.881us - ProjectionTime: 0ns - RowsProduced: 3.789K (3789) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s324ms PipelineXTask (index=21):(Active: 757.598us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 678.758us - CloseTime: 6.899us - GetBlockTime: 78.104us - OpenTime: 1.610us - PrepareTime: 65.254us - SinkTime: 520.639us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 729.973us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.551ms HASH_JOIN_SINK_OPERATOR (id=134): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.577us - BuildRows: 4.506K (4506) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 263.361us - BuildTableInsertTime: 184.112us - BuildTableTime: 206.601us - CloseTime: 0ns - ExecTime: 530.662us - InputRows: 4.505K (4505) - MemoryUsage: - BuildBlocks: 206.76 KB - BuildKeyArena: 160.00 KB - HashTable: 49.61 KB - PeakMemoryUsage: 412.36 KB - OpenTime: 14.263us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=111): - BlocksProduced: 19 - BytesReceived: 53.13 KB - CloseTime: 5.823us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 230.436us - ExecTime: 88.572us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 131.00 KB - MemoryUsage: - Blocks: 54.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.61us - ProjectionTime: 0ns - RowsProduced: 4.505K (4505) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s326ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 1.137ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.97ms - CloseTime: 2.424us - GetBlockTime: 607.449us - OpenTime: 1.454us - PrepareTime: 32.480us - SinkTime: 476.49us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.130ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 733.89us HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.920us - BuildRows: 12.817K (12817) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 169.471us - BuildTableInsertTime: 270.222us - BuildTableTime: 284.768us - CloseTime: 0ns - ExecTime: 479.988us - InputRows: 12.816K (12816) - MemoryUsage: - BuildBlocks: 488.11 KB - BuildKeyArena: 256.00 KB - HashTable: 114.07 KB - PeakMemoryUsage: 854.17 KB - OpenTime: 4.766us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 652ns - DeserializeAndMergeTime: 0ns - ExecTime: 614.448us - GetResultsTime: 588.901us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 94.958us - HashTableSize: 12.816K (12816) - InsertKeysToColumnTime: 277.346us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.714us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s655ms PipelineXTask (index=7):(Active: 1.400ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.348ms - CloseTime: 1.606us - GetBlockTime: 690.850us - OpenTime: 1.358us - PrepareTime: 46.3us - SinkTime: 638.227us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.392ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 998.262us HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.446us - BuildRows: 12.762K (12762) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 229.251us - BuildTableInsertTime: 366.331us - BuildTableTime: 382.542us - CloseTime: 0ns - ExecTime: 651.128us - InputRows: 12.761K (12761) - MemoryUsage: - BuildBlocks: 486.01 KB - BuildKeyArena: 256.00 KB - HashTable: 113.86 KB - PeakMemoryUsage: 851.86 KB - OpenTime: 14.207us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 506ns - DeserializeAndMergeTime: 0ns - ExecTime: 697.570us - GetResultsTime: 671.512us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 91.980us - HashTableSize: 12.761K (12761) - InsertKeysToColumnTime: 367.280us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.577us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s657ms PipelineXTask (index=12):(Active: 1.89ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.35ms - CloseTime: 5.587us - GetBlockTime: 549.735us - OpenTime: 858ns - PrepareTime: 33.405us - SinkTime: 461.784us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.78ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 706.925us HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.181us - BuildRows: 12.789K (12789) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 152.178us - BuildTableInsertTime: 270.548us - BuildTableTime: 280.531us - CloseTime: 0ns - ExecTime: 469.63us - InputRows: 12.788K (12788) - MemoryUsage: - BuildBlocks: 487.04 KB - BuildKeyArena: 256.00 KB - HashTable: 113.96 KB - PeakMemoryUsage: 853.00 KB - OpenTime: 8.55us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 359ns - DeserializeAndMergeTime: 0ns - ExecTime: 555.221us - GetResultsTime: 534.588us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 98.570us - HashTableSize: 12.788K (12788) - InsertKeysToColumnTime: 285.632us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.694us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s659ms PipelineXTask (index=17):(Active: 2.294ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.252ms - CloseTime: 3.827us - GetBlockTime: 1.246ms - OpenTime: 1.41us - PrepareTime: 34.282us - SinkTime: 977.758us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.283ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 765.291us HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.594us - BuildRows: 12.729K (12729) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 311.237us - BuildTableInsertTime: 573.567us - BuildTableTime: 609.201us - CloseTime: 0ns - ExecTime: 984.230us - InputRows: 12.728K (12728) - MemoryUsage: - BuildBlocks: 484.76 KB - BuildKeyArena: 256.00 KB - HashTable: 113.73 KB - PeakMemoryUsage: 850.48 KB - OpenTime: 10.845us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 1.224us - DeserializeAndMergeTime: 0ns - ExecTime: 1.249ms - GetResultsTime: 1.191ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 170.1us - HashTableSize: 12.728K (12728) - InsertKeysToColumnTime: 640.191us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.593us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s676ms PipelineXTask (index=22):(Active: 3.285ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.234ms - CloseTime: 2.838us - GetBlockTime: 1.246ms - OpenTime: 1.504us - PrepareTime: 43.211us - SinkTime: 1.962ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.275ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.528ms HASH_JOIN_SINK_OPERATOR (id=133): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.262us - BuildRows: 12.776K (12776) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 796.126us - BuildTableInsertTime: 1.70ms - BuildTableTime: 1.99ms - CloseTime: 0ns - ExecTime: 1.968ms - InputRows: 12.775K (12775) - MemoryUsage: - BuildBlocks: 486.55 KB - BuildKeyArena: 256.00 KB - HashTable: 113.91 KB - PeakMemoryUsage: 852.45 KB - OpenTime: 10.222us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns AGGREGATION_OPERATOR (id=115): - BlocksProduced: 4 - CloseTime: 688ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.252ms - GetResultsTime: 1.173ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 155.363us - HashTableSize: 12.775K (12775) - InsertKeysToColumnTime: 639.835us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.306us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 3s675ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 8.701ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 8.642ms - CloseTime: 12.599us - GetBlockTime: 534.371us - OpenTime: 3.685us - PrepareTime: 33.1us - SinkTime: 7.746ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.611ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.740ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.855us - BuildRows: 128.005K (128005) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.57ms - BuildTableInsertTime: 4.312ms - BuildTableTime: 4.539ms - CloseTime: 0ns - ExecTime: 7.730ms - InputRows: 128.004K (128004) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.84 MB - OpenTime: 6.175us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 42 - BytesReceived: 282.20 KB - CloseTime: 9.158us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 417.593us - ExecTime: 521.763us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.53 MB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 240.00 KB - OpenTime: 11.764us - ProjectionTime: 0ns - RowsProduced: 128.004K (128004) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s911ms PipelineXTask (index=8):(Active: 10.174ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 10.78ms - CloseTime: 32.938us - GetBlockTime: 664.477us - OpenTime: 1.855us - PrepareTime: 52.560us - SinkTime: 9.94ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.63ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.66ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 22.905us - BuildRows: 128.363K (128363) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.754ms - BuildTableInsertTime: 5.880ms - BuildTableTime: 6.189ms - CloseTime: 0ns - ExecTime: 9.77ms - InputRows: 128.362K (128362) - MemoryUsage: - BuildBlocks: 3.92 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.86 MB - OpenTime: 5.114us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 42 - BytesReceived: 283.28 KB - CloseTime: 14.818us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 494.179us - ExecTime: 660.356us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.39 MB - MemoryUsage: - Blocks: 288.00 KB - PeakMemoryUsage: 288.00 KB - OpenTime: 28.940us - ProjectionTime: 0ns - RowsProduced: 128.362K (128362) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s908ms PipelineXTask (index=13):(Active: 8.822ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 8.740ms - CloseTime: 9.468us - GetBlockTime: 537.625us - OpenTime: 1.692us - PrepareTime: 60.878us - SinkTime: 7.894ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.737ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.908ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.11us - BuildRows: 128.241K (128241) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.587ms - BuildTableInsertTime: 4.2ms - BuildTableTime: 4.163ms - CloseTime: 0ns - ExecTime: 7.878ms - InputRows: 128.24K (128240) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.85 MB - OpenTime: 6.353us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 42 - BytesReceived: 280.45 KB - CloseTime: 6.846us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 511.871us - ExecTime: 527.611us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.48 MB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 240.00 KB - OpenTime: 26.194us - ProjectionTime: 0ns - RowsProduced: 128.24K (128240) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s911ms PipelineXTask (index=18):(Active: 8.458ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 8.399ms - CloseTime: 6.797us - GetBlockTime: 736.767us - OpenTime: 2.266us - PrepareTime: 42.804us - SinkTime: 7.351ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.375ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.201ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.162us - BuildRows: 127.916K (127916) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.872ms - BuildTableInsertTime: 4.117ms - BuildTableTime: 4.335ms - CloseTime: 0ns - ExecTime: 7.351ms - InputRows: 127.915K (127915) - MemoryUsage: - BuildBlocks: 3.90 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.83 MB - OpenTime: 17.614us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 42 - BytesReceived: 278.43 KB - CloseTime: 4.724us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 599.702us - ExecTime: 713.899us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.41 MB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 10.665us - ProjectionTime: 0ns - RowsProduced: 127.915K (127915) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s898ms PipelineXTask (index=23):(Active: 11.129ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 11.67ms - CloseTime: 11.760us - GetBlockTime: 525.475us - OpenTime: 2.288us - PrepareTime: 40.188us - SinkTime: 10.260ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 35 - NumBlockedTimes: 37 - NumScheduleTimes: 37 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.49ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.219ms HASH_JOIN_SINK_OPERATOR (id=132): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.821us - BuildRows: 128.235K (128235) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.96ms - BuildTableInsertTime: 6.739ms - BuildTableTime: 7.24ms - CloseTime: 0ns - ExecTime: 10.249ms - InputRows: 128.234K (128234) - MemoryUsage: - BuildBlocks: 3.91 MB - BuildKeyArena: 2.45 MB - HashTable: 1.49 MB - PeakMemoryUsage: 7.85 MB - OpenTime: 6.225us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=122): - BlocksProduced: 42 - BytesReceived: 282.10 KB - CloseTime: 8.578us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 480.62us - ExecTime: 501.524us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.40 MB - MemoryUsage: - Blocks: 480.00 KB - PeakMemoryUsage: 480.00 KB - OpenTime: 9.750us - ProjectionTime: 0ns - RowsProduced: 128.234K (128234) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18s911ms Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=4):(Active: 5.855ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 5.754ms - CloseTime: 18.600us - GetBlockTime: 95.174us - OpenTime: 2.985us - PrepareTime: 71.749us - SinkTime: 5.569ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.815ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 487.145us AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.91us - DeserializeAndMergeTime: 147.250us - ExecTime: 5.586ms - ExprTime: 0ns - HashTableComputeTime: 5.306ms - HashTableEmplaceTime: 4.515ms - HashTableInputCount: 12.816K (12816) - InputRows: 12.816K (12816) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 5.534ms - OpenTime: 21.421us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 10 - BytesReceived: 211.43 KB - CloseTime: 15.551us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 485.214us - ExecTime: 133.765us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 31.540us - ProjectionTime: 0ns - RowsProduced: 12.816K (12816) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s649ms PipelineXTask (index=9):(Active: 5.570ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.488ms - CloseTime: 19.195us - GetBlockTime: 87.836us - OpenTime: 1.889us - PrepareTime: 57.329us - SinkTime: 5.326ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.535ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.885ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.683us - DeserializeAndMergeTime: 134.637us - ExecTime: 5.349ms - ExprTime: 0ns - HashTableComputeTime: 5.79ms - HashTableEmplaceTime: 4.503ms - 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.295ms - OpenTime: 24.364us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 10 - BytesReceived: 210.79 KB - CloseTime: 15.354us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 416.522us - ExecTime: 117.303us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 20.627us - ProjectionTime: 0ns - RowsProduced: 12.761K (12761) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s649ms PipelineXTask (index=14):(Active: 5.709ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.607ms - CloseTime: 8.267us - GetBlockTime: 116.354us - OpenTime: 2.575us - PrepareTime: 84.108us - SinkTime: 5.404ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.680ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 860.217us AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 2.463us - DeserializeAndMergeTime: 135.720us - ExecTime: 5.436ms - ExprTime: 0ns - HashTableComputeTime: 5.163ms - HashTableEmplaceTime: 4.503ms - 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.375ms - OpenTime: 34.156us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 10 - BytesReceived: 209.50 KB - CloseTime: 4.852us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 491.560us - ExecTime: 130.703us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 17.560us - ProjectionTime: 0ns - RowsProduced: 12.788K (12788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s653ms PipelineXTask (index=19):(Active: 6.659ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.567ms - CloseTime: 25.833us - GetBlockTime: 154.795us - OpenTime: 3.808us - PrepareTime: 57.460us - SinkTime: 6.295ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.608ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 550.620us AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 9.396us - DeserializeAndMergeTime: 204.651us - ExecTime: 6.313ms - ExprTime: 0ns - HashTableComputeTime: 5.911ms - HashTableEmplaceTime: 5.56ms - HashTableInputCount: 12.728K (12728) - InputRows: 12.728K (12728) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 6.236ms - OpenTime: 15.304us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 10 - BytesReceived: 210.35 KB - CloseTime: 13.294us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 418.426us - ExecTime: 164.935us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.29us - ProjectionTime: 0ns - RowsProduced: 12.728K (12728) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s670ms PipelineXTask (index=24):(Active: 6.564ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 6.464ms - CloseTime: 21.400us - GetBlockTime: 196.334us - OpenTime: 3.80us - PrepareTime: 70.356us - SinkTime: 6.168ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.518ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.533ms AGGREGATION_SINK_OPERATOR (id=115): - BuildTime: 0ns - CloseTime: 12.772us - DeserializeAndMergeTime: 254.201us - ExecTime: 6.222ms - ExprTime: 0ns - HashTableComputeTime: 5.776ms - HashTableEmplaceTime: 4.955ms - HashTableInputCount: 12.775K (12775) - InputRows: 12.775K (12775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 383.98 KB - PeakMemoryUsage: 1.78 MB - SerializeKeyArena: 1.40 MB - MergeTime: 6.129ms - OpenTime: 47.579us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=114): - BlocksProduced: 10 - BytesReceived: 210.52 KB - CloseTime: 7.177us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 402.584us - ExecTime: 201.776us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 8.520us - ProjectionTime: 0ns - RowsProduced: 12.775K (12775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s671ms Fragment 102: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 458.171us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 267.720us - CloseTime: 17.369us - GetBlockTime: 3.98us - OpenTime: 2.315us - PrepareTime: 163.698us - SinkTime: 243.478us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 432.977us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 693.220us DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.798us - CompressTime: 0ns - ExecTime: 324.649us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 12.995us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.666us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.341ms - RowsProduced: 0 - RpcAvgTime: 536.123us - RpcCount: 7 - RpcMaxTime: 589.715us - RpcMinTime: 464.248us - RpcSumTime: 3.752ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 531ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 578ns - ExecTime: 6.159us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.651us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.769us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.296us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 44.45us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s995ms PipelineXTask (index=1):(Active: 432.993us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 225.594us - CloseTime: 14.549us - GetBlockTime: 2.856us - OpenTime: 2.677us - PrepareTime: 183.742us - SinkTime: 205.126us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 411.180us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.329ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.832us - CompressTime: 0ns - ExecTime: 316.950us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.890us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 104.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.138ms - RowsProduced: 0 - RpcAvgTime: 490.941us - RpcCount: 7 - RpcMaxTime: 517.763us - RpcMinTime: 450.706us - RpcSumTime: 3.436ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 466ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 417ns - ExecTime: 5.328us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.148us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.653us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.502us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.92us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s995ms PipelineXTask (index=2):(Active: 426.211us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 222.639us - CloseTime: 13.659us - GetBlockTime: 2.789us - OpenTime: 4.58us - PrepareTime: 176.489us - SinkTime: 198.726us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 402.94us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 998.336us DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.236us - CompressTime: 0ns - ExecTime: 307.364us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.732us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 99.879us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.941ms - RowsProduced: 0 - RpcAvgTime: 547.220us - RpcCount: 7 - RpcMaxTime: 627.708us - RpcMinTime: 459.10us - RpcSumTime: 3.830ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 254ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 445ns - ExecTime: 5.161us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.65us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.436us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.575us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.327us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s995ms PipelineXTask (index=3):(Active: 473.642us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 254.352us - CloseTime: 14.615us - GetBlockTime: 2.461us - OpenTime: 3.112us - PrepareTime: 194.545us - SinkTime: 232.31us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 450.210us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.568ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.614us - CompressTime: 0ns - ExecTime: 320.900us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 5.399us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 78.517us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.710ms - RowsProduced: 0 - RpcAvgTime: 476.907us - RpcCount: 7 - RpcMaxTime: 509.721us - RpcMinTime: 452.923us - RpcSumTime: 3.338ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 309ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 318ns - ExecTime: 12.225us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 10.951us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.19us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.23us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.373us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s995ms PipelineXTask (index=4):(Active: 398.60us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 218.440us - CloseTime: 20.289us - GetBlockTime: 2.933us - OpenTime: 2.480us - PrepareTime: 150.376us - SinkTime: 197.357us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 370.590us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.460ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.419us - CompressTime: 0ns - ExecTime: 279.74us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 5.432us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 65.437us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.500ms - RowsProduced: 0 - RpcAvgTime: 480.856us - RpcCount: 7 - RpcMaxTime: 512.905us - RpcMinTime: 455.832us - RpcSumTime: 3.365ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 267ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 345ns - ExecTime: 7.694us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.321us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.18us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.241us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s995ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 421.85us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 173.300us - CloseTime: 20.27us - GetBlockTime: 5.12us - OpenTime: 4.643us - PrepareTime: 214.490us - SinkTime: 129.950us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 388.939us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.863ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.351us - CompressTime: 0ns - ExecTime: 278.826us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 9.428us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 137.355us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.721ms - RowsProduced: 0 - RpcAvgTime: 70.751ms - RpcCount: 5 - RpcMaxTime: 70.782ms - RpcMinTime: 70.738ms - RpcSumTime: 353.758ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 692ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 250ns - ExecTime: 6.604us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.983us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.292us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.849us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.882us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s995ms PipelineXTask (index=1):(Active: 275.410us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 135.902us - CloseTime: 13.254us - GetBlockTime: 2.643us - OpenTime: 4.240us - PrepareTime: 115.579us - SinkTime: 108.604us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 253.654us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.71ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.206us - CompressTime: 0ns - ExecTime: 176.673us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 6.414us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 59.273us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.646ms - RowsProduced: 0 - RpcAvgTime: 70.575ms - RpcCount: 5 - RpcMaxTime: 70.671ms - RpcMinTime: 70.465ms - RpcSumTime: 352.877ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 449ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 358ns - ExecTime: 4.289us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.258us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.480us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.252us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.315us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s996ms PipelineXTask (index=2):(Active: 366.906us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 148.369us - CloseTime: 12.788us - GetBlockTime: 3.468us - OpenTime: 4.566us - PrepareTime: 194.515us - SinkTime: 111.784us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 344.552us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.516ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.983us - CompressTime: 0ns - ExecTime: 169.815us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 15.405us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 49.796us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.858ms - RowsProduced: 0 - RpcAvgTime: 70.794ms - RpcCount: 5 - RpcMaxTime: 70.817ms - RpcMinTime: 70.774ms - RpcSumTime: 353.971ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 906ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 186ns - ExecTime: 5.674us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.116us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.223us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.492us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.521us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s996ms PipelineXTask (index=3):(Active: 362.377us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 200.384us - CloseTime: 47.290us - GetBlockTime: 5.223us - OpenTime: 4.80us - PrepareTime: 104.285us - SinkTime: 156.531us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 305.898us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.910ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 34.449us - CompressTime: 0ns - ExecTime: 247.472us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 10.730us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 57.207us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.793ms - RowsProduced: 0 - RpcAvgTime: 70.758ms - RpcCount: 5 - RpcMaxTime: 70.809ms - RpcMinTime: 70.739ms - RpcSumTime: 353.792ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 886ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 773ns - ExecTime: 6.98us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.201us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.115us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.493us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.524us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s996ms PipelineXTask (index=4):(Active: 273.308us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 135.614us - CloseTime: 14.967us - GetBlockTime: 2.963us - OpenTime: 5.398us - PrepareTime: 112.25us - SinkTime: 108.911us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 250.847us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.589ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.855us - CompressTime: 0ns - ExecTime: 169.775us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 7.658us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 51.425us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.663ms - RowsProduced: 0 - RpcAvgTime: 70.544ms - RpcCount: 5 - RpcMaxTime: 70.655ms - RpcMinTime: 70.443ms - RpcSumTime: 352.721ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 450ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 239ns - ExecTime: 7.443us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.519us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.526us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.245us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s996ms PipelineXTask (index=5):(Active: 323.908us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 111.636us - CloseTime: 19.732us - GetBlockTime: 1.559us - OpenTime: 3.335us - PrepareTime: 183.54us - SinkTime: 87.307us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 291.662us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.646ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.570us - CompressTime: 0ns - ExecTime: 182.916us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 6.618us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 80.343us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.700ms - RowsProduced: 0 - RpcAvgTime: 70.638ms - RpcCount: 5 - RpcMaxTime: 70.710ms - RpcMinTime: 70.562ms - RpcSumTime: 353.192ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 296ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 407ns - ExecTime: 3.789us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.998us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.294us - 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: 32.389us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s996ms PipelineXTask (index=6):(Active: 275.18us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 71.650us - CloseTime: 36.212us - GetBlockTime: 2.354us - OpenTime: 2.873us - PrepareTime: 159.168us - SinkTime: 52.482us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 223.490us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.618ms DATA_STREAM_SINK_OPERATOR (id=131,dst_id=131): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.332us - CompressTime: 0ns - ExecTime: 169.876us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 3.884us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 95.249us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.694ms - RowsProduced: 0 - RpcAvgTime: 70.738ms - RpcCount: 5 - RpcMaxTime: 70.748ms - RpcMinTime: 70.731ms - RpcSumTime: 353.693ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 333ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=130): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 950ns - ExecTime: 12.303us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 10.747us - ProjectionTime: 0ns - RowsProduced: 0 EXCHANGE_OPERATOR (id=129): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.551us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.877us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.791us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s996ms Fragment 103: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 26.490ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 26.224ms - CloseTime: 46.317us - GetBlockTime: 24.534ms - OpenTime: 8.26us - PrepareTime: 178.859us - SinkTime: 76.833us - GetBlockCounter: 115 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 107 - NumBlockedTimes: 109 - NumScheduleTimes: 110 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.121ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 249.411ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.575us - CompressTime: 0ns - ExecTime: 176.808us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 10.80us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.693us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s106ms - RowsProduced: 0 - RpcAvgTime: 2s105ms - RpcCount: 5 - RpcMaxTime: 2s105ms - RpcMinTime: 2s105ms - RpcSumTime: 10s528ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 606ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 817ns - ExecTime: 5.615us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.836us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 17.656us - ExecTime: 21.362ms - InitProbeSideTime: 15.603ms - JoinFilterTimer: 13.715us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 20.480us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 118.759us - ProbeFindNextTime: 0ns - ProbeRows: 477.259K (477259) - ProbeTime: 20.149ms - ProbeWhenBuildSideOutputTime: 10.235us - ProbeWhenProbeSideOutputTime: 157.39us - ProbeWhenProcessHashTableTime: 896ns - ProbeWhenSearchHashTableTime: 1.749ms - ProjectionTime: 379.222us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 187 - BytesReceived: 9.18 MB - CloseTime: 6.348us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.144ms - ExecTime: 2.303ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.55 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 18.515us - ProjectionTime: 0ns - RowsProduced: 477.259K (477259) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s188ms PipelineXTask (index=2):(Active: 44.943ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 44.679ms - CloseTime: 90.722us - GetBlockTime: 43.148ms - OpenTime: 5.269us - PrepareTime: 150.688us - SinkTime: 71.933us - GetBlockCounter: 115 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 108 - NumBlockedTimes: 110 - NumScheduleTimes: 111 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.750ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 213.262ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.160us - CompressTime: 0ns - ExecTime: 155.888us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 5.250us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.176us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s99ms - RowsProduced: 0 - RpcAvgTime: 2s98ms - RpcCount: 5 - RpcMaxTime: 2s98ms - RpcMinTime: 2s98ms - RpcSumTime: 10s491ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 651ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 951ns - ExecTime: 4.802us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.97us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 25.371us - ExecTime: 39.751ms - InitProbeSideTime: 34.469ms - JoinFilterTimer: 14.130us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.188us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 103.243us - ProbeFindNextTime: 0ns - ProbeRows: 476.21K (476210) - ProbeTime: 38.669ms - ProbeWhenBuildSideOutputTime: 8.647us - ProbeWhenProbeSideOutputTime: 156.969us - ProbeWhenProcessHashTableTime: 397ns - ProbeWhenSearchHashTableTime: 1.604ms - ProjectionTime: 310.845us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 187 - BytesReceived: 9.16 MB - CloseTime: 33.970us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.654ms - ExecTime: 2.464ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.69 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 10.353us - ProjectionTime: 0ns - RowsProduced: 476.21K (476210) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s213ms PipelineXTask (index=4):(Active: 27.163ms, % non-child: 0.00%) - CoreChangeTimes: 30 - ExecuteTime: 26.909ms - CloseTime: 52.637us - GetBlockTime: 25.196ms - OpenTime: 4.865us - PrepareTime: 156.119us - SinkTime: 133.846us - GetBlockCounter: 116 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 110 - NumBlockedTimes: 112 - NumScheduleTimes: 113 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.758ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 216.689ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.205us - CompressTime: 0ns - ExecTime: 218.916us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 15.723us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.991us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s9ms - RowsProduced: 0 - RpcAvgTime: 2s8ms - RpcCount: 5 - RpcMaxTime: 2s8ms - RpcMinTime: 2s8ms - RpcSumTime: 10s43ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.40us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 878ns - ExecTime: 7.558us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.137us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 18.376us - ExecTime: 21.863ms - InitProbeSideTime: 16.160ms - JoinFilterTimer: 13.558us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 27.437us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 88.780us - ProbeFindNextTime: 0ns - ProbeRows: 477.781K (477781) - ProbeTime: 20.645ms - ProbeWhenBuildSideOutputTime: 9.407us - ProbeWhenProbeSideOutputTime: 146.422us - ProbeWhenProcessHashTableTime: 1.40us - ProbeWhenSearchHashTableTime: 1.746ms - ProjectionTime: 336.625us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 189 - BytesReceived: 9.19 MB - CloseTime: 8.165us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 8.402ms - ExecTime: 2.402ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.02 MB - MemoryUsage: - Blocks: 1.27 MB - PeakMemoryUsage: 1.27 MB - OpenTime: 14.355us - ProjectionTime: 0ns - RowsProduced: 477.781K (477781) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s323ms PipelineXTask (index=6):(Active: 26.577ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 26.327ms - CloseTime: 60.592us - GetBlockTime: 24.696ms - OpenTime: 9.17us - PrepareTime: 147.60us - SinkTime: 82.536us - GetBlockCounter: 116 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 107 - NumBlockedTimes: 109 - NumScheduleTimes: 110 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.209ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.235ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.936us - CompressTime: 0ns - ExecTime: 169.632us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.850us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.476us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s102ms - RowsProduced: 0 - RpcAvgTime: 2s101ms - RpcCount: 5 - RpcMaxTime: 2s101ms - RpcMinTime: 2s101ms - RpcSumTime: 10s507ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 695ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 1.90us - ExecTime: 5.902us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.923us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 25.523us - ExecTime: 21.442ms - InitProbeSideTime: 15.707ms - JoinFilterTimer: 13.638us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 16.168us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 91.325us - ProbeFindNextTime: 0ns - ProbeRows: 476.338K (476338) - ProbeTime: 20.228ms - ProbeWhenBuildSideOutputTime: 9.635us - ProbeWhenProbeSideOutputTime: 159.329us - ProbeWhenProcessHashTableTime: 342ns - ProbeWhenSearchHashTableTime: 1.705ms - ProjectionTime: 315.423us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 188 - BytesReceived: 9.15 MB - CloseTime: 8.59us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.711ms - ExecTime: 2.357ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.41 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 19.421us - ProjectionTime: 0ns - RowsProduced: 476.338K (476338) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s287ms PipelineXTask (index=8):(Active: 26.316ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 26.2ms - CloseTime: 53.285us - GetBlockTime: 24.448ms - OpenTime: 6.786us - PrepareTime: 234.294us - SinkTime: 69.867us - GetBlockCounter: 116 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 105 - NumBlockedTimes: 107 - NumScheduleTimes: 108 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.970ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 215.39ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.767us - CompressTime: 0ns - ExecTime: 152.94us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.23us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 65.977us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s96ms - RowsProduced: 0 - RpcAvgTime: 2s95ms - RpcCount: 5 - RpcMaxTime: 2s95ms - RpcMinTime: 2s95ms - RpcSumTime: 10s475ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 658ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 927ns - ExecTime: 10.687us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.851us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 20.195us - ExecTime: 21.422ms - InitProbeSideTime: 15.955ms - JoinFilterTimer: 13.410us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 19.197us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 86.828us - ProbeFindNextTime: 0ns - ProbeRows: 477.075K (477075) - ProbeTime: 20.283ms - ProbeWhenBuildSideOutputTime: 8.908us - ProbeWhenProbeSideOutputTime: 182.659us - ProbeWhenProcessHashTableTime: 459ns - ProbeWhenSearchHashTableTime: 1.593ms - ProjectionTime: 318.906us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 188 - BytesReceived: 9.17 MB - CloseTime: 10.311us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.180ms - ExecTime: 2.142ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.83 MB - MemoryUsage: - Blocks: 1.27 MB - PeakMemoryUsage: 1.27 MB - OpenTime: 23.131us - ProjectionTime: 0ns - RowsProduced: 477.075K (477075) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s233ms PipelineXTask (index=10):(Active: 37.751ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 37.482ms - CloseTime: 94.366us - GetBlockTime: 35.871ms - OpenTime: 8.890us - PrepareTime: 144.908us - SinkTime: 83.136us - GetBlockCounter: 115 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 107 - NumBlockedTimes: 109 - NumScheduleTimes: 110 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.958ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 212.199ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.690us - CompressTime: 0ns - ExecTime: 169.87us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 5.907us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.751us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s95ms - RowsProduced: 0 - RpcAvgTime: 2s93ms - RpcCount: 5 - RpcMaxTime: 2s93ms - RpcMinTime: 2s93ms - RpcSumTime: 10s469ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 645ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 1.37us - ExecTime: 5.532us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.540us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 39.850us - ExecTime: 32.384ms - InitProbeSideTime: 26.502ms - JoinFilterTimer: 14.127us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 14.767us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 91.176us - ProbeFindNextTime: 0ns - ProbeRows: 476.732K (476732) - ProbeTime: 31.165ms - ProbeWhenBuildSideOutputTime: 9.138us - ProbeWhenProbeSideOutputTime: 146.405us - ProbeWhenProcessHashTableTime: 488ns - ProbeWhenSearchHashTableTime: 1.680ms - ProjectionTime: 342.523us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 187 - BytesReceived: 9.16 MB - CloseTime: 20.898us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.894ms - ExecTime: 2.571ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.36 MB - MemoryUsage: - Blocks: 1.45 MB - PeakMemoryUsage: 1.45 MB - OpenTime: 18.904us - ProjectionTime: 0ns - RowsProduced: 476.732K (476732) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s225ms PipelineXTask (index=12):(Active: 25.219ms, % non-child: 0.00%) - CoreChangeTimes: 24 - ExecuteTime: 24.957ms - CloseTime: 81.743us - GetBlockTime: 23.492ms - OpenTime: 7.828us - PrepareTime: 152.529us - SinkTime: 75.98us - GetBlockCounter: 116 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 104 - NumBlockedTimes: 106 - NumScheduleTimes: 107 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.874ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 198.989ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.727us - CompressTime: 0ns - ExecTime: 169.113us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 4.255us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.764us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s996ms - RowsProduced: 0 - RpcAvgTime: 1s995ms - RpcCount: 5 - RpcMaxTime: 1s995ms - RpcMinTime: 1s995ms - RpcSumTime: 9s977ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 670ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 770ns - ExecTime: 6.120us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.614us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 37.618us - ExecTime: 20.537ms - InitProbeSideTime: 15.156ms - JoinFilterTimer: 12.759us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 13.17us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 87.75us - ProbeFindNextTime: 0ns - ProbeRows: 477.338K (477338) - ProbeTime: 19.408ms - ProbeWhenBuildSideOutputTime: 8.711us - ProbeWhenProbeSideOutputTime: 166.53us - ProbeWhenProcessHashTableTime: 634ns - ProbeWhenSearchHashTableTime: 1.525ms - ProjectionTime: 309.428us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=126): - BlocksProduced: 188 - BytesReceived: 9.16 MB - CloseTime: 12.433us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.914ms - ExecTime: 2.102ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.71 MB - MemoryUsage: - Blocks: 1.27 MB - PeakMemoryUsage: 1.27 MB - OpenTime: 18.652us - ProjectionTime: 0ns - RowsProduced: 477.338K (477338) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s356ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 571.595us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 488.782us - CloseTime: 11.420us - GetBlockTime: 2.304us - OpenTime: 2.340us - PrepareTime: 64.332us - SinkTime: 466.995us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 553.83us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.493ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.386us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 17.46us - BuildTableTime: 20.909us - CloseTime: 0ns - ExecTime: 494.287us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 27.774us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.12us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.49us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.41us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.29 KB - OpenTime: 16.305us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 475.781ms PipelineXTask (index=3):(Active: 627.443us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 445.721us - CloseTime: 4.522us - GetBlockTime: 1.466us - OpenTime: 2.856us - PrepareTime: 168.458us - SinkTime: 426.919us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 615.666us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.49ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 528ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.169us - BuildTableTime: 13.814us - CloseTime: 0ns - ExecTime: 558.987us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 132.49us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.779us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.958us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.535us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.29 KB - OpenTime: 15.313us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 477.729ms PipelineXTask (index=5):(Active: 1.725ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.612ms - CloseTime: 7.546us - GetBlockTime: 2.302us - OpenTime: 2.300us - PrepareTime: 97.661us - SinkTime: 1.591ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.710ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.339ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 842ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 10.384us - BuildTableTime: 13.290us - CloseTime: 0ns - ExecTime: 1.637ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 45.931us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.480us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.883us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 40.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.29 KB - OpenTime: 33.444us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 475.974ms PipelineXTask (index=7):(Active: 573.910us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 500.63us - CloseTime: 6.882us - GetBlockTime: 2.42us - OpenTime: 2.93us - PrepareTime: 59.558us - SinkTime: 479.65us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 559.653us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.350ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 597ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 13.347us - BuildTableTime: 15.542us - CloseTime: 0ns - ExecTime: 502.282us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 23.476us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.816us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.613us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.291us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.29 KB - OpenTime: 9.290us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 477.845ms PipelineXTask (index=9):(Active: 537.677us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 457.764us - CloseTime: 5.359us - GetBlockTime: 1.648us - OpenTime: 2.353us - PrepareTime: 67.271us - SinkTime: 438.703us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 525.623us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.851ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 835ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.994us - BuildTableTime: 14.936us - CloseTime: 0ns - ExecTime: 451.853us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 13.120us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.504us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.466us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.675us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.29 KB - OpenTime: 27.632us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 477.840ms PipelineXTask (index=11):(Active: 1.724ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.601ms - CloseTime: 5.475us - GetBlockTime: 1.770us - OpenTime: 2.387us - PrepareTime: 109.449us - SinkTime: 1.582ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.712ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.71ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 607ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 16.873us - BuildTableTime: 18.443us - CloseTime: 0ns - ExecTime: 1.649ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 67.190us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.609us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.640us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.360us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.29 KB - OpenTime: 22.147us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 477.846ms PipelineXTask (index=13):(Active: 4.224ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.148ms - CloseTime: 17.289us - GetBlockTime: 3.139us - OpenTime: 2.403us - PrepareTime: 51.547us - SinkTime: 4.104ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.199ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.140ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.152us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 13.342us - BuildTableTime: 19.502us - CloseTime: 0ns - ExecTime: 4.123ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 20.104us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.185ms - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 13.250us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.774us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 1.29 KB - OpenTime: 17.181us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 477.821ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 17.561ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 17.305ms - CloseTime: 73.876us - GetBlockTime: 16.348ms - OpenTime: 4.920us - PrepareTime: 164.980us - SinkTime: 202.596us - GetBlockCounter: 115 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 55 - NumBlockedTimes: 57 - NumScheduleTimes: 58 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.357ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 102.262ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.793us - CompressTime: 0ns - ExecTime: 295.749us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 8.726us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.986us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.822ms - RowsProduced: 0 - RpcAvgTime: 551.429us - RpcCount: 7 - RpcMaxTime: 591.495us - RpcMinTime: 487.515us - RpcSumTime: 3.860ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 454ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 758ns - ExecTime: 5.999us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.858us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 17.541us - ExecTime: 14.509ms - InitProbeSideTime: 10.814ms - JoinFilterTimer: 8.377us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 12.704us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 58.13us - ProbeFindNextTime: 0ns - ProbeRows: 476.624K (476624) - ProbeTime: 13.815ms - ProbeWhenBuildSideOutputTime: 6.159us - ProbeWhenProbeSideOutputTime: 91.592us - ProbeWhenProcessHashTableTime: 516ns - ProbeWhenSearchHashTableTime: 1.435ms - ProjectionTime: 193.31us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s54ms EXCHANGE_OPERATOR (id=126): - BlocksProduced: 155 - BytesReceived: 5.24 MB - CloseTime: 25.325us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.730ms - ExecTime: 1.464ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.74 MB - MemoryUsage: - Blocks: 18.68 MB - PeakMemoryUsage: 18.68 MB - OpenTime: 24.592us - ProjectionTime: 0ns - RowsProduced: 476.624K (476624) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s739ms PipelineXTask (index=2):(Active: 30.296ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 30.42ms - CloseTime: 86.237us - GetBlockTime: 28.937ms - OpenTime: 5.218us - PrepareTime: 147.461us - SinkTime: 262.351us - GetBlockCounter: 117 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 54 - NumBlockedTimes: 56 - NumScheduleTimes: 57 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 22.472ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 240.751ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.321us - CompressTime: 0ns - ExecTime: 355.336us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 15.655us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 75.884us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.606ms - RowsProduced: 0 - RpcAvgTime: 537.456us - RpcCount: 7 - RpcMaxTime: 644.847us - RpcMinTime: 463.775us - RpcSumTime: 3.762ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.310us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 670ns - ExecTime: 7.58us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.778us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 30.980us - ExecTime: 26.583ms - InitProbeSideTime: 21.928ms - JoinFilterTimer: 10.323us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 15.448us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 51.772us - ProbeFindNextTime: 0ns - ProbeRows: 478.612K (478612) - ProbeTime: 25.696ms - ProbeWhenBuildSideOutputTime: 7.352us - ProbeWhenProbeSideOutputTime: 118.105us - ProbeWhenProcessHashTableTime: 855ns - ProbeWhenSearchHashTableTime: 1.959ms - ProjectionTime: 267.148us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s926ms EXCHANGE_OPERATOR (id=126): - BlocksProduced: 158 - BytesReceived: 5.27 MB - CloseTime: 31.123us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.599ms - ExecTime: 1.963ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.51 MB - MemoryUsage: - Blocks: 19.12 MB - PeakMemoryUsage: 19.12 MB - OpenTime: 11.730us - ProjectionTime: 0ns - RowsProduced: 478.612K (478612) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s799ms PipelineXTask (index=4):(Active: 20.452ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 20.153ms - CloseTime: 80.77us - GetBlockTime: 19.168ms - OpenTime: 9.387us - PrepareTime: 187.122us - SinkTime: 187.606us - GetBlockCounter: 117 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 54 - NumBlockedTimes: 56 - NumScheduleTimes: 57 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 20.238ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 138.305ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 43.735us - CompressTime: 0ns - ExecTime: 302.345us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 8.430us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.631us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.765ms - RowsProduced: 0 - RpcAvgTime: 5.691ms - RpcCount: 7 - RpcMaxTime: 6.323ms - RpcMinTime: 4.824ms - RpcSumTime: 39.839ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 720ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 740ns - ExecTime: 8.535us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.307us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 18.276us - ExecTime: 17.198ms - InitProbeSideTime: 13.170ms - JoinFilterTimer: 11.787us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 40.923us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 54.374us - ProbeFindNextTime: 0ns - ProbeRows: 478.736K (478736) - ProbeTime: 16.384ms - ProbeWhenBuildSideOutputTime: 10.123us - ProbeWhenProbeSideOutputTime: 101.769us - ProbeWhenProcessHashTableTime: 852ns - ProbeWhenSearchHashTableTime: 1.553ms - ProjectionTime: 213.322us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 3s39ms EXCHANGE_OPERATOR (id=126): - BlocksProduced: 158 - BytesReceived: 5.27 MB - CloseTime: 11.193us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.89ms - ExecTime: 1.664ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.84 MB - MemoryUsage: - Blocks: 19.20 MB - PeakMemoryUsage: 19.20 MB - OpenTime: 24.140us - ProjectionTime: 0ns - RowsProduced: 478.736K (478736) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s763ms PipelineXTask (index=6):(Active: 18.375ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 18.56ms - CloseTime: 112.407us - GetBlockTime: 16.985ms - OpenTime: 4.158us - PrepareTime: 189.996us - SinkTime: 325.772us - GetBlockCounter: 115 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 56 - NumBlockedTimes: 58 - NumScheduleTimes: 59 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 17.726ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 211.642ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 34.700us - CompressTime: 0ns - ExecTime: 453.36us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 7.619us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 93.420us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.439ms - RowsProduced: 0 - RpcAvgTime: 617.119us - RpcCount: 7 - RpcMaxTime: 733.335us - RpcMinTime: 508.22us - RpcSumTime: 4.319ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 883ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 780ns - ExecTime: 6.305us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.966us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 47.853us - ExecTime: 14.647ms - InitProbeSideTime: 10.887ms - JoinFilterTimer: 8.633us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 12.985us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 49.568us - ProbeFindNextTime: 0ns - ProbeRows: 477.383K (477383) - ProbeTime: 13.867ms - ProbeWhenBuildSideOutputTime: 5.842us - ProbeWhenProbeSideOutputTime: 88.722us - ProbeWhenProcessHashTableTime: 548ns - ProbeWhenSearchHashTableTime: 1.369ms - ProjectionTime: 231.485us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s926ms EXCHANGE_OPERATOR (id=126): - BlocksProduced: 155 - BytesReceived: 5.26 MB - CloseTime: 20.764us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.582ms - ExecTime: 2.8ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.81 MB - MemoryUsage: - Blocks: 19.58 MB - PeakMemoryUsage: 19.58 MB - OpenTime: 15.12us - ProjectionTime: 0ns - RowsProduced: 477.383K (477383) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s757ms PipelineXTask (index=8):(Active: 18.320ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 18.50ms - CloseTime: 57.972us - GetBlockTime: 16.986ms - OpenTime: 4.597us - PrepareTime: 190.978us - SinkTime: 207.361us - GetBlockCounter: 116 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 54 - NumBlockedTimes: 56 - NumScheduleTimes: 57 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.62ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 253.229ms DATA_STREAM_SINK_OPERATOR (id=129,dst_id=129): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.633us - CompressTime: 0ns - ExecTime: 299.308us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 6.370us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.789us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.165ms - RowsProduced: 0 - RpcAvgTime: 613.347us - RpcCount: 7 - RpcMaxTime: 701.776us - RpcMinTime: 502.299us - RpcSumTime: 4.293ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 400ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=128): - BlocksProduced: 0 - BuildTime: 0ns - CloseTime: 792ns - ExecTime: 7.811us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.653us - ProjectionTime: 0ns - RowsProduced: 0 HASH_JOIN_OPERATOR (id=127): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 25.882us - ExecTime: 15.182ms - InitProbeSideTime: 11.434ms - JoinFilterTimer: 8.766us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 14.323us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 49.560us - ProbeFindNextTime: 0ns - ProbeRows: 477.49K (477490) - ProbeTime: 14.440ms - ProbeWhenBuildSideOutputTime: 6.951us - ProbeWhenProbeSideOutputTime: 99.740us - ProbeWhenProcessHashTableTime: 708ns - ProbeWhenSearchHashTableTime: 1.437ms - ProjectionTime: 200.599us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s926ms EXCHANGE_OPERATOR (id=126): - BlocksProduced: 157 - BytesReceived: 5.28 MB - CloseTime: 9.693us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.508ms - ExecTime: 1.408ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.13 MB - MemoryUsage: - Blocks: 18.99 MB - PeakMemoryUsage: 18.99 MB - OpenTime: 17.814us - ProjectionTime: 0ns - RowsProduced: 477.49K (477490) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13s786ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 786.970us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 665.682us - CloseTime: 11.968us - GetBlockTime: 2.809us - OpenTime: 2.161us - PrepareTime: 101.840us - SinkTime: 643.559us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 767.734us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 162.31us HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 816ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 15.674us - BuildTableTime: 20.44us - CloseTime: 0ns - ExecTime: 689.874us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 46.396us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.230us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.257us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.813us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 945.00 B - OpenTime: 16.749us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s113ms PipelineXTask (index=3):(Active: 727.23us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 652.8us - CloseTime: 5.789us - GetBlockTime: 1.304us - OpenTime: 2.455us - PrepareTime: 63.122us - SinkTime: 633.743us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 715.449us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.860ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 391ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.899us - BuildTableTime: 13.25us - CloseTime: 0ns - ExecTime: 647.56us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 13.506us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.364us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.149us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.516us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 945.00 B - OpenTime: 21.856us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s109ms PipelineXTask (index=5):(Active: 3.959ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.864ms - CloseTime: 11.734us - GetBlockTime: 2.256us - OpenTime: 1.830us - PrepareTime: 75.983us - SinkTime: 3.848ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.940ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 846.124us HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.6us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 14.87us - BuildTableTime: 18.360us - CloseTime: 0ns - ExecTime: 3.872ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 24.776us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.972ms - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.218us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 945.00 B - OpenTime: 21.44us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s113ms PipelineXTask (index=7):(Active: 652.509us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 583.809us - CloseTime: 6.209us - GetBlockTime: 12.558us - OpenTime: 1.632us - PrepareTime: 56.517us - SinkTime: 557.54us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 640.288us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 587.532us HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 447ns - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 9.59us - BuildTableTime: 11.323us - CloseTime: 0ns - ExecTime: 572.490us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 15.562us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.173us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.612us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 945.00 B - OpenTime: 12.163us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s113ms PipelineXTask (index=9):(Active: 1.577ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.507ms - CloseTime: 5.249us - GetBlockTime: 2.753us - OpenTime: 3.480us - PrepareTime: 56.786us - SinkTime: 1.482ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.565ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.778ms HASH_JOIN_SINK_OPERATOR (id=127): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.12us - BuildRows: 1 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 0ns - BuildTableInsertTime: 12.466us - BuildTableTime: 14.706us - CloseTime: 0ns - ExecTime: 1.502ms - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 4.00 KB - HashTable: 25.00 B - PeakMemoryUsage: 17.00 B - OpenTime: 20.235us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.986us - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=124): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.845us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.824us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 945.00 B - OpenTime: 16.45us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 4s109ms Fragment 104: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 359.894ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 359.274ms - CloseTime: 119.580us - GetBlockTime: 1.544ms - OpenTime: 190.237us - PrepareTime: 298.490us - SinkTime: 356.702ms - GetBlockCounter: 337 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 11 - NumScheduleTimes: 13 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 219.533ms - WaitBfTime: 891.497ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 182.374ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 335 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 24.08 MB - CloseTime: 58.573us - CompressTime: 0ns - ExecTime: 356.703ms - InputRows: 1.365504M (1365504) - LocalBytesSent: 24.96 MB - LocalSendTime: 1.278ms - LocalSentRows: 568.859K (568859) - MemoryUsage: - PeakMemoryUsage: 45.61 MB - MergeBlockTime: 0ns - OpenTime: 60.802us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s421ms - RowsProduced: 1.365504M (1365504) - RpcAvgTime: 155.395ms - RpcCount: 191 - RpcMaxTime: 4s309ms - RpcMinTime: 4s209ms - RpcSumTime: 29s680ms - SerializeBatchTime: 115.293ms - SplitBlockDistributeByChannelTime: 178.312ms - SplitBlockHashComputeTime: 49.294ms - UncompressedRowBatchSize: 35.73 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 2s581ms - WaitForLocalExchangeBuffer4: 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: 3.254us - BlocksProduced: 336 - CloseTime: 54.337us - ExecTime: 150.455ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 286.314us - ProcessConjunctTime: 29.826us - ProjectionTime: 0ns - RowsProduced: 1.365504M (1365504) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 70.23ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.700ms - 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: 2.614749M (2614749) - expr_input_rows: 2.614749M (2614749) RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 4 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [80.327ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [70.023ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 73.860ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 569.751us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 15.762us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 79.62ms - ScannerCtxSchedTime: 70.16ms - ScannerFilterTime: 4.853ms - ScannerGetBlockTime: 75.286ms - ScannerInitTime: 118.493us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 889ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.296us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 13.924us - BlockInitTime: 86.891us - BlockLoadTime: 74.578ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 681.822us - FirstReadTime: 72.655ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.158us - 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: 134.329us - OutputIndexResultColumnTimer: 60.178us - 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: 439.825ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 439.491ms - CloseTime: 57.529us - GetBlockTime: 1.585ms - OpenTime: 76.871us - PrepareTime: 191.779us - SinkTime: 436.960ms - GetBlockCounter: 281 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 218.335ms - WaitBfTime: 892.304ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.628ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 283 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 20.05 MB - CloseTime: 12.363us - CompressTime: 0ns - ExecTime: 436.911ms - InputRows: 1.13792M (1137920) - LocalBytesSent: 20.81 MB - LocalSendTime: 1.223ms - LocalSentRows: 474.446K (474446) - MemoryUsage: - PeakMemoryUsage: 38.79 MB - MergeBlockTime: 0ns - OpenTime: 55.83us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 795.245ms - RowsProduced: 1.13792M (1137920) - RpcAvgTime: 169.556ms - RpcCount: 161 - RpcMaxTime: 3s906ms - RpcMinTime: 3s891ms - RpcSumTime: 27s298ms - SerializeBatchTime: 255.974ms - SplitBlockDistributeByChannelTime: 125.47ms - SplitBlockHashComputeTime: 40.556ms - UncompressedRowBatchSize: 29.76 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 2s581ms - WaitForLocalExchangeBuffer4: 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.951us - BlocksProduced: 280 - CloseTime: 41.882us - ExecTime: 201.593ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 147.857us - ProcessConjunctTime: 16.450us - ProjectionTime: 0ns - RowsProduced: 1.13792M (1137920) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 65.842ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 199.964ms - 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: 2.614749M (2614749) - expr_input_rows: 2.614749M (2614749) RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 4 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [133.039ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [65.842ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 120.781ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 505.27us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 32.966us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 101.198ms - ScannerCtxSchedTime: 65.833ms - ScannerFilterTime: 10.198ms - ScannerGetBlockTime: 122.621ms - ScannerInitTime: 40.419us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.71us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.913us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.156us - BlockInitTime: 95.608us - BlockLoadTime: 121.655ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 924.76us - FirstReadTime: 119.303ms - 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: 2 - OutputColumnTime: 146.294us - OutputIndexResultColumnTimer: 66.74us - 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=2):(Active: 347.321ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 346.977ms - CloseTime: 78.560us - GetBlockTime: 1.607ms - OpenTime: 97.568us - PrepareTime: 158.317us - SinkTime: 344.413ms - GetBlockCounter: 281 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 236.283ms - WaitBfTime: 891.690ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 213.808ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 283 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 20.03 MB - CloseTime: 19.898us - CompressTime: 0ns - ExecTime: 344.371ms - InputRows: 1.13792M (1137920) - LocalBytesSent: 20.84 MB - LocalSendTime: 1.440ms - LocalSentRows: 475.152K (475152) - MemoryUsage: - PeakMemoryUsage: 38.18 MB - MergeBlockTime: 0ns - OpenTime: 45.360us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 927.618ms - RowsProduced: 1.13792M (1137920) - RpcAvgTime: 167.95ms - RpcCount: 161 - RpcMaxTime: 3s877ms - RpcMinTime: 3s805ms - RpcSumTime: 26s902ms - SerializeBatchTime: 149.553ms - SplitBlockDistributeByChannelTime: 137.721ms - SplitBlockHashComputeTime: 39.960ms - UncompressedRowBatchSize: 29.73 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 2s581ms - WaitForLocalExchangeBuffer4: 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: 1.469us - BlocksProduced: 280 - CloseTime: 53.454us - ExecTime: 159.976ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 158.29us - ProcessConjunctTime: 24.420us - ProjectionTime: 0ns - RowsProduced: 1.13792M (1137920) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 65.814ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 158.301ms - 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: 2.614749M (2614749) - expr_input_rows: 2.614749M (2614749) RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 4 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [91.066ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [65.814ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 81.327ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 659.436us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 38.14us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 89.12ms - ScannerCtxSchedTime: 65.797ms - ScannerFilterTime: 7.977ms - ScannerGetBlockTime: 82.880ms - ScannerInitTime: 53.53us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.135us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.761us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 17.284us - BlockInitTime: 122.792us - BlockLoadTime: 81.982ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 628.5us - FirstReadTime: 79.800ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.718us - 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.249us - OutputIndexResultColumnTimer: 66.648us - 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 :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 427.542ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 426.918ms - CloseTime: 99.148us - GetBlockTime: 2.738ms - OpenTime: 274.829us - PrepareTime: 236.675us - SinkTime: 422.373ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 347.765ms - WaitBfTime: 834.448ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.605ms DATA_STREAM_SINK_OPERATOR (id=126,dst_id=126): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.31 MB - CloseTime: 35.348us - CompressTime: 0ns - ExecTime: 422.258ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 53.34 MB - LocalSendTime: 3.967ms - LocalSentRows: 1.215846M (1215846) - MemoryUsage: - PeakMemoryUsage: 95.37 MB - MergeBlockTime: 0ns - OpenTime: 62.467us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s409ms - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 377.140ms - RpcCount: 208 - RpcMaxTime: 15s731ms - RpcMinTime: 15s645ms - RpcSumTime: 1m18s - SerializeBatchTime: 168.961ms - SplitBlockDistributeByChannelTime: 155.228ms - SplitBlockHashComputeTime: 65.505ms - UncompressedRowBatchSize: 39.04 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 4.827us - BlocksProduced: 514 - CloseTime: 59.7us - ExecTime: 215.19ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 380.467us - ProcessConjunctTime: 63.953us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 106.818ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 212.98ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 42, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 43, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 4 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2097152 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [106.016ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [106.818ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 103.370ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.1ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.932us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 110.580ms - ScannerCtxSchedTime: 106.803ms - ScannerFilterTime: 518.812us - ScannerGetBlockTime: 105.212ms - ScannerInitTime: 149.342us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.249us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.630us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.118us - BlockInitTime: 110.169us - BlockLoadTime: 104.523ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.144ms - FirstReadTime: 101.977ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.503us - 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: 164.704us - OutputIndexResultColumnTimer: 89.50us - 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 Fragment 105: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 808.909us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 402.51us - CloseTime: 57.16us - GetBlockTime: 44.92us - OpenTime: 128.273us - PrepareTime: 214.425us - SinkTime: 210.404us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 744.83us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 593.973us DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.212us - CompressTime: 0ns - ExecTime: 296.545us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.872us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.334us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 53.738ms - RowsProduced: 0 - RpcAvgTime: 41.836ms - RpcCount: 7 - RpcMaxTime: 41.995ms - RpcMinTime: 41.702ms - RpcSumTime: 292.855ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 793ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21167] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 487ns - BlocksProduced: 0 - CloseTime: 38.100us - ExecTime: 142.115ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 220.231us - ProcessConjunctTime: 30.538us - ProjectionTime: 1.733us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 584.107us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 141.811ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [5.403us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [584.107us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 141.143ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 80ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.209ms - ScannerCtxSchedTime: 582.840us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.435us - ScannerInitTime: 51.949us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.218us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.409us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 37 - BlockInitSeekTime: 639.246us - BlockInitTime: 801.569us - BlockLoadTime: 140.696ms - BlocksLoad: 152 - CachedPagesNum: 126 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 131.287ms - FirstReadSeekCount: 294 - FirstReadSeekTime: 190.103us - FirstReadTime: 7.370ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.281us - 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: 28.455us - OutputIndexResultColumnTimer: 21.109us - 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=1):(Active: 790.739us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 382.990us - CloseTime: 81.380us - GetBlockTime: 55.720us - OpenTime: 139.172us - PrepareTime: 181.334us - SinkTime: 168.785us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 702.23us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.458ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.764us - CompressTime: 0ns - ExecTime: 234.500us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.903us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 44.563us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 150.391ms - RowsProduced: 0 - RpcAvgTime: 149.262ms - RpcCount: 7 - RpcMaxTime: 149.355ms - RpcMinTime: 149.36ms - RpcSumTime: 1s44ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 493ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21175] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 268ns - BlocksProduced: 0 - CloseTime: 54.976us - ExecTime: 243.547ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 207.45us - ProcessConjunctTime: 44.853us - ProjectionTime: 1.998us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.46ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 243.227ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [6.604us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [3.046ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 240.107ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 109ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 119.319ms - ScannerCtxSchedTime: 3.45ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.398us - ScannerInitTime: 57.398us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.328us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 8.238us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 26 - BlockInitSeekTime: 24.100us - BlockInitTime: 168.747us - BlockLoadTime: 239.562ms - BlocksLoad: 405 - CachedPagesNum: 614 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 173.221ms - FirstReadSeekCount: 804 - FirstReadSeekTime: 1.1ms - FirstReadTime: 63.319ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.440us - 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: 92.496us - OutputIndexResultColumnTimer: 62.871us - 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=2):(Active: 22.297ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 11.155ms - CloseTime: 69.809us - GetBlockTime: 58.232us - OpenTime: 10.914ms - PrepareTime: 152.472us - SinkTime: 164.429us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 643.475us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.574ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.756us - CompressTime: 0ns - ExecTime: 232.716us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 23.614us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 52.384us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 166.848ms - RowsProduced: 0 - RpcAvgTime: 166.668ms - RpcCount: 7 - RpcMaxTime: 166.797ms - RpcMinTime: 166.545ms - RpcSumTime: 1s166ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 892ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21171] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 596ns - BlocksProduced: 0 - CloseTime: 48.478us - ExecTime: 268.676ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 10.964ms - ProcessConjunctTime: 29.670us - ProjectionTime: 2.253us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 43.439ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 257.603ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [9.765us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [43.439ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 214.26ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 49ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 147.251ms - ScannerCtxSchedTime: 43.438ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.793us - ScannerInitTime: 10.861ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.440us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.453us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 31 - BlockInitSeekTime: 37.818us - BlockInitTime: 254.863us - BlockLoadTime: 213.186ms - BlocksLoad: 410 - CachedPagesNum: 530 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 185.211ms - FirstReadSeekCount: 812 - FirstReadSeekTime: 1.792ms - FirstReadTime: 23.925ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.98us - 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: 100.150us - OutputIndexResultColumnTimer: 50.336us - 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=3):(Active: 874.745us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 515.51us - CloseTime: 66.913us - GetBlockTime: 44.271us - OpenTime: 95.772us - PrepareTime: 191.281us - SinkTime: 356.247us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 800.427us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.283ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.106us - CompressTime: 0ns - ExecTime: 442.909us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.930us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 68.414us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 21.579ms - RowsProduced: 0 - RpcAvgTime: 9.258ms - RpcCount: 7 - RpcMaxTime: 9.506ms - RpcMinTime: 9.6ms - RpcSumTime: 64.806ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 769ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 444ns - BlocksProduced: 0 - CloseTime: 43.716us - ExecTime: 63.109ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 155.36us - ProcessConjunctTime: 26.47us - ProjectionTime: 1.724us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 826.920us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 62.865ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [5.857us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [826.920us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 61.956ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 174ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 61.215ms - ScannerCtxSchedTime: 826.147us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.416us - ScannerInitTime: 45.287us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.138us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.321us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 35 - BlockInitSeekTime: 32.502us - BlockInitTime: 149.32us - BlockLoadTime: 61.568ms - BlocksLoad: 345 - CachedPagesNum: 405 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 47.683ms - FirstReadSeekCount: 682 - FirstReadSeekTime: 1.134ms - FirstReadTime: 12.551ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.568us - 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: 37.177us - OutputIndexResultColumnTimer: 20.198us - 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=4):(Active: 728.93us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 395.479us - CloseTime: 49.683us - GetBlockTime: 34.685us - OpenTime: 119.992us - PrepareTime: 157.717us - SinkTime: 223.290us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 671.736us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.985ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.748us - CompressTime: 0ns - ExecTime: 294.842us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.778us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 59.603us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.403ms - RowsProduced: 0 - RpcAvgTime: 15.92ms - RpcCount: 7 - RpcMaxTime: 15.205ms - RpcMinTime: 15.46ms - RpcSumTime: 105.650ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 746ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21163] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 393ns - BlocksProduced: 0 - CloseTime: 33.603us - ExecTime: 49.369ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 174.38us - ProcessConjunctTime: 33.602us - ProjectionTime: 2.434us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 7.135ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 49.125ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [19.859us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [7.135ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 41.861ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 88ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.968ms - ScannerCtxSchedTime: 7.133ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.874us - ScannerInitTime: 60.988us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 237ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.230us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 13.613us - BlockInitTime: 47.691us - BlockLoadTime: 41.731ms - BlocksLoad: 61 - CachedPagesNum: 71 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 37.938ms - FirstReadSeekCount: 120 - FirstReadSeekTime: 368.472us - FirstReadTime: 3.364ms - IOTimer: 0ns - InvertedIndexFilterTime: 332ns - 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.949us - OutputIndexResultColumnTimer: 5.225us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 938.734us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 422.386us - CloseTime: 73.326us - GetBlockTime: 45.121us - OpenTime: 155.883us - PrepareTime: 277.868us - SinkTime: 198.811us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 855.560us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.185ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.322us - CompressTime: 0ns - ExecTime: 282.206us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.666us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 59.644us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 641.265ms - RowsProduced: 0 - RpcAvgTime: 621.575ms - RpcCount: 5 - RpcMaxTime: 632.0ms - RpcMinTime: 618.874ms - RpcSumTime: 3s107ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 695ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21165] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 693ns - BlocksProduced: 0 - CloseTime: 44.638us - ExecTime: 132.203ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 306.232us - ProcessConjunctTime: 53.225us - ProjectionTime: 2.270us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 452.5us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 131.806ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [21.742us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [452.005us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 131.176ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 169ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 61.335ms - ScannerCtxSchedTime: 446.549us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.92us - ScannerInitTime: 54.708us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1000ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.253us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 24.244us - BlockInitTime: 135.567us - BlockLoadTime: 130.913ms - BlocksLoad: 139 - CachedPagesNum: 104 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 119.757ms - FirstReadSeekCount: 276 - FirstReadSeekTime: 182.72us - FirstReadTime: 9.389ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.306us - 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: 49.367us - OutputIndexResultColumnTimer: 28.463us - 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: 2.694ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.379ms - CloseTime: 83.195us - GetBlockTime: 55.977us - OpenTime: 1.38ms - PrepareTime: 186.640us - SinkTime: 258.410us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 863.229us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 724.300us DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.944us - CompressTime: 0ns - ExecTime: 350.37us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 68.4us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 74.348us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s659ms - RowsProduced: 0 - RpcAvgTime: 3s636ms - RpcCount: 5 - RpcMaxTime: 3s637ms - RpcMinTime: 3s636ms - RpcSumTime: 18s184ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.27us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21173] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 517ns - BlocksProduced: 0 - CloseTime: 60.830us - ExecTime: 477.560ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.101ms - ProcessConjunctTime: 33.594us - ProjectionTime: 1.620us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 1.358ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 476.341ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [5.638us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [1.358ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 474.844ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 200ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 121.792ms - ScannerCtxSchedTime: 1.355ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.679us - ScannerInitTime: 973.347us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.56us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.231us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 39.496us - BlockInitTime: 202.19us - BlockLoadTime: 474.354ms - BlocksLoad: 367 - CachedPagesNum: 588 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 339.855ms - FirstReadSeekCount: 730 - FirstReadSeekTime: 109.396ms - FirstReadTime: 130.557ms - 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: 2 - OutputColumnTime: 85.361us - OutputIndexResultColumnTimer: 64.943us - 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=2):(Active: 11.147ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 5.533ms - CloseTime: 105.497us - GetBlockTime: 53.999us - OpenTime: 5.281ms - PrepareTime: 217.259us - SinkTime: 168.911us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.155ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.81ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 41.99us - CompressTime: 0ns - ExecTime: 279.242us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.495us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.48us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s257ms - RowsProduced: 0 - RpcAvgTime: 3s241ms - RpcCount: 5 - RpcMaxTime: 3s241ms - RpcMinTime: 3s240ms - RpcSumTime: 16s205ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 686ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21169] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 657ns - BlocksProduced: 0 - CloseTime: 59.746us - ExecTime: 312.827ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 5.377ms - ProcessConjunctTime: 104.760us - ProjectionTime: 2.267us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 108.478ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 307.334ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [8.285us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [108.478ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 198.762ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 115.292ms - ScannerCtxSchedTime: 108.475ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.320us - ScannerInitTime: 5.142ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.591us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.902us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 30.1us - BlockInitTime: 174.758us - BlockLoadTime: 198.196ms - BlocksLoad: 384 - CachedPagesNum: 517 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 170.862ms - FirstReadSeekCount: 762 - FirstReadSeekTime: 2.716ms - FirstReadTime: 24.88ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.992us - 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: 143.176us - OutputIndexResultColumnTimer: 49.311us - 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=3):(Active: 6.745ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.340ms - CloseTime: 122.937us - GetBlockTime: 43.134us - OpenTime: 3.76ms - PrepareTime: 189.156us - SinkTime: 189.717us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 952.193us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.292ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 42.938us - CompressTime: 0ns - ExecTime: 296.229us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 35.509us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 64.160us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s468ms - RowsProduced: 0 - RpcAvgTime: 3s453ms - RpcCount: 5 - RpcMaxTime: 3s453ms - RpcMinTime: 3s452ms - RpcSumTime: 17s265ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 610ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21183] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 637ns - BlocksProduced: 0 - CloseTime: 75.796us - ExecTime: 350.553ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 3.134ms - ProcessConjunctTime: 58.127us - ProjectionTime: 1.694us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 94.419ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 347.294ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [9.597us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [94.419ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 255.611ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 55ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 117.756ms - ScannerCtxSchedTime: 94.417ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.338us - ScannerInitTime: 152.380us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 2.179us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.618us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 57.29us - BlockInitTime: 251.356us - BlockLoadTime: 254.854ms - BlocksLoad: 382 - CachedPagesNum: 432 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 122.283ms - FirstReadSeekCount: 756 - FirstReadSeekTime: 111.98ms - FirstReadTime: 128.885ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.881us - 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: 115.304us - OutputIndexResultColumnTimer: 55.568us - 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=4):(Active: 1.61ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 478.209us - CloseTime: 88.647us - GetBlockTime: 27.351us - OpenTime: 269.127us - PrepareTime: 217.227us - SinkTime: 158.32us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 963.138us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.522ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.368us - CompressTime: 0ns - ExecTime: 244.918us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 31.22us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 67.101us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s306ms - RowsProduced: 0 - RpcAvgTime: 1s293ms - RpcCount: 5 - RpcMaxTime: 1s293ms - RpcMinTime: 1s293ms - RpcSumTime: 6s466ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 524ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21177] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 607ns - BlocksProduced: 0 - CloseTime: 64.86us - ExecTime: 149.624ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 324.313us - ProcessConjunctTime: 69.743us - ProjectionTime: 1.570us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.460ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 149.207ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [5.344us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [10.460ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 138.635ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 134ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 80.99ms - ScannerCtxSchedTime: 10.457ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.152us - ScannerInitTime: 161.3us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.209us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.776us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 25 - BlockInitSeekTime: 269.293us - BlockInitTime: 378.299us - BlockLoadTime: 138.254ms - BlocksLoad: 260 - CachedPagesNum: 325 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 125.494ms - FirstReadSeekCount: 514 - FirstReadSeekTime: 725.238us - FirstReadTime: 11.32ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.891us - 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.653us - OutputIndexResultColumnTimer: 21.224us - 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=5):(Active: 3.243ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.563ms - CloseTime: 76.826us - GetBlockTime: 31.842us - OpenTime: 1.327ms - PrepareTime: 252.234us - SinkTime: 181.550us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 942.983us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.848ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.651us - CompressTime: 0ns - ExecTime: 339.67us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 41.357us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 140.241us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s807ms - RowsProduced: 0 - RpcAvgTime: 2s795ms - RpcCount: 5 - RpcMaxTime: 2s795ms - RpcMinTime: 2s794ms - RpcSumTime: 13s975ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 724ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21179] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.22us - BlocksProduced: 0 - CloseTime: 55.574us - ExecTime: 276.668ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.379ms - ProcessConjunctTime: 73.818us - ProjectionTime: 1.414us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 67.299ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 275.200ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [5.283us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [67.299ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 207.812ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 230ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 81.0ms - ScannerCtxSchedTime: 67.298ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.336us - ScannerInitTime: 1.226ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 1.21us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.997us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 26 - BlockInitSeekTime: 546.704us - BlockInitTime: 649.299us - BlockLoadTime: 207.427ms - BlocksLoad: 291 - CachedPagesNum: 350 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 151.976ms - FirstReadSeekCount: 576 - FirstReadSeekTime: 41.881ms - FirstReadTime: 52.846ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.397us - 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: 54.349us - OutputIndexResultColumnTimer: 43.175us - 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=6):(Active: 1.942ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.74ms - CloseTime: 72.375us - GetBlockTime: 51.391us - OpenTime: 609.731us - PrepareTime: 177.180us - SinkTime: 385.387us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 990.117us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.344ms DATA_STREAM_SINK_OPERATOR (id=124,dst_id=124): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 31.240us - CompressTime: 0ns - ExecTime: 478.955us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 35.10us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 63.265us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.373ms - RowsProduced: 0 - RpcAvgTime: 6.336ms - RpcCount: 5 - RpcMaxTime: 6.449ms - RpcMinTime: 6.162ms - RpcSumTime: 31.682ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 1.76us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=123. table name = QYWX_USER_CONTACT_RELATION): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[ : �] - TabletIds: [21161] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 630ns - BlocksProduced: 0 - CloseTime: 37.469us - ExecTime: 77.289ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 675.434us - ProcessConjunctTime: 47.330us - ProjectionTime: 2.196us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 56.359ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 76.522ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, USER_ID, ADD_TIME, STATE] - PerScannerRunningTime: [7.552us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [56.359ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 20.79ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 216ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.426ms - ScannerCtxSchedTime: 56.358ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.700us - ScannerInitTime: 532.581us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 273ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.458us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.983us - BlockInitTime: 37.590us - BlockLoadTime: 19.954ms - BlocksLoad: 57 - CachedPagesNum: 67 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 15.537ms - FirstReadSeekCount: 112 - FirstReadSeekTime: 466.709us - FirstReadTime: 4.101ms - 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: 8.462us - OutputIndexResultColumnTimer: 4.199us - 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 Fragment 106: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 303.452ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 303.189ms - CloseTime: 63.574us - GetBlockTime: 273.158ms - OpenTime: 7.231us - PrepareTime: 158.443us - SinkTime: 26.725ms - GetBlockCounter: 336 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 161 - NumBlockedTimes: 163 - NumScheduleTimes: 164 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 302.817ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 209.320ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 702.45 KB - CloseTime: 19.997us - CompressTime: 0ns - ExecTime: 26.611ms - InputRows: 127.661K (127661) - LocalBytesSent: 2.27 MB - LocalSendTime: 398.483us - LocalSentRows: 74.33K (74330) - MemoryUsage: - PeakMemoryUsage: 4.90 MB - MergeBlockTime: 0ns - OpenTime: 71.551us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 420.462ms - RowsProduced: 127.661K (127661) - RpcAvgTime: 403.375ms - RpcCount: 15 - RpcMaxTime: 1s227ms - RpcMinTime: 1s204ms - RpcSumTime: 6s50ms - SerializeBatchTime: 1.895ms - SplitBlockDistributeByChannelTime: 14.83ms - SplitBlockHashComputeTime: 3.814ms - UncompressedRowBatchSize: 1.69 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 73.106ms - CloseTime: 6.103us - ExecTime: 78.74ms - HashTableComputeTime: 64.27ms - HashTableEmplaceTime: 56.859ms - HashTableInputCount: 130.473K (130473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.62us - ProjectionTime: 4.395ms - RowsProduced: 127.661K (127661) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 335 - BuildOutputBlock: 0ns - CloseTime: 22.90us - ExecTime: 187.97ms - InitProbeSideTime: 41.82ms - JoinFilterTimer: 55.487us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 19.102us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 141.503us - ProbeFindNextTime: 0ns - ProbeRows: 1.379045M (1379045) - ProbeTime: 174.295ms - ProbeWhenBuildSideOutputTime: 17.99ms - ProbeWhenProbeSideOutputTime: 2.415ms - ProbeWhenProcessHashTableTime: 351.830us - ProbeWhenSearchHashTableTime: 107.189ms - ProjectionTime: 11.242ms - RowsProduced: 130.473K (130473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s956ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 580 - BytesReceived: 16.31 MB - CloseTime: 10.646us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 22.302ms - ExecTime: 5.341ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.70 MB - MemoryUsage: - Blocks: 20.85 MB - PeakMemoryUsage: 13.70 MB - OpenTime: 19.913us - ProjectionTime: 0ns - RowsProduced: 1.379045M (1379045) - SendersBlockedTotalTimer(*): 6s863ms - WaitForDependencyTime: 0ns - WaitForData0: 11s104ms PipelineXTask (index=2):(Active: 296.492ms, % non-child: 0.00%) - CoreChangeTimes: 27 - ExecuteTime: 296.245ms - CloseTime: 59.430us - GetBlockTime: 266.82ms - OpenTime: 7.342us - PrepareTime: 154.442us - SinkTime: 26.783ms - GetBlockCounter: 337 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 174 - NumBlockedTimes: 176 - NumScheduleTimes: 177 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 295.851ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 129.434ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 41 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 703.00 KB - CloseTime: 19.133us - CompressTime: 0ns - ExecTime: 26.645ms - InputRows: 128.48K (128480) - LocalBytesSent: 2.29 MB - LocalSendTime: 356.606us - LocalSentRows: 75.088K (75088) - MemoryUsage: - PeakMemoryUsage: 4.98 MB - MergeBlockTime: 0ns - OpenTime: 68.955us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 454.608ms - RowsProduced: 128.48K (128480) - RpcAvgTime: 410.695ms - RpcCount: 15 - RpcMaxTime: 1s236ms - RpcMinTime: 1s224ms - RpcSumTime: 6s160ms - SerializeBatchTime: 1.721ms - SplitBlockDistributeByChannelTime: 14.435ms - SplitBlockHashComputeTime: 4.1ms - UncompressedRowBatchSize: 1.69 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 73.847ms - CloseTime: 7.308us - ExecTime: 78.768ms - HashTableComputeTime: 64.498ms - HashTableEmplaceTime: 56.761ms - HashTableInputCount: 131.302K (131302) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.404us - ProjectionTime: 4.346ms - RowsProduced: 128.48K (128480) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 337 - BuildOutputBlock: 0ns - CloseTime: 17.334us - ExecTime: 179.776ms - InitProbeSideTime: 38.142ms - JoinFilterTimer: 55.956us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 16.798us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 152.429us - ProbeFindNextTime: 0ns - ProbeRows: 1.378559M (1378559) - ProbeTime: 167.225ms - ProbeWhenBuildSideOutputTime: 16.455ms - ProbeWhenProbeSideOutputTime: 2.420ms - ProbeWhenProcessHashTableTime: 355.641us - ProbeWhenSearchHashTableTime: 103.945ms - ProjectionTime: 11.4ms - RowsProduced: 131.302K (131302) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s48ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 582 - BytesReceived: 16.30 MB - CloseTime: 11.836us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 22.168ms - ExecTime: 4.918ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.59 MB - MemoryUsage: - Blocks: 20.66 MB - PeakMemoryUsage: 13.59 MB - OpenTime: 17.621us - ProjectionTime: 0ns - RowsProduced: 1.378559M (1378559) - SendersBlockedTotalTimer(*): 6s822ms - WaitForDependencyTime: 0ns - WaitForData0: 11s74ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 47.639ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 47.526ms - CloseTime: 14.520us - GetBlockTime: 524.326us - OpenTime: 3.37us - PrepareTime: 87.988us - SinkTime: 46.684ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 29 - NumBlockedTimes: 31 - NumScheduleTimes: 31 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.744ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.383ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.564us - BuildRows: 130.474K (130474) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 27.677ms - BuildTableInsertTime: 11.439ms - BuildTableTime: 11.447ms - CloseTime: 0ns - ExecTime: 46.683ms - InputRows: 130.473K (130473) - MemoryUsage: - BuildBlocks: 3.11 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.34 MB - OpenTime: 22.612us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 22.520us - RuntimeFilterComputeTime: 6.454ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 10.988us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.629ms - ExecTime: 502.362us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.54 MB - MemoryUsage: - Blocks: 432.00 KB - PeakMemoryUsage: 176.00 KB - OpenTime: 14.236us - ProjectionTime: 0ns - RowsProduced: 130.473K (130473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s968ms PipelineXTask (index=3):(Active: 124.546ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 124.471ms - CloseTime: 14.928us - GetBlockTime: 95.974ms - OpenTime: 2.660us - PrepareTime: 49.632us - SinkTime: 28.187ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 29 - NumBlockedTimes: 31 - NumScheduleTimes: 31 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.633ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 75.234ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 33.259us - BuildRows: 131.303K (131303) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.474ms - BuildTableInsertTime: 10.153ms - BuildTableTime: 10.160ms - CloseTime: 0ns - ExecTime: 28.185ms - InputRows: 131.302K (131302) - MemoryUsage: - BuildBlocks: 3.13 MB - BuildKeyArena: 3.64 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.39 MB - OpenTime: 18.850us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 724.948us - RuntimeFilterComputeTime: 4.871ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 11.339us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.750ms - ExecTime: 95.934ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.66 MB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 176.00 KB - OpenTime: 13.649us - ProjectionTime: 0ns - RowsProduced: 131.302K (131302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2s888ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 351.925ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 351.602ms - CloseTime: 43.905us - GetBlockTime: 319.654ms - OpenTime: 5.17us - PrepareTime: 229.867us - SinkTime: 29.553ms - GetBlockCounter: 337 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 81 - NumBlockedTimes: 83 - NumScheduleTimes: 85 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 335.964ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 177.410ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 985.79 KB - CloseTime: 11.388us - CompressTime: 0ns - ExecTime: 29.357ms - InputRows: 128.216K (128216) - LocalBytesSent: 1.63 MB - LocalSendTime: 225.738us - LocalSentRows: 53.323K (53323) - MemoryUsage: - PeakMemoryUsage: 4.32 MB - MergeBlockTime: 0ns - OpenTime: 58.308us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.938ms - RowsProduced: 128.216K (128216) - RpcAvgTime: 46.59ms - RpcCount: 21 - RpcMaxTime: 143.424ms - RpcMinTime: 133.311ms - RpcSumTime: 967.241ms - SerializeBatchTime: 2.227ms - SplitBlockDistributeByChannelTime: 15.271ms - SplitBlockHashComputeTime: 4.458ms - UncompressedRowBatchSize: 2.37 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 88.960ms - CloseTime: 12.480us - ExecTime: 94.696ms - HashTableComputeTime: 77.612ms - HashTableEmplaceTime: 69.203ms - HashTableInputCount: 131.063K (131063) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.631us - ProjectionTime: 5.27ms - RowsProduced: 128.216K (128216) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 336 - BuildOutputBlock: 0ns - CloseTime: 10.761us - ExecTime: 217.920ms - InitProbeSideTime: 57.274ms - JoinFilterTimer: 56.905us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 12.796us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 136.629us - ProbeFindNextTime: 0ns - ProbeRows: 1.377716M (1377716) - ProbeTime: 202.996ms - ProbeWhenBuildSideOutputTime: 16.887ms - ProbeWhenProbeSideOutputTime: 2.535ms - ProbeWhenProcessHashTableTime: 366.153us - ProbeWhenSearchHashTableTime: 119.387ms - ProjectionTime: 13.254ms - RowsProduced: 131.063K (131063) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s178ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 416 - BytesReceived: 5.54 MB - CloseTime: 5.777us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.829ms - ExecTime: 4.573ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.84 MB - MemoryUsage: - Blocks: 19.81 MB - PeakMemoryUsage: 18.43 MB - OpenTime: 21.276us - ProjectionTime: 0ns - RowsProduced: 1.377716M (1377716) - SendersBlockedTotalTimer(*): 6s352ms - WaitForDependencyTime: 0ns - WaitForData0: 7s140ms PipelineXTask (index=2):(Active: 329.119ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 328.849ms - CloseTime: 65.509us - GetBlockTime: 298.175ms - OpenTime: 5.132us - PrepareTime: 183.331us - SinkTime: 28.253ms - GetBlockCounter: 362 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 92 - NumBlockedTimes: 94 - NumScheduleTimes: 97 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 294.597ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.783ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 988.17 KB - CloseTime: 19.433us - CompressTime: 0ns - ExecTime: 28.136ms - InputRows: 128.422K (128422) - LocalBytesSent: 1.63 MB - LocalSendTime: 210.409us - LocalSentRows: 53.343K (53343) - MemoryUsage: - PeakMemoryUsage: 4.29 MB - MergeBlockTime: 0ns - OpenTime: 86.80us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.375ms - RowsProduced: 128.422K (128422) - RpcAvgTime: 53.222ms - RpcCount: 21 - RpcMaxTime: 168.464ms - RpcMinTime: 150.59ms - RpcSumTime: 1s117ms - SerializeBatchTime: 2.115ms - SplitBlockDistributeByChannelTime: 15.168ms - SplitBlockHashComputeTime: 3.809ms - UncompressedRowBatchSize: 2.38 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 72.18ms - CloseTime: 18.56us - ExecTime: 77.429ms - HashTableComputeTime: 61.599ms - HashTableEmplaceTime: 54.496ms - HashTableInputCount: 131.26K (131260) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.876us - ProjectionTime: 4.723ms - RowsProduced: 128.422K (128422) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 361 - BuildOutputBlock: 0ns - CloseTime: 15.249us - ExecTime: 212.409ms - InitProbeSideTime: 48.225ms - JoinFilterTimer: 52.58us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 12.211us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 112.962us - ProbeFindNextTime: 0ns - ProbeRows: 1.484334M (1484334) - ProbeTime: 199.166ms - ProbeWhenBuildSideOutputTime: 15.812ms - ProbeWhenProbeSideOutputTime: 2.660ms - ProbeWhenProcessHashTableTime: 383.667us - ProbeWhenSearchHashTableTime: 126.367ms - ProjectionTime: 11.256ms - RowsProduced: 131.26K (131260) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s298ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 451 - BytesReceived: 6.02 MB - CloseTime: 7.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.406ms - ExecTime: 6.5ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.79 MB - MemoryUsage: - Blocks: 19.90 MB - PeakMemoryUsage: 19.59 MB - OpenTime: 22.543us - ProjectionTime: 0ns - RowsProduced: 1.484334M (1484334) - SendersBlockedTotalTimer(*): 13s734ms - WaitForDependencyTime: 0ns - WaitForData0: 7s178ms PipelineXTask (index=4):(Active: 317.639ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 317.395ms - CloseTime: 49.433us - GetBlockTime: 252.379ms - OpenTime: 7.53us - PrepareTime: 165.36us - SinkTime: 63.52ms - GetBlockCounter: 336 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 73 - NumBlockedTimes: 75 - NumScheduleTimes: 78 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 264.705ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.328ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 987.41 KB - CloseTime: 14.362us - CompressTime: 0ns - ExecTime: 62.955ms - InputRows: 128.782K (128782) - LocalBytesSent: 1.64 MB - LocalSendTime: 219.632us - LocalSentRows: 53.782K (53782) - MemoryUsage: - PeakMemoryUsage: 4.48 MB - MergeBlockTime: 0ns - OpenTime: 58.140us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.146ms - RowsProduced: 128.782K (128782) - RpcAvgTime: 49.995ms - RpcCount: 21 - RpcMaxTime: 155.44ms - RpcMinTime: 146.706ms - RpcSumTime: 1s49ms - SerializeBatchTime: 2.272ms - SplitBlockDistributeByChannelTime: 26.552ms - SplitBlockHashComputeTime: 27.823ms - UncompressedRowBatchSize: 2.38 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 68.195ms - CloseTime: 8.21us - ExecTime: 72.966ms - HashTableComputeTime: 60.475ms - HashTableEmplaceTime: 53.107ms - HashTableInputCount: 131.739K (131739) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.696us - ProjectionTime: 4.183ms - RowsProduced: 128.782K (128782) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 334 - BuildOutputBlock: 0ns - CloseTime: 16.423us - ExecTime: 172.830ms - InitProbeSideTime: 49.410ms - JoinFilterTimer: 44.49us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 14.140us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 102.694us - ProbeFindNextTime: 0ns - ProbeRows: 1.378283M (1378283) - ProbeTime: 160.903ms - ProbeWhenBuildSideOutputTime: 15.161ms - ProbeWhenProbeSideOutputTime: 2.289ms - ProbeWhenProcessHashTableTime: 645.84us - ProbeWhenSearchHashTableTime: 88.196ms - ProjectionTime: 10.352ms - RowsProduced: 131.739K (131739) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s316ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 417 - BytesReceived: 5.53 MB - CloseTime: 5.954us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.940ms - ExecTime: 4.462ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.81 MB - MemoryUsage: - Blocks: 19.85 MB - PeakMemoryUsage: 18.35 MB - OpenTime: 12.458us - ProjectionTime: 0ns - RowsProduced: 1.378283M (1378283) - SendersBlockedTotalTimer(*): 5s551ms - WaitForDependencyTime: 0ns - WaitForData0: 7s119ms PipelineXTask (index=6):(Active: 347.831ms, % non-child: 0.00%) - CoreChangeTimes: 21 - ExecuteTime: 347.582ms - CloseTime: 67.107us - GetBlockTime: 315.593ms - OpenTime: 4.943us - PrepareTime: 156.456us - SinkTime: 29.749ms - GetBlockCounter: 335 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 78 - NumBlockedTimes: 80 - NumScheduleTimes: 82 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 314.501ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.208ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 978.73 KB - CloseTime: 12.370us - CompressTime: 0ns - ExecTime: 29.612ms - InputRows: 127.839K (127839) - LocalBytesSent: 1.63 MB - LocalSendTime: 234.74us - LocalSentRows: 53.486K (53486) - MemoryUsage: - PeakMemoryUsage: 4.48 MB - MergeBlockTime: 0ns - OpenTime: 61.760us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.506ms - RowsProduced: 127.839K (127839) - RpcAvgTime: 46.142ms - RpcCount: 21 - RpcMaxTime: 140.423ms - RpcMinTime: 136.327ms - RpcSumTime: 968.994ms - SerializeBatchTime: 2.65ms - SplitBlockDistributeByChannelTime: 16.3ms - SplitBlockHashComputeTime: 4.130ms - UncompressedRowBatchSize: 2.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 83.96ms - CloseTime: 22.367us - ExecTime: 89.9ms - HashTableComputeTime: 71.192ms - HashTableEmplaceTime: 63.224ms - HashTableInputCount: 130.637K (130637) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.933us - ProjectionTime: 5.172ms - RowsProduced: 127.839K (127839) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 335 - BuildOutputBlock: 0ns - CloseTime: 11.540us - ExecTime: 211.263ms - InitProbeSideTime: 49.137ms - JoinFilterTimer: 48.573us - MemoryUsage: - PeakMemoryUsage: 384.00 KB - ProbeKeyArena: 384.00 KB - OpenTime: 14.489us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 126.630us - ProbeFindNextTime: 0ns - ProbeRows: 1.379762M (1379762) - ProbeTime: 197.169ms - ProbeWhenBuildSideOutputTime: 15.396ms - ProbeWhenProbeSideOutputTime: 2.827ms - ProbeWhenProcessHashTableTime: 408.62us - ProbeWhenSearchHashTableTime: 123.512ms - ProjectionTime: 12.475ms - RowsProduced: 130.637K (130637) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s333ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 416 - BytesReceived: 5.56 MB - CloseTime: 16.13us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.819ms - ExecTime: 12.947ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.02 MB - MemoryUsage: - Blocks: 19.76 MB - PeakMemoryUsage: 18.52 MB - OpenTime: 14.761us - ProjectionTime: 0ns - RowsProduced: 1.379762M (1379762) - SendersBlockedTotalTimer(*): 6s378ms - WaitForDependencyTime: 0ns - WaitForData0: 7s161ms PipelineXTask (index=8):(Active: 276.880ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 276.643ms - CloseTime: 44.157us - GetBlockTime: 248.304ms - OpenTime: 5.258us - PrepareTime: 171.633us - SinkTime: 26.340ms - GetBlockCounter: 337 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 79 - NumBlockedTimes: 81 - NumScheduleTimes: 83 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 276.516ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.779ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 972.73 KB - CloseTime: 12.60us - CompressTime: 0ns - ExecTime: 26.213ms - InputRows: 127.446K (127446) - LocalBytesSent: 1.63 MB - LocalSendTime: 224.118us - LocalSentRows: 53.504K (53504) - MemoryUsage: - PeakMemoryUsage: 4.13 MB - MergeBlockTime: 0ns - OpenTime: 55.209us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.303ms - RowsProduced: 127.446K (127446) - RpcAvgTime: 46.896ms - RpcCount: 21 - RpcMaxTime: 145.39ms - RpcMinTime: 136.148ms - RpcSumTime: 984.835ms - SerializeBatchTime: 2.29ms - SplitBlockDistributeByChannelTime: 13.678ms - SplitBlockHashComputeTime: 3.572ms - UncompressedRowBatchSize: 2.34 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 67.782ms - CloseTime: 6.80us - ExecTime: 73.73ms - HashTableComputeTime: 57.624ms - HashTableEmplaceTime: 50.435ms - HashTableInputCount: 130.191K (130191) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.399us - ProjectionTime: 4.651ms - RowsProduced: 127.446K (127446) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 337 - BuildOutputBlock: 0ns - CloseTime: 18.99us - ExecTime: 168.907ms - InitProbeSideTime: 37.118ms - JoinFilterTimer: 39.420us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 14.955us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 134.693us - ProbeFindNextTime: 0ns - ProbeRows: 1.377802M (1377802) - ProbeTime: 156.670ms - ProbeWhenBuildSideOutputTime: 15.381ms - ProbeWhenProbeSideOutputTime: 2.381ms - ProbeWhenProcessHashTableTime: 388.469us - ProbeWhenSearchHashTableTime: 96.197ms - ProjectionTime: 10.761ms - RowsProduced: 130.191K (130191) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s387ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 417 - BytesReceived: 5.54 MB - CloseTime: 4.555us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.212ms - ExecTime: 4.268ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.25 MB - MemoryUsage: - Blocks: 19.86 MB - PeakMemoryUsage: 18.63 MB - OpenTime: 15.41us - ProjectionTime: 0ns - RowsProduced: 1.377802M (1377802) - SendersBlockedTotalTimer(*): 6s476ms - WaitForDependencyTime: 0ns - WaitForData0: 7s113ms PipelineXTask (index=10):(Active: 355.352ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 355.127ms - CloseTime: 55.297us - GetBlockTime: 325.998ms - OpenTime: 5.225us - PrepareTime: 150.805us - SinkTime: 26.962ms - GetBlockCounter: 336 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 73 - NumBlockedTimes: 75 - NumScheduleTimes: 78 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 294.461ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.221ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 979.89 KB - CloseTime: 11.610us - CompressTime: 0ns - ExecTime: 26.817ms - InputRows: 127.346K (127346) - LocalBytesSent: 1.61 MB - LocalSendTime: 228.845us - LocalSentRows: 52.911K (52911) - MemoryUsage: - PeakMemoryUsage: 4.48 MB - MergeBlockTime: 0ns - OpenTime: 64.152us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.242ms - RowsProduced: 127.346K (127346) - RpcAvgTime: 51.649ms - RpcCount: 21 - RpcMaxTime: 162.484ms - RpcMinTime: 149.325ms - RpcSumTime: 1s84ms - SerializeBatchTime: 1.934ms - SplitBlockDistributeByChannelTime: 14.471ms - SplitBlockHashComputeTime: 3.976ms - UncompressedRowBatchSize: 2.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 61.596ms - CloseTime: 13.694us - ExecTime: 67.18ms - HashTableComputeTime: 52.331ms - HashTableEmplaceTime: 45.436ms - HashTableInputCount: 130.102K (130102) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.411us - ProjectionTime: 4.740ms - RowsProduced: 127.346K (127346) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 335 - BuildOutputBlock: 0ns - CloseTime: 7.980us - ExecTime: 251.461ms - InitProbeSideTime: 43.788ms - JoinFilterTimer: 51.567us - MemoryUsage: - PeakMemoryUsage: 384.00 KB - ProbeKeyArena: 384.00 KB - OpenTime: 16.677us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 113.172us - ProbeFindNextTime: 0ns - ProbeRows: 1.379193M (1379193) - ProbeTime: 239.43ms - ProbeWhenBuildSideOutputTime: 26.32ms - ProbeWhenProbeSideOutputTime: 2.411ms - ProbeWhenProcessHashTableTime: 340.269us - ProbeWhenSearchHashTableTime: 160.749ms - ProjectionTime: 10.778ms - RowsProduced: 130.102K (130102) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s373ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 418 - BytesReceived: 5.56 MB - CloseTime: 18.426us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.275ms - ExecTime: 5.245ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.90 MB - MemoryUsage: - Blocks: 19.83 MB - PeakMemoryUsage: 18.41 MB - OpenTime: 12.4us - ProjectionTime: 0ns - RowsProduced: 1.379193M (1379193) - SendersBlockedTotalTimer(*): 5s560ms - WaitForDependencyTime: 0ns - WaitForData0: 7s94ms PipelineXTask (index=12):(Active: 341.863ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 341.655ms - CloseTime: 63.742us - GetBlockTime: 309.876ms - OpenTime: 3.759us - PrepareTime: 126.625us - SinkTime: 29.399ms - GetBlockCounter: 337 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 75 - NumBlockedTimes: 77 - NumScheduleTimes: 80 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 323.734ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 182.877ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 979.30 KB - CloseTime: 24.992us - CompressTime: 0ns - ExecTime: 29.235ms - InputRows: 127.938K (127938) - LocalBytesSent: 1.63 MB - LocalSendTime: 265.366us - LocalSentRows: 53.528K (53528) - MemoryUsage: - PeakMemoryUsage: 4.48 MB - MergeBlockTime: 0ns - OpenTime: 60.80us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.990ms - RowsProduced: 127.938K (127938) - RpcAvgTime: 50.61ms - RpcCount: 21 - RpcMaxTime: 160.590ms - RpcMinTime: 144.305ms - RpcSumTime: 1s51ms - SerializeBatchTime: 1.984ms - SplitBlockDistributeByChannelTime: 16.15ms - SplitBlockHashComputeTime: 3.807ms - UncompressedRowBatchSize: 2.36 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 81.471ms - CloseTime: 9.831us - ExecTime: 87.173ms - HashTableComputeTime: 70.870ms - HashTableEmplaceTime: 63.175ms - HashTableInputCount: 130.732K (130732) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.283us - ProjectionTime: 5.33ms - RowsProduced: 127.938K (127938) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 336 - BuildOutputBlock: 0ns - CloseTime: 14.786us - ExecTime: 215.279ms - InitProbeSideTime: 46.997ms - JoinFilterTimer: 52.756us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 10.215us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 163.160us - ProbeFindNextTime: 0ns - ProbeRows: 1.380892M (1380892) - ProbeTime: 189.30ms - ProbeWhenBuildSideOutputTime: 15.511ms - ProbeWhenProbeSideOutputTime: 2.646ms - ProbeWhenProcessHashTableTime: 394.817us - ProbeWhenSearchHashTableTime: 117.138ms - ProjectionTime: 24.602ms - RowsProduced: 130.732K (130732) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s198ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 417 - BytesReceived: 5.55 MB - CloseTime: 8.991us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.853ms - ExecTime: 4.824ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.50 MB - MemoryUsage: - Blocks: 19.84 MB - PeakMemoryUsage: 18.34 MB - OpenTime: 15.217us - ProjectionTime: 0ns - RowsProduced: 1.380892M (1380892) - SendersBlockedTotalTimer(*): 5s513ms - WaitForDependencyTime: 0ns - WaitForData0: 7s98ms PipelineXTask (index=14):(Active: 341.678ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 341.407ms - CloseTime: 72.466us - GetBlockTime: 305.707ms - OpenTime: 5.128us - PrepareTime: 167.483us - SinkTime: 33.428ms - GetBlockCounter: 338 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 78 - NumBlockedTimes: 80 - NumScheduleTimes: 83 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 324.110ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 92.776ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 988.90 KB - CloseTime: 21.781us - CompressTime: 0ns - ExecTime: 33.274ms - InputRows: 128.608K (128608) - LocalBytesSent: 1.63 MB - LocalSendTime: 272.983us - LocalSentRows: 53.52K (53520) - MemoryUsage: - PeakMemoryUsage: 4.12 MB - MergeBlockTime: 0ns - OpenTime: 58.84us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.399ms - RowsProduced: 128.608K (128608) - RpcAvgTime: 48.814ms - RpcCount: 21 - RpcMaxTime: 151.707ms - RpcMinTime: 140.245ms - RpcSumTime: 1s25ms - SerializeBatchTime: 5.229ms - SplitBlockDistributeByChannelTime: 15.758ms - SplitBlockHashComputeTime: 4.113ms - UncompressedRowBatchSize: 2.38 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 85.522ms - CloseTime: 7.299us - ExecTime: 91.381ms - HashTableComputeTime: 72.962ms - HashTableEmplaceTime: 64.709ms - HashTableInputCount: 131.38K (131380) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.448us - ProjectionTime: 5.277ms - RowsProduced: 128.608K (128608) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 338 - BuildOutputBlock: 0ns - CloseTime: 22.200us - ExecTime: 207.326ms - InitProbeSideTime: 43.59ms - JoinFilterTimer: 50.813us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 12.704us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 127.528us - ProbeFindNextTime: 0ns - ProbeRows: 1.380915M (1380915) - ProbeTime: 193.356ms - ProbeWhenBuildSideOutputTime: 15.698ms - ProbeWhenProbeSideOutputTime: 2.783ms - ProbeWhenProcessHashTableTime: 602.937us - ProbeWhenSearchHashTableTime: 123.54ms - ProjectionTime: 12.334ms - RowsProduced: 131.38K (131380) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s298ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 417 - BytesReceived: 5.55 MB - CloseTime: 8.581us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.570ms - ExecTime: 4.450ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.61 MB - MemoryUsage: - Blocks: 19.78 MB - PeakMemoryUsage: 18.33 MB - OpenTime: 17.508us - ProjectionTime: 0ns - RowsProduced: 1.380915M (1380915) - SendersBlockedTotalTimer(*): 5s509ms - WaitForDependencyTime: 0ns - WaitForData0: 7s94ms PipelineXTask (index=16):(Active: 301.915ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 301.714ms - CloseTime: 39.181us - GetBlockTime: 272.334ms - OpenTime: 4.324us - PrepareTime: 142.483us - SinkTime: 27.70ms - GetBlockCounter: 338 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 90 - NumBlockedTimes: 92 - NumScheduleTimes: 94 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 300.350ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.708ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 983.76 KB - CloseTime: 13.125us - CompressTime: 0ns - ExecTime: 26.940ms - InputRows: 128.104K (128104) - LocalBytesSent: 1.63 MB - LocalSendTime: 228.961us - LocalSentRows: 53.363K (53363) - MemoryUsage: - PeakMemoryUsage: 4.33 MB - MergeBlockTime: 0ns - OpenTime: 50.682us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.122ms - RowsProduced: 128.104K (128104) - RpcAvgTime: 46.858ms - RpcCount: 21 - RpcMaxTime: 145.525ms - RpcMinTime: 135.150ms - RpcSumTime: 984.28ms - SerializeBatchTime: 1.954ms - SplitBlockDistributeByChannelTime: 14.522ms - SplitBlockHashComputeTime: 3.809ms - UncompressedRowBatchSize: 2.37 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 78.771ms - CloseTime: 7.737us - ExecTime: 83.720ms - HashTableComputeTime: 68.176ms - HashTableEmplaceTime: 60.520ms - HashTableInputCount: 130.819K (130819) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.761us - ProjectionTime: 4.362ms - RowsProduced: 128.104K (128104) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 338 - BuildOutputBlock: 0ns - CloseTime: 10.414us - ExecTime: 182.174ms - InitProbeSideTime: 40.198ms - JoinFilterTimer: 55.398us - MemoryUsage: - PeakMemoryUsage: 480.00 KB - ProbeKeyArena: 480.00 KB - OpenTime: 8.886us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 103.329us - ProbeFindNextTime: 0ns - ProbeRows: 1.379583M (1379583) - ProbeTime: 169.340ms - ProbeWhenBuildSideOutputTime: 15.480ms - ProbeWhenProbeSideOutputTime: 2.512ms - ProbeWhenProcessHashTableTime: 376.848us - ProbeWhenSearchHashTableTime: 105.343ms - ProjectionTime: 11.308ms - RowsProduced: 130.819K (130819) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s275ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 419 - BytesReceived: 5.55 MB - CloseTime: 4.608us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.112ms - ExecTime: 4.266ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.66 MB - MemoryUsage: - Blocks: 19.75 MB - PeakMemoryUsage: 18.37 MB - OpenTime: 14.887us - ProjectionTime: 0ns - RowsProduced: 1.379583M (1379583) - SendersBlockedTotalTimer(*): 6s408ms - WaitForDependencyTime: 0ns - WaitForData0: 7s154ms PipelineXTask (index=18):(Active: 314.125ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 313.912ms - CloseTime: 57.546us - GetBlockTime: 282.975ms - OpenTime: 5.432us - PrepareTime: 135.755us - SinkTime: 28.690ms - GetBlockCounter: 336 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 75 - NumBlockedTimes: 77 - NumScheduleTimes: 80 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 313.602ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.551ms DATA_STREAM_SINK_OPERATOR (id=122,dst_id=122): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 977.75 KB - CloseTime: 12.990us - CompressTime: 0ns - ExecTime: 28.532ms - InputRows: 127.537K (127537) - LocalBytesSent: 1.63 MB - LocalSendTime: 310.17us - LocalSentRows: 53.272K (53272) - MemoryUsage: - PeakMemoryUsage: 4.43 MB - MergeBlockTime: 0ns - OpenTime: 52.611us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.278ms - RowsProduced: 127.537K (127537) - RpcAvgTime: 46.568ms - RpcCount: 21 - RpcMaxTime: 141.955ms - RpcMinTime: 136.686ms - RpcSumTime: 977.936ms - SerializeBatchTime: 2.47ms - SplitBlockDistributeByChannelTime: 14.882ms - SplitBlockHashComputeTime: 4.149ms - UncompressedRowBatchSize: 2.35 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=121): - BlocksProduced: 0 - BuildTime: 71.891ms - CloseTime: 11.237us - ExecTime: 77.784ms - HashTableComputeTime: 60.82ms - HashTableEmplaceTime: 52.309ms - HashTableInputCount: 130.305K (130305) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.201us - ProjectionTime: 5.210ms - RowsProduced: 127.537K (127537) HASH_JOIN_OPERATOR (id=120): - BlocksProduced: 336 - BuildOutputBlock: 0ns - CloseTime: 21.809us - ExecTime: 197.888ms - InitProbeSideTime: 43.582ms - JoinFilterTimer: 58.314us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 15.74us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 116.429us - ProbeFindNextTime: 0ns - ProbeRows: 1.379603M (1379603) - ProbeTime: 183.837ms - ProbeWhenBuildSideOutputTime: 15.941ms - ProbeWhenProbeSideOutputTime: 2.703ms - ProbeWhenProcessHashTableTime: 358.486us - ProbeWhenSearchHashTableTime: 115.261ms - ProjectionTime: 12.368ms - RowsProduced: 130.305K (130305) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 11s309ms EXCHANGE_OPERATOR (id=119): - BlocksProduced: 417 - BytesReceived: 5.54 MB - CloseTime: 6.859us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.972ms - ExecTime: 4.977ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.70 MB - MemoryUsage: - Blocks: 19.86 MB - PeakMemoryUsage: 18.24 MB - OpenTime: 15.203us - ProjectionTime: 0ns - RowsProduced: 1.379603M (1379603) - SendersBlockedTotalTimer(*): 4s620ms - WaitForDependencyTime: 0ns - WaitForData0: 7s144ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 24.847ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 24.752ms - CloseTime: 19.460us - GetBlockTime: 424.491us - OpenTime: 1.409us - PrepareTime: 67.64us - SinkTime: 24.38ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 32 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.325ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 323.306ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 25.624us - BuildRows: 131.064K (131064) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.331ms - BuildTableInsertTime: 12.153ms - BuildTableTime: 12.158ms - CloseTime: 0ns - ExecTime: 24.38ms - InputRows: 131.063K (131063) - MemoryUsage: - BuildBlocks: 3.12 MB - BuildKeyArena: 3.63 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.37 MB - OpenTime: 22.82us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.62us - RuntimeFilterComputeTime: 8.9ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.02 MB - CloseTime: 14.818us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.342ms - ExecTime: 411.350us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.62 MB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 352.00 KB - OpenTime: 18.415us - ProjectionTime: 0ns - RowsProduced: 131.063K (131063) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 11s971ms PipelineXTask (index=3):(Active: 22.574ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 22.488ms - CloseTime: 13.271us - GetBlockTime: 496.940us - OpenTime: 2.792us - PrepareTime: 61.25us - SinkTime: 21.725ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.36ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.526ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 28.671us - BuildRows: 131.261K (131261) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.277ms - BuildTableInsertTime: 8.638ms - BuildTableTime: 8.645ms - CloseTime: 0ns - ExecTime: 21.718ms - InputRows: 131.26K (131260) - MemoryUsage: - BuildBlocks: 3.13 MB - BuildKeyArena: 3.64 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.39 MB - OpenTime: 18.829us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 259.469us - RuntimeFilterComputeTime: 9.153ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 10.355us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.355ms - ExecTime: 482.880us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.66 MB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 13.430us - ProjectionTime: 0ns - RowsProduced: 131.26K (131260) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s282ms PipelineXTask (index=5):(Active: 37.371ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 37.265ms - CloseTime: 12.340us - GetBlockTime: 497.434us - OpenTime: 1.810us - PrepareTime: 78.127us - SinkTime: 36.463ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 25.279ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 174.449ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 27.800us - BuildRows: 131.74K (131740) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.337ms - BuildTableInsertTime: 21.280ms - BuildTableTime: 21.289ms - CloseTime: 0ns - ExecTime: 36.460ms - InputRows: 131.739K (131739) - MemoryUsage: - BuildBlocks: 3.14 MB - BuildKeyArena: 3.65 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.41 MB - OpenTime: 17.727us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 298.917us - RuntimeFilterComputeTime: 9.215ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.04 MB - CloseTime: 9.186us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.452ms - ExecTime: 499.173us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.52 MB - MemoryUsage: - Blocks: 176.00 KB - PeakMemoryUsage: 176.00 KB - OpenTime: 42.382us - ProjectionTime: 0ns - RowsProduced: 131.739K (131739) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s142ms PipelineXTask (index=7):(Active: 20.876ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 20.761ms - CloseTime: 17.389us - GetBlockTime: 442.113us - OpenTime: 1.913us - PrepareTime: 71.740us - SinkTime: 20.50ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.708ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.821ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 23.478us - BuildRows: 130.638K (130638) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.783ms - BuildTableInsertTime: 7.347ms - BuildTableTime: 7.354ms - CloseTime: 0ns - ExecTime: 20.49ms - InputRows: 130.637K (130637) - MemoryUsage: - BuildBlocks: 3.11 MB - BuildKeyArena: 3.62 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.35 MB - OpenTime: 17.567us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 282.261us - RuntimeFilterComputeTime: 9.283ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 13.485us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.407ms - ExecTime: 447.757us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.62 MB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 28.444us - ProjectionTime: 0ns - RowsProduced: 130.637K (130637) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s251ms PipelineXTask (index=9):(Active: 28.440ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 28.349ms - CloseTime: 27.380us - GetBlockTime: 465.709us - OpenTime: 2.10us - PrepareTime: 51.432us - SinkTime: 27.597ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 28.342ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.669ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 25.724us - BuildRows: 130.192K (130192) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.704ms - BuildTableInsertTime: 11.764ms - BuildTableTime: 11.771ms - CloseTime: 0ns - ExecTime: 27.588ms - InputRows: 130.191K (130191) - MemoryUsage: - BuildBlocks: 3.10 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.33 MB - OpenTime: 16.295us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.393ms - RuntimeFilterComputeTime: 9.349ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 23.52us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.244ms - ExecTime: 459.411us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.45 MB - MemoryUsage: - Blocks: 176.00 KB - PeakMemoryUsage: 176.00 KB - OpenTime: 9.802us - ProjectionTime: 0ns - RowsProduced: 130.191K (130191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s273ms PipelineXTask (index=11):(Active: 14.750ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 14.650ms - CloseTime: 13.795us - GetBlockTime: 495.67us - OpenTime: 2.170us - PrepareTime: 72.239us - SinkTime: 13.853ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.600ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.675ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.898us - BuildRows: 130.103K (130103) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.911ms - BuildTableInsertTime: 5.120ms - BuildTableTime: 5.125ms - CloseTime: 0ns - ExecTime: 13.871ms - InputRows: 130.102K (130102) - MemoryUsage: - BuildBlocks: 3.10 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.32 MB - OpenTime: 35.842us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 232.572us - RuntimeFilterComputeTime: 5.234ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.02 MB - CloseTime: 10.113us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.391ms - ExecTime: 481.270us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.48 MB - MemoryUsage: - Blocks: 264.00 KB - PeakMemoryUsage: 264.00 KB - OpenTime: 14.440us - ProjectionTime: 0ns - RowsProduced: 130.102K (130102) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s311ms PipelineXTask (index=13):(Active: 22.780ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 22.692ms - CloseTime: 16.840us - GetBlockTime: 460.855us - OpenTime: 2.114us - PrepareTime: 56.323us - SinkTime: 21.928ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.547ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.526ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.682us - BuildRows: 130.733K (130733) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.444ms - BuildTableInsertTime: 7.941ms - BuildTableTime: 7.947ms - CloseTime: 0ns - ExecTime: 21.926ms - InputRows: 130.732K (130732) - MemoryUsage: - BuildBlocks: 3.12 MB - BuildKeyArena: 3.62 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.36 MB - OpenTime: 20.521us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 230.640us - RuntimeFilterComputeTime: 8.982ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 13.352us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.352ms - ExecTime: 448.599us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.62 MB - MemoryUsage: - Blocks: 176.00 KB - PeakMemoryUsage: 176.00 KB - OpenTime: 15.923us - ProjectionTime: 0ns - RowsProduced: 130.732K (130732) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s284ms PipelineXTask (index=15):(Active: 24.7ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 23.931ms - CloseTime: 15.482us - GetBlockTime: 451.296us - OpenTime: 1.475us - PrepareTime: 47.546us - SinkTime: 23.178ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 23.861ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.122ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.597us - BuildRows: 131.381K (131381) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.162ms - BuildTableInsertTime: 9.199ms - BuildTableTime: 9.205ms - CloseTime: 0ns - ExecTime: 23.172ms - InputRows: 131.38K (131380) - MemoryUsage: - BuildBlocks: 3.13 MB - BuildKeyArena: 3.64 MB - HashTable: 1.63 MB - PeakMemoryUsage: 8.40 MB - OpenTime: 15.496us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 265.677us - RuntimeFilterComputeTime: 9.117ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 11.756us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.505ms - ExecTime: 431.710us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.65 MB - MemoryUsage: - Blocks: 352.00 KB - PeakMemoryUsage: 352.00 KB - OpenTime: 15.769us - ProjectionTime: 0ns - RowsProduced: 131.38K (131380) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s266ms PipelineXTask (index=17):(Active: 44.586ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 44.493ms - CloseTime: 19.259us - GetBlockTime: 515.458us - OpenTime: 2.655us - PrepareTime: 59.105us - SinkTime: 43.689ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.99ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 46.42ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.506us - BuildRows: 130.82K (130820) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.858ms - BuildTableInsertTime: 16.372ms - BuildTableTime: 16.384ms - CloseTime: 0ns - ExecTime: 43.691ms - InputRows: 130.819K (130819) - MemoryUsage: - BuildBlocks: 3.12 MB - BuildKeyArena: 3.63 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.36 MB - OpenTime: 19.944us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 229.254us - RuntimeFilterComputeTime: 21.864ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.03 MB - CloseTime: 14.506us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.275ms - ExecTime: 505.19us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.59 MB - MemoryUsage: - Blocks: 236.00 KB - PeakMemoryUsage: 236.00 KB - OpenTime: 17.913us - ProjectionTime: 0ns - RowsProduced: 130.819K (130819) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s254ms PipelineXTask (index=19):(Active: 25.842ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 25.745ms - CloseTime: 13.988us - GetBlockTime: 467.739us - OpenTime: 1.773us - PrepareTime: 69.611us - SinkTime: 25.7ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.230ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.232ms HASH_JOIN_SINK_OPERATOR (id=120): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.978us - BuildRows: 130.306K (130306) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.320ms - BuildTableInsertTime: 9.207ms - BuildTableTime: 9.215ms - CloseTime: 0ns - ExecTime: 25.0ms - InputRows: 130.305K (130305) - MemoryUsage: - BuildBlocks: 3.11 MB - BuildKeyArena: 3.61 MB - HashTable: 1.62 MB - PeakMemoryUsage: 8.33 MB - OpenTime: 13.688us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 249.382us - RuntimeFilterComputeTime: 10.854ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=117): - BlocksProduced: 48 - BytesReceived: 1.02 MB - CloseTime: 10.743us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.377ms - ExecTime: 453.53us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.56 MB - MemoryUsage: - Blocks: 236.00 KB - PeakMemoryUsage: 236.00 KB - OpenTime: 18.722us - ProjectionTime: 0ns - RowsProduced: 130.305K (130305) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12s276ms Fragment 107: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 376.406ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 375.933ms - CloseTime: 158.381us - GetBlockTime: 3.34ms - OpenTime: 95.309us - PrepareTime: 207.33us - SinkTime: 371.748ms - GetBlockCounter: 383 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 17 - NumScheduleTimes: 20 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 126.436ms - WaitBfTime: 891.811ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 177.339ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 368 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.09 MB - CloseTime: 20.787us - CompressTime: 0ns - ExecTime: 371.682ms - InputRows: 1.526647M (1526647) - LocalBytesSent: 30.34 MB - LocalSendTime: 2.73ms - LocalSentRows: 1.272652M (1272652) - MemoryUsage: - PeakMemoryUsage: 49.62 MB - MergeBlockTime: 0ns - OpenTime: 60.31us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s8ms - RowsProduced: 1.526647M (1526647) - RpcAvgTime: 80.859ms - RpcCount: 61 - RpcMaxTime: 2s476ms - RpcMinTime: 2s456ms - RpcSumTime: 4s932ms - SerializeBatchTime: 34.631ms - SplitBlockDistributeByChannelTime: 274.999ms - SplitBlockHashComputeTime: 38.162ms - UncompressedRowBatchSize: 6.29 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22629] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.740us - BlocksProduced: 383 - CloseTime: 133.621us - ExecTime: 135.471ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 187.337us - ProcessConjunctTime: 22.741us - ProjectionTime: 0ns - RowsProduced: 1.526647M (1526647) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 205.563ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.242ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [218.400ms, 75.062ms, 31.822ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [68.574ms, 66.586ms, 70.402ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 218.396ms - MemoryUsage: - FreeBlocks: 30.00 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.91ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 19.924us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 193.128ms - ScannerCtxSchedTime: 205.544ms - ScannerFilterTime: 103.725ms - ScannerGetBlockTime: 220.986ms - ScannerInitTime: 39.117us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 16 SegmentIterator: - BitmapIndexFilterTimer: 5.406us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 18.394us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 24.393us - BlockInitTime: 269.116us - BlockLoadTime: 219.714ms - 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.721ms - FirstReadTime: 214.733ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.944us - 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: 243.597us - OutputIndexResultColumnTimer: 149.574us - 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: 180.890ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 180.516ms - CloseTime: 107.283us - GetBlockTime: 2.284ms - OpenTime: 85.735us - PrepareTime: 172.591us - SinkTime: 177.419ms - GetBlockCounter: 302 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 16 - NumScheduleTimes: 18 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 83.709ms - WaitBfTime: 891.709ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 462.157ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 290 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.20 MB - CloseTime: 25.790us - CompressTime: 0ns - ExecTime: 177.430ms - InputRows: 1.193291M (1193291) - LocalBytesSent: 23.71 MB - LocalSendTime: 1.466ms - LocalSentRows: 994.515K (994515) - MemoryUsage: - PeakMemoryUsage: 38.51 MB - MergeBlockTime: 0ns - OpenTime: 67.119us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 926.64ms - RowsProduced: 1.193291M (1193291) - RpcAvgTime: 81.522ms - RpcCount: 48 - RpcMaxTime: 1s958ms - RpcMinTime: 1s954ms - RpcSumTime: 3s913ms - SerializeBatchTime: 13.606ms - SplitBlockDistributeByChannelTime: 135.640ms - SplitBlockHashComputeTime: 17.643ms - UncompressedRowBatchSize: 4.92 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22631] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.677us - BlocksProduced: 302 - CloseTime: 78.549us - ExecTime: 141.683ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 147.209us - ProcessConjunctTime: 17.568us - ProjectionTime: 0ns - RowsProduced: 1.193291M (1193291) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 201.46ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 139.249ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [149.931ms, 102.636ms, 31.898ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [66.838ms, 68.491ms, 65.716ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 164.531ms - MemoryUsage: - FreeBlocks: 23.79 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.956ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 13.706us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 201.774ms - ScannerCtxSchedTime: 201.32ms - ScannerFilterTime: 116.813ms - ScannerGetBlockTime: 167.2ms - ScannerInitTime: 43.647us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 16 SegmentIterator: - BitmapIndexFilterTimer: 3.558us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.717us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 25.113us - BlockInitTime: 205.982us - BlockLoadTime: 166.687ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 1.67K (1670) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.364K (2364) - FirstReadSeekTime: 2.546ms - FirstReadTime: 161.760ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.45us - 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: 296.921us - OutputIndexResultColumnTimer: 167.572us - 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: 219.816ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 219.348ms - CloseTime: 77.877us - GetBlockTime: 2.371ms - OpenTime: 139.239us - PrepareTime: 237.883us - SinkTime: 215.847ms - GetBlockCounter: 284 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 14 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 105.895ms - WaitBfTime: 891.900ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 279.16ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 277 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.83 MB - CloseTime: 12.941us - CompressTime: 0ns - ExecTime: 215.793ms - InputRows: 1.133744M (1133744) - LocalBytesSent: 22.50 MB - LocalSendTime: 1.696ms - LocalSentRows: 945.393K (945393) - MemoryUsage: - PeakMemoryUsage: 36.97 MB - MergeBlockTime: 0ns - OpenTime: 50.43us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 573.299ms - RowsProduced: 1.133744M (1133744) - RpcAvgTime: 115.517ms - RpcCount: 46 - RpcMaxTime: 2s657ms - RpcMinTime: 2s656ms - RpcSumTime: 5s313ms - SerializeBatchTime: 85.170ms - SplitBlockDistributeByChannelTime: 96.222ms - SplitBlockHashComputeTime: 21.311ms - UncompressedRowBatchSize: 4.66 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22614] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.927us - BlocksProduced: 284 - CloseTime: 61.972us - ExecTime: 155.805ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 273.741us - ProcessConjunctTime: 18.430us - ProjectionTime: 0ns - RowsProduced: 1.133744M (1133744) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 152.734ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 153.203ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [109.399ms, 149.937ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [78.107ms, 74.626ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 131.780ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.692ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.879us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 174.576ms - ScannerCtxSchedTime: 152.722ms - ScannerFilterTime: 124.67ms - ScannerGetBlockTime: 134.833ms - ScannerInitTime: 96.140us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 2.853us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.254us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 42.568us - BlockInitTime: 290.617us - BlockLoadTime: 133.806ms - BlocksLoad: 865 - CachedPagesNum: 1.21K (1210) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.714K (1714) - FirstReadSeekTime: 2.201ms - FirstReadTime: 130.26ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.34us - 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: 230.678us - OutputIndexResultColumnTimer: 127.323us - 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: 278.386ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 277.979ms - CloseTime: 100.830us - GetBlockTime: 2.595ms - OpenTime: 119.205us - PrepareTime: 176.920us - SinkTime: 274.108ms - GetBlockCounter: 365 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 14 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 136.506ms - WaitBfTime: 892.37ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 224.173ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 357 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.68 MB - CloseTime: 21.308us - CompressTime: 0ns - ExecTime: 274.71ms - InputRows: 1.47083M (1470830) - LocalBytesSent: 29.18 MB - LocalSendTime: 2.84ms - LocalSentRows: 1.226082M (1226082) - MemoryUsage: - PeakMemoryUsage: 47.78 MB - MergeBlockTime: 0ns - OpenTime: 68.581us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 555.578ms - RowsProduced: 1.47083M (1470830) - RpcAvgTime: 125.460ms - RpcCount: 58 - RpcMaxTime: 3s644ms - RpcMinTime: 3s632ms - RpcSumTime: 7s276ms - SerializeBatchTime: 66.836ms - SplitBlockDistributeByChannelTime: 115.510ms - SplitBlockHashComputeTime: 75.926ms - UncompressedRowBatchSize: 6.05 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22616] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.769us - BlocksProduced: 365 - CloseTime: 75.120us - ExecTime: 145.946ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 177.255us - ProcessConjunctTime: 15.745us - ProjectionTime: 0ns - RowsProduced: 1.47083M (1470830) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 160.43ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.231ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [94.151ms, 50.108ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [82.538ms, 77.505ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 60.814ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.365ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 20.895us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 148.861ms - ScannerCtxSchedTime: 160.23ms - ScannerFilterTime: 80.392ms - ScannerGetBlockTime: 63.439ms - ScannerInitTime: 77.783us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 3.30us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 19.964us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 44.225us - BlockInitTime: 263.160us - BlockLoadTime: 63.302ms - BlocksLoad: 863 - CachedPagesNum: 1.208K (1208) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.716K (1716) - FirstReadSeekTime: 2.390ms - FirstReadTime: 59.903ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.455us - 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: 174.615us - OutputIndexResultColumnTimer: 90.613us - 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: 129.78ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 128.594ms - CloseTime: 82.316us - GetBlockTime: 862.894us - OpenTime: 188.46us - PrepareTime: 204.208us - SinkTime: 127.136ms - GetBlockCounter: 120 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 13 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 42.22ms - WaitBfTime: 894.125ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 330.309ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 122 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.25 MB - CloseTime: 26.577us - CompressTime: 0ns - ExecTime: 127.211ms - InputRows: 465.532K (465532) - LocalBytesSent: 9.25 MB - LocalSendTime: 607.811us - LocalSentRows: 387.837K (387837) - MemoryUsage: - PeakMemoryUsage: 15.54 MB - MergeBlockTime: 0ns - OpenTime: 86.895us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 301.548ms - RowsProduced: 465.532K (465532) - RpcAvgTime: 89.45ms - RpcCount: 20 - RpcMaxTime: 893.693ms - RpcMinTime: 887.219ms - RpcSumTime: 1s780ms - SerializeBatchTime: 5.742ms - SplitBlockDistributeByChannelTime: 107.204ms - SplitBlockHashComputeTime: 7.578ms - UncompressedRowBatchSize: 1.92 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22129] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.109us - BlocksProduced: 120 - CloseTime: 49.908us - ExecTime: 214.387ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 258.391us - ProcessConjunctTime: 39.171us - ProjectionTime: 0ns - RowsProduced: 465.532K (465532) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 83.908ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 213.257ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [122.441ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [83.908ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 39.704ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.70ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.376us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 119.953ms - ScannerCtxSchedTime: 83.900ms - ScannerFilterTime: 81.61ms - ScannerGetBlockTime: 41.64ms - ScannerInitTime: 105.988us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 1.152us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.7us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 14.42us - BlockInitTime: 106.949us - BlockLoadTime: 41.338ms - BlocksLoad: 558 - CachedPagesNum: 785 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 1.854ms - FirstReadTime: 38.871ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.468us - 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.891us - OutputIndexResultColumnTimer: 76.3us - 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: 145.353ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 145.64ms - CloseTime: 56.282us - GetBlockTime: 1.503ms - OpenTime: 75.322us - PrepareTime: 149.250us - SinkTime: 142.611ms - GetBlockCounter: 283 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 94.81ms - WaitBfTime: 894.120ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 280.15ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 278 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.05 MB - CloseTime: 17.65us - CompressTime: 0ns - ExecTime: 142.579ms - InputRows: 1.134741M (1134741) - LocalBytesSent: 22.54 MB - LocalSendTime: 1.500ms - LocalSentRows: 945.32K (945320) - MemoryUsage: - PeakMemoryUsage: 36.88 MB - MergeBlockTime: 0ns - OpenTime: 54.764us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 426.650ms - RowsProduced: 1.134741M (1134741) - RpcAvgTime: 122.135ms - RpcCount: 46 - RpcMaxTime: 2s809ms - RpcMinTime: 2s808ms - RpcSumTime: 5s618ms - SerializeBatchTime: 14.733ms - SplitBlockDistributeByChannelTime: 76.224ms - SplitBlockHashComputeTime: 18.288ms - UncompressedRowBatchSize: 4.69 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22131] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.316us - BlocksProduced: 283 - CloseTime: 35.846us - ExecTime: 243.670ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 132.339us - ProcessConjunctTime: 16.220us - ProjectionTime: 0ns - RowsProduced: 1.134741M (1134741) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 82.433ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 242.107ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [155.094ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [82.433ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 104.834ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.644ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 15.924us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 88.880ms - ScannerCtxSchedTime: 82.425ms - ScannerFilterTime: 48.983ms - ScannerGetBlockTime: 105.864ms - ScannerInitTime: 40.528us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 798ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.573us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.827us - BlockInitTime: 50.362us - BlockLoadTime: 106.122ms - BlocksLoad: 558 - CachedPagesNum: 785 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 1.542ms - FirstReadTime: 104.144ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.385us - 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: 100.969us - OutputIndexResultColumnTimer: 70.845us - 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: 159.29ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 158.688ms - CloseTime: 47.273us - GetBlockTime: 1.230ms - OpenTime: 89.59us - PrepareTime: 196.55us - SinkTime: 156.787ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 79.562ms - WaitBfTime: 892.957ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.129ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 216 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.21 MB - CloseTime: 22.82us - CompressTime: 0ns - ExecTime: 156.818ms - InputRows: 876.727K (876727) - LocalBytesSent: 17.10 MB - LocalSendTime: 1.145ms - LocalSentRows: 739.466K (739466) - MemoryUsage: - PeakMemoryUsage: 28.65 MB - MergeBlockTime: 0ns - OpenTime: 72.351us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s597ms - RowsProduced: 876.727K (876727) - RpcAvgTime: 173.870ms - RpcCount: 34 - RpcMaxTime: 2s956ms - RpcMinTime: 2s954ms - RpcSumTime: 5s911ms - SerializeBatchTime: 56.14ms - SplitBlockDistributeByChannelTime: 78.744ms - SplitBlockHashComputeTime: 13.756ms - UncompressedRowBatchSize: 3.40 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 3s547ms - 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: [22115] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.551us - BlocksProduced: 216 - CloseTime: 22.828us - ExecTime: 158.482ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 145.36us - ProcessConjunctTime: 19.777us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 123.557ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.144ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [30.451ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [123.557ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 29.617ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 890.146us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.793us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.32ms - ScannerCtxSchedTime: 123.556ms - ScannerFilterTime: 163.603us - ScannerGetBlockTime: 30.180ms - ScannerInitTime: 49.332us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 510ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.258us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 11.767us - BlockInitTime: 51.746us - BlockLoadTime: 30.281ms - BlocksLoad: 217 - CachedPagesNum: 289 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 648.420us - FirstReadTime: 29.141ms - IOTimer: 0ns - InvertedIndexFilterTime: 780ns - 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.911us - OutputIndexResultColumnTimer: 36.540us - 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=7):(Active: 211.240ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 208.219ms - CloseTime: 91.800us - GetBlockTime: 2.942ms - OpenTime: 2.762ms - PrepareTime: 156.547us - SinkTime: 201.582ms - GetBlockCounter: 286 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 15 - NumScheduleTimes: 17 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 104.374ms - WaitBfTime: 894.192ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.239ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 278 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.01 MB - CloseTime: 13.775us - CompressTime: 0ns - ExecTime: 201.553ms - InputRows: 1.143304M (1143304) - LocalBytesSent: 22.69 MB - LocalSendTime: 1.713ms - LocalSentRows: 952.55K (952550) - MemoryUsage: - PeakMemoryUsage: 37.18 MB - MergeBlockTime: 0ns - OpenTime: 54.400us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 383.172ms - RowsProduced: 1.143304M (1143304) - RpcAvgTime: 121.490ms - RpcCount: 46 - RpcMaxTime: 2s795ms - RpcMinTime: 2s793ms - RpcSumTime: 5s588ms - SerializeBatchTime: 33.323ms - SplitBlockDistributeByChannelTime: 132.112ms - SplitBlockHashComputeTime: 20.823ms - UncompressedRowBatchSize: 4.72 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22619] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.248us - BlocksProduced: 286 - CloseTime: 74.188us - ExecTime: 267.484ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 2.816ms - ProcessConjunctTime: 10.331us - ProjectionTime: 0ns - RowsProduced: 1.143304M (1143304) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 174.823ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 261.773ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [170.462ms, 116.979ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [89.620ms, 85.202ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 146.743ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 87.842ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 14.643us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 141.251ms - ScannerCtxSchedTime: 174.813ms - ScannerFilterTime: 138.592ms - ScannerGetBlockTime: 148.442ms - ScannerInitTime: 2.712ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 2.155us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.537us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 22.114us - BlockInitTime: 125.587us - BlockLoadTime: 234.76ms - BlocksLoad: 838 - CachedPagesNum: 1.183K (1183) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 13.463ms - FirstReadTime: 230.872ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.409us - 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.175us - OutputIndexResultColumnTimer: 101.293us - 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=8):(Active: 255.693ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 255.301ms - CloseTime: 85.90us - GetBlockTime: 3.372ms - OpenTime: 98.763us - PrepareTime: 197.186us - SinkTime: 250.521ms - GetBlockCounter: 393 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 15 - NumScheduleTimes: 17 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 145.635ms - WaitBfTime: 894.296ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.86ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 376 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.19 MB - CloseTime: 12.708us - CompressTime: 0ns - ExecTime: 250.454ms - InputRows: 1.557536M (1557536) - LocalBytesSent: 30.92 MB - LocalSendTime: 2.193ms - LocalSentRows: 1.297095M (1297095) - MemoryUsage: - PeakMemoryUsage: 50.20 MB - MergeBlockTime: 0ns - OpenTime: 56.841us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 963.676ms - RowsProduced: 1.557536M (1557536) - RpcAvgTime: 95.454ms - RpcCount: 63 - RpcMaxTime: 3s31ms - RpcMinTime: 2s982ms - RpcSumTime: 6s13ms - SerializeBatchTime: 20.984ms - SplitBlockDistributeByChannelTime: 183.929ms - SplitBlockHashComputeTime: 27.891ms - UncompressedRowBatchSize: 6.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22624] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.104us - BlocksProduced: 393 - CloseTime: 69.900us - ExecTime: 152.549ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 197.78us - ProcessConjunctTime: 14.10us - ProjectionTime: 0ns - RowsProduced: 1.557536M (1557536) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 262.938ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 149.74ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [85.166ms, 114.486ms, 18.260ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [85.470ms, 87.254ms, 90.213ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 75.252ms - MemoryUsage: - FreeBlocks: 30.23 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.255ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 21.256us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 218.642ms - ScannerCtxSchedTime: 262.924ms - ScannerFilterTime: 137.350ms - ScannerGetBlockTime: 79.906ms - ScannerInitTime: 63.37us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 4.79us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 19.687us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 39.515us - BlockInitTime: 273.933us - BlockLoadTime: 78.596ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 1.727K (1727) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 3.475ms - FirstReadTime: 73.609ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.434us - 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: 285.190us - OutputIndexResultColumnTimer: 164.728us - 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=9):(Active: 404.881ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 396.351ms - CloseTime: 172.270us - GetBlockTime: 3.417ms - OpenTime: 8.136ms - PrepareTime: 209.829us - SinkTime: 383.224ms - GetBlockCounter: 474 - NumBlockedBySinkTimes: 5 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 17 - NumScheduleTimes: 20 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 181.829ms - WaitBfTime: 891.973ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.45ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 456 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.07 MB - CloseTime: 26.530us - CompressTime: 0ns - ExecTime: 383.150ms - InputRows: 1.886995M (1886995) - LocalBytesSent: 37.47 MB - LocalSendTime: 3.220ms - LocalSentRows: 1.572229M (1572229) - MemoryUsage: - PeakMemoryUsage: 61.19 MB - MergeBlockTime: 0ns - OpenTime: 84.164us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 917.499ms - RowsProduced: 1.886995M (1886995) - RpcAvgTime: 104.113ms - RpcCount: 76 - RpcMaxTime: 3s956ms - RpcMinTime: 3s955ms - RpcSumTime: 7s912ms - SerializeBatchTime: 27.321ms - SplitBlockDistributeByChannelTime: 182.881ms - SplitBlockHashComputeTime: 89.377ms - UncompressedRowBatchSize: 7.79 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 10s971ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 10.629ms - WaitForLocalExchangeBuffer5: 16.120ms - 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: [22626] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.223us - BlocksProduced: 474 - CloseTime: 141.203us - ExecTime: 165.79ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 8.197ms - ProcessConjunctTime: 41.317us - ProjectionTime: 0ns - RowsProduced: 1.886995M (1886995) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 266.898ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 153.512ms - 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: 562 - expr_input_rows: 3.730752M (3730752) RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 - always_true: 0 - expr_filtered_rows: 22.892304M (22892304) - expr_input_rows: 23.923897M (23923897) VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [80.466ms, 87.750ms, 30.526ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [87.463ms, 88.276ms, 91.158ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 87.598ms - MemoryUsage: - FreeBlocks: 28.36 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 66.702ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 30.168us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 199.639ms - ScannerCtxSchedTime: 266.876ms - ScannerFilterTime: 104.504ms - ScannerGetBlockTime: 93.635ms - ScannerInitTime: 8.54ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 17 SegmentIterator: - BitmapIndexFilterTimer: 5.14us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 24.996us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 64.39us - BlockInitTime: 424.948us - BlockLoadTime: 92.445ms - 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.577ms - FirstReadTime: 80.597ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.611us - 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: 259.316us - OutputIndexResultColumnTimer: 154.48us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 162.929ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 162.394ms - CloseTime: 94.963us - GetBlockTime: 1.346ms - OpenTime: 156.988us - PrepareTime: 271.317us - SinkTime: 160.413ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 111.892ms - WaitBfTime: 835.778ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.867ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 224 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.56 MB - CloseTime: 29.90us - CompressTime: 0ns - ExecTime: 160.426ms - InputRows: 876.719K (876719) - LocalBytesSent: 3.28 MB - LocalSendTime: 309.659us - LocalSentRows: 137.517K (137517) - MemoryUsage: - PeakMemoryUsage: 7.13 MB - MergeBlockTime: 0ns - OpenTime: 65.170us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s700ms - RowsProduced: 876.719K (876719) - RpcAvgTime: 600.662ms - RpcCount: 180 - RpcMaxTime: 11s710ms - RpcMinTime: 9s26ms - RpcSumTime: 1m48s - SerializeBatchTime: 89.581ms - SplitBlockDistributeByChannelTime: 26.861ms - SplitBlockHashComputeTime: 15.443ms - UncompressedRowBatchSize: 17.76 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 4.196us - BlocksProduced: 216 - CloseTime: 59.774us - ExecTime: 144.268ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 300.151us - ProcessConjunctTime: 35.827us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 99.412ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.656ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [53.000ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [99.412ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 52.15ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.569ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.92us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 35.298ms - ScannerCtxSchedTime: 99.408ms - ScannerFilterTime: 174.651us - ScannerGetBlockTime: 52.710ms - ScannerInitTime: 88.701us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 474ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.986us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 10.466us - BlockInitTime: 39.378us - BlockLoadTime: 53.402ms - BlocksLoad: 217 - CachedPagesNum: 289 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 1.482ms - FirstReadTime: 52.259ms - IOTimer: 0ns - InvertedIndexFilterTime: 689ns - 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.171us - OutputIndexResultColumnTimer: 34.987us - 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=1):(Active: 541.368ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 540.951ms - CloseTime: 146.367us - GetBlockTime: 4.199ms - OpenTime: 84.244us - PrepareTime: 177.212us - SinkTime: 534.813ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 10 - NumYieldTimes: 4 - PendingFinishTimes: 1 - TaskCpuTime: 472.807ms - WaitBfTime: 835.783ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 130.500ms DATA_STREAM_SINK_OPERATOR (id=119,dst_id=119): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 818 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 44.34 MB - CloseTime: 32.408us - CompressTime: 0ns - ExecTime: 534.561ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 13.44 MB - LocalSendTime: 1.389ms - LocalSentRows: 563.879K (563879) - MemoryUsage: - PeakMemoryUsage: 23.59 MB - MergeBlockTime: 0ns - OpenTime: 54.669us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17s306ms - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 209.213ms - RpcCount: 674 - RpcMaxTime: 14s951ms - RpcMinTime: 10s279ms - RpcSumTime: 2m21s - SerializeBatchTime: 308.44ms - SplitBlockDistributeByChannelTime: 123.284ms - SplitBlockHashComputeTime: 64.56ms - UncompressedRowBatchSize: 69.90 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 1.957us - BlocksProduced: 836 - CloseTime: 109.415us - ExecTime: 122.261ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 161.656us - ProcessConjunctTime: 16.797us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 209.289ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 118.177ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 40, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 41, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 1048576 VScanner: - ReadColumns: [CUS_ID, CUS_MOBILE] - PerScannerRunningTime: [34.081ms, 24.711ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [108.385ms, 100.904ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 56.676ms - MemoryUsage: - FreeBlocks: 20.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.894ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 57.422us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 66.315ms - ScannerCtxSchedTime: 209.275ms - ScannerFilterTime: 388.204us - ScannerGetBlockTime: 58.76ms - ScannerInitTime: 44.745us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - BitmapIndexFilterTimer: 3.163us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.450us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 16.847us - BlockInitTime: 158.837us - BlockLoadTime: 58.187ms - BlocksLoad: 838 - CachedPagesNum: 1.183K (1183) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 1.746ms - FirstReadTime: 55.329ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.331us - 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: 172.74us - OutputIndexResultColumnTimer: 75.198us - 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 Fragment 108: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 114.12ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 112.675ms - CloseTime: 66.708us - GetBlockTime: 13.615ms - OpenTime: 1.15ms - PrepareTime: 245.947us - SinkTime: 97.480ms - GetBlockCounter: 228 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 59.668ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.720ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 194 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.06 MB - CloseTime: 14.475us - CompressTime: 0ns - ExecTime: 97.467ms - InputRows: 784.963K (784963) - LocalBytesSent: 15.58 MB - LocalSendTime: 1.418ms - LocalSentRows: 653.329K (653329) - MemoryUsage: - PeakMemoryUsage: 26.11 MB - MergeBlockTime: 0ns - OpenTime: 61.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s712ms - RowsProduced: 784.963K (784963) - RpcAvgTime: 180.902ms - RpcCount: 32 - RpcMaxTime: 2s899ms - RpcMinTime: 2s889ms - RpcSumTime: 5s788ms - SerializeBatchTime: 6.719ms - SplitBlockDistributeByChannelTime: 28.814ms - SplitBlockHashComputeTime: 43.203ms - UncompressedRowBatchSize: 3.26 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 433ns - BlocksProduced: 228 - CloseTime: 49.19us - ExecTime: 261.600ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.161ms - ProcessConjunctTime: 66.740us - ProjectionTime: 6.146ms - RowsProduced: 784.963K (784963) - RowsRead: 784.963K (784963) - RuntimeFilterInfo: - filter id = -1 filtered: 2.129966M (2129966) - filter id = -1 input: 3.699892M (3699892) - ScannerWorkerWaitTime: 22.412ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 240.627ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=12, opposite=false - PerScannerRunningTime: [218.869ms, ] - PerScannerRowsRead: [784.96K, ] - PerScannerWaitTime: [22.412ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 189.328ms - MemoryUsage: - FreeBlocks: 6.88 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.256ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.455us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 131.226ms - ScannerCtxSchedTime: 22.405ms - ScannerFilterTime: 28.395ms - ScannerGetBlockTime: 190.253ms - ScannerInitTime: 907.95us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3699892, filtered = 2129966] - BitmapIndexFilterTimer: 1.357us - BlockConditionsFilteredBloomFilterTime: 1.454us - BlockConditionsFilteredDictTime: 5.267us - BlockConditionsFilteredTime: 59.360us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 37.115us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.131us - BlockInitTime: 143.737us - BlockLoadTime: 190.174ms - BlocksLoad: 457 - CachedPagesNum: 736 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 54.735ms - FirstReadSeekCount: 456 - FirstReadSeekTime: 135.19us - FirstReadTime: 4.12ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.214us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 27.283ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 22.158ms - OutputIndexResultColumnTimer: 57.761us - 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: 7.919ms - ShortPredEvalTime: 77.811ms - TotalPagesNum: 736 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 287.401us Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 6.95ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.990ms - CloseTime: 162.344us - GetBlockTime: 92.731us - OpenTime: 2.704ms - PrepareTime: 229.44us - SinkTime: 149.829us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 929.191us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.60ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 17.824us - CompressTime: 0ns - ExecTime: 223.617us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 10.536us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 56.390us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s411ms - RowsProduced: 0 - RpcAvgTime: 3s394ms - RpcCount: 10 - RpcMaxTime: 3s394ms - RpcMinTime: 3s394ms - RpcSumTime: 33s942ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 522ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 665ns - BlocksProduced: 0 - CloseTime: 140.557us - ExecTime: 334.734ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 2.775ms - ProcessConjunctTime: 61.83us - ProjectionTime: 7.409us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 18.456922M (18456922) - filter id = -1 input: 37.668144M (37668144) - ScannerWorkerWaitTime: 111.621ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 331.712ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [10.961us, 4.135us, 5.578us, 7.562us, ] - PerScannerRowsRead: [0, 0, 0, 0, ] - PerScannerWaitTime: [23.940ms, 25.944ms, 26.915ms, 34.821ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 120.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 824.455ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 247ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 355.179ms - ScannerCtxSchedTime: 111.615ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 6.924us - ScannerInitTime: 68.326us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 14639768, filtered = 7210254] - BitmapIndexFilterTimer: 33.722us - BlockConditionsFilteredBloomFilterTime: 6.449us - BlockConditionsFilteredDictTime: 47.165us - BlockConditionsFilteredTime: 854.355us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 570.653us - BlockInitSeekCount: 32 - BlockInitSeekTime: 47.214us - BlockInitTime: 1.470ms - BlockLoadTime: 823.235ms - BlocksLoad: 1.809K (1809) - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 542.0ms - FirstReadSeekCount: 1.805K (1805) - FirstReadSeekTime: 403.113us - FirstReadTime: 18.108ms - IOTimer: 0ns - InvertedIndexFilterTime: 27.19us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 39.209ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 126.715ms - OutputIndexResultColumnTimer: 149.341us - 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: 40.676ms - ShortPredEvalTime: 85.371ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 868.68us PipelineXTask (index=1):(Active: 25.21ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 12.510ms - CloseTime: 206.843us - GetBlockTime: 85.586us - OpenTime: 12.96ms - PrepareTime: 198.922us - SinkTime: 275.676us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.113ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.741ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.6us - CompressTime: 0ns - ExecTime: 366.891us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 11.536us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 66.839us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s510ms - RowsProduced: 0 - RpcAvgTime: 3s494ms - RpcCount: 10 - RpcMaxTime: 3s495ms - RpcMinTime: 3s494ms - RpcSumTime: 34s949ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 558ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 555ns - BlocksProduced: 0 - CloseTime: 176.851us - ExecTime: 370.349ms - KeyRangesNum: 0 - MaxScannerThreadNum: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 4 - OpenTime: 12.185ms - ProcessConjunctTime: 66.772us - ProjectionTime: 6.537us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 17.432646M (17432646) - filter id = -1 input: 35.54713M (35547130) - ScannerWorkerWaitTime: 421.235ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 357.897ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [7.009us, 6.875us, 6.012us, 7.002us, ] - PerScannerRowsRead: [0, 0, 0, 0, ] - PerScannerWaitTime: [103.130ms, 104.197ms, 106.496ms, 107.410ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 60.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 797.851ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 386ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 344.211ms - ScannerCtxSchedTime: 421.229ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 7.238us - ScannerInitTime: 11.969ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 14645246, filtered = 7219996] - BitmapIndexFilterTimer: 11.413us - BlockConditionsFilteredBloomFilterTime: 5.453us - BlockConditionsFilteredDictTime: 24.212us - BlockConditionsFilteredTime: 441.727us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 293.670us - BlockInitSeekCount: 40 - BlockInitSeekTime: 31.511us - BlockInitTime: 825.783us - BlockLoadTime: 796.193ms - BlocksLoad: 1.809K (1809) - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 371.184ms - FirstReadSeekCount: 1.805K (1805) - FirstReadSeekTime: 438.764us - FirstReadTime: 16.327ms - IOTimer: 0ns - InvertedIndexFilterTime: 18.800us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 218.214ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 97.446ms - OutputIndexResultColumnTimer: 173.16us - 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: 220.15ms - ShortPredEvalTime: 74.339ms - TotalPagesNum: 1.352K (1352) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 896.273us PipelineXTask (index=2):(Active: 139.790ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 139.212ms - CloseTime: 133.13us - GetBlockTime: 1.323ms - OpenTime: 281.670us - PrepareTime: 153.298us - SinkTime: 137.81ms - GetBlockCounter: 228 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 86.594ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.469ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 202 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 10.28 MB - CloseTime: 20.340us - CompressTime: 0ns - ExecTime: 137.64ms - InputRows: 785.04K (785040) - LocalBytesSent: 3.10 MB - LocalSendTime: 453.185us - LocalSentRows: 130.141K (130141) - MemoryUsage: - PeakMemoryUsage: 6.93 MB - MergeBlockTime: 0ns - OpenTime: 47.444us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s908ms - RowsProduced: 785.04K (785040) - RpcAvgTime: 755.170ms - RpcCount: 160 - RpcMaxTime: 12s117ms - RpcMinTime: 12s47ms - RpcSumTime: 2m - SerializeBatchTime: 55.701ms - SplitBlockDistributeByChannelTime: 28.763ms - SplitBlockHashComputeTime: 42.671ms - UncompressedRowBatchSize: 16.21 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 457ns - BlocksProduced: 228 - CloseTime: 108.332us - ExecTime: 320.611ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 351.236us - ProcessConjunctTime: 64.747us - ProjectionTime: 5.264ms - RowsProduced: 785.04K (785040) - RowsRead: 785.04K (785040) - RuntimeFilterInfo: - filter id = -1 filtered: 2.121624M (2121624) - filter id = -1 input: 3.691704M (3691704) - ScannerWorkerWaitTime: 88.318ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 313.604ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - ShortCircuitPredicates: InListPredicateBase(STRING, IN_LIST), column_id=12, opposite=false - PerScannerRunningTime: [115.300ms, ] - PerScannerRowsRead: [785.04K, ] - PerScannerWaitTime: [88.318ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 114.60ms - MemoryUsage: - FreeBlocks: 6.88 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 109.682ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.487us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 91.386ms - ScannerCtxSchedTime: 88.313ms - ScannerFilterTime: 274.190us - ScannerGetBlockTime: 114.866ms - ScannerInitTime: 172.476us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3691704, filtered = 2121624] - BitmapIndexFilterTimer: 1.628us - BlockConditionsFilteredBloomFilterTime: 16.766us - BlockConditionsFilteredDictTime: 10.323us - BlockConditionsFilteredTime: 96.576us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 51.203us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.414us - BlockInitTime: 175.490us - BlockLoadTime: 223.400ms - BlocksLoad: 456 - CachedPagesNum: 734 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 60.463ms - FirstReadSeekCount: 455 - FirstReadSeekTime: 115.13us - FirstReadTime: 3.188ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.317us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 104.894ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 7.816ms - OutputIndexResultColumnTimer: 37.832us - 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: 6.122ms - ShortPredEvalTime: 15.131ms - TotalPagesNum: 734 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 186.478us PipelineXTask (index=3):(Active: 924.841us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 380.14us - CloseTime: 170.960us - GetBlockTime: 48.676us - OpenTime: 160.704us - PrepareTime: 205.708us - SinkTime: 148.461us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 745.498us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.62ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 30.609us - CompressTime: 0ns - ExecTime: 259.893us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 8.425us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 81.292us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s600ms - RowsProduced: 0 - RpcAvgTime: 1s584ms - RpcCount: 10 - RpcMaxTime: 1s584ms - RpcMinTime: 1s583ms - RpcSumTime: 15s841ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 538ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 610ns - BlocksProduced: 0 - CloseTime: 133.106us - ExecTime: 193.734ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 217.589us - ProcessConjunctTime: 61.920us - ProjectionTime: 3.732us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 2.918496M (2918496) - filter id = -1 input: 7.64M (7640000) - ScannerWorkerWaitTime: 7.316ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 193.332ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [6.910us, 5.278us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [3.641ms, 3.675ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 60.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 277.893ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 169ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 215.532ms - ScannerCtxSchedTime: 7.312ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.321us - ScannerInitTime: 63.716us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 5917152, filtered = 2274042] - BitmapIndexFilterTimer: 6.63us - BlockConditionsFilteredBloomFilterTime: 4.328us - BlockConditionsFilteredDictTime: 18.362us - BlockConditionsFilteredTime: 236.171us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 151.0us - BlockInitSeekCount: 14 - BlockInitSeekTime: 41.875us - BlockInitTime: 480.933us - BlockLoadTime: 263.447ms - BlocksLoad: 731 - CachedPagesNum: 548 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 162.304ms - FirstReadSeekCount: 729 - FirstReadSeekTime: 152.924us - FirstReadTime: 6.689ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.66us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 12.950ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 47.518ms - OutputIndexResultColumnTimer: 71.149us - 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: 13.690ms - ShortPredEvalTime: 28.329ms - TotalPagesNum: 548 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 421.305us PipelineXTask (index=4):(Active: 1.144ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 585.573us - CloseTime: 132.514us - GetBlockTime: 65.804us - OpenTime: 263.63us - PrepareTime: 156.992us - SinkTime: 223.175us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.1ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.290ms DATA_STREAM_SINK_OPERATOR (id=117,dst_id=117): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.117us - CompressTime: 0ns - ExecTime: 303.757us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 12.489us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 57.193us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s469ms - RowsProduced: 0 - RpcAvgTime: 3s454ms - RpcCount: 10 - RpcMaxTime: 3s454ms - RpcMinTime: 3s454ms - RpcSumTime: 34s546ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 547ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 607ns - BlocksProduced: 0 - CloseTime: 94.557us - ExecTime: 347.984ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 326.777us - ProcessConjunctTime: 99.253us - ProjectionTime: 3.904us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 2.929154M (2929154) - filter id = -1 input: 7.649208M (7649208) - ScannerWorkerWaitTime: 4.851ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 347.494ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CALLED_PHONE_NUMBER, RESULT_STATUS, START_TIME] - PerScannerRunningTime: [6.698us, 4.841us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [2.408ms, 2.442ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 60.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 436.486ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 118ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 232.614ms - ScannerCtxSchedTime: 4.845ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.740us - ScannerInitTime: 107.320us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 5921756, filtered = 2280314] - BitmapIndexFilterTimer: 6.428us - BlockConditionsFilteredBloomFilterTime: 4.60us - BlockConditionsFilteredDictTime: 19.303us - BlockConditionsFilteredTime: 274.549us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 180.329us - BlockInitSeekCount: 16 - BlockInitSeekTime: 53.508us - BlockInitTime: 568.137us - BlockLoadTime: 354.658ms - BlocksLoad: 732 - CachedPagesNum: 548 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 239.416ms - FirstReadSeekCount: 730 - FirstReadSeekTime: 169.657us - FirstReadTime: 7.290ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.890us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 13.555ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 52.542ms - OutputIndexResultColumnTimer: 81.481us - 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: 14.421ms - ShortPredEvalTime: 35.808ms - TotalPagesNum: 548 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 486.602us Fragment 109: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 822.717us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 377.313us - CloseTime: 62.688us - GetBlockTime: 52.911us - OpenTime: 107.683us - PrepareTime: 268.122us - SinkTime: 195.10us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 751.677us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.424ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.148us - CompressTime: 0ns - ExecTime: 267.447us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.642us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 59.681us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 30.316ms - RowsProduced: 0 - RpcAvgTime: 17.66ms - RpcCount: 7 - RpcMaxTime: 17.118ms - RpcMinTime: 17.16ms - RpcSumTime: 119.464ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 419ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.188us - DeserializeAndMergeTime: 0ns - ExecTime: 79.953us - ExprTime: 0ns - GetResultsTime: 11.852us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 53ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.662us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 56.676us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.850us - SerializeKeyTime: 0ns - SerializeResultTime: 17.695us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15299] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 466ns - BlocksProduced: 0 - CloseTime: 41.778us - ExecTime: 42.736ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 176.233us - ProcessConjunctTime: 41.725us - ProjectionTime: 2.43us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 803.550us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 42.486ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.628us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [803.550us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 41.619ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 171ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.686ms - ScannerCtxSchedTime: 802.289us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.510us - ScannerInitTime: 44.594us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 210ns - BlockConditionsFilteredBloomFilterTime: 273ns - BlockConditionsFilteredDictTime: 162ns - BlockConditionsFilteredTime: 5.541us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 270ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.129us - BlockInitTime: 38.72us - BlockLoadTime: 41.438ms - BlocksLoad: 62 - CachedPagesNum: 47 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 36.424ms - FirstReadSeekCount: 61 - FirstReadSeekTime: 21.919us - FirstReadTime: 729.957us - IOTimer: 0ns - InvertedIndexFilterTime: 605ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.665ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 570.927us - OutputIndexResultColumnTimer: 6.21us - RawRowsRead: 245.246K (245246) - 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: 2.729ms - ShortPredEvalTime: 545.187us - TotalPagesNum: 47 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 29.177us PipelineXTask (index=1):(Active: 972.720us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 604.447us - CloseTime: 57.992us - GetBlockTime: 58.175us - OpenTime: 93.378us - PrepareTime: 211.785us - SinkTime: 431.857us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 906.755us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.313ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.877us - CompressTime: 0ns - ExecTime: 500.528us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 33.968us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 64.2us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.533ms - RowsProduced: 0 - RpcAvgTime: 2.237ms - RpcCount: 7 - RpcMaxTime: 11.628ms - RpcMinTime: 425.115us - RpcSumTime: 15.665ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 650ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.226us - DeserializeAndMergeTime: 0ns - ExecTime: 47.304us - ExprTime: 0ns - GetResultsTime: 15.462us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 128ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.982us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.166us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.823us - SerializeKeyTime: 0ns - SerializeResultTime: 20.27us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15287] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 478ns - BlocksProduced: 0 - CloseTime: 41.121us - ExecTime: 16.519ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 174.886us - ProcessConjunctTime: 24.200us - ProjectionTime: 1.720us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 844.163us - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 16.269ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [4.506us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [844.163us, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.363ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 95ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 14.997ms - ScannerCtxSchedTime: 842.178us - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.93us - ScannerInitTime: 46.445us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 207ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.51us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.462us - BlockInitTime: 31.137us - BlockLoadTime: 15.248ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 12.53ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 26.714us - FirstReadTime: 2.830ms - IOTimer: 0ns - InvertedIndexFilterTime: 322ns - 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.141us - OutputIndexResultColumnTimer: 4.947us - RawRowsRead: 341.69K (341690) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 759.869us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 392.205us - CloseTime: 58.420us - GetBlockTime: 56.633us - OpenTime: 82.537us - PrepareTime: 220.315us - SinkTime: 234.534us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 694.409us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.423ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.77us - CompressTime: 0ns - ExecTime: 312.437us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.769us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 65.678us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 50.769ms - RowsProduced: 0 - RpcAvgTime: 43.769ms - RpcCount: 7 - RpcMaxTime: 43.846ms - RpcMinTime: 43.703ms - RpcSumTime: 306.387ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 822ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.251us - DeserializeAndMergeTime: 0ns - ExecTime: 46.781us - ExprTime: 0ns - GetResultsTime: 17.820us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 254ns - HashTableSize: 0 - InsertKeysToColumnTime: 2.468us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 16.816us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 4.40us - SerializeKeyTime: 0ns - SerializeResultTime: 23.966us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15289] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 295ns - BlocksProduced: 0 - CloseTime: 39.948us - ExecTime: 82.338ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 152.314us - ProcessConjunctTime: 28.849us - ProjectionTime: 1.934us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 13.889ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 82.116ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [7.234us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [13.889ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 68.149ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 85ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.225ms - ScannerCtxSchedTime: 13.887ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.517us - ScannerInitTime: 38.78us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 276ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.398us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.644us - BlockInitTime: 38.552us - BlockLoadTime: 67.965ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 46.349ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 45.964us - FirstReadTime: 20.910ms - IOTimer: 0ns - InvertedIndexFilterTime: 384ns - 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.54us - OutputIndexResultColumnTimer: 7.421us - RawRowsRead: 343.677K (343677) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 1.444ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 663.884us - CloseTime: 75.238us - GetBlockTime: 24.50us - OpenTime: 489.279us - PrepareTime: 209.497us - SinkTime: 136.436us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 597.59us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.499ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.877us - CompressTime: 0ns - ExecTime: 213.146us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 12.687us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 56.972us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.334ms - RowsProduced: 0 - RpcAvgTime: 26.361ms - RpcCount: 7 - RpcMaxTime: 26.518ms - RpcMinTime: 26.216ms - RpcSumTime: 184.528ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 3.519us - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 3.173us - DeserializeAndMergeTime: 0ns - ExecTime: 35.779us - ExprTime: 0ns - GetResultsTime: 5.405us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 144ns - HashTableSize: 0 - InsertKeysToColumnTime: 470ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.326us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 706ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.877us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15313] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 303ns - BlocksProduced: 0 - CloseTime: 46.521us - ExecTime: 133.907ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 552.537us - ProcessConjunctTime: 29.429us - ProjectionTime: 1.777us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.46ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 133.292ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.351us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [3.046ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 130.192ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 31.593ms - ScannerCtxSchedTime: 3.46ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.227us - ScannerInitTime: 436.176us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 415ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.10us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 21.680us - BlockInitTime: 51.210us - BlockLoadTime: 111.460ms - BlocksLoad: 93 - CachedPagesNum: 71 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 105.593ms - FirstReadSeekCount: 184 - FirstReadSeekTime: 61.499us - FirstReadTime: 4.908ms - IOTimer: 0ns - InvertedIndexFilterTime: 617ns - 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: 34.196us - OutputIndexResultColumnTimer: 9.354us - RawRowsRead: 372.571K (372571) - 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 PipelineXTask (index=4):(Active: 909.688us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 522.970us - CloseTime: 52.45us - GetBlockTime: 37.920us - OpenTime: 108.221us - PrepareTime: 220.589us - SinkTime: 361.757us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 851.261us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.78ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.273us - CompressTime: 0ns - ExecTime: 443.90us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.572us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 69.667us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.47ms - RowsProduced: 0 - RpcAvgTime: 3.906ms - RpcCount: 7 - RpcMaxTime: 3.953ms - RpcMinTime: 3.866ms - RpcSumTime: 27.348ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 534ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.745us - DeserializeAndMergeTime: 0ns - ExecTime: 43.672us - ExprTime: 0ns - GetResultsTime: 10.891us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 363ns - HashTableSize: 0 - InsertKeysToColumnTime: 2.123us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.384us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.221us - SerializeKeyTime: 0ns - SerializeResultTime: 14.411us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15315] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.92us - BlocksProduced: 0 - CloseTime: 33.586us - ExecTime: 33.340ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 182.729us - ProcessConjunctTime: 33.776us - ProjectionTime: 2.90us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.837ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 33.102ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [7.614us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [5.837ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 27.175ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 92ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.212ms - ScannerCtxSchedTime: 5.834ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.409us - ScannerInitTime: 38.308us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 302ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.22us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.157us - BlockInitTime: 41.965us - BlockLoadTime: 26.998ms - BlocksLoad: 95 - CachedPagesNum: 73 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 21.898ms - FirstReadSeekCount: 188 - FirstReadSeekTime: 46.684us - FirstReadTime: 4.378ms - IOTimer: 0ns - InvertedIndexFilterTime: 446ns - 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: 29.489us - OutputIndexResultColumnTimer: 7.726us - RawRowsRead: 379.18K (379180) - 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: 73 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 800.851us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 413.650us - CloseTime: 60.917us - GetBlockTime: 71.823us - OpenTime: 100.276us - PrepareTime: 220.409us - SinkTime: 222.374us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 732.760us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.737ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.971us - CompressTime: 0ns - ExecTime: 299.52us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.975us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 57.409us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 32.340ms - RowsProduced: 0 - RpcAvgTime: 24.198ms - RpcCount: 7 - RpcMaxTime: 24.322ms - RpcMinTime: 24.87ms - RpcSumTime: 169.389ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 622ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 743ns - DeserializeAndMergeTime: 0ns - ExecTime: 47.348us - ExprTime: 0ns - GetResultsTime: 15.916us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 135ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.293us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.578us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 3.59us - SerializeKeyTime: 0ns - SerializeResultTime: 21.926us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15331] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 838ns - BlocksProduced: 0 - CloseTime: 36.921us - ExecTime: 97.743ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 171.841us - ProcessConjunctTime: 36.582us - ProjectionTime: 2.11us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 13.890ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 97.489ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.784us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [13.890ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 83.467ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 125ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.710ms - ScannerCtxSchedTime: 13.887ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.760us - ScannerInitTime: 43.961us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 402ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.60us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 28.967us - BlockInitTime: 104.518us - BlockLoadTime: 83.282ms - BlocksLoad: 71 - CachedPagesNum: 56 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 56.175ms - FirstReadSeekCount: 140 - FirstReadSeekTime: 59.172us - FirstReadTime: 4.191ms - IOTimer: 0ns - InvertedIndexFilterTime: 536ns - 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: 32.142us - OutputIndexResultColumnTimer: 12.897us - RawRowsRead: 280.538K (280538) - 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: 56 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 44.260ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 22.116ms - CloseTime: 43.659us - GetBlockTime: 53.819us - OpenTime: 21.846ms - PrepareTime: 245.507us - SinkTime: 195.818us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 824.553us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.870ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.534us - CompressTime: 0ns - ExecTime: 257.995us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.912us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 52.988us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 36.727ms - RowsProduced: 0 - RpcAvgTime: 26.396ms - RpcCount: 7 - RpcMaxTime: 26.439ms - RpcMinTime: 26.360ms - RpcSumTime: 184.775ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 251ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 893ns - DeserializeAndMergeTime: 0ns - ExecTime: 47.782us - ExprTime: 0ns - GetResultsTime: 10.739us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 141ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.404us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 30.55us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.238us - SerializeKeyTime: 0ns - SerializeResultTime: 14.32us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15317] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 453ns - BlocksProduced: 0 - CloseTime: 29.425us - ExecTime: 132.110ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 21.915ms - ProcessConjunctTime: 26.632us - ProjectionTime: 1.965us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 38.307ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 110.127ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [9.182us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [38.307ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 71.758ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 45ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.694ms - ScannerCtxSchedTime: 38.306ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.763us - ScannerInitTime: 21.765ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 280ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.433us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 7.816us - BlockInitTime: 34.435us - BlockLoadTime: 71.610ms - BlocksLoad: 84 - CachedPagesNum: 64 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 66.890ms - FirstReadSeekCount: 166 - FirstReadSeekTime: 66.10us - FirstReadTime: 3.987ms - IOTimer: 0ns - InvertedIndexFilterTime: 414ns - 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.974us - OutputIndexResultColumnTimer: 7.991us - RawRowsRead: 334.289K (334289) - 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: 64 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 890.242us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 459.300us - CloseTime: 61.325us - GetBlockTime: 67.270us - OpenTime: 137.895us - PrepareTime: 223.223us - SinkTime: 232.775us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 820.272us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.85ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.245us - CompressTime: 0ns - ExecTime: 305.260us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.879us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 61.669us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 27.408ms - RowsProduced: 0 - RpcAvgTime: 24.364ms - RpcCount: 7 - RpcMaxTime: 24.409ms - RpcMinTime: 24.312ms - RpcSumTime: 170.551ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 490ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 723ns - DeserializeAndMergeTime: 0ns - ExecTime: 54.236us - ExprTime: 0ns - GetResultsTime: 22.120us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 160ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.266us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.85us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.385us - SerializeKeyTime: 0ns - SerializeResultTime: 26.653us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15319] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 551ns - BlocksProduced: 0 - CloseTime: 45.77us - ExecTime: 109.109ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 197.872us - ProcessConjunctTime: 50.280us - ProjectionTime: 1.829us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 15.839ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 108.828ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [7.622us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [15.839ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 92.894ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 209ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.4ms - ScannerCtxSchedTime: 15.837ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.494us - ScannerInitTime: 62.248us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 399ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.920us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.80us - BlockInitTime: 47.904us - BlockLoadTime: 92.695ms - BlocksLoad: 85 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 87.267ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 56.691us - FirstReadTime: 4.586ms - IOTimer: 0ns - InvertedIndexFilterTime: 508ns - 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: 39.337us - OutputIndexResultColumnTimer: 7.803us - RawRowsRead: 338.501K (338501) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 819.749us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 412.26us - CloseTime: 72.918us - GetBlockTime: 72.929us - OpenTime: 87.842us - PrepareTime: 241.898us - SinkTime: 231.275us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 739.870us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.851ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.874us - CompressTime: 0ns - ExecTime: 332.537us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 29.864us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 87.936us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.827ms - RowsProduced: 0 - RpcAvgTime: 15.807ms - RpcCount: 7 - RpcMaxTime: 15.878ms - RpcMinTime: 15.736ms - RpcSumTime: 110.654ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 525ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.176us - DeserializeAndMergeTime: 0ns - ExecTime: 46.926us - ExprTime: 0ns - GetResultsTime: 12.875us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 173ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.705us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.134us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.352us - SerializeKeyTime: 0ns - SerializeResultTime: 19.0us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15325] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 576ns - BlocksProduced: 0 - CloseTime: 38.178us - ExecTime: 73.700ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.458us - ProcessConjunctTime: 28.695us - ProjectionTime: 1.898us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.416ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 73.463ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.425us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [9.416ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 63.967ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 130ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.398ms - ScannerCtxSchedTime: 9.413ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.90us - ScannerInitTime: 35.758us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 394ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.863us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.797us - BlockInitTime: 43.827us - BlockLoadTime: 63.784ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 33.379ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 39.476us - FirstReadTime: 29.431ms - IOTimer: 0ns - InvertedIndexFilterTime: 500ns - 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.936us - OutputIndexResultColumnTimer: 8.597us - RawRowsRead: 341.787K (341787) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 833.698us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 382.264us - CloseTime: 105.232us - GetBlockTime: 89.307us - OpenTime: 82.1us - PrepareTime: 257.143us - SinkTime: 191.256us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 720.445us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.314ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.13us - CompressTime: 0ns - ExecTime: 275.339us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 39.319us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 64.657us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 48.315ms - RowsProduced: 0 - RpcAvgTime: 42.467ms - RpcCount: 7 - RpcMaxTime: 42.582ms - RpcMinTime: 42.366ms - RpcSumTime: 297.274ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 781ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.732us - DeserializeAndMergeTime: 0ns - ExecTime: 78.886us - ExprTime: 0ns - GetResultsTime: 27.10us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 139ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.488us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 41.702us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 16.530us - SerializeKeyTime: 0ns - SerializeResultTime: 31.320us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15349] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 249ns - BlocksProduced: 0 - CloseTime: 76.236us - ExecTime: 142.805ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 145.67us - ProcessConjunctTime: 27.372us - ProjectionTime: 2.256us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 16.795ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 142.529ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.393us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [16.795ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 125.673ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 147ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 35.287ms - ScannerCtxSchedTime: 16.794ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.440us - ScannerInitTime: 34.545us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 335ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.475us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.465us - BlockInitTime: 32.245us - BlockLoadTime: 125.513ms - BlocksLoad: 106 - CachedPagesNum: 80 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 98.820ms - FirstReadSeekCount: 210 - FirstReadSeekTime: 81.348us - FirstReadTime: 25.654ms - IOTimer: 0ns - InvertedIndexFilterTime: 399ns - 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: 39.207us - OutputIndexResultColumnTimer: 10.149us - RawRowsRead: 423.736K (423736) - 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: 80 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 719.80us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 352.249us - CloseTime: 56.637us - GetBlockTime: 53.354us - OpenTime: 82.340us - PrepareTime: 221.802us - SinkTime: 196.878us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 653.967us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.879ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.64us - CompressTime: 0ns - ExecTime: 255.330us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.320us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 49.87us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 44.94ms - RowsProduced: 0 - RpcAvgTime: 37.988ms - RpcCount: 7 - RpcMaxTime: 38.151ms - RpcMinTime: 37.829ms - RpcSumTime: 265.917ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 475ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 604ns - DeserializeAndMergeTime: 0ns - ExecTime: 45.797us - ExprTime: 0ns - GetResultsTime: 12.294us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 149ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.121us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.809us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.511us - SerializeKeyTime: 0ns - SerializeResultTime: 16.741us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15351] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 233ns - BlocksProduced: 0 - CloseTime: 43.647us - ExecTime: 140.572ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 142.459us - ProcessConjunctTime: 27.893us - ProjectionTime: 9.782us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 10.613ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 140.344ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [7.444us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [10.613ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 129.626ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 180ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.21ms - ScannerCtxSchedTime: 10.609ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.391us - ScannerInitTime: 36.729us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 701ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.153us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 15.423us - BlockInitTime: 61.909us - BlockLoadTime: 129.362ms - BlocksLoad: 104 - CachedPagesNum: 79 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 108.977ms - FirstReadSeekCount: 206 - FirstReadSeekTime: 74.38us - FirstReadTime: 19.30ms - IOTimer: 0ns - InvertedIndexFilterTime: 861ns - 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: 65.808us - OutputIndexResultColumnTimer: 15.832us - RawRowsRead: 416.268K (416268) - 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: 79 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 733.552us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 359.559us - CloseTime: 53.889us - GetBlockTime: 68.440us - OpenTime: 86.552us - PrepareTime: 228.490us - SinkTime: 188.107us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 673.228us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.247ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.707us - CompressTime: 0ns - ExecTime: 264.968us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.94us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 65.502us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 51.872ms - RowsProduced: 0 - RpcAvgTime: 39.785ms - RpcCount: 7 - RpcMaxTime: 39.958ms - RpcMinTime: 39.594ms - RpcSumTime: 278.499ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 455ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.18us - DeserializeAndMergeTime: 0ns - ExecTime: 65.936us - ExprTime: 0ns - GetResultsTime: 11.937us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 140ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.611us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 45.203us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.621us - SerializeKeyTime: 0ns - SerializeResultTime: 16.751us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 293ns - BlocksProduced: 0 - CloseTime: 37.797us - ExecTime: 140.450ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 142.430us - ProcessConjunctTime: 25.585us - ProjectionTime: 1.994us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 9.568ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 140.220ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.612us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [9.568ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 130.591ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 60ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 38.509ms - ScannerCtxSchedTime: 9.567ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.618us - ScannerInitTime: 39.622us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 621ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.473us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 10.452us - BlockInitTime: 42.80us - BlockLoadTime: 130.402ms - BlocksLoad: 100 - CachedPagesNum: 76 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 123.174ms - FirstReadSeekCount: 198 - FirstReadSeekTime: 61.960us - FirstReadTime: 6.267ms - IOTimer: 0ns - InvertedIndexFilterTime: 628ns - 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: 44.224us - OutputIndexResultColumnTimer: 12.44us - RawRowsRead: 399.553K (399553) - 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: 76 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 26.658ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 23.581ms - CloseTime: 573.473us - GetBlockTime: 16.96ms - OpenTime: 2.198ms - PrepareTime: 294.757us - SinkTime: 5.179ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 20.989ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.918ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 214.35 KB - CloseTime: 19.92us - CompressTime: 0ns - ExecTime: 5.313ms - InputRows: 30.907K (30907) - LocalBytesSent: 751.41 KB - LocalSendTime: 59.526us - LocalSentRows: 17.894K (17894) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 119.95us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s570ms - RowsProduced: 30.907K (30907) - RpcAvgTime: 1s547ms - RpcCount: 5 - RpcMaxTime: 1s558ms - RpcMinTime: 1s534ms - RpcSumTime: 7s736ms - SerializeBatchTime: 626.736us - SplitBlockDistributeByChannelTime: 3.500ms - SplitBlockHashComputeTime: 519.918us - UncompressedRowBatchSize: 563.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 13.664ms - CloseTime: 414.720us - DeserializeAndMergeTime: 0ns - ExecTime: 16.197ms - ExprTime: 26.214us - GetResultsTime: 2.27ms - HashTableComputeTime: 13.238ms - HashTableEmplaceTime: 11.312ms - HashTableInputCount: 68.654K (68654) - HashTableIterateTime: 269.881us - HashTableSize: 30.907K (30907) - InsertKeysToColumnTime: 772.550us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 24.749us - ProjectionTime: 0ns - RowsProduced: 30.907K (30907) - SerializeDataTime: 698.887us - SerializeKeyTime: 0ns - SerializeResultTime: 2.48ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15297, 15333, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 613ns - BlocksProduced: 19 - CloseTime: 134.215us - ExecTime: 144.257ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 2.255ms - ProcessConjunctTime: 49.216us - ProjectionTime: 3.288ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 270.329ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 138.264ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [8.913us, 6.100us, 21.189ms, ] - PerScannerRowsRead: [0, 0, 68.65K, ] - PerScannerWaitTime: [87.434ms, 91.046ms, 91.848ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 20.845ms - MemoryUsage: - FreeBlocks: 2.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 91.988ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 987ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.689ms - ScannerCtxSchedTime: 270.325ms - ScannerFilterTime: 17.589us - ScannerGetBlockTime: 21.161ms - ScannerInitTime: 2.101ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 916ns - BlockConditionsFilteredBloomFilterTime: 562ns - BlockConditionsFilteredDictTime: 297ns - BlockConditionsFilteredTime: 16.438us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 446ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 45.483us - BlockInitTime: 162.236us - BlockLoadTime: 112.585ms - BlocksLoad: 155 - CachedPagesNum: 139 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 79.328ms - FirstReadSeekCount: 241 - FirstReadSeekTime: 90.546us - FirstReadTime: 16.194ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.476us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.134ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 663.982us - OutputIndexResultColumnTimer: 14.343us - RawRowsRead: 604.659K (604659) - 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.691ms - ShortPredEvalTime: 12.44ms - TotalPagesNum: 139 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 33.939us PipelineXTask (index=1):(Active: 56.498ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 41.782ms - CloseTime: 650.192us - GetBlockTime: 22.190ms - OpenTime: 13.812ms - PrepareTime: 244.253us - SinkTime: 5.645ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 23.505ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.180ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 210.18 KB - CloseTime: 20.125us - CompressTime: 0ns - ExecTime: 5.727ms - InputRows: 30.552K (30552) - LocalBytesSent: 747.17 KB - LocalSendTime: 73.158us - LocalSentRows: 17.793K (17793) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 67.5us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s858ms - RowsProduced: 30.552K (30552) - RpcAvgTime: 1s801ms - RpcCount: 5 - RpcMaxTime: 1s845ms - RpcMinTime: 1s773ms - RpcSumTime: 9s6ms - SerializeBatchTime: 640.723us - SplitBlockDistributeByChannelTime: 3.277ms - SplitBlockHashComputeTime: 873.832us - UncompressedRowBatchSize: 552.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 19.83ms - CloseTime: 465.867us - DeserializeAndMergeTime: 0ns - ExecTime: 22.241ms - ExprTime: 28.726us - GetResultsTime: 2.566ms - HashTableComputeTime: 18.762ms - HashTableEmplaceTime: 17.77ms - HashTableInputCount: 67.716K (67716) - HashTableIterateTime: 290.337us - HashTableSize: 30.552K (30552) - InsertKeysToColumnTime: 1.126ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 34.578us - ProjectionTime: 0ns - RowsProduced: 30.552K (30552) - SerializeDataTime: 981.299us - SerializeKeyTime: 0ns - SerializeResultTime: 2.592ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15301, 15335, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 434ns - BlocksProduced: 19 - CloseTime: 158.298us - ExecTime: 162.805ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 13.878ms - ProcessConjunctTime: 61.243us - ProjectionTime: 4.20ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 341.241ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 144.320ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [5.553us, 3.858us, 23.902ms, ] - PerScannerRowsRead: [0, 0, 67.72K, ] - PerScannerWaitTime: [107.374ms, 116.920ms, 116.946ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 10.465ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 37.485ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.420us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.839ms - ScannerCtxSchedTime: 341.237ms - ScannerFilterTime: 19.62us - ScannerGetBlockTime: 23.867ms - ScannerInitTime: 13.712ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 890ns - BlockConditionsFilteredBloomFilterTime: 319ns - BlockConditionsFilteredDictTime: 258ns - BlockConditionsFilteredTime: 9.371us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 328ns - BlockInitSeekCount: 49 - BlockInitSeekTime: 45.376us - BlockInitTime: 152.150us - BlockLoadTime: 60.725ms - BlocksLoad: 160 - CachedPagesNum: 144 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 49.720ms - FirstReadSeekCount: 248 - FirstReadSeekTime: 104.235us - FirstReadTime: 4.42ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.496us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.702ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 739.407us - OutputIndexResultColumnTimer: 12.657us - RawRowsRead: 624.718K (624718) - 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: 3.157ms - ShortPredEvalTime: 1.243ms - TotalPagesNum: 144 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 39.138us PipelineXTask (index=2):(Active: 36.547ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 34.780ms - CloseTime: 1.59ms - GetBlockTime: 28.524ms - OpenTime: 479.515us - PrepareTime: 216.396us - SinkTime: 5.621ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.532ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.260ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 209.16 KB - CloseTime: 28.271us - CompressTime: 0ns - ExecTime: 5.703ms - InputRows: 30.201K (30201) - LocalBytesSent: 734.07 KB - LocalSendTime: 99.120us - LocalSentRows: 17.481K (17481) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 58.914us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s262ms - RowsProduced: 30.201K (30201) - RpcAvgTime: 2s243ms - RpcCount: 5 - RpcMaxTime: 2s250ms - RpcMinTime: 2s236ms - RpcSumTime: 11s215ms - SerializeBatchTime: 675.62us - SplitBlockDistributeByChannelTime: 3.120ms - SplitBlockHashComputeTime: 906.261us - UncompressedRowBatchSize: 550.35 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 25.551ms - CloseTime: 743.384us - DeserializeAndMergeTime: 0ns - ExecTime: 28.826ms - ExprTime: 35.180us - GetResultsTime: 2.408ms - HashTableComputeTime: 25.135ms - HashTableEmplaceTime: 13.895ms - HashTableInputCount: 66.761K (66761) - HashTableIterateTime: 272.701us - HashTableSize: 30.201K (30201) - InsertKeysToColumnTime: 1.39ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 20.892us - ProjectionTime: 0ns - RowsProduced: 30.201K (30201) - SerializeDataTime: 900.898us - SerializeKeyTime: 0ns - SerializeResultTime: 2.432ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15303, 15321, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 744ns - BlocksProduced: 19 - CloseTime: 280.258us - ExecTime: 192.857ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 554.720us - ProcessConjunctTime: 98.416us - ProjectionTime: 6.446ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 998.110us - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 185.145ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [9.558us, 6.902us, 180.156ms, ] - PerScannerRowsRead: [0, 0, 66.76K, ] - PerScannerWaitTime: [273.396us, 296.115us, 428.599us, ] - BlockConvertTime: 0ns - BlockFetchTime: 179.778ms - MemoryUsage: - FreeBlocks: 2.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 104.720ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.439us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 99.173ms - ScannerCtxSchedTime: 985.146us - ScannerFilterTime: 26.402us - ScannerGetBlockTime: 180.105ms - ScannerInitTime: 276.379us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.609us - BlockConditionsFilteredBloomFilterTime: 540ns - BlockConditionsFilteredDictTime: 370ns - BlockConditionsFilteredTime: 16.811us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 710ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 66.948us - BlockInitTime: 303.647us - BlockLoadTime: 283.671ms - BlocksLoad: 165 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 236.723ms - FirstReadSeekCount: 262 - FirstReadSeekTime: 180.215us - FirstReadTime: 7.668ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.759us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 7.794ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.516ms - OutputIndexResultColumnTimer: 27.873us - RawRowsRead: 645.772K (645772) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 242.615K (242615) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 7.31ms - ShortPredEvalTime: 26.873ms - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 90.666us PipelineXTask (index=3):(Active: 138.250ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 118.427ms - CloseTime: 552.555us - GetBlockTime: 92.813ms - OpenTime: 19.30ms - PrepareTime: 230.398us - SinkTime: 6.365ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 29.242ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.193ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 206.95 KB - CloseTime: 22.89us - CompressTime: 0ns - ExecTime: 6.458ms - InputRows: 30.3K (30300) - LocalBytesSent: 744.94 KB - LocalSendTime: 95.548us - LocalSentRows: 17.74K (17740) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 77.671us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s354ms - RowsProduced: 30.3K (30300) - RpcAvgTime: 3s327ms - RpcCount: 5 - RpcMaxTime: 3s340ms - RpcMinTime: 3s318ms - RpcSumTime: 16s639ms - SerializeBatchTime: 714.656us - SplitBlockDistributeByChannelTime: 3.712ms - SplitBlockHashComputeTime: 886.439us - UncompressedRowBatchSize: 543.42 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 70.638ms - CloseTime: 384.561us - DeserializeAndMergeTime: 0ns - ExecTime: 92.729ms - ExprTime: 47.583us - GetResultsTime: 21.583ms - HashTableComputeTime: 70.198ms - HashTableEmplaceTime: 15.625ms - HashTableInputCount: 68.072K (68072) - HashTableIterateTime: 369.410us - HashTableSize: 30.3K (30300) - InsertKeysToColumnTime: 1.1ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 18.130us - ProjectionTime: 0ns - RowsProduced: 30.3K (30300) - SerializeDataTime: 20.11ms - SerializeKeyTime: 0ns - SerializeResultTime: 21.614ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15305, 15323, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 868ns - BlocksProduced: 19 - CloseTime: 140.433us - ExecTime: 242.39ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 19.86ms - ProcessConjunctTime: 70.914us - ProjectionTime: 4.441ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 152.423ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 217.916ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [11.256us, 7.891us, 81.764ms, ] - PerScannerRowsRead: [0, 0, 68.07K, ] - PerScannerWaitTime: [1.503ms, 1.486ms, 149.432ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 81.270ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 106.730ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.573us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 85.178ms - ScannerCtxSchedTime: 152.417ms - ScannerFilterTime: 20.425us - ScannerGetBlockTime: 81.727ms - ScannerInitTime: 700.913us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 1.813us - BlockConditionsFilteredBloomFilterTime: 282ns - BlockConditionsFilteredDictTime: 202ns - BlockConditionsFilteredTime: 12.395us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 307ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 61.249us - BlockInitTime: 241.87us - BlockLoadTime: 187.590ms - BlocksLoad: 167 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 136.893ms - FirstReadSeekCount: 307 - FirstReadSeekTime: 175.198us - FirstReadTime: 20.754ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.907us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.611ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 279.928us - OutputIndexResultColumnTimer: 21.71us - RawRowsRead: 650.634K (650634) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 75.379K (75379) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 905.616us - ShortPredEvalTime: 173.627us - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.491us PipelineXTask (index=4):(Active: 7.138ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.433ms - CloseTime: 196.996us - GetBlockTime: 57.523us - OpenTime: 3.248ms - PrepareTime: 251.607us - SinkTime: 103.303us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 965.220us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.640ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 48.629us - CompressTime: 0ns - ExecTime: 235.422us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 16.893us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 84.87us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s594ms - RowsProduced: 0 - RpcAvgTime: 1s577ms - RpcCount: 5 - RpcMaxTime: 1s577ms - RpcMinTime: 1s577ms - RpcSumTime: 7s886ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 440ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 3.125us - DeserializeAndMergeTime: 0ns - ExecTime: 34.995us - ExprTime: 0ns - GetResultsTime: 4.760us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 119ns - HashTableSize: 0 - InsertKeysToColumnTime: 221ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.377us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 668ns - SerializeKeyTime: 0ns - SerializeResultTime: 7.13us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15291, 15347] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 683ns - BlocksProduced: 0 - CloseTime: 137.441us - ExecTime: 192.432ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 3.315ms - ProcessConjunctTime: 68.483us - ProjectionTime: 2.863us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 218.614ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 188.932ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.191us, 5.005us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [110.796ms, 107.817ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 100.876ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 208ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.760ms - ScannerCtxSchedTime: 218.611ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.459us - ScannerInitTime: 144.970us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 599ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.82us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 30 - BlockInitSeekTime: 23.16us - BlockInitTime: 93.161us - BlockLoadTime: 100.555ms - BlocksLoad: 191 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 92.937ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 119.553us - FirstReadTime: 6.465ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.123us - 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: 47.880us - OutputIndexResultColumnTimer: 13.139us - RawRowsRead: 761.668K (761668) - 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: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 6.665ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.253ms - CloseTime: 138.537us - GetBlockTime: 78.521us - OpenTime: 2.950ms - PrepareTime: 314.591us - SinkTime: 196.162us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.62ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 25.13ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.615us - CompressTime: 0ns - ExecTime: 296.624us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 48.373us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 76.466us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s500ms - RowsProduced: 0 - RpcAvgTime: 1s480ms - RpcCount: 5 - RpcMaxTime: 1s482ms - RpcMinTime: 1s478ms - RpcSumTime: 7s401ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 468ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.755us - DeserializeAndMergeTime: 0ns - ExecTime: 46.85us - ExprTime: 0ns - GetResultsTime: 9.837us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 106ns - HashTableSize: 0 - InsertKeysToColumnTime: 713ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 25.356us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.662us - SerializeKeyTime: 0ns - SerializeResultTime: 15.198us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15293, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 673ns - BlocksProduced: 0 - CloseTime: 103.830us - ExecTime: 158.255ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 3.11ms - ProcessConjunctTime: 57.470us - ProjectionTime: 2.940us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 214.998ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 155.81ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.187us, 4.554us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [107.426ms, 107.572ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 79.468ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 189ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.847ms - ScannerCtxSchedTime: 214.994ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.539us - ScannerInitTime: 2.837ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 646ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.404us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.71us - BlockInitTime: 75.833us - BlockLoadTime: 79.165ms - BlocksLoad: 192 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 60.540ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 100.131us - FirstReadTime: 17.554ms - IOTimer: 0ns - InvertedIndexFilterTime: 848ns - 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: 34.700us - OutputIndexResultColumnTimer: 12.30us - RawRowsRead: 765.16K (765160) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 28.782ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 14.289ms - CloseTime: 154.877us - GetBlockTime: 79.88us - OpenTime: 14.59ms - PrepareTime: 270.308us - SinkTime: 124.271us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.207ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.996ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 26.56us - CompressTime: 0ns - ExecTime: 212.239us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 26.138us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 62.266us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s678ms - RowsProduced: 0 - RpcAvgTime: 1s653ms - RpcCount: 5 - RpcMaxTime: 1s653ms - RpcMinTime: 1s653ms - RpcSumTime: 8s266ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 358ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.871us - DeserializeAndMergeTime: 0ns - ExecTime: 82.607us - ExprTime: 0ns - GetResultsTime: 7.504us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 190ns - HashTableSize: 0 - InsertKeysToColumnTime: 567ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 67.642us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 824ns - SerializeKeyTime: 0ns - SerializeResultTime: 10.396us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15295, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 610ns - BlocksProduced: 0 - CloseTime: 118.661us - ExecTime: 172.182ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 14.124ms - ProcessConjunctTime: 59.774us - ProjectionTime: 3.516us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 237.561ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.873ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [7.135us, 6.868us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [118.665ms, 118.896ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 86.225ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 356ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 56.186ms - ScannerCtxSchedTime: 237.558ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.837us - ScannerInitTime: 13.965ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 649ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.217us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 30.665us - BlockInitTime: 96.814us - BlockLoadTime: 85.883ms - BlocksLoad: 193 - CachedPagesNum: 149 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 75.193ms - FirstReadSeekCount: 382 - FirstReadSeekTime: 139.32us - FirstReadTime: 9.33ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.100us - 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: 78.216us - OutputIndexResultColumnTimer: 18.771us - RawRowsRead: 772.394K (772394) - 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: 149 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 4.833ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.428ms - CloseTime: 137.729us - GetBlockTime: 74.218us - OpenTime: 2.2ms - PrepareTime: 258.983us - SinkTime: 300.485us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.269ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.272ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 27.61us - CompressTime: 0ns - ExecTime: 397.121us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 30.648us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 70.335us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.275ms - RowsProduced: 0 - RpcAvgTime: 2.985ms - RpcCount: 5 - RpcMaxTime: 3.96ms - RpcMinTime: 2.856ms - RpcSumTime: 14.929ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 487ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.809us - DeserializeAndMergeTime: 0ns - ExecTime: 40.233us - ExprTime: 0ns - GetResultsTime: 10.693us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 95ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.397us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 21.604us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.873us - SerializeKeyTime: 0ns - SerializeResultTime: 14.491us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15307, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 520ns - BlocksProduced: 0 - CloseTime: 102.796us - ExecTime: 108.887ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 2.75ms - ProcessConjunctTime: 47.662us - ProjectionTime: 4.834us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 16.626ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 106.650ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [6.851us, 9.639us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [8.675ms, 7.950ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 153.623ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 190ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.336ms - ScannerCtxSchedTime: 16.619ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.603us - ScannerInitTime: 1.116ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.98us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.329us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 15 - BlockInitSeekTime: 26.901us - BlockInitTime: 133.308us - BlockLoadTime: 153.158ms - BlocksLoad: 192 - CachedPagesNum: 147 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 101.149ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 121.95us - FirstReadTime: 11.102ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.694us - 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: 94.501us - OutputIndexResultColumnTimer: 20.738us - RawRowsRead: 767.593K (767593) - 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: 147 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 6.409ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.59ms - CloseTime: 120.186us - GetBlockTime: 68.890us - OpenTime: 2.856ms - PrepareTime: 365.596us - SinkTime: 107.13us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 888.174us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.877ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.195us - CompressTime: 0ns - ExecTime: 270.304us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 25.535us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 150.760us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s597ms - RowsProduced: 0 - RpcAvgTime: 1s580ms - RpcCount: 5 - RpcMaxTime: 1s580ms - RpcMinTime: 1s580ms - RpcSumTime: 7s902ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 435ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1000ns - DeserializeAndMergeTime: 0ns - ExecTime: 44.984us - ExprTime: 0ns - GetResultsTime: 11.394us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 112ns - HashTableSize: 0 - InsertKeysToColumnTime: 4.226us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.84us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.620us - SerializeKeyTime: 0ns - SerializeResultTime: 14.649us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15309, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 634ns - BlocksProduced: 0 - CloseTime: 102.363us - ExecTime: 174.221ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 2.988ms - ProcessConjunctTime: 42.985us - ProjectionTime: 4.30us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 209.67ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 171.79ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [7.807us, 10.297us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [104.047ms, 105.020ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 113.871ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 286ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 62.849ms - ScannerCtxSchedTime: 209.64ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.786us - ScannerInitTime: 2.784ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 675ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.210us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 27.14us - BlockInitTime: 97.131us - BlockLoadTime: 91.438ms - BlocksLoad: 192 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 79.268ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 135.473us - FirstReadTime: 10.129ms - 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: 2 - OutputColumnTime: 81.711us - OutputIndexResultColumnTimer: 22.956us - RawRowsRead: 769.413K (769413) - 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: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 1.479ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 687.814us - CloseTime: 110.675us - GetBlockTime: 72.571us - OpenTime: 360.272us - PrepareTime: 312.505us - SinkTime: 231.125us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.359ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.830ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 21.432us - CompressTime: 0ns - ExecTime: 394.932us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 24.713us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 143.47us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.184ms - RowsProduced: 0 - RpcAvgTime: 5.79ms - RpcCount: 5 - RpcMaxTime: 5.250ms - RpcMinTime: 4.908ms - RpcSumTime: 25.398ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 563ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 1.261us - DeserializeAndMergeTime: 0ns - ExecTime: 60.370us - ExprTime: 0ns - GetResultsTime: 9.852us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 138ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.266us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 32.520us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.213us - SerializeKeyTime: 0ns - SerializeResultTime: 24.455us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15311, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.56us - BlocksProduced: 0 - CloseTime: 84.202us - ExecTime: 94.37ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 394.906us - ProcessConjunctTime: 75.906us - ProjectionTime: 4.63us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.959ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.509ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [8.600us, 5.979us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [8.487ms, 9.471ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 168.922ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 84ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 87.458ms - ScannerCtxSchedTime: 17.953ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.763us - ScannerInitTime: 205.782us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.259us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.641us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 30.551us - BlockInitTime: 125.97us - BlockLoadTime: 168.446ms - BlocksLoad: 190 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 122.655ms - FirstReadSeekCount: 376 - FirstReadSeekTime: 133.582us - FirstReadTime: 43.620ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.699us - 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: 101.539us - OutputIndexResultColumnTimer: 23.633us - RawRowsRead: 759.906K (759906) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 1.260ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 605.110us - CloseTime: 117.998us - GetBlockTime: 83.268us - OpenTime: 236.507us - PrepareTime: 290.859us - SinkTime: 249.236us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.131ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.38ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 16.975us - CompressTime: 0ns - ExecTime: 328.36us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 40.223us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 62.478us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.462ms - RowsProduced: 0 - RpcAvgTime: 178.184us - RpcCount: 5 - RpcMaxTime: 241.79us - RpcMinTime: 16.327us - RpcSumTime: 890.924us - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 946ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.246us - DeserializeAndMergeTime: 0ns - ExecTime: 99.232us - ExprTime: 0ns - GetResultsTime: 17.669us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 105ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.525us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 72.758us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.88us - SerializeKeyTime: 0ns - SerializeResultTime: 21.52us - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15327, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.43us - BlocksProduced: 0 - CloseTime: 93.331us - ExecTime: 89.61ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 300.107us - ProcessConjunctTime: 69.906us - ProjectionTime: 4.809us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 19.914ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 88.607ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - PerScannerRunningTime: [8.277us, 8.488us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [9.473ms, 10.440ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 154.318ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 171ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 71.847ms - ScannerCtxSchedTime: 19.909ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.724us - ScannerInitTime: 109.443us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 991ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.614us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 16 - BlockInitSeekTime: 22.123us - BlockInitTime: 101.650us - BlockLoadTime: 126.715ms - BlocksLoad: 170 - CachedPagesNum: 132 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 80.600ms - FirstReadSeekCount: 336 - FirstReadSeekTime: 114.729us - FirstReadTime: 44.373ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.401us - 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: 77.798us - OutputIndexResultColumnTimer: 19.700us - RawRowsRead: 681.79K (681790) - 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: 132 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 68.948ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 56.879ms - CloseTime: 512.466us - GetBlockTime: 11.965ms - OpenTime: 11.301ms - PrepareTime: 245.670us - SinkTime: 33.523ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 16.297ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.423ms DATA_STREAM_SINK_OPERATOR (id=114,dst_id=114): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 211.12 KB - CloseTime: 13.689us - CompressTime: 0ns - ExecTime: 33.617ms - InputRows: 30.459K (30459) - LocalBytesSent: 740.87 KB - LocalSendTime: 76.728us - LocalSentRows: 17.643K (17643) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 85.385us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s500ms - RowsProduced: 30.459K (30459) - RpcAvgTime: 1s470ms - RpcCount: 5 - RpcMaxTime: 1s478ms - RpcMinTime: 1s458ms - RpcSumTime: 7s350ms - SerializeBatchTime: 688.797us - SplitBlockDistributeByChannelTime: 1.688ms - SplitBlockHashComputeTime: 504.293us - UncompressedRowBatchSize: 554.50 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=113): - BlocksProduced: 8 - BuildConvertToPartitionedTime: 0ns - BuildTime: 10.160ms - CloseTime: 401.498us - DeserializeAndMergeTime: 0ns - ExecTime: 12.123ms - ExprTime: 20.995us - GetResultsTime: 1.477ms - HashTableComputeTime: 9.777ms - HashTableEmplaceTime: 8.31ms - HashTableInputCount: 67.464K (67464) - HashTableIterateTime: 163.594us - HashTableSize: 30.459K (30459) - InsertKeysToColumnTime: 629.162us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 25.71us - ProjectionTime: 0ns - RowsProduced: 30.459K (30459) - SerializeDataTime: 529.982us - SerializeKeyTime: 0ns - SerializeResultTime: 1.500ms - StreamingAggTime: 0ns OLAP_SCAN_OPERATOR (id=112. table name = ODS_VIPSHOP_SALE): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null(-9223372036854775808) : 9223372036854775807] - TabletIds: [15329, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 597ns - BlocksProduced: 19 - CloseTime: 93.312us - ExecTime: 135.566ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 11.372ms - ProcessConjunctTime: 59.610us - ProjectionTime: 4.975ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 114.476ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 118.869ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [CUS_ID, SUBMIT_DATE, TOTAL_FEE, PAY_STATUS] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [7.200us, 14.056ms, ] - PerScannerRowsRead: [0, 67.46K, ] - PerScannerWaitTime: [1.281ms, 113.195ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 13.644ms - MemoryUsage: - FreeBlocks: 2.07 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 69.787ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 733ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.422ms - ScannerCtxSchedTime: 114.472ms - ScannerFilterTime: 21.186us - ScannerGetBlockTime: 14.15ms - ScannerInitTime: 117.297us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 923ns - BlockConditionsFilteredBloomFilterTime: 397ns - BlockConditionsFilteredDictTime: 333ns - BlockConditionsFilteredTime: 16.4us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 490ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 33.414us - BlockInitTime: 139.836us - BlockLoadTime: 83.311ms - BlocksLoad: 95 - CachedPagesNum: 93 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 33.607ms - FirstReadSeekCount: 165 - FirstReadSeekTime: 72.199us - FirstReadTime: 46.492ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.309us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.793ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 255.969us - OutputIndexResultColumnTimer: 9.395us - RawRowsRead: 366.774K (366774) - 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.120ms - ShortPredEvalTime: 225.726us - TotalPagesNum: 93 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 10.552us Fragment 110: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 40.162ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 39.938ms - CloseTime: 33.219us - GetBlockTime: 37.685ms - OpenTime: 3.540us - PrepareTime: 170.59us - SinkTime: 2.87ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 40.110ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.49ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 35.71 KB - CloseTime: 18.650us - CompressTime: 0ns - ExecTime: 2.156ms - InputRows: 4.381K (4381) - LocalBytesSent: 120.67 KB - LocalSendTime: 88.26us - LocalSentRows: 2.629K (2629) - MemoryUsage: - PeakMemoryUsage: 297.00 KB - MergeBlockTime: 0ns - OpenTime: 71.595us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 644.745ms - RowsProduced: 4.381K (4381) - RpcAvgTime: 642.572ms - RpcCount: 5 - RpcMaxTime: 642.644ms - RpcMinTime: 642.532ms - RpcSumTime: 3s212ms - SerializeBatchTime: 159.348us - SplitBlockDistributeByChannelTime: 979.879us - SplitBlockHashComputeTime: 247.926us - UncompressedRowBatchSize: 84.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.531ms - CloseTime: 10.994us - ExecTime: 2.968ms - HashTableComputeTime: 2.58ms - HashTableEmplaceTime: 1.719ms - HashTableInputCount: 4.381K (4381) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.680us - ProjectionTime: 361.825us - RowsProduced: 4.381K (4381) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 816ns - DeserializeAndMergeTime: 0ns - ExecTime: 34.529ms - GetResultsTime: 18.152ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.295ms - HashTableSize: 163.079K (163079) - InsertKeysToColumnTime: 8.506ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.253us - ProjectionTime: 1.195ms - RowsProduced: 4.381K (4381) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 10s49ms PipelineXTask (index=3):(Active: 33.81ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.814ms - CloseTime: 50.43us - GetBlockTime: 30.706ms - OpenTime: 12.85us - PrepareTime: 195.970us - SinkTime: 1.970ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 33.5ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 971.676us DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 37.58 KB - CloseTime: 29.689us - CompressTime: 0ns - ExecTime: 2.60ms - InputRows: 4.41K (4410) - LocalBytesSent: 117.54 KB - LocalSendTime: 72.67us - LocalSentRows: 2.561K (2561) - MemoryUsage: - PeakMemoryUsage: 296.00 KB - MergeBlockTime: 0ns - OpenTime: 79.209us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 647.194ms - RowsProduced: 4.41K (4410) - RpcAvgTime: 644.337ms - RpcCount: 5 - RpcMaxTime: 644.438ms - RpcMinTime: 644.302ms - RpcSumTime: 3s221ms - SerializeBatchTime: 165.111us - SplitBlockDistributeByChannelTime: 973.706us - SplitBlockHashComputeTime: 202.410us - UncompressedRowBatchSize: 88.82 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.155ms - CloseTime: 14.222us - ExecTime: 2.506ms - HashTableComputeTime: 1.765ms - HashTableEmplaceTime: 1.491ms - HashTableInputCount: 4.41K (4410) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.954us - ProjectionTime: 282.791us - RowsProduced: 4.41K (4410) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.240us - DeserializeAndMergeTime: 0ns - ExecTime: 28.50ms - GetResultsTime: 14.815ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.95ms - HashTableSize: 163.538K (163538) - InsertKeysToColumnTime: 6.755ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.221us - ProjectionTime: 950.968us - RowsProduced: 4.41K (4410) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 10s55ms PipelineXTask (index=6):(Active: 44.103ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 43.888ms - CloseTime: 48.206us - GetBlockTime: 41.121ms - OpenTime: 3.963us - PrepareTime: 155.707us - SinkTime: 2.588ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 44.44ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 968.982us DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 37.45 KB - CloseTime: 25.189us - CompressTime: 0ns - ExecTime: 2.648ms - InputRows: 4.454K (4454) - LocalBytesSent: 119.65 KB - LocalSendTime: 134.213us - LocalSentRows: 2.607K (2607) - MemoryUsage: - PeakMemoryUsage: 300.00 KB - MergeBlockTime: 0ns - OpenTime: 66.879us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 659.696ms - RowsProduced: 4.454K (4454) - RpcAvgTime: 658.466ms - RpcCount: 5 - RpcMaxTime: 658.969ms - RpcMinTime: 656.745ms - RpcSumTime: 3s292ms - SerializeBatchTime: 212.535us - SplitBlockDistributeByChannelTime: 1.118ms - SplitBlockHashComputeTime: 310.873us - UncompressedRowBatchSize: 88.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.978ms - CloseTime: 13.629us - ExecTime: 3.437ms - HashTableComputeTime: 2.401ms - HashTableEmplaceTime: 1.999ms - HashTableInputCount: 4.454K (4454) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.33us - ProjectionTime: 365.976us - RowsProduced: 4.454K (4454) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.738us - DeserializeAndMergeTime: 0ns - ExecTime: 37.446ms - GetResultsTime: 18.982ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.368ms - HashTableSize: 163.191K (163191) - InsertKeysToColumnTime: 8.667ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.24us - ProjectionTime: 1.382ms - RowsProduced: 4.454K (4454) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 10s23ms PipelineXTask (index=9):(Active: 35.616ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.379ms - CloseTime: 40.45us - GetBlockTime: 33.42ms - OpenTime: 4.323us - PrepareTime: 186.856us - SinkTime: 2.179ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 35.567ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.349ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.75 KB - CloseTime: 16.314us - CompressTime: 0ns - ExecTime: 2.238ms - InputRows: 4.368K (4368) - LocalBytesSent: 117.21 KB - LocalSendTime: 87.99us - LocalSentRows: 2.554K (2554) - MemoryUsage: - PeakMemoryUsage: 291.00 KB - MergeBlockTime: 0ns - OpenTime: 65.513us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 652.652ms - RowsProduced: 4.368K (4368) - RpcAvgTime: 650.190ms - RpcCount: 5 - RpcMaxTime: 650.236ms - RpcMinTime: 650.173ms - RpcSumTime: 3s250ms - SerializeBatchTime: 140.979us - SplitBlockDistributeByChannelTime: 1.97ms - SplitBlockHashComputeTime: 241.723us - UncompressedRowBatchSize: 87.15 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.633ms - CloseTime: 19.911us - ExecTime: 3.66ms - HashTableComputeTime: 2.185ms - HashTableEmplaceTime: 1.888ms - HashTableInputCount: 4.368K (4368) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.108us - ProjectionTime: 350.448us - RowsProduced: 4.368K (4368) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 861ns - DeserializeAndMergeTime: 0ns - ExecTime: 29.782ms - GetResultsTime: 15.921ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.169ms - HashTableSize: 163.819K (163819) - InsertKeysToColumnTime: 7.404ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 24.157us - ProjectionTime: 1.137ms - RowsProduced: 4.368K (4368) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 10s38ms PipelineXTask (index=12):(Active: 48.45ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 47.805ms - CloseTime: 35.355us - GetBlockTime: 44.967ms - OpenTime: 2.990us - PrepareTime: 196.131us - SinkTime: 2.651ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 47.983ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.150ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 37.66 KB - CloseTime: 19.637us - CompressTime: 0ns - ExecTime: 2.707ms - InputRows: 4.403K (4403) - LocalBytesSent: 116.77 KB - LocalSendTime: 130.982us - LocalSentRows: 2.544K (2544) - MemoryUsage: - PeakMemoryUsage: 292.00 KB - MergeBlockTime: 0ns - OpenTime: 64.636us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 647.172ms - RowsProduced: 4.403K (4403) - RpcAvgTime: 644.323ms - RpcCount: 5 - RpcMaxTime: 644.482ms - RpcMinTime: 644.250ms - RpcSumTime: 3s221ms - SerializeBatchTime: 208.177us - SplitBlockDistributeByChannelTime: 1.274ms - SplitBlockHashComputeTime: 300.418us - UncompressedRowBatchSize: 89.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 3.200ms - CloseTime: 10.576us - ExecTime: 3.675ms - HashTableComputeTime: 2.622ms - HashTableEmplaceTime: 2.149ms - HashTableInputCount: 4.403K (4403) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.213us - ProjectionTime: 392.964us - RowsProduced: 4.403K (4403) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 875ns - DeserializeAndMergeTime: 0ns - ExecTime: 41.20ms - GetResultsTime: 21.598ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.610ms - HashTableSize: 163.79K (163790) - InsertKeysToColumnTime: 10.89ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.650us - ProjectionTime: 1.420ms - RowsProduced: 4.403K (4403) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 10s39ms PipelineXTask (index=15):(Active: 46.543ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 46.335ms - CloseTime: 38.716us - GetBlockTime: 42.556ms - OpenTime: 3.406us - PrepareTime: 159.678us - SinkTime: 3.517ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 46.479ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.71ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 35.68 KB - CloseTime: 24.540us - CompressTime: 0ns - ExecTime: 3.576ms - InputRows: 4.339K (4339) - LocalBytesSent: 118.83 KB - LocalSendTime: 108.848us - LocalSentRows: 2.589K (2589) - MemoryUsage: - PeakMemoryUsage: 291.00 KB - MergeBlockTime: 0ns - OpenTime: 59.699us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 646.113ms - RowsProduced: 4.339K (4339) - RpcAvgTime: 643.758ms - RpcCount: 5 - RpcMaxTime: 643.904ms - RpcMinTime: 643.612ms - RpcSumTime: 3s218ms - SerializeBatchTime: 345.185us - SplitBlockDistributeByChannelTime: 1.852ms - SplitBlockHashComputeTime: 337.528us - UncompressedRowBatchSize: 84.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 3.313ms - CloseTime: 10.321us - ExecTime: 3.882ms - HashTableComputeTime: 2.699ms - HashTableEmplaceTime: 2.218ms - HashTableInputCount: 4.339K (4339) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.817us - ProjectionTime: 417.429us - RowsProduced: 4.339K (4339) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.22us - DeserializeAndMergeTime: 0ns - ExecTime: 38.439ms - GetResultsTime: 20.734ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.509ms - HashTableSize: 163.982K (163982) - InsertKeysToColumnTime: 9.571ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.687us - ProjectionTime: 1.517ms - RowsProduced: 4.339K (4339) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 10s43ms PipelineXTask (index=18):(Active: 31.237ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 31.3ms - CloseTime: 32.472us - GetBlockTime: 29.84ms - OpenTime: 3.506us - PrepareTime: 191.760us - SinkTime: 1.781ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 31.191ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.229ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 37.50 KB - CloseTime: 17.596us - CompressTime: 0ns - ExecTime: 1.888ms - InputRows: 4.375K (4375) - LocalBytesSent: 115.94 KB - LocalSendTime: 82.640us - LocalSentRows: 2.526K (2526) - MemoryUsage: - PeakMemoryUsage: 282.00 KB - MergeBlockTime: 0ns - OpenTime: 111.359us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 659.801ms - RowsProduced: 4.375K (4375) - RpcAvgTime: 657.147ms - RpcCount: 5 - RpcMaxTime: 657.208ms - RpcMinTime: 657.86ms - RpcSumTime: 3s285ms - SerializeBatchTime: 127.69us - SplitBlockDistributeByChannelTime: 916.140us - SplitBlockHashComputeTime: 182.353us - UncompressedRowBatchSize: 88.85 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.228ms - CloseTime: 9.653us - ExecTime: 2.597ms - HashTableComputeTime: 1.840ms - HashTableEmplaceTime: 1.598ms - HashTableInputCount: 4.375K (4375) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.802us - ProjectionTime: 304.609us - RowsProduced: 4.375K (4375) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.69us - DeserializeAndMergeTime: 0ns - ExecTime: 26.319ms - GetResultsTime: 13.984ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.45ms - HashTableSize: 163.643K (163643) - InsertKeysToColumnTime: 6.422ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.189us - ProjectionTime: 954.731us - RowsProduced: 4.375K (4375) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 10s35ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 256.961ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 256.828ms - CloseTime: 25.256us - GetBlockTime: 149.419ms - OpenTime: 7.417us - PrepareTime: 80.408us - SinkTime: 105.324ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 115 - NumBlockedTimes: 117 - NumScheduleTimes: 117 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 256.550ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 152.71ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 104.920ms - CloseTime: 1.508us - DeserializeAndMergeTime: 0ns - ExecTime: 105.210ms - ExprTime: 315.989us - HashTableComputeTime: 102.163ms - HashTableEmplaceTime: 91.461ms - 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: 20.245us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 10.696us - ExecTime: 145.765ms - InitProbeSideTime: 26.15ms - JoinFilterTimer: 32.355us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 15.715us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 81.395us - ProbeFindNextTime: 0ns - ProbeRows: 694.766K (694766) - ProbeTime: 141.646ms - ProbeWhenBuildSideOutputTime: 25.374ms - ProbeWhenProbeSideOutputTime: 2.1ms - ProbeWhenProcessHashTableTime: 885.570us - ProbeWhenSearchHashTableTime: 82.518ms - ProjectionTime: 3.181ms - RowsProduced: 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 897.278ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 291 - BytesReceived: 15.76 MB - CloseTime: 10.169us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.932ms - ExecTime: 2.967ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.55 MB - MemoryUsage: - Blocks: 16.45 MB - PeakMemoryUsage: 13.55 MB - OpenTime: 14.942us - ProjectionTime: 0ns - RowsProduced: 694.766K (694766) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s745ms PipelineXTask (index=4):(Active: 268.201ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 268.1ms - CloseTime: 22.613us - GetBlockTime: 158.719ms - OpenTime: 8.597us - PrepareTime: 150.895us - SinkTime: 107.208ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 108 - NumBlockedTimes: 110 - NumScheduleTimes: 110 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 267.516ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 69.933ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 106.808ms - CloseTime: 1.517us - DeserializeAndMergeTime: 0ns - ExecTime: 107.84ms - ExprTime: 417.429us - HashTableComputeTime: 103.903ms - HashTableEmplaceTime: 92.875ms - 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: 22.763us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 10.106us - ExecTime: 155.248ms - InitProbeSideTime: 26.953ms - JoinFilterTimer: 31.906us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 63.70us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 84.711us - ProbeFindNextTime: 0ns - ProbeRows: 694.445K (694445) - ProbeTime: 150.755ms - ProbeWhenBuildSideOutputTime: 26.704ms - ProbeWhenProbeSideOutputTime: 2.153ms - ProbeWhenProcessHashTableTime: 885.842us - ProbeWhenSearchHashTableTime: 88.883ms - ProjectionTime: 3.493ms - RowsProduced: 163.538K (163538) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 980.763ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 293 - BytesReceived: 15.76 MB - CloseTime: 8.195us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.648ms - ExecTime: 2.861ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.20 MB - MemoryUsage: - Blocks: 16.26 MB - PeakMemoryUsage: 13.20 MB - OpenTime: 21.994us - ProjectionTime: 0ns - RowsProduced: 694.445K (694445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s737ms PipelineXTask (index=7):(Active: 294.796ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 294.620ms - CloseTime: 21.840us - GetBlockTime: 174.819ms - OpenTime: 5.933us - PrepareTime: 113.853us - SinkTime: 117.756ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 110 - NumBlockedTimes: 112 - NumScheduleTimes: 112 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 294.355ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.125ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 117.352ms - CloseTime: 1.545us - DeserializeAndMergeTime: 0ns - ExecTime: 117.613ms - ExprTime: 349.371us - HashTableComputeTime: 114.109ms - HashTableEmplaceTime: 101.454ms - 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: 19.272us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 9.875us - ExecTime: 170.808ms - InitProbeSideTime: 30.8ms - JoinFilterTimer: 31.864us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 45.733us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 94.857us - ProbeFindNextTime: 0ns - ProbeRows: 694.151K (694151) - ProbeTime: 165.938ms - ProbeWhenBuildSideOutputTime: 28.829ms - ProbeWhenProbeSideOutputTime: 2.412ms - ProbeWhenProcessHashTableTime: 825.358us - ProbeWhenSearchHashTableTime: 98.335ms - ProjectionTime: 3.798ms - RowsProduced: 163.191K (163191) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 962.106ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 289 - BytesReceived: 15.76 MB - CloseTime: 7.729us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.253ms - ExecTime: 3.211ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.69 MB - MemoryUsage: - Blocks: 16.58 MB - PeakMemoryUsage: 13.69 MB - OpenTime: 19.174us - ProjectionTime: 0ns - RowsProduced: 694.151K (694151) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s669ms PipelineXTask (index=10):(Active: 250.707ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 250.543ms - CloseTime: 17.960us - GetBlockTime: 149.978ms - OpenTime: 6.544us - PrepareTime: 107.593us - SinkTime: 98.511ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 114 - NumBlockedTimes: 116 - NumScheduleTimes: 116 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 250.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 98.72ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 98.86ms - CloseTime: 1.117us - DeserializeAndMergeTime: 0ns - ExecTime: 98.376ms - ExprTime: 349.656us - HashTableComputeTime: 95.347ms - HashTableEmplaceTime: 84.878ms - 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: 25.964us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 10.220us - ExecTime: 146.504ms - InitProbeSideTime: 25.649ms - JoinFilterTimer: 35.296us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 37.651us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 119.441us - ProbeFindNextTime: 0ns - ProbeRows: 695.836K (695836) - ProbeTime: 141.997ms - ProbeWhenBuildSideOutputTime: 24.700ms - ProbeWhenProbeSideOutputTime: 1.988ms - ProbeWhenProcessHashTableTime: 767.693us - ProbeWhenSearchHashTableTime: 84.103ms - ProjectionTime: 3.487ms - RowsProduced: 163.819K (163819) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 958.262ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 291 - BytesReceived: 15.79 MB - CloseTime: 4.472us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.587ms - ExecTime: 2.814ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.02 MB - MemoryUsage: - Blocks: 16.09 MB - PeakMemoryUsage: 13.02 MB - OpenTime: 18.878us - ProjectionTime: 0ns - RowsProduced: 695.836K (695836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s732ms PipelineXTask (index=13):(Active: 260.733ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 260.594ms - CloseTime: 17.793us - GetBlockTime: 153.907ms - OpenTime: 6.253us - PrepareTime: 96.313us - SinkTime: 104.688ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 114 - NumBlockedTimes: 116 - NumScheduleTimes: 116 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 260.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.292ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 104.253ms - CloseTime: 1.131us - DeserializeAndMergeTime: 0ns - ExecTime: 104.549ms - ExprTime: 364.438us - HashTableComputeTime: 101.374ms - HashTableEmplaceTime: 90.557ms - 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: 14.791us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 10.42us - ExecTime: 150.549ms - InitProbeSideTime: 27.639ms - JoinFilterTimer: 32.322us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 26.314us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 80.126us - ProbeFindNextTime: 0ns - ProbeRows: 694.145K (694145) - ProbeTime: 145.895ms - ProbeWhenBuildSideOutputTime: 25.826ms - ProbeWhenProbeSideOutputTime: 2.45ms - ProbeWhenProcessHashTableTime: 803.502us - ProbeWhenSearchHashTableTime: 84.651ms - ProjectionTime: 3.665ms - RowsProduced: 163.79K (163790) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 951.751ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 290 - BytesReceived: 15.74 MB - CloseTime: 4.404us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.155ms - ExecTime: 2.680ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.41 MB - MemoryUsage: - Blocks: 16.47 MB - PeakMemoryUsage: 13.41 MB - OpenTime: 14.728us - ProjectionTime: 0ns - RowsProduced: 694.145K (694145) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s721ms PipelineXTask (index=16):(Active: 266.944ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 266.800ms - CloseTime: 40.635us - GetBlockTime: 162.656ms - OpenTime: 7.978us - PrepareTime: 72.201us - SinkTime: 102.39ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 110 - NumBlockedTimes: 112 - NumScheduleTimes: 112 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 265.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.285ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 101.607ms - CloseTime: 1.579us - DeserializeAndMergeTime: 0ns - ExecTime: 101.874ms - ExprTime: 402.868us - HashTableComputeTime: 98.504ms - HashTableEmplaceTime: 87.126ms - 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: 14.592us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 32.382us - ExecTime: 158.796ms - InitProbeSideTime: 28.464ms - JoinFilterTimer: 48.406us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 17.704us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 99.738us - ProbeFindNextTime: 0ns - ProbeRows: 695.57K (695570) - ProbeTime: 154.77ms - ProbeWhenBuildSideOutputTime: 26.913ms - ProbeWhenProbeSideOutputTime: 2.149ms - ProbeWhenProcessHashTableTime: 1.128ms - ProbeWhenSearchHashTableTime: 89.906ms - ProjectionTime: 3.682ms - RowsProduced: 163.982K (163982) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 955.189ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 292 - BytesReceived: 15.75 MB - CloseTime: 4.646us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 10.851ms - ExecTime: 3.151ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.92 MB - MemoryUsage: - Blocks: 16.81 MB - PeakMemoryUsage: 13.92 MB - OpenTime: 15.525us - ProjectionTime: 0ns - RowsProduced: 695.57K (695570) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s721ms PipelineXTask (index=19):(Active: 305.971ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 305.813ms - CloseTime: 38.917us - GetBlockTime: 171.204ms - OpenTime: 7.600us - PrepareTime: 94.623us - SinkTime: 132.337ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 105 - NumBlockedTimes: 107 - NumScheduleTimes: 107 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 305.498ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.865ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 131.894ms - CloseTime: 1.276us - DeserializeAndMergeTime: 0ns - ExecTime: 132.223ms - ExprTime: 389.800us - HashTableComputeTime: 128.731ms - HashTableEmplaceTime: 116.939ms - 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: 25.45us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 12.429us - ExecTime: 167.229ms - InitProbeSideTime: 29.181ms - JoinFilterTimer: 51.877us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 21.422us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 96.160us - ProbeFindNextTime: 0ns - ProbeRows: 694.608K (694608) - ProbeTime: 162.831ms - ProbeWhenBuildSideOutputTime: 27.935ms - ProbeWhenProbeSideOutputTime: 2.210ms - ProbeWhenProcessHashTableTime: 1.92ms - ProbeWhenSearchHashTableTime: 96.653ms - ProjectionTime: 3.333ms - RowsProduced: 163.643K (163643) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s0ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 289 - BytesReceived: 15.75 MB - CloseTime: 22.586us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.464ms - ExecTime: 3.288ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.36 MB - MemoryUsage: - Blocks: 16.09 MB - PeakMemoryUsage: 13.36 MB - OpenTime: 20.613us - ProjectionTime: 0ns - RowsProduced: 694.608K (694608) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 8s672ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 65.212ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 65.90ms - CloseTime: 19.721us - GetBlockTime: 22.55ms - OpenTime: 3.283us - PrepareTime: 89.738us - SinkTime: 42.675ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 31 - NumBlockedTimes: 33 - NumScheduleTimes: 33 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 43.613ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 135.228ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 38.947us - BuildRows: 163.08K (163080) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 26.888ms - BuildTableInsertTime: 11.617ms - BuildTableTime: 11.621ms - CloseTime: 0ns - ExecTime: 42.664ms - InputRows: 163.079K (163079) - MemoryUsage: - BuildBlocks: 10.73 MB - BuildKeyArena: 5.61 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.11 MB - OpenTime: 16.459us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.511us - RuntimeFilterComputeTime: 3.934ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 63 - BytesReceived: 2.74 MB - CloseTime: 14.745us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.674ms - ExecTime: 22.62ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.70 MB - MemoryUsage: - Blocks: 1.84 MB - PeakMemoryUsage: 0.00 - OpenTime: 45.578us - ProjectionTime: 0ns - RowsProduced: 163.079K (163079) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s815ms PipelineXTask (index=5):(Active: 45.639ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 45.556ms - CloseTime: 9.690us - GetBlockTime: 977.188us - OpenTime: 2.874us - PrepareTime: 58.556us - SinkTime: 44.210ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 40.786ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 70.426ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 37.1us - BuildRows: 163.539K (163539) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.511ms - BuildTableInsertTime: 16.727ms - BuildTableTime: 16.733ms - CloseTime: 0ns - ExecTime: 44.210ms - InputRows: 163.538K (163538) - MemoryUsage: - BuildBlocks: 10.76 MB - BuildKeyArena: 5.62 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.16 MB - OpenTime: 22.589us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.120us - RuntimeFilterComputeTime: 3.737ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 64 - BytesReceived: 2.75 MB - CloseTime: 6.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.895ms - ExecTime: 950.249us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.11 MB - MemoryUsage: - Blocks: 2.58 MB - PeakMemoryUsage: 0.00 - OpenTime: 16.161us - ProjectionTime: 0ns - RowsProduced: 163.538K (163538) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s904ms PipelineXTask (index=8):(Active: 48.455ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 48.357ms - CloseTime: 11.758us - GetBlockTime: 942.339us - OpenTime: 2.256us - PrepareTime: 70.750us - SinkTime: 47.36ms - GetBlockCounter: 45 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 48.163ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.846ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 40.452us - BuildRows: 163.192K (163192) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.644ms - BuildTableInsertTime: 20.852ms - BuildTableTime: 20.857ms - CloseTime: 0ns - ExecTime: 47.23ms - InputRows: 163.191K (163191) - MemoryUsage: - BuildBlocks: 10.74 MB - BuildKeyArena: 5.61 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.12 MB - OpenTime: 14.598us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 36.574us - RuntimeFilterComputeTime: 5.292ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 60 - BytesReceived: 2.72 MB - CloseTime: 9.84us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.818ms - ExecTime: 937.57us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.35 MB - MemoryUsage: - Blocks: 1.37 MB - PeakMemoryUsage: 0.00 - OpenTime: 30.204us - ProjectionTime: 0ns - RowsProduced: 163.191K (163191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s930ms PipelineXTask (index=11):(Active: 64.491ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 64.380ms - CloseTime: 9.789us - GetBlockTime: 945.357us - OpenTime: 3.157us - PrepareTime: 87.329us - SinkTime: 63.48ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.408ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 80.361ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 36.39us - BuildRows: 163.82K (163820) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 45.506ms - BuildTableInsertTime: 12.966ms - BuildTableTime: 12.973ms - CloseTime: 0ns - ExecTime: 63.79ms - InputRows: 163.819K (163819) - MemoryUsage: - BuildBlocks: 10.78 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.19 MB - OpenTime: 56.97us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 128.414us - RuntimeFilterComputeTime: 4.235ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 63 - BytesReceived: 2.75 MB - CloseTime: 7.141us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.278ms - ExecTime: 901.590us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.72 MB - MemoryUsage: - Blocks: 1.69 MB - PeakMemoryUsage: 0.00 - OpenTime: 12.807us - ProjectionTime: 0ns - RowsProduced: 163.819K (163819) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s878ms PipelineXTask (index=14):(Active: 42.939ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 42.815ms - CloseTime: 12.292us - GetBlockTime: 956.412us - OpenTime: 3.535us - PrepareTime: 99.194us - SinkTime: 41.503ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 39 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.846ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 44.826ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.827us - BuildRows: 163.791K (163791) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.395ms - BuildTableInsertTime: 9.818ms - BuildTableTime: 9.823ms - CloseTime: 0ns - ExecTime: 41.528ms - InputRows: 163.79K (163790) - MemoryUsage: - BuildBlocks: 10.78 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.18 MB - OpenTime: 45.821us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.183us - RuntimeFilterComputeTime: 6.47ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 64 - BytesReceived: 2.75 MB - CloseTime: 9.255us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.289ms - ExecTime: 913.499us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.02 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 11.820us - ProjectionTime: 0ns - RowsProduced: 163.79K (163790) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s929ms PipelineXTask (index=17):(Active: 46.379ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 46.286ms - CloseTime: 14.189us - GetBlockTime: 911.585us - OpenTime: 3.307us - PrepareTime: 68.634us - SinkTime: 45.34ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 45.816ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 186.214ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 33.434us - BuildRows: 163.983K (163983) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.322ms - BuildTableInsertTime: 15.382ms - BuildTableTime: 15.387ms - CloseTime: 0ns - ExecTime: 45.24ms - InputRows: 163.982K (163982) - MemoryUsage: - BuildBlocks: 10.79 MB - BuildKeyArena: 5.64 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.21 MB - OpenTime: 23.17us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.547us - RuntimeFilterComputeTime: 4.94ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 62 - BytesReceived: 2.76 MB - CloseTime: 10.667us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.353ms - ExecTime: 886.115us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.57 MB - MemoryUsage: - Blocks: 1.95 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.674us - ProjectionTime: 0ns - RowsProduced: 163.982K (163982) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s787ms PipelineXTask (index=20):(Active: 53.735ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 53.667ms - CloseTime: 10.194us - GetBlockTime: 1.14ms - OpenTime: 2.217us - PrepareTime: 47.367us - SinkTime: 52.247ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 45.542ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.466ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 39.302us - BuildRows: 163.644K (163644) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 33.494ms - BuildTableInsertTime: 14.165ms - BuildTableTime: 14.171ms - CloseTime: 0ns - ExecTime: 52.238ms - InputRows: 163.643K (163643) - MemoryUsage: - BuildBlocks: 10.77 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.17 MB - OpenTime: 19.14us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.385us - RuntimeFilterComputeTime: 4.331ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 64 - BytesReceived: 2.75 MB - CloseTime: 7.421us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.737ms - ExecTime: 976.583us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.20 MB - MemoryUsage: - Blocks: 1.69 MB - PeakMemoryUsage: 0.00 - OpenTime: 8.591us - ProjectionTime: 0ns - RowsProduced: 163.643K (163643) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s916ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 58.160ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 57.895ms - CloseTime: 57.509us - GetBlockTime: 54.367ms - OpenTime: 3.75us - PrepareTime: 197.510us - SinkTime: 3.315ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 50.644ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.707ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 52.81 KB - CloseTime: 36.359us - CompressTime: 0ns - ExecTime: 3.389ms - InputRows: 4.398K (4398) - LocalBytesSent: 82.75 KB - LocalSendTime: 90.999us - LocalSentRows: 1.803K (1803) - MemoryUsage: - PeakMemoryUsage: 295.00 KB - MergeBlockTime: 0ns - OpenTime: 67.582us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.731ms - RowsProduced: 4.398K (4398) - RpcAvgTime: 6.887ms - RpcCount: 7 - RpcMaxTime: 10.145ms - RpcMinTime: 3.399ms - RpcSumTime: 48.212ms - SerializeBatchTime: 301.300us - SplitBlockDistributeByChannelTime: 1.713ms - SplitBlockHashComputeTime: 312.321us - UncompressedRowBatchSize: 124.68 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 3.778ms - CloseTime: 11.936us - ExecTime: 4.461ms - HashTableComputeTime: 2.860ms - HashTableEmplaceTime: 2.372ms - HashTableInputCount: 4.398K (4398) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.542us - ProjectionTime: 571.47us - RowsProduced: 4.398K (4398) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 3.794us - DeserializeAndMergeTime: 0ns - ExecTime: 49.585ms - GetResultsTime: 28.954ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.547ms - HashTableSize: 163.935K (163935) - InsertKeysToColumnTime: 18.431ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.0us - ProjectionTime: 1.950ms - RowsProduced: 4.398K (4398) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s142ms PipelineXTask (index=3):(Active: 53.179ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 52.986ms - CloseTime: 39.474us - GetBlockTime: 48.950ms - OpenTime: 2.515us - PrepareTime: 146.46us - SinkTime: 3.798ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 53.132ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 680.911us DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 50.78 KB - CloseTime: 24.685us - CompressTime: 0ns - ExecTime: 3.857ms - InputRows: 4.379K (4379) - LocalBytesSent: 86.61 KB - LocalSendTime: 76.121us - LocalSentRows: 1.887K (1887) - MemoryUsage: - PeakMemoryUsage: 296.00 KB - MergeBlockTime: 0ns - OpenTime: 75.221us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.935ms - RowsProduced: 4.379K (4379) - RpcAvgTime: 6.433ms - RpcCount: 7 - RpcMaxTime: 6.661ms - RpcMinTime: 6.293ms - RpcSumTime: 45.34ms - SerializeBatchTime: 238.600us - SplitBlockDistributeByChannelTime: 1.947ms - SplitBlockHashComputeTime: 373.340us - UncompressedRowBatchSize: 119.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 4.480ms - CloseTime: 6.621us - ExecTime: 5.247ms - HashTableComputeTime: 3.312ms - HashTableEmplaceTime: 2.707ms - HashTableInputCount: 4.379K (4379) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.571us - ProjectionTime: 647.693us - RowsProduced: 4.379K (4379) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.511us - DeserializeAndMergeTime: 0ns - ExecTime: 43.411ms - GetResultsTime: 23.902ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.532ms - HashTableSize: 163.683K (163683) - InsertKeysToColumnTime: 12.912ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.53us - ProjectionTime: 1.899ms - RowsProduced: 4.379K (4379) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s261ms PipelineXTask (index=6):(Active: 48.233ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.60ms - CloseTime: 29.638us - GetBlockTime: 44.549ms - OpenTime: 2.107us - PrepareTime: 135.713us - SinkTime: 3.321ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 47.651ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 676.518us DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 51.45 KB - CloseTime: 16.573us - CompressTime: 0ns - ExecTime: 3.360ms - InputRows: 4.317K (4317) - LocalBytesSent: 82.43 KB - LocalSendTime: 85.625us - LocalSentRows: 1.796K (1796) - MemoryUsage: - PeakMemoryUsage: 291.00 KB - MergeBlockTime: 0ns - OpenTime: 54.575us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.958ms - RowsProduced: 4.317K (4317) - RpcAvgTime: 4.214ms - RpcCount: 7 - RpcMaxTime: 4.319ms - RpcMinTime: 4.136ms - RpcSumTime: 29.501ms - SerializeBatchTime: 265.494us - SplitBlockDistributeByChannelTime: 1.546ms - SplitBlockHashComputeTime: 305.501us - UncompressedRowBatchSize: 121.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 3.992ms - CloseTime: 6.844us - ExecTime: 4.683ms - HashTableComputeTime: 3.153ms - HashTableEmplaceTime: 2.654ms - HashTableInputCount: 4.317K (4317) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.998us - ProjectionTime: 555.842us - RowsProduced: 4.317K (4317) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.136us - DeserializeAndMergeTime: 0ns - ExecTime: 39.541ms - GetResultsTime: 20.481ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.462ms - HashTableSize: 163.392K (163392) - InsertKeysToColumnTime: 10.286ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.816us - ProjectionTime: 1.740ms - RowsProduced: 4.317K (4317) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s182ms PipelineXTask (index=9):(Active: 45.462ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.270ms - CloseTime: 34.511us - GetBlockTime: 42.28ms - OpenTime: 2.611us - PrepareTime: 150.317us - SinkTime: 3.50ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 45.422ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.804ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 51.74 KB - CloseTime: 19.387us - CompressTime: 0ns - ExecTime: 3.87ms - InputRows: 4.372K (4372) - LocalBytesSent: 84.22 KB - LocalSendTime: 58.267us - LocalSentRows: 1.835K (1835) - MemoryUsage: - PeakMemoryUsage: 293.00 KB - MergeBlockTime: 0ns - OpenTime: 66.69us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.62ms - RowsProduced: 4.372K (4372) - RpcAvgTime: 15.120ms - RpcCount: 7 - RpcMaxTime: 15.260ms - RpcMinTime: 14.967ms - RpcSumTime: 105.842ms - SerializeBatchTime: 208.257us - SplitBlockDistributeByChannelTime: 1.420ms - SplitBlockHashComputeTime: 312.619us - UncompressedRowBatchSize: 121.90 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 3.660ms - CloseTime: 6.612us - ExecTime: 4.266ms - HashTableComputeTime: 2.732ms - HashTableEmplaceTime: 2.227ms - HashTableInputCount: 4.372K (4372) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.571us - ProjectionTime: 512.166us - RowsProduced: 4.372K (4372) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.938us - DeserializeAndMergeTime: 0ns - ExecTime: 37.525ms - GetResultsTime: 19.114ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.392ms - HashTableSize: 163.261K (163261) - InsertKeysToColumnTime: 9.659ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.841us - ProjectionTime: 1.660ms - RowsProduced: 4.372K (4372) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s271ms PipelineXTask (index=12):(Active: 47.254ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 47.1ms - CloseTime: 34.118us - GetBlockTime: 44.604ms - OpenTime: 2.140us - PrepareTime: 211.342us - SinkTime: 2.261ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 32.434ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.407ms DATA_STREAM_SINK_OPERATOR (id=111,dst_id=111): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 52.65 KB - CloseTime: 20.175us - CompressTime: 0ns - ExecTime: 2.343ms - InputRows: 4.391K (4391) - LocalBytesSent: 82.85 KB - LocalSendTime: 65.305us - LocalSentRows: 1.805K (1805) - MemoryUsage: - PeakMemoryUsage: 290.00 KB - MergeBlockTime: 0ns - OpenTime: 83.943us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.856ms - RowsProduced: 4.391K (4391) - RpcAvgTime: 15.246ms - RpcCount: 7 - RpcMaxTime: 15.803ms - RpcMinTime: 14.997ms - RpcSumTime: 106.722ms - SerializeBatchTime: 196.138us - SplitBlockDistributeByChannelTime: 1.84ms - SplitBlockHashComputeTime: 230.178us - UncompressedRowBatchSize: 124.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=110): - BlocksProduced: 0 - BuildTime: 2.690ms - CloseTime: 6.27us - ExecTime: 3.144ms - HashTableComputeTime: 2.58ms - HashTableEmplaceTime: 1.731ms - HashTableInputCount: 4.391K (4391) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.114us - ProjectionTime: 386.526us - RowsProduced: 4.391K (4391) AGGREGATION_OPERATOR (id=109): - BlocksProduced: 41 - CloseTime: 1.852us - DeserializeAndMergeTime: 0ns - ExecTime: 41.313ms - GetResultsTime: 15.570ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.99ms - HashTableSize: 163.727K (163727) - InsertKeysToColumnTime: 7.642ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.978us - ProjectionTime: 1.1ms - RowsProduced: 4.391K (4391) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s278ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 255.627ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 255.447ms - CloseTime: 59.532us - GetBlockTime: 150.847ms - OpenTime: 5.565us - PrepareTime: 99.569us - SinkTime: 103.368ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 49 - NumBlockedTimes: 51 - NumScheduleTimes: 52 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 253.408ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 130.188ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 102.952ms - CloseTime: 1.682us - DeserializeAndMergeTime: 0ns - ExecTime: 103.242ms - ExprTime: 588.405us - HashTableComputeTime: 99.813ms - HashTableEmplaceTime: 89.18ms - 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: 23.608us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 23.502us - ExecTime: 146.18ms - InitProbeSideTime: 27.514ms - JoinFilterTimer: 28.512us - MemoryUsage: - PeakMemoryUsage: 456.00 KB - ProbeKeyArena: 456.00 KB - OpenTime: 14.561us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 60.206us - ProbeFindNextTime: 0ns - ProbeRows: 696.522K (696522) - ProbeTime: 141.796ms - ProbeWhenBuildSideOutputTime: 25.4ms - ProbeWhenProbeSideOutputTime: 2.251ms - ProbeWhenProcessHashTableTime: 1.208ms - ProbeWhenSearchHashTableTime: 80.978ms - ProjectionTime: 3.282ms - RowsProduced: 163.935K (163935) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s128ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 210 - BytesReceived: 5.27 MB - CloseTime: 11.993us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.0ms - ExecTime: 4.352ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.28 MB - MemoryUsage: - Blocks: 19.83 MB - PeakMemoryUsage: 18.92 MB - OpenTime: 21.734us - ProjectionTime: 0ns - RowsProduced: 696.522K (696522) - SendersBlockedTotalTimer(*): 953.348ms - WaitForDependencyTime: 0ns - WaitForData0: 8s628ms PipelineXTask (index=4):(Active: 236.831ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 236.693ms - CloseTime: 23.558us - GetBlockTime: 141.744ms - OpenTime: 4.124us - PrepareTime: 93.301us - SinkTime: 93.585ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 62 - NumBlockedTimes: 64 - NumScheduleTimes: 64 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 236.594ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.648ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 93.167ms - CloseTime: 1.782us - DeserializeAndMergeTime: 0ns - ExecTime: 93.467ms - ExprTime: 335.868us - HashTableComputeTime: 90.330ms - HashTableEmplaceTime: 79.658ms - 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: 23.478us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 10.803us - ExecTime: 138.963ms - InitProbeSideTime: 25.402ms - JoinFilterTimer: 36.165us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 16.718us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 90.110us - ProbeFindNextTime: 0ns - ProbeRows: 695.934K (695934) - ProbeTime: 134.868ms - ProbeWhenBuildSideOutputTime: 24.190ms - ProbeWhenProbeSideOutputTime: 2.274ms - ProbeWhenProcessHashTableTime: 779.110us - ProbeWhenSearchHashTableTime: 77.809ms - ProjectionTime: 3.183ms - RowsProduced: 163.683K (163683) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s187ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 209 - BytesReceived: 5.27 MB - CloseTime: 7.692us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.826ms - ExecTime: 2.256ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.63 MB - MemoryUsage: - Blocks: 19.55 MB - PeakMemoryUsage: 19.20 MB - OpenTime: 24.293us - ProjectionTime: 0ns - RowsProduced: 695.934K (695934) - SendersBlockedTotalTimer(*): 3s965ms - WaitForDependencyTime: 0ns - WaitForData0: 8s742ms PipelineXTask (index=7):(Active: 221.258ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 221.115ms - CloseTime: 35.547us - GetBlockTime: 130.350ms - OpenTime: 3.678us - PrepareTime: 88.320us - SinkTime: 89.296ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 67 - NumBlockedTimes: 69 - NumScheduleTimes: 69 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 219.938ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 152.862ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 88.688ms - CloseTime: 2.269us - DeserializeAndMergeTime: 0ns - ExecTime: 89.108ms - ExprTime: 367.427us - HashTableComputeTime: 85.846ms - HashTableEmplaceTime: 75.114ms - 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: 20.482us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 17.81us - ExecTime: 127.213ms - InitProbeSideTime: 25.644ms - JoinFilterTimer: 32.108us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 22.614us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 79.341us - ProbeFindNextTime: 0ns - ProbeRows: 695.779K (695779) - ProbeTime: 123.95ms - ProbeWhenBuildSideOutputTime: 21.797ms - ProbeWhenProbeSideOutputTime: 2.382ms - ProbeWhenProcessHashTableTime: 788.604us - ProbeWhenSearchHashTableTime: 67.916ms - ProjectionTime: 3.161ms - RowsProduced: 163.392K (163392) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s108ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 207 - BytesReceived: 5.26 MB - CloseTime: 12.62us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.465ms - ExecTime: 2.472ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.79 MB - MemoryUsage: - Blocks: 19.58 MB - PeakMemoryUsage: 19.22 MB - OpenTime: 15.292us - ProjectionTime: 0ns - RowsProduced: 695.779K (695779) - SendersBlockedTotalTimer(*): 3s956ms - WaitForDependencyTime: 0ns - WaitForData0: 8s700ms PipelineXTask (index=10):(Active: 228.868ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 228.699ms - CloseTime: 40.284us - GetBlockTime: 136.977ms - OpenTime: 3.300us - PrepareTime: 113.156us - SinkTime: 90.446ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 68 - NumBlockedTimes: 70 - NumScheduleTimes: 70 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 228.98ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.620ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 90.65ms - CloseTime: 2.369us - DeserializeAndMergeTime: 0ns - ExecTime: 90.336ms - ExprTime: 304.361us - HashTableComputeTime: 87.419ms - HashTableEmplaceTime: 77.378ms - 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: 21.736us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 168 - BuildOutputBlock: 0ns - CloseTime: 20.65us - ExecTime: 134.263ms - InitProbeSideTime: 23.894ms - JoinFilterTimer: 25.876us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 13.698us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 93.544us - ProbeFindNextTime: 0ns - ProbeRows: 695.323K (695323) - ProbeTime: 130.179ms - ProbeWhenBuildSideOutputTime: 23.794ms - ProbeWhenProbeSideOutputTime: 2.118ms - ProbeWhenProcessHashTableTime: 970.987us - ProbeWhenSearchHashTableTime: 75.97ms - ProjectionTime: 3.142ms - RowsProduced: 163.261K (163261) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s106ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 209 - BytesReceived: 5.25 MB - CloseTime: 12.217us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.791ms - ExecTime: 2.229ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.45 MB - MemoryUsage: - Blocks: 19.75 MB - PeakMemoryUsage: 19.39 MB - OpenTime: 21.691us - ProjectionTime: 0ns - RowsProduced: 695.323K (695323) - SendersBlockedTotalTimer(*): 3s945ms - WaitForDependencyTime: 0ns - WaitForData0: 8s828ms PipelineXTask (index=13):(Active: 238.122ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 237.938ms - CloseTime: 55.574us - GetBlockTime: 141.682ms - OpenTime: 4.681us - PrepareTime: 107.375us - SinkTime: 94.894ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 66 - NumBlockedTimes: 68 - NumScheduleTimes: 69 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 237.867ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 171.148ms AGGREGATION_SINK_OPERATOR (id=109): - BuildTime: 94.520ms - CloseTime: 5.867us - DeserializeAndMergeTime: 0ns - ExecTime: 94.785ms - ExprTime: 355.15us - HashTableComputeTime: 91.740ms - HashTableEmplaceTime: 81.280ms - 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: 35.886us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=108): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 34.148us - ExecTime: 139.95ms - InitProbeSideTime: 25.234ms - JoinFilterTimer: 27.91us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.875us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 59.363us - ProbeFindNextTime: 0ns - ProbeRows: 695.248K (695248) - ProbeTime: 134.955ms - ProbeWhenBuildSideOutputTime: 22.753ms - ProbeWhenProbeSideOutputTime: 2.113ms - ProbeWhenProcessHashTableTime: 774.932us - ProbeWhenSearchHashTableTime: 79.571ms - ProjectionTime: 3.232ms - RowsProduced: 163.727K (163727) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s59ms EXCHANGE_OPERATOR (id=107): - BlocksProduced: 208 - BytesReceived: 5.27 MB - CloseTime: 11.632us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.741ms - ExecTime: 2.119ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.36 MB - MemoryUsage: - Blocks: 20.14 MB - PeakMemoryUsage: 19.78 MB - OpenTime: 19.4us - ProjectionTime: 0ns - RowsProduced: 695.248K (695248) - SendersBlockedTotalTimer(*): 3s942ms - WaitForDependencyTime: 0ns - WaitForData0: 8s810ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 46.465ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 46.366ms - CloseTime: 16.737us - GetBlockTime: 869.210us - OpenTime: 1.762us - PrepareTime: 64.244us - SinkTime: 45.50ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 39 - NumBlockedTimes: 41 - NumScheduleTimes: 41 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 46.310ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.652ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 31.389us - BuildRows: 163.936K (163936) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.607ms - BuildTableInsertTime: 16.259ms - BuildTableTime: 16.268ms - CloseTime: 0ns - ExecTime: 45.43ms - InputRows: 163.935K (163935) - MemoryUsage: - BuildBlocks: 10.79 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.20 MB - OpenTime: 21.640us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 14.770us - RuntimeFilterComputeTime: 7.937ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 74 - BytesReceived: 4.20 MB - CloseTime: 12.658us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.539ms - ExecTime: 837.287us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.49 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 12.880us - ProjectionTime: 0ns - RowsProduced: 163.935K (163935) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s303ms PipelineXTask (index=5):(Active: 39.26ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 38.946ms - CloseTime: 10.504us - GetBlockTime: 920.254us - OpenTime: 1.405us - PrepareTime: 59.206us - SinkTime: 37.585ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 43 - NumBlockedTimes: 45 - NumScheduleTimes: 45 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 38.708ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.281ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 33.761us - BuildRows: 163.684K (163684) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.876ms - BuildTableInsertTime: 14.771ms - BuildTableTime: 14.777ms - CloseTime: 0ns - ExecTime: 37.575ms - InputRows: 163.683K (163683) - MemoryUsage: - BuildBlocks: 10.77 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.17 MB - OpenTime: 16.602us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.346us - RuntimeFilterComputeTime: 5.699ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 73 - BytesReceived: 4.20 MB - CloseTime: 7.790us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.611ms - ExecTime: 894.869us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.25 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 15.588us - ProjectionTime: 0ns - RowsProduced: 163.683K (163683) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s306ms PipelineXTask (index=8):(Active: 47.626ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 47.545ms - CloseTime: 19.437us - GetBlockTime: 836.287us - OpenTime: 1.656us - PrepareTime: 50.400us - SinkTime: 46.323ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 38 - NumBlockedTimes: 40 - NumScheduleTimes: 40 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.339ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.634ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 29.496us - BuildRows: 163.393K (163393) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 29.439ms - BuildTableInsertTime: 11.757ms - BuildTableTime: 11.760ms - CloseTime: 0ns - ExecTime: 46.317ms - InputRows: 163.392K (163392) - MemoryUsage: - BuildBlocks: 10.75 MB - BuildKeyArena: 5.62 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.14 MB - OpenTime: 16.842us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.222us - RuntimeFilterComputeTime: 4.938ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 74 - BytesReceived: 4.18 MB - CloseTime: 16.619us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.118ms - ExecTime: 820.226us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.05 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 10.478us - ProjectionTime: 0ns - RowsProduced: 163.392K (163392) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s283ms PipelineXTask (index=11):(Active: 32.28ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 31.937ms - CloseTime: 15.226us - GetBlockTime: 692.755us - OpenTime: 1.514us - PrepareTime: 65.113us - SinkTime: 30.899ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 43 - NumBlockedTimes: 45 - NumScheduleTimes: 45 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 31.848ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 35.937ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 27.620us - BuildRows: 163.262K (163262) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.88ms - BuildTableInsertTime: 10.284ms - BuildTableTime: 10.292ms - CloseTime: 0ns - ExecTime: 30.899ms - InputRows: 163.261K (163261) - MemoryUsage: - BuildBlocks: 10.74 MB - BuildKeyArena: 5.61 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.13 MB - OpenTime: 20.537us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.977us - RuntimeFilterComputeTime: 3.342ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 74 - BytesReceived: 4.18 MB - CloseTime: 10.771us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.793ms - ExecTime: 661.0us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.07 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 11.564us - ProjectionTime: 0ns - RowsProduced: 163.261K (163261) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s285ms PipelineXTask (index=14):(Active: 35.142ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 35.50ms - CloseTime: 19.809us - GetBlockTime: 763.466us - OpenTime: 1.334us - PrepareTime: 60.763us - SinkTime: 33.884ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 41 - NumBlockedTimes: 43 - NumScheduleTimes: 43 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 35.35ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.998ms HASH_JOIN_SINK_OPERATOR (id=108): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 38.855us - BuildRows: 163.728K (163728) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.202ms - BuildTableInsertTime: 8.197ms - BuildTableTime: 8.206ms - CloseTime: 0ns - ExecTime: 33.879ms - InputRows: 163.727K (163727) - MemoryUsage: - BuildBlocks: 10.77 MB - BuildKeyArena: 5.63 MB - HashTable: 1.78 MB - PeakMemoryUsage: 18.18 MB - OpenTime: 23.425us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 187.469us - RuntimeFilterComputeTime: 6.90ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=105): - BlocksProduced: 73 - BytesReceived: 4.19 MB - CloseTime: 14.763us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.623ms - ExecTime: 758.183us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.24 MB - MemoryUsage: - Blocks: 1.03 MB - PeakMemoryUsage: 1.03 MB - OpenTime: 15.587us - ProjectionTime: 0ns - RowsProduced: 163.727K (163727) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s298ms Fragment 111: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 462.296ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 461.846ms - CloseTime: 77.201us - GetBlockTime: 2.152ms - OpenTime: 91.56us - PrepareTime: 272.5us - SinkTime: 458.481ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 14 - NumScheduleTimes: 16 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 331.307ms - WaitBfTime: 904.215ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 184.985ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 504 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.71 MB - CloseTime: 31.898us - CompressTime: 0ns - ExecTime: 458.409ms - InputRows: 2.082156M (2082156) - LocalBytesSent: 38.07 MB - LocalSendTime: 2.257ms - LocalSentRows: 867.905K (867905) - MemoryUsage: - PeakMemoryUsage: 69.70 MB - MergeBlockTime: 0ns - OpenTime: 65.242us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 478.925ms - RowsProduced: 2.082156M (2082156) - RpcAvgTime: 86.488ms - RpcCount: 290 - RpcMaxTime: 3s684ms - RpcMinTime: 3s518ms - RpcSumTime: 25s81ms - SerializeBatchTime: 175.41ms - SplitBlockDistributeByChannelTime: 195.137ms - SplitBlockHashComputeTime: 64.978ms - UncompressedRowBatchSize: 54.47 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 6.11ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 7s804ms - 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: 4.181us - BlocksProduced: 514 - CloseTime: 40.608us - ExecTime: 228.757ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 238.668us - ProcessConjunctTime: 18.512us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 90.373ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 226.510ms - 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.243584M (1243584) 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: 621.792K (621792) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [144.095ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [90.373ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 127.93ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.140ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.652us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 103.217ms - ScannerCtxSchedTime: 90.358ms - ScannerFilterTime: 15.72ms - ScannerGetBlockTime: 128.780ms - ScannerInitTime: 49.473us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 4.661us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 11.309us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 16.588us - BlockInitTime: 117.234us - BlockLoadTime: 128.439ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.179ms - FirstReadTime: 126.211ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.10us - 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: 129.466us - OutputIndexResultColumnTimer: 65.898us - 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: 376.658ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 376.302ms - CloseTime: 76.642us - GetBlockTime: 2.15ms - OpenTime: 74.298us - PrepareTime: 195.927us - SinkTime: 373.163ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 320.342ms - WaitBfTime: 904.259ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 220.751ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.78 MB - CloseTime: 22.644us - CompressTime: 0ns - ExecTime: 373.86ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 38.18 MB - LocalSendTime: 1.763ms - LocalSentRows: 870.386K (870386) - MemoryUsage: - PeakMemoryUsage: 69.95 MB - MergeBlockTime: 0ns - OpenTime: 55.942us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 453.961ms - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 95.607ms - RpcCount: 290 - RpcMaxTime: 4s0ms - RpcMinTime: 3s855ms - RpcSumTime: 27s726ms - SerializeBatchTime: 149.281ms - SplitBlockDistributeByChannelTime: 131.330ms - SplitBlockHashComputeTime: 70.328ms - UncompressedRowBatchSize: 54.58 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 6.11ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 7s804ms - 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: 1.787us - BlocksProduced: 515 - CloseTime: 50.684us - ExecTime: 254.736ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 166.430us - ProcessConjunctTime: 11.73us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 92.92ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 252.684ms - 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.243584M (1243584) 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: 621.792K (621792) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [136.944ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [92.092ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 119.856ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 25.103ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.900us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 108.748ms - ScannerCtxSchedTime: 92.76ms - ScannerFilterTime: 15.44ms - ScannerGetBlockTime: 121.639ms - ScannerInitTime: 44.334us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 954ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.367us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.610us - BlockInitTime: 118.245us - BlockLoadTime: 145.248ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 25.165ms - FirstReadTime: 142.801ms - 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: 153.653us - OutputIndexResultColumnTimer: 67.985us - 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=2):(Active: 443.271ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 442.970ms - CloseTime: 57.750us - GetBlockTime: 2.146ms - OpenTime: 71.703us - PrepareTime: 160.908us - SinkTime: 439.544ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 15 - NumScheduleTimes: 17 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 342.756ms - WaitBfTime: 904.47ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 183.909ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 509 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.78 MB - CloseTime: 16.368us - CompressTime: 0ns - ExecTime: 439.440ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 38.18 MB - LocalSendTime: 1.998ms - LocalSentRows: 870.259K (870259) - MemoryUsage: - PeakMemoryUsage: 69.41 MB - MergeBlockTime: 0ns - OpenTime: 60.141us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 455.713ms - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 101.24ms - RpcCount: 293 - RpcMaxTime: 4s283ms - RpcMinTime: 4s93ms - RpcSumTime: 29s600ms - SerializeBatchTime: 143.382ms - SplitBlockDistributeByChannelTime: 204.568ms - SplitBlockHashComputeTime: 68.602ms - UncompressedRowBatchSize: 54.57 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 6.11ms - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 7s804ms - 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: 2.306us - BlocksProduced: 515 - CloseTime: 37.595us - ExecTime: 225.372ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 128.685us - ProcessConjunctTime: 11.382us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 91.256ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 223.269ms - 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.243584M (1243584) 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: 621.792K (621792) VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [133.984ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [91.256ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 110.684ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.145ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.595us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 112.883ms - ScannerCtxSchedTime: 91.241ms - ScannerFilterTime: 21.524ms - ScannerGetBlockTime: 112.228ms - ScannerInitTime: 38.95us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.152us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.10us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 15.910us - BlockInitTime: 103.266us - BlockLoadTime: 111.911ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 976.783us - FirstReadTime: 109.807ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.155us - 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: 124.292us - OutputIndexResultColumnTimer: 61.23us - 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 :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 499.27ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 498.625ms - CloseTime: 56.3us - GetBlockTime: 14.655ms - OpenTime: 138.208us - PrepareTime: 194.393us - SinkTime: 481.849ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 15 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 405.549ms - WaitBfTime: 831.777ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.556ms DATA_STREAM_SINK_OPERATOR (id=107,dst_id=107): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.30 MB - CloseTime: 22.52us - CompressTime: 0ns - ExecTime: 481.688ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 53.34 MB - LocalSendTime: 3.238ms - LocalSentRows: 1.215978M (1215978) - MemoryUsage: - PeakMemoryUsage: 95.94 MB - MergeBlockTime: 0ns - OpenTime: 69.641us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s637ms - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 302.322ms - RpcCount: 209 - RpcMaxTime: 14s919ms - RpcMinTime: 11s937ms - RpcSumTime: 1m3s - SerializeBatchTime: 137.743ms - SplitBlockDistributeByChannelTime: 241.785ms - SplitBlockHashComputeTime: 70.620ms - UncompressedRowBatchSize: 39.04 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - 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: 4.804us - BlocksProduced: 514 - CloseTime: 30.110us - ExecTime: 244.806ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 212.909us - ProcessConjunctTime: 36.372us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 104.349ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 230.226ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 38, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 39, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [127.317ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [104.349ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 124.564ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.4ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 34.159us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 118.56ms - ScannerCtxSchedTime: 104.334ms - ScannerFilterTime: 630.844us - ScannerGetBlockTime: 126.397ms - ScannerInitTime: 71.507us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.225us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.843us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 15.539us - BlockInitTime: 98.68us - BlockLoadTime: 125.669ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.153ms - FirstReadTime: 122.736ms - 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: 2 - OutputColumnTime: 180.946us - OutputIndexResultColumnTimer: 116.561us - 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 Fragment 112: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 133.124ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 132.901ms - CloseTime: 45.281us - GetBlockTime: 14.727ms - OpenTime: 10.542us - PrepareTime: 158.485us - SinkTime: 117.764ms - GetBlockCounter: 62 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 60.825ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.726ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 55 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.17 MB - CloseTime: 19.794us - CompressTime: 0ns - ExecTime: 117.828ms - InputRows: 167.164K (167164) - LocalBytesSent: 4.58 MB - LocalSendTime: 355.21us - LocalSentRows: 69.633K (69633) - MemoryUsage: - PeakMemoryUsage: 11.36 MB - MergeBlockTime: 0ns - OpenTime: 80.454us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 874.7ms - RowsProduced: 167.164K (167164) - RpcAvgTime: 241.425ms - RpcCount: 28 - RpcMaxTime: 983.967ms - RpcMinTime: 957.731ms - RpcSumTime: 6s759ms - SerializeBatchTime: 81.741ms - SplitBlockDistributeByChannelTime: 25.505ms - SplitBlockHashComputeTime: 5.905ms - UncompressedRowBatchSize: 6.59 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 19.219us - ExecTime: 14.288ms - InitProbeSideTime: 3.98ms - JoinFilterTimer: 8.485us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 21.518us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.345us - ProbeFindNextTime: 0ns - ProbeRows: 167.164K (167164) - ProbeTime: 12.46ms - ProbeWhenBuildSideOutputTime: 289.787us - ProbeWhenProbeSideOutputTime: 3.355ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.845ms - ProjectionTime: 1.998ms - RowsProduced: 167.164K (167164) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 296.478us - GetBlockFailedTime: 16 - MemoryUsage: - PeakMemoryUsage: 5.13 MB - OpenTime: 790ns - ProjectionTime: 0ns - RowsProduced: 167.164K (167164) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 194.492ms PipelineXTask (index=5):(Active: 153.563ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 153.413ms - CloseTime: 41.593us - GetBlockTime: 13.495ms - OpenTime: 4.302us - PrepareTime: 93.582us - SinkTime: 98.492ms - GetBlockCounter: 66 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 53.736ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.113ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 55 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.96 MB - CloseTime: 18.719us - CompressTime: 0ns - ExecTime: 98.530ms - InputRows: 157.733K (157733) - LocalBytesSent: 4.32 MB - LocalSendTime: 302.818us - LocalSentRows: 65.697K (65697) - MemoryUsage: - PeakMemoryUsage: 11.27 MB - MergeBlockTime: 0ns - OpenTime: 53.667us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 575.926ms - RowsProduced: 157.733K (157733) - RpcAvgTime: 179.798ms - RpcCount: 28 - RpcMaxTime: 726.500ms - RpcMinTime: 701.912ms - RpcSumTime: 5s34ms - SerializeBatchTime: 27.504ms - SplitBlockDistributeByChannelTime: 61.18ms - SplitBlockHashComputeTime: 4.960ms - UncompressedRowBatchSize: 6.22 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 44 - BuildOutputBlock: 0ns - CloseTime: 17.934us - ExecTime: 13.19ms - InitProbeSideTime: 2.765ms - JoinFilterTimer: 16.83us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.462us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.35us - ProbeFindNextTime: 0ns - ProbeRows: 157.733K (157733) - ProbeTime: 11.39ms - ProbeWhenBuildSideOutputTime: 222.374us - ProbeWhenProbeSideOutputTime: 3.593ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.239ms - ProjectionTime: 1.800ms - RowsProduced: 157.733K (157733) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 44 - CloseTime: 0ns - ExecTime: 306.434us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 3.28 MB - OpenTime: 729ns - ProjectionTime: 0ns - RowsProduced: 157.733K (157733) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 177.182ms PipelineXTask (index=10):(Active: 115.97ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 114.939ms - CloseTime: 43.583us - GetBlockTime: 45.387ms - OpenTime: 4.677us - PrepareTime: 100.649us - SinkTime: 69.83ms - GetBlockCounter: 66 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 58.377ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.759ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 55 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.91 MB - CloseTime: 18.426us - CompressTime: 0ns - ExecTime: 69.114ms - InputRows: 155.529K (155529) - LocalBytesSent: 4.27 MB - LocalSendTime: 344.604us - LocalSentRows: 64.844K (64844) - MemoryUsage: - PeakMemoryUsage: 11.19 MB - MergeBlockTime: 0ns - OpenTime: 53.110us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 825.142ms - RowsProduced: 155.529K (155529) - RpcAvgTime: 226.7ms - RpcCount: 28 - RpcMaxTime: 949.283ms - RpcMinTime: 843.660ms - RpcSumTime: 6s328ms - SerializeBatchTime: 28.724ms - SplitBlockDistributeByChannelTime: 30.725ms - SplitBlockHashComputeTime: 5.306ms - UncompressedRowBatchSize: 6.13 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 19.54us - ExecTime: 44.875ms - InitProbeSideTime: 2.979ms - JoinFilterTimer: 7.122us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 15.350us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.946us - ProbeFindNextTime: 0ns - ProbeRows: 155.529K (155529) - ProbeTime: 42.533ms - ProbeWhenBuildSideOutputTime: 289.862us - ProbeWhenProbeSideOutputTime: 18.587ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 19.411ms - ProjectionTime: 2.131ms - RowsProduced: 155.529K (155529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 317.664us - GetBlockFailedTime: 22 - MemoryUsage: - PeakMemoryUsage: 2.56 MB - OpenTime: 648ns - ProjectionTime: 0ns - RowsProduced: 155.529K (155529) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 211.251ms PipelineXTask (index=15):(Active: 87.31ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 86.849ms - CloseTime: 39.618us - GetBlockTime: 14.167ms - OpenTime: 3.399us - PrepareTime: 130.39us - SinkTime: 72.221ms - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 54.171ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.481ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 45 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.71 MB - CloseTime: 16.592us - CompressTime: 0ns - ExecTime: 72.273ms - InputRows: 148.462K (148462) - LocalBytesSent: 4.07 MB - LocalSendTime: 318.246us - LocalSentRows: 61.841K (61841) - MemoryUsage: - PeakMemoryUsage: 10.00 MB - MergeBlockTime: 0ns - OpenTime: 67.740us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 567.602ms - RowsProduced: 148.462K (148462) - RpcAvgTime: 173.802ms - RpcCount: 22 - RpcMaxTime: 737.271ms - RpcMinTime: 465.208ms - RpcSumTime: 3s823ms - SerializeBatchTime: 48.483ms - SplitBlockDistributeByChannelTime: 15.67ms - SplitBlockHashComputeTime: 4.977ms - UncompressedRowBatchSize: 5.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 19.768us - ExecTime: 13.700ms - InitProbeSideTime: 2.588ms - JoinFilterTimer: 7.95us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.567us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.953us - ProbeFindNextTime: 0ns - ProbeRows: 148.462K (148462) - ProbeTime: 11.516ms - ProbeWhenBuildSideOutputTime: 295.713us - ProbeWhenProbeSideOutputTime: 4.287ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.130ms - ProjectionTime: 1.978ms - RowsProduced: 148.462K (148462) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 304.313us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 1.94 MB - OpenTime: 2.675us - ProjectionTime: 0ns - RowsProduced: 148.462K (148462) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 243.738ms PipelineXTask (index=20):(Active: 51.837ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 51.665ms - CloseTime: 35.536us - GetBlockTime: 12.955ms - OpenTime: 4.543us - PrepareTime: 122.611us - SinkTime: 38.231ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 51.536ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.46ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.45 MB - CloseTime: 14.170us - CompressTime: 0ns - ExecTime: 38.282ms - InputRows: 139.684K (139684) - LocalBytesSent: 3.84 MB - LocalSendTime: 255.462us - LocalSentRows: 58.333K (58333) - MemoryUsage: - PeakMemoryUsage: 10.21 MB - MergeBlockTime: 0ns - OpenTime: 72.917us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 327.685ms - RowsProduced: 139.684K (139684) - RpcAvgTime: 160.963ms - RpcCount: 21 - RpcMaxTime: 500.843ms - RpcMinTime: 465.383ms - RpcSumTime: 3s380ms - SerializeBatchTime: 13.466ms - SplitBlockDistributeByChannelTime: 15.540ms - SplitBlockHashComputeTime: 4.664ms - UncompressedRowBatchSize: 5.50 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 17.52us - ExecTime: 12.480ms - InitProbeSideTime: 2.497ms - JoinFilterTimer: 5.939us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.689us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 30.781us - ProbeFindNextTime: 0ns - ProbeRows: 139.684K (139684) - ProbeTime: 10.398ms - ProbeWhenBuildSideOutputTime: 247.169us - ProbeWhenProbeSideOutputTime: 3.315ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.150ms - ProjectionTime: 1.879ms - RowsProduced: 139.684K (139684) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 41 - CloseTime: 0ns - ExecTime: 253.984us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 1.28 MB - OpenTime: 559ns - ProjectionTime: 0ns - RowsProduced: 139.684K (139684) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 284.111ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 23.851ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 23.762ms - CloseTime: 39.150us - GetBlockTime: 22.929ms - OpenTime: 2.857us - PrepareTime: 41.46us - SinkTime: 449.803us - GetBlockCounter: 69 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.625ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 34.578ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 417.663us - InputRows: 153.794K (153794) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.162us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 35.203us - ExecTime: 22.564ms - InitProbeSideTime: 3.11ms - JoinFilterTimer: 7.535us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 13.323us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.480us - ProbeFindNextTime: 0ns - ProbeRows: 153.794K (153794) - ProbeTime: 19.412ms - ProbeWhenBuildSideOutputTime: 7.568ms - ProbeWhenProbeSideOutputTime: 3.761ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.746ms - ProjectionTime: 2.927ms - RowsProduced: 153.794K (153794) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 242.755us - GetBlockFailedTime: 24 - MemoryUsage: - PeakMemoryUsage: 1.57 MB - OpenTime: 486ns - ProjectionTime: 0ns - RowsProduced: 153.794K (153794) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 290.603ms PipelineXTask (index=6):(Active: 24.604ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 24.540ms - CloseTime: 12.834us - GetBlockTime: 23.745ms - OpenTime: 2.715us - PrepareTime: 41.981us - SinkTime: 427.629us - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.766ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.175ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 394.741us - InputRows: 160.006K (160006) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.281us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 44 - BuildOutputBlock: 0ns - CloseTime: 11.190us - ExecTime: 23.386ms - InitProbeSideTime: 2.773ms - JoinFilterTimer: 7.382us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.232us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.184us - ProbeFindNextTime: 0ns - ProbeRows: 160.006K (160006) - ProbeTime: 19.61ms - ProbeWhenBuildSideOutputTime: 438.33us - ProbeWhenProbeSideOutputTime: 10.950ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.650ms - ProjectionTime: 4.131ms - RowsProduced: 160.006K (160006) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 44 - CloseTime: 0ns - ExecTime: 210.873us - GetBlockFailedTime: 24 - MemoryUsage: - PeakMemoryUsage: 1.64 MB - OpenTime: 1.697us - ProjectionTime: 0ns - RowsProduced: 160.006K (160006) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 293.458ms PipelineXTask (index=11):(Active: 17.83ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 16.998ms - CloseTime: 17.531us - GetBlockTime: 16.237ms - OpenTime: 3.941us - PrepareTime: 54.436us - SinkTime: 399.192us - GetBlockCounter: 66 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.941ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.613ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 361.528us - InputRows: 154.222K (154222) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.61us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 16.162us - ExecTime: 15.857ms - InitProbeSideTime: 2.999ms - JoinFilterTimer: 7.215us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 8.818us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.944us - ProbeFindNextTime: 0ns - ProbeRows: 154.222K (154222) - ProbeTime: 12.836ms - ProbeWhenBuildSideOutputTime: 455.549us - ProbeWhenProbeSideOutputTime: 4.315ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.716ms - ProjectionTime: 2.836ms - RowsProduced: 154.222K (154222) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 220.954us - GetBlockFailedTime: 24 - MemoryUsage: - PeakMemoryUsage: 1.45 MB - OpenTime: 670ns - ProjectionTime: 0ns - RowsProduced: 154.222K (154222) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 289.304ms PipelineXTask (index=16):(Active: 34.48ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 33.948ms - CloseTime: 27.974us - GetBlockTime: 33.273ms - OpenTime: 1.689us - PrepareTime: 63.82us - SinkTime: 333.707us - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.514ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.284ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 308.581us - InputRows: 151.888K (151888) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.244us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 26.227us - ExecTime: 32.945ms - InitProbeSideTime: 2.930ms - JoinFilterTimer: 6.554us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 8.628us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.780us - ProbeFindNextTime: 0ns - ProbeRows: 151.888K (151888) - ProbeTime: 30.131ms - ProbeWhenBuildSideOutputTime: 628.760us - ProbeWhenProbeSideOutputTime: 19.427ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.256ms - ProjectionTime: 2.640ms - RowsProduced: 151.888K (151888) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 188.809us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 1.73 MB - OpenTime: 610ns - ProjectionTime: 0ns - RowsProduced: 151.888K (151888) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 291.598ms PipelineXTask (index=21):(Active: 15.322ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 15.226ms - CloseTime: 28.389us - GetBlockTime: 14.459ms - OpenTime: 3.442us - PrepareTime: 54.398us - SinkTime: 413.296us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.232ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 43.857ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 388.502us - InputRows: 148.662K (148662) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.513us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 26.621us - ExecTime: 14.109ms - InitProbeSideTime: 2.692ms - JoinFilterTimer: 5.968us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.380us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.198us - ProbeFindNextTime: 0ns - ProbeRows: 148.662K (148662) - ProbeTime: 11.350ms - ProbeWhenBuildSideOutputTime: 496.913us - ProbeWhenProbeSideOutputTime: 3.631ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.324ms - ProjectionTime: 2.565ms - RowsProduced: 148.662K (148662) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 41 - CloseTime: 0ns - ExecTime: 211.963us - GetBlockFailedTime: 23 - MemoryUsage: - PeakMemoryUsage: 1.73 MB - OpenTime: 617ns - ProjectionTime: 0ns - RowsProduced: 148.662K (148662) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 289.701ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 872.941us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 413.387us - CloseTime: 34.938us - GetBlockTime: 83.707us - OpenTime: 278.705us - PrepareTime: 138.34us - SinkTime: 24.782us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 827.997us - WaitBfTime: 846.864us - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.671ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 25.312us - InputRows: 583 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.49us - 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: 32.966us - BlocksProduced: 2 - CloseTime: 32.38us - ExecTime: 154.382ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 372.241us - ProcessConjunctTime: 138.360us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 22.466ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 153.896ms - 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: [129.750ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [22.466ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 127.60ms - MemoryUsage: - FreeBlocks: 408.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 861.468us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 208ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.632ms - ScannerCtxSchedTime: 22.464ms - ScannerFilterTime: 115.605us - ScannerGetBlockTime: 129.577ms - ScannerInitTime: 90.678us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 2.131us - BlockConditionsFilteredBloomFilterTime: 7.567us - BlockConditionsFilteredDictTime: 215.822us - BlockConditionsFilteredTime: 311.411us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 48.532us - BlockInitSeekCount: 37 - BlockInitSeekTime: 341.627us - BlockInitTime: 775.203us - BlockLoadTime: 129.556ms - BlocksLoad: 152 - CachedPagesNum: 312 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 60.825us - FirstReadTime: 48.895ms - IOTimer: 0ns - InvertedIndexFilterTime: 14.425us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 21.970ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 56.132ms - OutputIndexResultColumnTimer: 16.214us - 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: 1.99ms - TotalPagesNum: 312 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 76.974us PipelineXTask (index=7):(Active: 1.635ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 1.87ms - CloseTime: 29.208us - GetBlockTime: 415.584us - OpenTime: 335.62us - PrepareTime: 176.427us - SinkTime: 228.835us - GetBlockCounter: 36 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.345ms - WaitBfTime: 1.406ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.401ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 219.638us - InputRows: 128.11K (128110) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 896ns - 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: 26.798us - BlocksProduced: 36 - CloseTime: 26.448us - ExecTime: 270.810ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 421.863us - ProcessConjunctTime: 126.96us - 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: 41.201ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 269.977ms - 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: [221.140ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [41.201ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 218.681ms - MemoryUsage: - FreeBlocks: 2.14 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.834ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.131us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 125.391ms - ScannerCtxSchedTime: 41.183ms - ScannerFilterTime: 420.724us - ScannerGetBlockTime: 220.516ms - ScannerInitTime: 169.454us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 2.309us - BlockConditionsFilteredBloomFilterTime: 4.142us - BlockConditionsFilteredDictTime: 85.711us - BlockConditionsFilteredTime: 177.116us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 49.915us - BlockInitSeekCount: 26 - BlockInitSeekTime: 29.885us - BlockInitTime: 315.552us - BlockLoadTime: 221.66ms - BlocksLoad: 405 - CachedPagesNum: 1.107K (1107) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 97.587us - FirstReadTime: 2.936ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.229us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 209.605ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.326ms - OutputIndexResultColumnTimer: 60.478us - 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.796ms - TotalPagesNum: 1.107K (1107) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 223.166us PipelineXTask (index=12):(Active: 2.368ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.777ms - CloseTime: 35.182us - GetBlockTime: 665.71us - OpenTime: 411.408us - PrepareTime: 134.640us - SinkTime: 496.758us - GetBlockCounter: 77 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.945ms - WaitBfTime: 5.527ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.929ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 478.112us - InputRows: 273.17K (273170) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.318us - 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: 23.517us - BlocksProduced: 77 - CloseTime: 31.782us - ExecTime: 335.867ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 505.957us - ProcessConjunctTime: 124.794us - 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: 44.388ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 334.686ms - 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: [281.995ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [44.388ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 278.302ms - MemoryUsage: - FreeBlocks: 4.97 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.93ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.365us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 161.901ms - ScannerCtxSchedTime: 44.375ms - ScannerFilterTime: 530.32us - ScannerGetBlockTime: 281.258ms - ScannerInitTime: 247.674us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 11 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 1.819us - BlockConditionsFilteredBloomFilterTime: 4.957us - BlockConditionsFilteredDictTime: 99.473us - BlockConditionsFilteredTime: 186.199us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 47.613us - BlockInitSeekCount: 31 - BlockInitSeekTime: 27.651us - BlockInitTime: 331.804us - BlockLoadTime: 280.789ms - BlocksLoad: 410 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 114.259us - FirstReadTime: 3.148ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.226us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 263.681ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.428ms - OutputIndexResultColumnTimer: 72.426us - 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.939ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 225.119us PipelineXTask (index=17):(Active: 2.448ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 1.719ms - CloseTime: 45.664us - GetBlockTime: 592.645us - OpenTime: 528.750us - PrepareTime: 146.561us - SinkTime: 459.891us - GetBlockCounter: 89 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.817ms - WaitBfTime: 4.911ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.613ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 444.363us - InputRows: 329.927K (329927) - 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: [21181] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 24.223us - BlocksProduced: 89 - CloseTime: 42.240us - ExecTime: 241.184ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 618.78us - ProcessConjunctTime: 141.45us - 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: 69.442ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 239.951ms - 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: [161.494ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [69.442ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 156.264ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 794.873us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.175us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 150.939ms - ScannerCtxSchedTime: 69.431ms - ScannerFilterTime: 511.98us - ScannerGetBlockTime: 160.782ms - ScannerInitTime: 344.746us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 2.111us - BlockConditionsFilteredBloomFilterTime: 7.316us - BlockConditionsFilteredDictTime: 144.323us - BlockConditionsFilteredTime: 237.950us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 46.301us - BlockInitSeekCount: 35 - BlockInitSeekTime: 28.818us - BlockInitTime: 375.888us - BlockLoadTime: 159.697ms - BlocksLoad: 345 - CachedPagesNum: 934 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 105.48us - FirstReadTime: 2.887ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.758us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 140.593ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 6.883ms - OutputIndexResultColumnTimer: 61.37us - 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.441ms - TotalPagesNum: 934 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 207.920us PipelineXTask (index=22):(Active: 842.875us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 412.239us - CloseTime: 29.320us - GetBlockTime: 101.277us - OpenTime: 248.87us - PrepareTime: 145.431us - SinkTime: 36.413us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 804.666us - WaitBfTime: 2.485ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.799ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 35.336us - InputRows: 36.782K (36782) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 950ns - 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: 24.967us - BlocksProduced: 10 - CloseTime: 27.143us - ExecTime: 80.559ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 336.355us - ProcessConjunctTime: 139.116us - 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: 26.620ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 80.97ms - 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: [50.988ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [26.620ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 50.714ms - MemoryUsage: - FreeBlocks: 3.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 817.925us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 446ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.448ms - ScannerCtxSchedTime: 26.618ms - ScannerFilterTime: 70.322us - ScannerGetBlockTime: 50.885ms - ScannerInitTime: 65.716us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 467ns - BlockConditionsFilteredBloomFilterTime: 1.52us - BlockConditionsFilteredDictTime: 25.398us - BlockConditionsFilteredTime: 42.338us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.6us - BlockInitSeekCount: 8 - BlockInitSeekTime: 12.227us - BlockInitTime: 78.720us - BlockLoadTime: 51.321ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 262.634us - FirstReadTime: 782.616us - IOTimer: 0ns - InvertedIndexFilterTime: 1.473us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 48.527ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 694.867us - OutputIndexResultColumnTimer: 10.757us - 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: 837.364us - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 39.605us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 186.33us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 102.239us - CloseTime: 6.106us - GetBlockTime: 3.259us - OpenTime: 2.782us - PrepareTime: 69.849us - SinkTime: 80.578us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 173.199us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.640ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.24us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.157us - BuildTableInsertTime: 33.565us - BuildTableTime: 35.743us - CloseTime: 0ns - ExecTime: 108.936us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 28.462us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.939us - RuntimeFilterComputeTime: 14.220us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=99): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 5.108us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.522us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 22.423us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 722.849us PipelineXTask (index=8):(Active: 118.241us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.694us - CloseTime: 6.369us - GetBlockTime: 0ns - OpenTime: 2.350us - PrepareTime: 61.188us - SinkTime: 25.429us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.297us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.43ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.402us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.165us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4.946ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.123us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.753us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.607us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 112.525us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.767us - CloseTime: 7.444us - GetBlockTime: 0ns - OpenTime: 2.496us - PrepareTime: 54.663us - SinkTime: 23.299us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.661us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.987ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.203us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.30us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 771.257us EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.774us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.295us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.686us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 107.977us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.299us - CloseTime: 6.145us - GetBlockTime: 0ns - OpenTime: 1.979us - PrepareTime: 66.694us - SinkTime: 17.130us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.296us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.547ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.0us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.964us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.155ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.977us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.422us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.867us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 108.264us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.198us - CloseTime: 5.334us - GetBlockTime: 0ns - OpenTime: 1.704us - PrepareTime: 71.362us - SinkTime: 13.701us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.877us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.238ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.394us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.905us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 4.485ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.971us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.356us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.570us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=4):(Active: 1.757ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.704ms - CloseTime: 11.44us - GetBlockTime: 60.790us - OpenTime: 2.134us - PrepareTime: 35.791us - SinkTime: 1.605ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.735ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.91ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 3.703us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 282.872us - BuildTableInsertTime: 1.236ms - BuildTableTime: 1.280ms - CloseTime: 0ns - ExecTime: 1.613ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 10.796us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=101): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 8.852us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 74.533us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.26 MB - MemoryUsage: - Blocks: 1.07 MB - PeakMemoryUsage: 836.00 KB - OpenTime: 8.912us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20.27ms PipelineXTask (index=9):(Active: 80.595us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.929us - CloseTime: 8.347us - GetBlockTime: 0ns - OpenTime: 1.883us - PrepareTime: 40.739us - SinkTime: 13.857us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.449us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.2ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.200us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.594us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 27.286ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.736us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.708us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.344us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 72.19us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 16.781us - CloseTime: 4.274us - GetBlockTime: 0ns - OpenTime: 1.515us - PrepareTime: 44.954us - SinkTime: 6.502us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 62.938us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.42ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.228us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.893us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 27.261ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.246us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.541us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 73.510us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.19us - CloseTime: 3.757us - GetBlockTime: 0ns - OpenTime: 1.342us - PrepareTime: 40.750us - SinkTime: 5.19us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 61.16us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.821ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 9.910us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.273us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 24.493ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.680us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.517us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.274us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 94.690us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.24us - CloseTime: 6.582us - GetBlockTime: 0ns - OpenTime: 2.85us - PrepareTime: 57.627us - SinkTime: 7.746us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 81.700us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.207ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.930us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 34.284us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 27.251ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.258us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.109us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.263us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 53.35ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 52.841ms - CloseTime: 45.857us - GetBlockTime: 13.932ms - OpenTime: 5.982us - PrepareTime: 134.667us - SinkTime: 38.687ms - GetBlockCounter: 54 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 52.979ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.8ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.25 MB - CloseTime: 12.155us - CompressTime: 0ns - ExecTime: 38.741ms - InputRows: 185.025K (185025) - LocalBytesSent: 7.09 MB - LocalSendTime: 392.329us - LocalSentRows: 107.791K (107791) - MemoryUsage: - PeakMemoryUsage: 14.87 MB - MergeBlockTime: 0ns - OpenTime: 72.940us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s363ms - RowsProduced: 185.025K (185025) - RpcAvgTime: 1s844ms - RpcCount: 20 - RpcMaxTime: 7s377ms - RpcMinTime: 7s373ms - RpcSumTime: 36s880ms - SerializeBatchTime: 10.725ms - SplitBlockDistributeByChannelTime: 18.914ms - SplitBlockHashComputeTime: 5.322ms - UncompressedRowBatchSize: 5.22 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 51 - BuildOutputBlock: 0ns - CloseTime: 31.40us - ExecTime: 13.604ms - InitProbeSideTime: 2.651ms - JoinFilterTimer: 7.526us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 13.0us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.181us - ProbeFindNextTime: 0ns - ProbeRows: 185.025K (185025) - ProbeTime: 11.930ms - ProbeWhenBuildSideOutputTime: 271.814us - ProbeWhenProbeSideOutputTime: 4.564ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.489ms - ProjectionTime: 1.476ms - RowsProduced: 185.025K (185025) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 51 - CloseTime: 0ns - ExecTime: 270.341us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 11.50 MB - OpenTime: 772ns - ProjectionTime: 0ns - RowsProduced: 185.025K (185025) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s929ms PipelineXTask (index=5):(Active: 54.982ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 54.811ms - CloseTime: 28.280us - GetBlockTime: 13.414ms - OpenTime: 4.126us - PrepareTime: 133.694us - SinkTime: 41.176ms - GetBlockCounter: 52 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 50.619ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.433ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.11 MB - CloseTime: 13.575us - CompressTime: 0ns - ExecTime: 41.243ms - InputRows: 176.468K (176468) - LocalBytesSent: 6.77 MB - LocalSendTime: 515.310us - LocalSentRows: 102.952K (102952) - MemoryUsage: - PeakMemoryUsage: 14.21 MB - MergeBlockTime: 0ns - OpenTime: 84.519us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s360ms - RowsProduced: 176.468K (176468) - RpcAvgTime: 1s844ms - RpcCount: 20 - RpcMaxTime: 7s377ms - RpcMinTime: 7s374ms - RpcSumTime: 36s880ms - SerializeBatchTime: 14.446ms - SplitBlockDistributeByChannelTime: 17.492ms - SplitBlockHashComputeTime: 5.543ms - UncompressedRowBatchSize: 4.97 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 12.483us - ExecTime: 13.92ms - InitProbeSideTime: 2.717ms - JoinFilterTimer: 8.585us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.272us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.784us - ProbeFindNextTime: 0ns - ProbeRows: 176.468K (176468) - ProbeTime: 11.270ms - ProbeWhenBuildSideOutputTime: 275.477us - ProbeWhenProbeSideOutputTime: 3.662ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.466ms - ProjectionTime: 1.618ms - RowsProduced: 176.468K (176468) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 230.121us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 11.18 MB - OpenTime: 717ns - ProjectionTime: 0ns - RowsProduced: 176.468K (176468) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s930ms PipelineXTask (index=10):(Active: 45.320ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 45.62ms - CloseTime: 59.450us - GetBlockTime: 13.431ms - OpenTime: 3.790us - PrepareTime: 188.359us - SinkTime: 31.409ms - GetBlockCounter: 51 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 45.252ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.868ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.06 MB - CloseTime: 18.615us - CompressTime: 0ns - ExecTime: 31.494ms - InputRows: 174.695K (174695) - LocalBytesSent: 6.71 MB - LocalSendTime: 400.33us - LocalSentRows: 101.916K (101916) - MemoryUsage: - PeakMemoryUsage: 13.79 MB - MergeBlockTime: 0ns - OpenTime: 92.246us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s348ms - RowsProduced: 174.695K (174695) - RpcAvgTime: 1s843ms - RpcCount: 20 - RpcMaxTime: 7s372ms - RpcMinTime: 7s370ms - RpcSumTime: 36s860ms - SerializeBatchTime: 9.930ms - SplitBlockDistributeByChannelTime: 12.568ms - SplitBlockHashComputeTime: 5.777ms - UncompressedRowBatchSize: 4.92 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 36.453us - ExecTime: 13.206ms - InitProbeSideTime: 2.640ms - JoinFilterTimer: 8.861us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 66.298us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.228us - ProbeFindNextTime: 0ns - ProbeRows: 174.695K (174695) - ProbeTime: 11.414ms - ProbeWhenBuildSideOutputTime: 211.304us - ProbeWhenProbeSideOutputTime: 3.948ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.623ms - ProjectionTime: 1.550ms - RowsProduced: 174.695K (174695) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 225.914us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 8.38 MB - OpenTime: 673ns - ProjectionTime: 0ns - RowsProduced: 174.695K (174695) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s929ms PipelineXTask (index=15):(Active: 49.243ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 49.20ms - CloseTime: 93.618us - GetBlockTime: 13.132ms - OpenTime: 8.75us - PrepareTime: 115.399us - SinkTime: 35.639ms - GetBlockCounter: 51 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 48.756ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.518ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.10 MB - CloseTime: 17.323us - CompressTime: 0ns - ExecTime: 35.703ms - InputRows: 177.024K (177024) - LocalBytesSent: 6.80 MB - LocalSendTime: 427.516us - LocalSentRows: 103.347K (103347) - MemoryUsage: - PeakMemoryUsage: 14.77 MB - MergeBlockTime: 0ns - OpenTime: 74.205us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s347ms - RowsProduced: 177.024K (177024) - RpcAvgTime: 1s843ms - RpcCount: 20 - RpcMaxTime: 7s373ms - RpcMinTime: 7s370ms - RpcSumTime: 36s861ms - SerializeBatchTime: 8.999ms - SplitBlockDistributeByChannelTime: 18.49ms - SplitBlockHashComputeTime: 5.78ms - UncompressedRowBatchSize: 4.98 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 71.183us - ExecTime: 12.865ms - InitProbeSideTime: 2.631ms - JoinFilterTimer: 8.301us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.844us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.529us - ProbeFindNextTime: 0ns - ProbeRows: 177.024K (177024) - ProbeTime: 11.145ms - ProbeWhenBuildSideOutputTime: 262.419us - ProbeWhenProbeSideOutputTime: 3.864ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.147ms - ProjectionTime: 1.473ms - RowsProduced: 177.024K (177024) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 227.668us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 8.64 MB - OpenTime: 715ns - ProjectionTime: 0ns - RowsProduced: 177.024K (177024) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s931ms PipelineXTask (index=20):(Active: 68.389ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 68.177ms - CloseTime: 84.109us - GetBlockTime: 17.452ms - OpenTime: 7.907us - PrepareTime: 114.567us - SinkTime: 50.398ms - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 68.297ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.234ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.92 MB - CloseTime: 15.328us - CompressTime: 0ns - ExecTime: 50.452ms - InputRows: 166.713K (166713) - LocalBytesSent: 6.39 MB - LocalSendTime: 789.357us - LocalSentRows: 97.081K (97081) - MemoryUsage: - PeakMemoryUsage: 14.09 MB - MergeBlockTime: 0ns - OpenTime: 64.744us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s346ms - RowsProduced: 166.713K (166713) - RpcAvgTime: 1s844ms - RpcCount: 20 - RpcMaxTime: 7s377ms - RpcMinTime: 7s374ms - RpcSumTime: 36s881ms - SerializeBatchTime: 13.878ms - SplitBlockDistributeByChannelTime: 24.799ms - SplitBlockHashComputeTime: 6.463ms - UncompressedRowBatchSize: 4.71 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 65.948us - ExecTime: 16.961ms - InitProbeSideTime: 3.461ms - JoinFilterTimer: 7.501us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 16.652us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 76.386us - ProbeFindNextTime: 0ns - ProbeRows: 166.713K (166713) - ProbeTime: 14.844ms - ProbeWhenBuildSideOutputTime: 396.807us - ProbeWhenProbeSideOutputTime: 5.739ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.823ms - ProjectionTime: 1.817ms - RowsProduced: 166.713K (166713) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 415.272us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 10.73 MB - OpenTime: 654ns - ProjectionTime: 0ns - RowsProduced: 166.713K (166713) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s930ms PipelineXTask (index=25):(Active: 56.860ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 56.644ms - CloseTime: 83.947us - GetBlockTime: 14.310ms - OpenTime: 3.370us - PrepareTime: 122.348us - SinkTime: 42.67ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 56.761ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.741ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.76 MB - CloseTime: 36.432us - CompressTime: 0ns - ExecTime: 42.149ms - InputRows: 156.856K (156856) - LocalBytesSent: 6.01 MB - LocalSendTime: 539.989us - LocalSentRows: 91.354K (91354) - MemoryUsage: - PeakMemoryUsage: 12.60 MB - MergeBlockTime: 0ns - OpenTime: 74.441us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s350ms - RowsProduced: 156.856K (156856) - RpcAvgTime: 1s844ms - RpcCount: 20 - RpcMaxTime: 7s378ms - RpcMinTime: 7s374ms - RpcSumTime: 36s883ms - SerializeBatchTime: 12.346ms - SplitBlockDistributeByChannelTime: 19.758ms - SplitBlockHashComputeTime: 5.488ms - UncompressedRowBatchSize: 4.43 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 39.446us - ExecTime: 14.7ms - InitProbeSideTime: 3.25ms - JoinFilterTimer: 10.331us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.61us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 38.507us - ProbeFindNextTime: 0ns - ProbeRows: 156.856K (156856) - ProbeTime: 12.103ms - ProbeWhenBuildSideOutputTime: 249.789us - ProbeWhenProbeSideOutputTime: 3.905ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.704ms - ProjectionTime: 1.647ms - RowsProduced: 156.856K (156856) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 229.123us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 10.00 MB - OpenTime: 659ns - ProjectionTime: 0ns - RowsProduced: 156.856K (156856) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s930ms PipelineXTask (index=30):(Active: 55.709ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 55.533ms - CloseTime: 45.972us - GetBlockTime: 15.26ms - OpenTime: 8.798us - PrepareTime: 113.674us - SinkTime: 40.224ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 55.0ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.900ms DATA_STREAM_SINK_OPERATOR (id=105,dst_id=105): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.75 MB - CloseTime: 14.144us - CompressTime: 0ns - ExecTime: 40.274ms - InputRows: 157.687K (157687) - LocalBytesSent: 6.08 MB - LocalSendTime: 518.676us - LocalSentRows: 92.377K (92377) - MemoryUsage: - PeakMemoryUsage: 13.39 MB - MergeBlockTime: 0ns - OpenTime: 64.873us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s348ms - RowsProduced: 157.687K (157687) - RpcAvgTime: 1s843ms - RpcCount: 20 - RpcMaxTime: 7s375ms - RpcMinTime: 7s370ms - RpcSumTime: 36s867ms - SerializeBatchTime: 11.7ms - SplitBlockDistributeByChannelTime: 19.219ms - SplitBlockHashComputeTime: 5.879ms - UncompressedRowBatchSize: 4.41 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=104): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 28.349us - ExecTime: 14.649ms - InitProbeSideTime: 3.356ms - JoinFilterTimer: 9.674us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 16.843us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 27.169us - ProbeFindNextTime: 0ns - ProbeRows: 157.687K (157687) - ProbeTime: 12.675ms - ProbeWhenBuildSideOutputTime: 320.304us - ProbeWhenProbeSideOutputTime: 3.837ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.843ms - ProjectionTime: 1.745ms - RowsProduced: 157.687K (157687) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 271.849us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 10.89 MB - OpenTime: 751ns - ProjectionTime: 0ns - RowsProduced: 157.687K (157687) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s932ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 24.589ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.515ms - CloseTime: 23.517us - GetBlockTime: 23.872ms - OpenTime: 3.498us - PrepareTime: 42.887us - SinkTime: 456.387us - GetBlockCounter: 54 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.556ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.687ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 424.591us - InputRows: 185.381K (185381) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.218us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 52 - BuildOutputBlock: 0ns - CloseTime: 15.463us - ExecTime: 23.567ms - InitProbeSideTime: 3.470ms - JoinFilterTimer: 9.864us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 8.598us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.42us - ProbeFindNextTime: 0ns - ProbeRows: 185.381K (185381) - ProbeTime: 19.898ms - ProbeWhenBuildSideOutputTime: 480.641us - ProbeWhenProbeSideOutputTime: 10.700ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.998ms - ProjectionTime: 3.473ms - RowsProduced: 185.381K (185381) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s793ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 52 - CloseTime: 0ns - ExecTime: 230.972us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 14.86 MB - OpenTime: 5.53us - ProjectionTime: 0ns - RowsProduced: 185.381K (185381) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 134.832ms PipelineXTask (index=6):(Active: 22.508ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.440ms - CloseTime: 14.775us - GetBlockTime: 21.924ms - OpenTime: 2.536us - PrepareTime: 45.942us - SinkTime: 338.633us - GetBlockCounter: 51 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.55ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.734ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 311.115us - InputRows: 174.323K (174323) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.161us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 11.757us - ExecTime: 21.641ms - InitProbeSideTime: 2.873ms - JoinFilterTimer: 8.354us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.11us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.232us - ProbeFindNextTime: 0ns - ProbeRows: 174.323K (174323) - ProbeTime: 18.476ms - ProbeWhenBuildSideOutputTime: 444.952us - ProbeWhenProbeSideOutputTime: 10.587ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.517ms - ProjectionTime: 2.991ms - RowsProduced: 174.323K (174323) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s724ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 213.178us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 14.06 MB - OpenTime: 503ns - ProjectionTime: 0ns - RowsProduced: 174.323K (174323) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 204.568ms PipelineXTask (index=11):(Active: 26.172ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 26.117ms - CloseTime: 12.407us - GetBlockTime: 25.513ms - OpenTime: 3.56us - PrepareTime: 34.993us - SinkTime: 416.436us - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.152ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.769ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 383.621us - InputRows: 169.898K (169898) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.184us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 10.649us - ExecTime: 25.205ms - InitProbeSideTime: 3.532ms - JoinFilterTimer: 11.58us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 8.10us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.88us - ProbeFindNextTime: 0ns - ProbeRows: 169.898K (169898) - ProbeTime: 21.284ms - ProbeWhenBuildSideOutputTime: 511.965us - ProbeWhenProbeSideOutputTime: 12.124ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.757ms - ProjectionTime: 3.724ms - RowsProduced: 169.898K (169898) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s724ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 213.121us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.77 MB - OpenTime: 465ns - ProjectionTime: 0ns - RowsProduced: 169.898K (169898) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 204.554ms PipelineXTask (index=16):(Active: 20.387ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.296ms - CloseTime: 17.407us - GetBlockTime: 19.791ms - OpenTime: 2.543us - PrepareTime: 64.580us - SinkTime: 361.437us - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.361ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.152ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 331.494us - InputRows: 168.959K (168959) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.68us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 13.276us - ExecTime: 19.545ms - InitProbeSideTime: 2.549ms - JoinFilterTimer: 7.118us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 11.849us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.961us - ProbeFindNextTime: 0ns - ProbeRows: 168.959K (168959) - ProbeTime: 16.329ms - ProbeWhenBuildSideOutputTime: 349.753us - ProbeWhenProbeSideOutputTime: 9.779ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.796ms - ProjectionTime: 3.71ms - RowsProduced: 168.959K (168959) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s724ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 198.287us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.70 MB - OpenTime: 538ns - ProjectionTime: 0ns - RowsProduced: 168.959K (168959) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 204.123ms PipelineXTask (index=21):(Active: 24.906ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.840ms - CloseTime: 12.904us - GetBlockTime: 24.225ms - OpenTime: 6.227us - PrepareTime: 42.515us - SinkTime: 428.527us - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.885ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 678.58us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 384.34us - InputRows: 164.871K (164871) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.183us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 10.955us - ExecTime: 23.924ms - InitProbeSideTime: 3.80ms - JoinFilterTimer: 10.55us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.257us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.532us - ProbeFindNextTime: 0ns - ProbeRows: 164.871K (164871) - ProbeTime: 20.155ms - ProbeWhenBuildSideOutputTime: 579.798us - ProbeWhenProbeSideOutputTime: 11.630ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.578ms - ProjectionTime: 3.555ms - RowsProduced: 164.871K (164871) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s724ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 219.894us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.24 MB - OpenTime: 464ns - ProjectionTime: 0ns - RowsProduced: 164.871K (164871) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 205.615ms PipelineXTask (index=26):(Active: 27.668ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.590ms - CloseTime: 15.655us - GetBlockTime: 26.984ms - OpenTime: 3.380us - PrepareTime: 54.80us - SinkTime: 421.663us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 27.642ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 678.662us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 381.825us - InputRows: 162.993K (162993) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.384us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 13.358us - ExecTime: 26.639ms - InitProbeSideTime: 3.875ms - JoinFilterTimer: 11.272us - MemoryUsage: - PeakMemoryUsage: 132.00 KB - ProbeKeyArena: 132.00 KB - OpenTime: 8.904us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.261us - ProbeFindNextTime: 0ns - ProbeRows: 162.993K (162993) - ProbeTime: 22.590ms - ProbeWhenBuildSideOutputTime: 562.162us - ProbeWhenProbeSideOutputTime: 11.721ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.13ms - ProjectionTime: 3.847ms - RowsProduced: 162.993K (162993) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s724ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 259.489us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.02 MB - OpenTime: 487ns - ProjectionTime: 0ns - RowsProduced: 162.993K (162993) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 205.608ms PipelineXTask (index=31):(Active: 24.187ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.119ms - CloseTime: 20.442us - GetBlockTime: 23.408ms - OpenTime: 6.467us - PrepareTime: 35.783us - SinkTime: 485.459us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 24.156ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.921ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 440.716us - InputRows: 168.043K (168043) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.114us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=103): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 16.46us - ExecTime: 23.82ms - InitProbeSideTime: 3.554ms - JoinFilterTimer: 11.474us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.248us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.812us - ProbeFindNextTime: 0ns - ProbeRows: 168.043K (168043) - ProbeTime: 19.224ms - ProbeWhenBuildSideOutputTime: 497.849us - ProbeWhenProbeSideOutputTime: 8.940ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.837ms - ProjectionTime: 3.630ms - RowsProduced: 168.043K (168043) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s724ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 222.603us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.20 MB - OpenTime: 471ns - ProjectionTime: 0ns - RowsProduced: 168.043K (168043) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 204.339ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 1.177ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 559.703us - CloseTime: 21.302us - GetBlockTime: 34.535us - OpenTime: 429.261us - PrepareTime: 152.591us - SinkTime: 39.751us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.140ms - WaitBfTime: 14.529ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.8ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 39.740us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.8us - 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: 44.67us - BlocksProduced: 0 - CloseTime: 19.256us - ExecTime: 120.312ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 531.702us - ProcessConjunctTime: 280.195us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 119.484ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 119.727ms - 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: [1.888us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [119.484ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 112.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 240.195us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 139ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 268.128us - ScannerCtxSchedTime: 119.482ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.81us - ScannerInitTime: 76.328us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 405ns - BlockConditionsFilteredBloomFilterTime: 765ns - BlockConditionsFilteredDictTime: 105.526us - BlockConditionsFilteredTime: 121.1us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 11.282us - BlockInitSeekCount: 9 - BlockInitSeekTime: 4.726us - BlockInitTime: 141.122us - BlockLoadTime: 146.915us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 273ns - IOTimer: 0ns - InvertedIndexFilterTime: 1.223us - 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.275ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 673.121us - CloseTime: 46.252us - GetBlockTime: 166.663us - OpenTime: 336.378us - PrepareTime: 208.440us - SinkTime: 100.429us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.211ms - WaitBfTime: 41.223ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.447ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 99.769us - InputRows: 25.619K (25619) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.490us - 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: 34.718us - BlocksProduced: 8 - CloseTime: 44.34us - ExecTime: 413.200ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 476.988us - ProcessConjunctTime: 198.360us - 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: 133.734ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 412.518ms - 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: [273.743ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [133.734ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 272.6ms - MemoryUsage: - FreeBlocks: 672.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.10ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 567ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.657ms - ScannerCtxSchedTime: 133.728ms - ScannerFilterTime: 312.60us - ScannerGetBlockTime: 273.252ms - ScannerInitTime: 78.518us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 892ns - BlockConditionsFilteredBloomFilterTime: 1.522us - BlockConditionsFilteredDictTime: 59.312us - BlockConditionsFilteredTime: 95.355us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 23.953us - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.823us - BlockInitTime: 154.228us - BlockLoadTime: 273.292ms - BlocksLoad: 367 - CachedPagesNum: 1.008K (1008) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 95.55us - FirstReadTime: 2.653ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.599us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 266.240ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 619.551us - OutputIndexResultColumnTimer: 51.727us - 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.867ms - TotalPagesNum: 1.008K (1008) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 168.569us PipelineXTask (index=12):(Active: 1.431ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 939.873us - CloseTime: 38.90us - GetBlockTime: 264.816us - OpenTime: 266.96us - PrepareTime: 175.354us - SinkTime: 331.878us - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.374ms - WaitBfTime: 40.908ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.95ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 322.465us - InputRows: 167.427K (167427) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 905ns - 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: 23.341us - BlocksProduced: 46 - CloseTime: 34.466us - ExecTime: 405.392ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 380.878us - ProcessConjunctTime: 116.555us - 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: 153.945ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 404.721ms - 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: [212.651ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [153.945ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 209.437ms - MemoryUsage: - FreeBlocks: 3.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.361ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.565us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 136.177ms - ScannerCtxSchedTime: 153.939ms - ScannerFilterTime: 509.905us - ScannerGetBlockTime: 211.911ms - ScannerInitTime: 103.67us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.826us - BlockConditionsFilteredBloomFilterTime: 3.975us - BlockConditionsFilteredDictTime: 81.102us - BlockConditionsFilteredTime: 157.919us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 46.175us - BlockInitSeekCount: 25 - BlockInitSeekTime: 24.959us - BlockInitTime: 270.334us - BlockLoadTime: 211.816ms - BlocksLoad: 384 - CachedPagesNum: 1.062K (1062) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 167.983us - FirstReadTime: 17.395ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.832us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 150.200ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 36.993ms - OutputIndexResultColumnTimer: 58.291us - 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: 4.134ms - TotalPagesNum: 1.062K (1062) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 340.310us PipelineXTask (index=17):(Active: 2.44ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.607ms - CloseTime: 24.336us - GetBlockTime: 477.905us - OpenTime: 259.832us - PrepareTime: 141.563us - SinkTime: 742.99us - GetBlockCounter: 113 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.997ms - WaitBfTime: 41.923ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.904ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 721.760us - InputRows: 394.725K (394725) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 946ns - 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: 40.102us - BlocksProduced: 113 - CloseTime: 21.739us - ExecTime: 474.117ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 355.121us - ProcessConjunctTime: 126.100us - 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: 185.486ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 473.289ms - 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: [266.367ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [185.486ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 262.138ms - MemoryUsage: - FreeBlocks: 7.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.252ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.165us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 187.451ms - ScannerCtxSchedTime: 185.472ms - ScannerFilterTime: 628.650us - ScannerGetBlockTime: 265.523ms - ScannerInitTime: 75.575us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 1.710us - BlockConditionsFilteredBloomFilterTime: 3.785us - BlockConditionsFilteredDictTime: 126.331us - BlockConditionsFilteredTime: 213.980us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 61.23us - BlockInitSeekCount: 33 - BlockInitSeekTime: 31.180us - BlockInitTime: 340.473us - BlockLoadTime: 265.338ms - BlocksLoad: 382 - CachedPagesNum: 1.044K (1044) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 181.772us - FirstReadTime: 3.307ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.406us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 241.45ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 9.590ms - OutputIndexResultColumnTimer: 70.338us - 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: 7.575ms - TotalPagesNum: 1.044K (1044) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 214.775us PipelineXTask (index=22):(Active: 2.0ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.460ms - CloseTime: 36.977us - GetBlockTime: 483.442us - OpenTime: 309.65us - PrepareTime: 183.541us - SinkTime: 525.595us - GetBlockCounter: 67 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.934ms - WaitBfTime: 40.430ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.940ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 512.897us - InputRows: 249.28K (249280) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 917ns - 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: 32.432us - BlocksProduced: 67 - CloseTime: 34.755us - ExecTime: 420.646ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 396.323us - ProcessConjunctTime: 171.770us - 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: 170.684ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 419.747ms - 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: [233.631ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [170.684ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 230.721ms - MemoryUsage: - FreeBlocks: 5.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 706.53us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.686us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 124.752ms - ScannerCtxSchedTime: 170.678ms - ScannerFilterTime: 553.614us - ScannerGetBlockTime: 232.909ms - ScannerInitTime: 77.642us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.890us - BlockConditionsFilteredBloomFilterTime: 4.529us - BlockConditionsFilteredDictTime: 66.9us - BlockConditionsFilteredTime: 134.949us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 42.769us - BlockInitSeekCount: 25 - BlockInitSeekTime: 281.346us - BlockInitTime: 527.175us - BlockLoadTime: 232.496ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 94.716us - FirstReadTime: 2.288ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.85us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 203.86ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 19.458ms - OutputIndexResultColumnTimer: 48.585us - 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.778ms - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 147.366us PipelineXTask (index=27):(Active: 41.678ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 21.456ms - CloseTime: 37.639us - GetBlockTime: 560.17us - OpenTime: 20.24ms - PrepareTime: 147.358us - SinkTime: 719.253us - GetBlockCounter: 96 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.354ms - WaitBfTime: 38.733ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.5ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 698.696us - InputRows: 325.275K (325275) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.6us - 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: 41.690us - BlocksProduced: 96 - CloseTime: 34.112us - ExecTime: 382.743ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 20.114ms - ProcessConjunctTime: 19.882ms - 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: 198.909ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 362.55ms - 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: [147.955ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [198.909ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 145.453ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 879.523us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.210us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 115.342ms - ScannerCtxSchedTime: 198.904ms - ScannerFilterTime: 450.661us - ScannerGetBlockTime: 147.342ms - ScannerInitTime: 74.376us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.508us - BlockConditionsFilteredBloomFilterTime: 3.849us - BlockConditionsFilteredDictTime: 51.361us - BlockConditionsFilteredTime: 111.55us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.223us - BlockInitSeekCount: 26 - BlockInitSeekTime: 364.98us - BlockInitTime: 549.916us - BlockLoadTime: 147.92ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 99.934us - FirstReadTime: 2.249ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.210us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 130.70ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 6.126ms - OutputIndexResultColumnTimer: 41.903us - 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.444ms - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 136.719us PipelineXTask (index=32):(Active: 809.890us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 398.384us - CloseTime: 47.324us - GetBlockTime: 76.650us - OpenTime: 225.73us - PrepareTime: 130.421us - SinkTime: 67.816us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 751.384us - WaitBfTime: 39.940ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.815ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 67.607us - InputRows: 32.142K (32142) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.900us - 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: 29.555us - BlocksProduced: 9 - CloseTime: 44.405us - ExecTime: 169.275ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 311.493us - ProcessConjunctTime: 137.626us - 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: 123.611ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 168.844ms - 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: [40.912ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [123.611ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 40.668ms - MemoryUsage: - FreeBlocks: 2.65 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.129ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 314ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.690ms - ScannerCtxSchedTime: 123.609ms - ScannerFilterTime: 68.392us - ScannerGetBlockTime: 40.815ms - ScannerInitTime: 41.250us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 388ns - BlockConditionsFilteredBloomFilterTime: 1.30us - BlockConditionsFilteredDictTime: 16.537us - BlockConditionsFilteredTime: 36.534us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.149us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.734us - BlockInitTime: 70.827us - BlockLoadTime: 41.610ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 20.503us - FirstReadTime: 439.500us - IOTimer: 0ns - InvertedIndexFilterTime: 1.344us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 11.795ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 648.419us - OutputIndexResultColumnTimer: 7.530us - 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: 28.299ms - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 35.131us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 25.980ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.899ms - CloseTime: 13.185us - GetBlockTime: 25.715us - OpenTime: 2.99us - PrepareTime: 61.122us - SinkTime: 25.853ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 235.233us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.593ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.472us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.813us - BuildTableInsertTime: 25.758ms - BuildTableTime: 25.764ms - CloseTime: 0ns - ExecTime: 25.865ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 13.52us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.843us - RuntimeFilterComputeTime: 22.320us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=99): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 9.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.856us - ExecTime: 59.803us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 25.947us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 13.806ms PipelineXTask (index=8):(Active: 124.845us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.142us - CloseTime: 8.907us - GetBlockTime: 0ns - OpenTime: 2.220us - PrepareTime: 63.625us - SinkTime: 26.816us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.296us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.692ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 48.481us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.409us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.286ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.670us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.196us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.649us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 126.879us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.438us - CloseTime: 5.768us - GetBlockTime: 0ns - OpenTime: 2.280us - PrepareTime: 78.519us - SinkTime: 19.356us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.515us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.712ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.424us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.461us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.278ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.40us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.252us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.427us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 107.150us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.609us - CloseTime: 7.135us - GetBlockTime: 0ns - OpenTime: 2.425us - PrepareTime: 54.198us - SinkTime: 18.590us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.319us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 990.872us HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.822us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.760us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.316ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.175us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.867us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.747us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 124.204us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 48.330us - CloseTime: 7.455us - GetBlockTime: 0ns - OpenTime: 3.810us - PrepareTime: 58.633us - SinkTime: 23.478us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.134us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.617ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 47.31us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.655us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 37.655ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.408us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.613us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.167us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 121.473us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 42.260us - CloseTime: 4.375us - GetBlockTime: 0ns - OpenTime: 2.924us - PrepareTime: 65.530us - SinkTime: 22.148us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.959us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.701ms HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.23us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.990us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 38.612ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.778us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.738us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 166.903us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.636us - CloseTime: 4.375us - GetBlockTime: 0ns - OpenTime: 3.751us - PrepareTime: 107.844us - SinkTime: 24.258us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 154.592us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 473.581us HASH_JOIN_SINK_OPERATOR (id=104): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 84.707us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 60.506us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.847ms EXCHANGE_OPERATOR (id=99): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.285us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.616us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.488us - 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: 3.582ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 3.444ms - CloseTime: 12.239us - GetBlockTime: 114.672us - OpenTime: 1.791us - PrepareTime: 116.54us - SinkTime: 3.226ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.543ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 40.51ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 18.228us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 826.600us - BuildTableInsertTime: 2.208ms - BuildTableTime: 2.262ms - CloseTime: 0ns - ExecTime: 3.225ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 5.682us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=101): - BlocksProduced: 22 - BytesReceived: 291.35 KB - CloseTime: 9.911us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 23.218ms - ExecTime: 199.254us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 92.298us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s887ms PipelineXTask (index=9):(Active: 91.415us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 32.59us - CloseTime: 9.66us - GetBlockTime: 0ns - OpenTime: 3.242us - PrepareTime: 42.31us - SinkTime: 11.323us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.600us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 983.268us HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.981us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.979us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s930ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.715us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.354us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.992us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 182.923us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 59.262us - CloseTime: 21.703us - GetBlockTime: 0ns - OpenTime: 2.907us - PrepareTime: 92.742us - SinkTime: 38.631us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 153.22us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 494.413us HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 50.955us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.786us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s930ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 19.223us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 50.450us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 30.308us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 80.560us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.184us - CloseTime: 5.303us - GetBlockTime: 0ns - OpenTime: 2.250us - PrepareTime: 46.812us - SinkTime: 5.883us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.130us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.855ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 10.659us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 4.939us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s929ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.202us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.274us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.374us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 116.550us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 55.877us - CloseTime: 10.374us - GetBlockTime: 0ns - OpenTime: 2.577us - PrepareTime: 42.987us - SinkTime: 34.695us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 99.472us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.863ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.905us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 7.619us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s929ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 8.192us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.387us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.339us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 93.891us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.806us - CloseTime: 11.768us - GetBlockTime: 0ns - OpenTime: 2.658us - PrepareTime: 39.543us - SinkTime: 14.511us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.841us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.675ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.845us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.399us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s928ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 9.600us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.485us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.100us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 107.386us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 45.256us - CloseTime: 7.498us - GetBlockTime: 0ns - OpenTime: 2.470us - PrepareTime: 47.273us - SinkTime: 26.332us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.578us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.850ms HASH_JOIN_SINK_OPERATOR (id=103): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc834f - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.51us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.976us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s929ms EXCHANGE_OPERATOR (id=101): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.684us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.963us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.498us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 113: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.82ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.805ms - CloseTime: 40.560us - GetBlockTime: 68.682us - OpenTime: 81.573us - PrepareTime: 149.437us - SinkTime: 1.629ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.34ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.41ms DATA_STREAM_SINK_OPERATOR (id=101,dst_id=101): - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 582.21 KB - CloseTime: 15.709us - CompressTime: 0ns - ExecTime: 1.691ms - InputRows: 43.597K (43597) - LocalBytesSent: 549.72 KB - LocalSendTime: 249.540us - LocalSentRows: 43.597K (43597) - MemoryUsage: - PeakMemoryUsage: 100.00 KB - MergeBlockTime: 85.894us - OpenTime: 49.182us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s901ms - RowsProduced: 43.597K (43597) - RpcAvgTime: 164.393ms - RpcCount: 11 - RpcMaxTime: 1s808ms - RpcMinTime: 1s808ms - RpcSumTime: 1s808ms - SerializeBatchTime: 1.180ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 1.10 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=100. table name = DIM_WORKER): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21815] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 251ns - BlocksProduced: 11 - CloseTime: 20.630us - ExecTime: 19.391ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 148.50us - ProcessConjunctTime: 15.736us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - RowsRead: 43.597K (43597) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.932ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 19.157ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [WORKER_ID] - PerScannerRunningTime: [589.471us, ] - PerScannerRowsRead: [43.60K, ] - PerScannerWaitTime: [17.932ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 548.495us - MemoryUsage: - FreeBlocks: 724.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 481.792us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 676ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 1.217ms - ScannerCtxSchedTime: 17.931ms - ScannerFilterTime: 5.751us - ScannerGetBlockTime: 579.434us - ScannerInitTime: 53.728us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 110ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.150us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 349.437us - BlockInitTime: 377.555us - BlockLoadTime: 983.673us - BlocksLoad: 12 - CachedPagesNum: 5 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 11 - FirstReadSeekTime: 8.355us - FirstReadTime: 573.278us - IOTimer: 0ns - InvertedIndexFilterTime: 212ns - 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.290us - OutputIndexResultColumnTimer: 1.447us - 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.87, port:9060)): PipelineXTask (index=0):(Active: 604.650us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 243.258us - CloseTime: 42.64us - GetBlockTime: 23.913us - OpenTime: 116.639us - PrepareTime: 196.883us - SinkTime: 83.490us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 554.180us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.548ms DATA_STREAM_SINK_OPERATOR (id=99,dst_id=99): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 10.254us - CompressTime: 0ns - ExecTime: 171.274us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 9.167us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 3.306us - OpenTime: 77.820us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.252ms - RowsProduced: 80 - RpcAvgTime: 8.365ms - RpcCount: 1 - RpcMaxTime: 8.365ms - RpcMinTime: 8.365ms - RpcSumTime: 8.365ms - SerializeBatchTime: 8.366us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 345ns - BlocksProduced: 1 - CloseTime: 29.203us - ExecTime: 3.412ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 190.981us - ProcessConjunctTime: 42.83us - ProjectionTime: 4.552us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 2.902ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 3.164ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [26.801us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [2.902ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.197us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 189.946us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 52ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 264.99us - ScannerCtxSchedTime: 2.900ms - ScannerFilterTime: 907ns - ScannerGetBlockTime: 20.994us - ScannerInitTime: 36.757us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 411ns - BlockConditionsFilteredBloomFilterTime: 1.696us - BlockConditionsFilteredDictTime: 2.914us - BlockConditionsFilteredTime: 15.400us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 5.523us - BlockInitSeekCount: 6 - BlockInitSeekTime: 11.240us - BlockInitTime: 57.785us - BlockLoadTime: 101.990us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.25us - FirstReadTime: 5.868us - IOTimer: 0ns - InvertedIndexFilterTime: 1.723us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.726us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 14.519us - OutputIndexResultColumnTimer: 341ns - 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: 2.652us Fragment 115: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 955.59us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 747.439us - CloseTime: 24.278us - GetBlockTime: 69.38us - OpenTime: 2.574us - PrepareTime: 172.960us - SinkTime: 656.427us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 921.873us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.25ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.16 KB - CloseTime: 19.922us - CompressTime: 0ns - ExecTime: 809.586us - InputRows: 82 - LocalBytesSent: 2.20 KB - LocalSendTime: 94.535us - LocalSentRows: 47 - MemoryUsage: - PeakMemoryUsage: 12.06 KB - MergeBlockTime: 0ns - OpenTime: 133.876us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.619ms - RowsProduced: 82 - RpcAvgTime: 1.392ms - RpcCount: 12 - RpcMaxTime: 1.488ms - RpcMinTime: 1.298ms - RpcSumTime: 16.705ms - SerializeBatchTime: 36.881us - SplitBlockDistributeByChannelTime: 53.279us - SplitBlockHashComputeTime: 17.495us - UncompressedRowBatchSize: 1.98 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.226us - DeserializeAndMergeTime: 0ns - ExecTime: 78.242us - GetResultsTime: 22.368us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.334us - HashTableSize: 82 - InsertKeysToColumnTime: 9.552us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.632us - ProjectionTime: 37.387us - RowsProduced: 82 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s408ms PipelineXTask (index=2):(Active: 1.180ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.10ms - CloseTime: 14.926us - GetBlockTime: 79.894us - OpenTime: 3.86us - PrepareTime: 144.992us - SinkTime: 904.612us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.157ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.989ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.57 KB - CloseTime: 12.364us - CompressTime: 0ns - ExecTime: 1.15ms - InputRows: 88 - LocalBytesSent: 2.06 KB - LocalSendTime: 171.203us - LocalSentRows: 44 - MemoryUsage: - PeakMemoryUsage: 12.38 KB - MergeBlockTime: 0ns - OpenTime: 99.690us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.764ms - RowsProduced: 88 - RpcAvgTime: 1.988ms - RpcCount: 12 - RpcMaxTime: 2.189ms - RpcMinTime: 1.841ms - RpcSumTime: 23.866ms - SerializeBatchTime: 45.888us - SplitBlockDistributeByChannelTime: 62.741us - SplitBlockHashComputeTime: 10.577us - UncompressedRowBatchSize: 2.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 908ns - DeserializeAndMergeTime: 0ns - ExecTime: 90.741us - GetResultsTime: 26.458us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.512us - HashTableSize: 88 - InsertKeysToColumnTime: 12.485us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.603us - ProjectionTime: 40.548us - RowsProduced: 88 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s406ms PipelineXTask (index=4):(Active: 702.3us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 483.710us - CloseTime: 14.110us - GetBlockTime: 48.171us - OpenTime: 3.117us - PrepareTime: 194.831us - SinkTime: 417.976us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 673.358us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.140ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.18 KB - CloseTime: 12.567us - CompressTime: 0ns - ExecTime: 591.972us - InputRows: 110 - LocalBytesSent: 2.53 KB - LocalSendTime: 86.701us - LocalSentRows: 54 - MemoryUsage: - PeakMemoryUsage: 14.47 KB - MergeBlockTime: 0ns - OpenTime: 161.886us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.907ms - RowsProduced: 110 - RpcAvgTime: 1.974ms - RpcCount: 12 - RpcMaxTime: 2.37ms - RpcMinTime: 1.939ms - RpcSumTime: 23.696ms - SerializeBatchTime: 20.778us - SplitBlockDistributeByChannelTime: 19.518us - SplitBlockHashComputeTime: 5.700us - UncompressedRowBatchSize: 2.99 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 477ns - DeserializeAndMergeTime: 0ns - ExecTime: 53.743us - GetResultsTime: 19.936us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.377us - HashTableSize: 110 - InsertKeysToColumnTime: 7.228us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.688us - ProjectionTime: 21.624us - RowsProduced: 110 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s407ms PipelineXTask (index=6):(Active: 660.961us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 504.957us - CloseTime: 10.733us - GetBlockTime: 51.173us - OpenTime: 2.364us - PrepareTime: 137.200us - SinkTime: 435.211us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 643.155us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.75ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.98 KB - CloseTime: 8.983us - CompressTime: 0ns - ExecTime: 546.525us - InputRows: 106 - LocalBytesSent: 2.48 KB - LocalSendTime: 120.831us - LocalSentRows: 53 - MemoryUsage: - PeakMemoryUsage: 13.31 KB - MergeBlockTime: 0ns - OpenTime: 102.862us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.966ms - RowsProduced: 106 - RpcAvgTime: 1.990ms - RpcCount: 12 - RpcMaxTime: 2.63ms - RpcMinTime: 1.937ms - RpcSumTime: 23.890ms - SerializeBatchTime: 25.61us - SplitBlockDistributeByChannelTime: 25.850us - SplitBlockHashComputeTime: 5.778us - UncompressedRowBatchSize: 2.80 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 747ns - DeserializeAndMergeTime: 0ns - ExecTime: 61.465us - GetResultsTime: 21.887us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.687us - HashTableSize: 106 - InsertKeysToColumnTime: 7.996us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.965us - ProjectionTime: 22.969us - RowsProduced: 106 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s407ms PipelineXTask (index=8):(Active: 649.279us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 408.153us - CloseTime: 11.849us - GetBlockTime: 56.134us - OpenTime: 4.120us - PrepareTime: 218.253us - SinkTime: 331.559us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 629.988us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.12ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.09 KB - CloseTime: 9.835us - CompressTime: 0ns - ExecTime: 462.736us - InputRows: 95 - LocalBytesSent: 1.92 KB - LocalSendTime: 83.634us - LocalSentRows: 41 - MemoryUsage: - PeakMemoryUsage: 13.94 KB - MergeBlockTime: 0ns - OpenTime: 121.700us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.553ms - RowsProduced: 95 - RpcAvgTime: 1.672ms - RpcCount: 12 - RpcMaxTime: 1.746ms - RpcMinTime: 1.457ms - RpcSumTime: 20.71ms - SerializeBatchTime: 16.185us - SplitBlockDistributeByChannelTime: 24.218us - SplitBlockHashComputeTime: 11.261us - UncompressedRowBatchSize: 2.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 682ns - DeserializeAndMergeTime: 0ns - ExecTime: 127.947us - GetResultsTime: 25.87us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.39us - HashTableSize: 95 - InsertKeysToColumnTime: 12.994us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 71.775us - ProjectionTime: 24.122us - RowsProduced: 95 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s406ms PipelineXTask (index=10):(Active: 857.39us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 646.675us - CloseTime: 14.630us - GetBlockTime: 39.322us - OpenTime: 3.47us - PrepareTime: 186.487us - SinkTime: 582.943us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 829.996us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.496ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.13 KB - CloseTime: 11.988us - CompressTime: 0ns - ExecTime: 741.749us - InputRows: 99 - LocalBytesSent: 2.06 KB - LocalSendTime: 110.889us - LocalSentRows: 44 - MemoryUsage: - PeakMemoryUsage: 13.56 KB - MergeBlockTime: 0ns - OpenTime: 147.582us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.339ms - RowsProduced: 99 - RpcAvgTime: 1.553ms - RpcCount: 12 - RpcMaxTime: 1.835ms - RpcMinTime: 1.158ms - RpcSumTime: 18.644ms - SerializeBatchTime: 39.370us - SplitBlockDistributeByChannelTime: 23.20us - SplitBlockHashComputeTime: 5.409us - UncompressedRowBatchSize: 2.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 898ns - DeserializeAndMergeTime: 0ns - ExecTime: 45.686us - GetResultsTime: 17.212us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 955ns - HashTableSize: 99 - InsertKeysToColumnTime: 7.94us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.996us - ProjectionTime: 17.835us - RowsProduced: 99 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s407ms PipelineXTask (index=12):(Active: 893.132us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 691.839us - CloseTime: 12.733us - GetBlockTime: 105.579us - OpenTime: 3.303us - PrepareTime: 178.790us - SinkTime: 561.560us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 871.488us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.224ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.94 KB - CloseTime: 10.785us - CompressTime: 0ns - ExecTime: 711.11us - InputRows: 111 - LocalBytesSent: 2.80 KB - LocalSendTime: 86.948us - LocalSentRows: 60 - MemoryUsage: - PeakMemoryUsage: 14.69 KB - MergeBlockTime: 0ns - OpenTime: 139.464us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.613ms - RowsProduced: 111 - RpcAvgTime: 1.386ms - RpcCount: 12 - RpcMaxTime: 1.477ms - RpcMinTime: 1.298ms - RpcSumTime: 16.640ms - SerializeBatchTime: 39.67us - SplitBlockDistributeByChannelTime: 42.496us - SplitBlockHashComputeTime: 22.282us - UncompressedRowBatchSize: 2.75 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 536ns - DeserializeAndMergeTime: 0ns - ExecTime: 115.240us - GetResultsTime: 56.190us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.499us - HashTableSize: 111 - InsertKeysToColumnTime: 21.793us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.846us - ProjectionTime: 40.820us - RowsProduced: 111 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s405ms PipelineXTask (index=14):(Active: 921.346us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 725.268us - CloseTime: 12.232us - GetBlockTime: 72.267us - OpenTime: 3.153us - PrepareTime: 174.717us - SinkTime: 632.949us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 901.379us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 737.994us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.76 KB - CloseTime: 10.591us - CompressTime: 0ns - ExecTime: 759.186us - InputRows: 98 - LocalBytesSent: 2.39 KB - LocalSendTime: 96.630us - LocalSentRows: 51 - MemoryUsage: - PeakMemoryUsage: 13.28 KB - MergeBlockTime: 0ns - OpenTime: 116.126us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.725ms - RowsProduced: 98 - RpcAvgTime: 1.361ms - RpcCount: 12 - RpcMaxTime: 1.513ms - RpcMinTime: 1.298ms - RpcSumTime: 16.341ms - SerializeBatchTime: 30.906us - SplitBlockDistributeByChannelTime: 55.4us - SplitBlockHashComputeTime: 7.121us - UncompressedRowBatchSize: 2.57 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 677ns - DeserializeAndMergeTime: 0ns - ExecTime: 94.166us - GetResultsTime: 33.73us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.308us - HashTableSize: 98 - InsertKeysToColumnTime: 12.946us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 22.128us - ProjectionTime: 30.942us - RowsProduced: 98 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=16):(Active: 712.611us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 534.512us - CloseTime: 12.917us - GetBlockTime: 72.551us - OpenTime: 2.893us - PrepareTime: 156.943us - SinkTime: 443.466us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 693.102us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 886.756us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.77 KB - CloseTime: 10.986us - CompressTime: 0ns - ExecTime: 577.32us - InputRows: 96 - LocalBytesSent: 2.27 KB - LocalSendTime: 80.379us - LocalSentRows: 49 - MemoryUsage: - PeakMemoryUsage: 13.19 KB - MergeBlockTime: 0ns - OpenTime: 123.281us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.626ms - RowsProduced: 96 - RpcAvgTime: 1.394ms - RpcCount: 12 - RpcMaxTime: 1.483ms - RpcMinTime: 1.302ms - RpcSumTime: 16.739ms - SerializeBatchTime: 26.282us - SplitBlockDistributeByChannelTime: 32.769us - SplitBlockHashComputeTime: 9.81us - UncompressedRowBatchSize: 2.58 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 895ns - DeserializeAndMergeTime: 0ns - ExecTime: 78.142us - GetResultsTime: 35.466us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.377us - HashTableSize: 96 - InsertKeysToColumnTime: 11.855us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.350us - ProjectionTime: 28.654us - RowsProduced: 96 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=18):(Active: 1.24ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 840.201us - CloseTime: 13.6us - GetBlockTime: 90.611us - OpenTime: 2.443us - PrepareTime: 163.264us - SinkTime: 729.277us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 896.641us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 748.450us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.00 KB - CloseTime: 11.108us - CompressTime: 0ns - ExecTime: 868.435us - InputRows: 95 - LocalBytesSent: 2.01 KB - LocalSendTime: 262.113us - LocalSentRows: 43 - MemoryUsage: - PeakMemoryUsage: 13.47 KB - MergeBlockTime: 0ns - OpenTime: 128.718us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.290ms - RowsProduced: 95 - RpcAvgTime: 1.109ms - RpcCount: 12 - RpcMaxTime: 1.407ms - RpcMinTime: 846.131us - RpcSumTime: 13.308ms - SerializeBatchTime: 44.704us - SplitBlockDistributeByChannelTime: 49.708us - SplitBlockHashComputeTime: 8.797us - UncompressedRowBatchSize: 2.81 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 792ns - DeserializeAndMergeTime: 0ns - ExecTime: 98.350us - GetResultsTime: 46.790us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.203us - HashTableSize: 95 - InsertKeysToColumnTime: 29.344us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.637us - ProjectionTime: 35.546us - RowsProduced: 95 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=20):(Active: 530.509us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 371.18us - CloseTime: 14.977us - GetBlockTime: 64.19us - OpenTime: 3.215us - PrepareTime: 135.74us - SinkTime: 287.519us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 508.649us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.248ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.61 KB - CloseTime: 12.848us - CompressTime: 0ns - ExecTime: 404.992us - InputRows: 93 - LocalBytesSent: 2.24 KB - LocalSendTime: 65.352us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 13.28 KB - MergeBlockTime: 0ns - OpenTime: 104.884us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.616ms - RowsProduced: 93 - RpcAvgTime: 1.440ms - RpcCount: 12 - RpcMaxTime: 1.491ms - RpcMinTime: 1.312ms - RpcSumTime: 17.290ms - SerializeBatchTime: 16.375us - SplitBlockDistributeByChannelTime: 18.104us - SplitBlockHashComputeTime: 5.120us - UncompressedRowBatchSize: 2.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 934ns - DeserializeAndMergeTime: 0ns - ExecTime: 76.603us - GetResultsTime: 34.503us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.7us - HashTableSize: 93 - InsertKeysToColumnTime: 18.52us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.156us - ProjectionTime: 24.86us - RowsProduced: 93 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=22):(Active: 735.628us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 559.699us - CloseTime: 19.138us - GetBlockTime: 102.940us - OpenTime: 2.687us - PrepareTime: 149.143us - SinkTime: 435.754us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 686.629us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 783.368us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.14 KB - CloseTime: 16.175us - CompressTime: 0ns - ExecTime: 547.622us - InputRows: 95 - LocalBytesSent: 1.88 KB - LocalSendTime: 94.397us - LocalSentRows: 40 - MemoryUsage: - PeakMemoryUsage: 14.47 KB - MergeBlockTime: 0ns - OpenTime: 96.235us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.585ms - RowsProduced: 95 - RpcAvgTime: 1.427ms - RpcCount: 12 - RpcMaxTime: 1.495ms - RpcMinTime: 1.206ms - RpcSumTime: 17.127ms - SerializeBatchTime: 20.92us - SplitBlockDistributeByChannelTime: 34.838us - SplitBlockHashComputeTime: 7.909us - UncompressedRowBatchSize: 2.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 581ns - DeserializeAndMergeTime: 0ns - ExecTime: 129.110us - GetResultsTime: 42.668us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.201us - HashTableSize: 95 - InsertKeysToColumnTime: 19.615us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 26.230us - ProjectionTime: 39.302us - RowsProduced: 95 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 837.655us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 735.948us - CloseTime: 7.889us - GetBlockTime: 193.448us - OpenTime: 3.980us - PrepareTime: 83.222us - SinkTime: 448.253us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 794.60us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.428ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.159us - DeserializeAndMergeTime: 250.786us - ExecTime: 489.544us - ExprTime: 0ns - HashTableComputeTime: 116.192us - HashTableEmplaceTime: 67.95us - HashTableInputCount: 504 - InputRows: 504 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 415.349us - OpenTime: 44.88us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 22.92 KB - CloseTime: 5.356us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 162.587us - ExecTime: 212.512us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 34.88 KB - MemoryUsage: - Blocks: 15.88 KB - PeakMemoryUsage: 8.94 KB - OpenTime: 23.465us - ProjectionTime: 0ns - RowsProduced: 504 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms PipelineXTask (index=3):(Active: 718.649us, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 621.147us - CloseTime: 7.121us - GetBlockTime: 158.158us - OpenTime: 2.330us - PrepareTime: 81.952us - SinkTime: 385.972us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 693.662us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.399ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.114us - DeserializeAndMergeTime: 222.500us - ExecTime: 423.283us - ExprTime: 0ns - HashTableComputeTime: 107.42us - HashTableEmplaceTime: 68.347us - HashTableInputCount: 537 - InputRows: 537 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 368.195us - OpenTime: 39.599us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 25.50 KB - CloseTime: 4.972us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 186.735us - ExecTime: 176.899us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.13 KB - MemoryUsage: - Blocks: 17.31 KB - PeakMemoryUsage: 8.94 KB - OpenTime: 19.898us - ProjectionTime: 0ns - RowsProduced: 537 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=5):(Active: 1.151ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 1.53ms - CloseTime: 5.125us - GetBlockTime: 149.129us - OpenTime: 3.458us - PrepareTime: 80.262us - SinkTime: 785.576us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.114ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.324ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 2.436us - DeserializeAndMergeTime: 448.785us - ExecTime: 816.989us - ExprTime: 0ns - HashTableComputeTime: 214.69us - HashTableEmplaceTime: 122.699us - HashTableInputCount: 794 - InputRows: 794 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 766.196us - OpenTime: 34.816us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 34.49 KB - CloseTime: 2.102us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 178.813us - ExecTime: 155.821us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 60.50 KB - MemoryUsage: - Blocks: 18.63 KB - PeakMemoryUsage: 5.94 KB - OpenTime: 22.376us - ProjectionTime: 0ns - RowsProduced: 794 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=7):(Active: 909.729us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 791.41us - CloseTime: 6.613us - GetBlockTime: 144.531us - OpenTime: 3.158us - PrepareTime: 102.402us - SinkTime: 560.4us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 13 - NumBlockedTimes: 15 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 878.465us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.605ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 654ns - DeserializeAndMergeTime: 300.767us - ExecTime: 597.445us - ExprTime: 0ns - HashTableComputeTime: 188.916us - HashTableEmplaceTime: 132.421us - HashTableInputCount: 568 - InputRows: 568 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 543.471us - OpenTime: 41.376us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 23.99 KB - CloseTime: 5.232us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 200.691us - ExecTime: 175.514us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.88 KB - MemoryUsage: - Blocks: 15.69 KB - PeakMemoryUsage: 10.81 KB - OpenTime: 34.179us - ProjectionTime: 0ns - RowsProduced: 568 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=9):(Active: 763.93us, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 662.9us - CloseTime: 3.918us - GetBlockTime: 141.382us - OpenTime: 3.443us - PrepareTime: 86.794us - SinkTime: 424.256us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 734.798us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.613ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 439ns - DeserializeAndMergeTime: 215.830us - ExecTime: 465.323us - ExprTime: 0ns - HashTableComputeTime: 151.699us - HashTableEmplaceTime: 105.2us - HashTableInputCount: 464 - InputRows: 464 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 407.792us - OpenTime: 45.89us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 18.23 KB - CloseTime: 3.79us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 173.461us - ExecTime: 149.519us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 30.75 KB - MemoryUsage: - Blocks: 10.94 KB - PeakMemoryUsage: 6.50 KB - OpenTime: 14.488us - ProjectionTime: 0ns - RowsProduced: 464 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s406ms PipelineXTask (index=11):(Active: 876.241us, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 773.652us - CloseTime: 5.105us - GetBlockTime: 163.14us - OpenTime: 3.30us - PrepareTime: 87.186us - SinkTime: 486.693us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 14 - NumBlockedTimes: 16 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 835.634us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.585ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 753ns - DeserializeAndMergeTime: 238.650us - ExecTime: 517.168us - ExprTime: 0ns - HashTableComputeTime: 174.158us - HashTableEmplaceTime: 117.498us - HashTableInputCount: 497 - InputRows: 497 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 464.414us - OpenTime: 34.542us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 20.59 KB - CloseTime: 3.587us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 177.994us - ExecTime: 180.889us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.06 KB - MemoryUsage: - Blocks: 9.75 KB - PeakMemoryUsage: 8.50 KB - OpenTime: 24.253us - ProjectionTime: 0ns - RowsProduced: 497 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms PipelineXTask (index=13):(Active: 2.906ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.808ms - CloseTime: 6.217us - GetBlockTime: 184.827us - OpenTime: 2.557us - PrepareTime: 83.33us - SinkTime: 2.511ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.870ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.559ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 798ns - DeserializeAndMergeTime: 2.197ms - ExecTime: 2.530ms - ExprTime: 0ns - HashTableComputeTime: 205.986us - HashTableEmplaceTime: 139.932us - HashTableInputCount: 696 - InputRows: 696 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 2.485ms - OpenTime: 24.898us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 118.22 KB - CloseTime: 4.647us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 277.963us - ExecTime: 204.137us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 224.31 KB - MemoryUsage: - Blocks: 94.50 KB - PeakMemoryUsage: 55.81 KB - OpenTime: 26.600us - ProjectionTime: 0ns - RowsProduced: 696 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=15):(Active: 1.24ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 921.363us - CloseTime: 5.464us - GetBlockTime: 360.105us - OpenTime: 2.849us - PrepareTime: 88.980us - SinkTime: 481.726us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 780.973us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.238ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 819ns - DeserializeAndMergeTime: 263.165us - ExecTime: 515.686us - ExprTime: 0ns - HashTableComputeTime: 162.835us - HashTableEmplaceTime: 82.584us - HashTableInputCount: 515 - InputRows: 515 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 467.174us - OpenTime: 37.103us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 23.20 KB - CloseTime: 3.871us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 216.270us - ExecTime: 377.471us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.63 KB - MemoryUsage: - Blocks: 14.94 KB - PeakMemoryUsage: 7.94 KB - OpenTime: 20.505us - ProjectionTime: 0ns - RowsProduced: 515 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms PipelineXTask (index=17):(Active: 816.547us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 714.639us - CloseTime: 18.831us - GetBlockTime: 152.63us - OpenTime: 7.924us - PrepareTime: 68.890us - SinkTime: 458.421us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 770.418us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.687ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 908ns - DeserializeAndMergeTime: 257.761us - ExecTime: 474.936us - ExprTime: 0ns - HashTableComputeTime: 142.423us - HashTableEmplaceTime: 93.619us - HashTableInputCount: 511 - InputRows: 511 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 440.130us - OpenTime: 20.588us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 23.52 KB - CloseTime: 17.101us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 166.680us - ExecTime: 179.76us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 35.94 KB - MemoryUsage: - Blocks: 11.25 KB - PeakMemoryUsage: 5.63 KB - OpenTime: 19.589us - ProjectionTime: 0ns - RowsProduced: 511 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s406ms PipelineXTask (index=19):(Active: 742.275us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 655.330us - CloseTime: 9.710us - GetBlockTime: 117.125us - OpenTime: 1.956us - PrepareTime: 68.495us - SinkTime: 434.937us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 706.27us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.86ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 637ns - DeserializeAndMergeTime: 212.705us - ExecTime: 457.672us - ExprTime: 0ns - HashTableComputeTime: 165.841us - HashTableEmplaceTime: 107.749us - HashTableInputCount: 471 - InputRows: 471 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 418.752us - OpenTime: 26.538us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 19.68 KB - CloseTime: 7.995us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 179.81us - ExecTime: 129.18us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.44 KB - MemoryUsage: - Blocks: 10.06 KB - PeakMemoryUsage: 8.56 KB - OpenTime: 13.11us - ProjectionTime: 0ns - RowsProduced: 471 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s406ms PipelineXTask (index=21):(Active: 946.24us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 795.867us - CloseTime: 4.959us - GetBlockTime: 150.536us - OpenTime: 3.398us - PrepareTime: 134.904us - SinkTime: 529.141us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 900.510us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.718ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 490ns - DeserializeAndMergeTime: 279.862us - ExecTime: 619.959us - ExprTime: 0ns - HashTableComputeTime: 171.735us - HashTableEmplaceTime: 115.938us - HashTableInputCount: 539 - InputRows: 539 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 510.20us - OpenTime: 96.121us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 26.17 KB - CloseTime: 3.966us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 182.45us - ExecTime: 162.951us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.88 KB - MemoryUsage: - Blocks: 10.31 KB - PeakMemoryUsage: 7.94 KB - OpenTime: 18.838us - ProjectionTime: 0ns - RowsProduced: 539 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s406ms PipelineXTask (index=23):(Active: 787.475us, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 715.630us - CloseTime: 4.938us - GetBlockTime: 167.74us - OpenTime: 4.776us - PrepareTime: 53.855us - SinkTime: 448.638us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 18 - NumScheduleTimes: 18 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 751.977us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.205ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 760ns - DeserializeAndMergeTime: 234.220us - ExecTime: 465.559us - ExprTime: 0ns - HashTableComputeTime: 151.474us - HashTableEmplaceTime: 97.152us - HashTableInputCount: 509 - InputRows: 509 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 432.683us - OpenTime: 20.221us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 19.20 KB - CloseTime: 3.395us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 224.766us - ExecTime: 178.708us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.56 KB - MemoryUsage: - Blocks: 8.94 KB - PeakMemoryUsage: 8.94 KB - OpenTime: 16.306us - ProjectionTime: 0ns - RowsProduced: 509 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s404ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 732.143us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 497.278us - CloseTime: 10.343us - GetBlockTime: 67.290us - OpenTime: 2.505us - PrepareTime: 213.232us - SinkTime: 413.410us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 712.629us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.596ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.63 KB - CloseTime: 8.996us - CompressTime: 0ns - ExecTime: 584.594us - InputRows: 82 - LocalBytesSent: 1.78 KB - LocalSendTime: 56.724us - LocalSentRows: 38 - MemoryUsage: - PeakMemoryUsage: 12.81 KB - MergeBlockTime: 0ns - OpenTime: 162.882us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.211ms - RowsProduced: 82 - RpcAvgTime: 4.536ms - RpcCount: 12 - RpcMaxTime: 4.592ms - RpcMinTime: 4.320ms - RpcSumTime: 54.432ms - SerializeBatchTime: 19.277us - SplitBlockDistributeByChannelTime: 26.505us - SplitBlockHashComputeTime: 6.434us - UncompressedRowBatchSize: 2.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 430ns - DeserializeAndMergeTime: 0ns - ExecTime: 73.601us - GetResultsTime: 36.932us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.680us - HashTableSize: 82 - InsertKeysToColumnTime: 21.103us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.906us - ProjectionTime: 24.131us - RowsProduced: 82 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s408ms PipelineXTask (index=2):(Active: 748.988us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 545.32us - CloseTime: 30.720us - GetBlockTime: 65.508us - OpenTime: 3.466us - PrepareTime: 163.863us - SinkTime: 457.996us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 711.50us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 630.383us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.43 KB - CloseTime: 28.674us - CompressTime: 0ns - ExecTime: 602.16us - InputRows: 99 - LocalBytesSent: 2.71 KB - LocalSendTime: 95.112us - LocalSentRows: 58 - MemoryUsage: - PeakMemoryUsage: 13.94 KB - MergeBlockTime: 0ns - OpenTime: 115.991us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.231ms - RowsProduced: 99 - RpcAvgTime: 4.744ms - RpcCount: 12 - RpcMaxTime: 5.453ms - RpcMinTime: 4.442ms - RpcSumTime: 56.933ms - SerializeBatchTime: 25.912us - SplitBlockDistributeByChannelTime: 30.228us - SplitBlockHashComputeTime: 7.467us - UncompressedRowBatchSize: 2.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 701ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.303us - GetResultsTime: 30.321us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.44us - HashTableSize: 99 - InsertKeysToColumnTime: 17.211us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.75us - ProjectionTime: 29.14us - RowsProduced: 99 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=4):(Active: 1.51ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 819.600us - CloseTime: 32.897us - GetBlockTime: 113.448us - OpenTime: 2.388us - PrepareTime: 190.135us - SinkTime: 683.748us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.9ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 792.241us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.95 KB - CloseTime: 29.392us - CompressTime: 0ns - ExecTime: 837.525us - InputRows: 104 - LocalBytesSent: 2.48 KB - LocalSendTime: 89.345us - LocalSentRows: 53 - MemoryUsage: - PeakMemoryUsage: 14.66 KB - MergeBlockTime: 0ns - OpenTime: 125.138us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.617ms - RowsProduced: 104 - RpcAvgTime: 4.89ms - RpcCount: 12 - RpcMaxTime: 4.872ms - RpcMinTime: 3.175ms - RpcSumTime: 49.68ms - SerializeBatchTime: 57.764us - SplitBlockDistributeByChannelTime: 45.369us - SplitBlockHashComputeTime: 10.630us - UncompressedRowBatchSize: 2.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.71us - DeserializeAndMergeTime: 0ns - ExecTime: 123.754us - GetResultsTime: 57.686us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.914us - HashTableSize: 104 - InsertKeysToColumnTime: 34.833us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.332us - ProjectionTime: 44.160us - RowsProduced: 104 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s408ms PipelineXTask (index=6):(Active: 877.17us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 661.900us - CloseTime: 18.895us - GetBlockTime: 95.961us - OpenTime: 2.135us - PrepareTime: 188.633us - SinkTime: 540.427us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 851.41us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.458ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.13 KB - CloseTime: 15.811us - CompressTime: 0ns - ExecTime: 691.679us - InputRows: 112 - LocalBytesSent: 2.67 KB - LocalSendTime: 98.574us - LocalSentRows: 57 - MemoryUsage: - PeakMemoryUsage: 14.84 KB - MergeBlockTime: 0ns - OpenTime: 135.998us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.687ms - RowsProduced: 112 - RpcAvgTime: 3.463ms - RpcCount: 12 - RpcMaxTime: 3.508ms - RpcMinTime: 3.350ms - RpcSumTime: 41.559ms - SerializeBatchTime: 31.205us - SplitBlockDistributeByChannelTime: 50.859us - SplitBlockHashComputeTime: 11.634us - UncompressedRowBatchSize: 2.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 921ns - DeserializeAndMergeTime: 0ns - ExecTime: 103.730us - GetResultsTime: 52.24us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.668us - HashTableSize: 112 - InsertKeysToColumnTime: 29.360us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.706us - ProjectionTime: 34.770us - RowsProduced: 112 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s407ms PipelineXTask (index=8):(Active: 774.836us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 598.213us - CloseTime: 12.213us - GetBlockTime: 75.724us - OpenTime: 2.138us - PrepareTime: 158.237us - SinkTime: 503.707us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 757.350us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.416ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.34 KB - CloseTime: 10.853us - CompressTime: 0ns - ExecTime: 636.3us - InputRows: 92 - LocalBytesSent: 2.53 KB - LocalSendTime: 79.44us - LocalSentRows: 54 - MemoryUsage: - PeakMemoryUsage: 13.41 KB - MergeBlockTime: 0ns - OpenTime: 121.998us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.648ms - RowsProduced: 92 - RpcAvgTime: 3.435ms - RpcCount: 12 - RpcMaxTime: 3.508ms - RpcMinTime: 3.257ms - RpcSumTime: 41.225ms - SerializeBatchTime: 18.240us - SplitBlockDistributeByChannelTime: 23.560us - SplitBlockHashComputeTime: 12.819us - UncompressedRowBatchSize: 2.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 412ns - DeserializeAndMergeTime: 0ns - ExecTime: 82.872us - GetResultsTime: 43.131us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.934us - HashTableSize: 92 - InsertKeysToColumnTime: 22.117us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.574us - ProjectionTime: 26.126us - RowsProduced: 92 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s407ms PipelineXTask (index=10):(Active: 875.30us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 712.975us - CloseTime: 25.646us - GetBlockTime: 119.896us - OpenTime: 2.486us - PrepareTime: 129.329us - SinkTime: 568.616us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 842.933us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.551ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.09 KB - CloseTime: 20.34us - CompressTime: 0ns - ExecTime: 680.591us - InputRows: 97 - LocalBytesSent: 2.01 KB - LocalSendTime: 110.667us - LocalSentRows: 43 - MemoryUsage: - PeakMemoryUsage: 13.72 KB - MergeBlockTime: 0ns - OpenTime: 92.573us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.783ms - RowsProduced: 97 - RpcAvgTime: 3.443ms - RpcCount: 12 - RpcMaxTime: 3.503ms - RpcMinTime: 3.270ms - RpcSumTime: 41.321ms - SerializeBatchTime: 32.839us - SplitBlockDistributeByChannelTime: 46.777us - SplitBlockHashComputeTime: 7.620us - UncompressedRowBatchSize: 2.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.300us - DeserializeAndMergeTime: 0ns - ExecTime: 130.911us - GetResultsTime: 42.198us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.803us - HashTableSize: 97 - InsertKeysToColumnTime: 17.100us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.236us - ProjectionTime: 55.50us - RowsProduced: 97 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s407ms PipelineXTask (index=12):(Active: 771.88us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 620.675us - CloseTime: 16.187us - GetBlockTime: 83.92us - OpenTime: 2.217us - PrepareTime: 126.680us - SinkTime: 518.440us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 747.363us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 758.386us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.57 KB - CloseTime: 13.766us - CompressTime: 0ns - ExecTime: 614.878us - InputRows: 89 - LocalBytesSent: 2.15 KB - LocalSendTime: 97.326us - LocalSentRows: 46 - MemoryUsage: - PeakMemoryUsage: 13.13 KB - MergeBlockTime: 0ns - OpenTime: 83.326us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.86ms - RowsProduced: 89 - RpcAvgTime: 5.129ms - RpcCount: 12 - RpcMaxTime: 5.420ms - RpcMinTime: 4.419ms - RpcSumTime: 61.553ms - SerializeBatchTime: 36.258us - SplitBlockDistributeByChannelTime: 37.783us - SplitBlockHashComputeTime: 10.77us - UncompressedRowBatchSize: 2.38 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 943ns - DeserializeAndMergeTime: 0ns - ExecTime: 89.36us - GetResultsTime: 39.489us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.845us - HashTableSize: 89 - InsertKeysToColumnTime: 19.996us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.812us - ProjectionTime: 35.551us - RowsProduced: 89 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=14):(Active: 826.418us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 667.250us - CloseTime: 15.692us - GetBlockTime: 110.212us - OpenTime: 1.953us - PrepareTime: 137.341us - SinkTime: 534.683us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 802.924us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.991ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.67 KB - CloseTime: 13.549us - CompressTime: 0ns - ExecTime: 647.875us - InputRows: 93 - LocalBytesSent: 2.24 KB - LocalSendTime: 74.775us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 13.13 KB - MergeBlockTime: 0ns - OpenTime: 100.346us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.297ms - RowsProduced: 93 - RpcAvgTime: 4.603ms - RpcCount: 12 - RpcMaxTime: 4.697ms - RpcMinTime: 4.559ms - RpcSumTime: 55.240ms - SerializeBatchTime: 28.379us - SplitBlockDistributeByChannelTime: 43.444us - SplitBlockHashComputeTime: 8.89us - UncompressedRowBatchSize: 2.48 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 816ns - DeserializeAndMergeTime: 0ns - ExecTime: 116.64us - GetResultsTime: 62.689us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.120us - HashTableSize: 93 - InsertKeysToColumnTime: 44.84us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.125us - ProjectionTime: 38.196us - RowsProduced: 93 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s407ms PipelineXTask (index=16):(Active: 996.467us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 821.986us - CloseTime: 22.267us - GetBlockTime: 83.19us - OpenTime: 3.312us - PrepareTime: 142.900us - SinkTime: 718.744us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 805.43us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 824.269us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.43 KB - CloseTime: 19.563us - CompressTime: 0ns - ExecTime: 846.265us - InputRows: 77 - LocalBytesSent: 1.73 KB - LocalSendTime: 103.754us - LocalSentRows: 37 - MemoryUsage: - PeakMemoryUsage: 11.41 KB - MergeBlockTime: 0ns - OpenTime: 108.480us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.732ms - RowsProduced: 77 - RpcAvgTime: 5.373ms - RpcCount: 12 - RpcMaxTime: 5.496ms - RpcMinTime: 5.226ms - RpcSumTime: 64.481ms - SerializeBatchTime: 30.451us - SplitBlockDistributeByChannelTime: 45.609us - SplitBlockHashComputeTime: 6.505us - UncompressedRowBatchSize: 2.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 91.308us - GetResultsTime: 45.659us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.23us - HashTableSize: 77 - InsertKeysToColumnTime: 29.393us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.405us - ProjectionTime: 31.11us - RowsProduced: 77 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=18):(Active: 1.537ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.365ms - CloseTime: 12.783us - GetBlockTime: 103.915us - OpenTime: 2.42us - PrepareTime: 151.525us - SinkTime: 1.240ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 953.513us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 862.653us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.90 KB - CloseTime: 11.28us - CompressTime: 0ns - ExecTime: 1.342ms - InputRows: 97 - LocalBytesSent: 2.20 KB - LocalSendTime: 720.92us - LocalSentRows: 47 - MemoryUsage: - PeakMemoryUsage: 13.53 KB - MergeBlockTime: 0ns - OpenTime: 92.168us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.437ms - RowsProduced: 97 - RpcAvgTime: 5.163ms - RpcCount: 12 - RpcMaxTime: 5.550ms - RpcMinTime: 4.568ms - RpcSumTime: 61.961ms - SerializeBatchTime: 35.448us - SplitBlockDistributeByChannelTime: 47.709us - SplitBlockHashComputeTime: 9.798us - UncompressedRowBatchSize: 2.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 580ns - DeserializeAndMergeTime: 0ns - ExecTime: 134.112us - GetResultsTime: 50.803us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.13us - HashTableSize: 97 - InsertKeysToColumnTime: 24.233us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 30.389us - ProjectionTime: 40.618us - RowsProduced: 97 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=20):(Active: 1.10ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 817.823us - CloseTime: 52.420us - GetBlockTime: 76.520us - OpenTime: 3.208us - PrepareTime: 132.171us - SinkTime: 721.814us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 950.660us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 965.988us DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.23 KB - CloseTime: 46.267us - CompressTime: 0ns - ExecTime: 870.727us - InputRows: 111 - LocalBytesSent: 2.53 KB - LocalSendTime: 210.985us - LocalSentRows: 54 - MemoryUsage: - PeakMemoryUsage: 14.81 KB - MergeBlockTime: 0ns - OpenTime: 103.27us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.187ms - RowsProduced: 111 - RpcAvgTime: 5.505ms - RpcCount: 12 - RpcMaxTime: 5.659ms - RpcMinTime: 5.388ms - RpcSumTime: 66.68ms - SerializeBatchTime: 38.682us - SplitBlockDistributeByChannelTime: 58.29us - SplitBlockHashComputeTime: 7.950us - UncompressedRowBatchSize: 3.04 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.800us - DeserializeAndMergeTime: 0ns - ExecTime: 82.773us - GetResultsTime: 35.218us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.543us - HashTableSize: 111 - InsertKeysToColumnTime: 14.354us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.573us - ProjectionTime: 31.615us - RowsProduced: 111 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s409ms PipelineXTask (index=22):(Active: 1.97ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 886.173us - CloseTime: 9.628us - GetBlockTime: 88.542us - OpenTime: 3.566us - PrepareTime: 193.176us - SinkTime: 778.44us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.28ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.609ms DATA_STREAM_SINK_OPERATOR (id=97,dst_id=97): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.53 KB - CloseTime: 8.466us - CompressTime: 0ns - ExecTime: 942.698us - InputRows: 94 - LocalBytesSent: 2.42 KB - LocalSendTime: 202.601us - LocalSentRows: 52 - MemoryUsage: - PeakMemoryUsage: 13.56 KB - MergeBlockTime: 0ns - OpenTime: 157.167us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.616ms - RowsProduced: 94 - RpcAvgTime: 5.442ms - RpcCount: 12 - RpcMaxTime: 5.587ms - RpcMinTime: 5.312ms - RpcSumTime: 65.311ms - SerializeBatchTime: 37.754us - SplitBlockDistributeByChannelTime: 45.798us - SplitBlockHashComputeTime: 10.179us - UncompressedRowBatchSize: 2.34 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 377ns - DeserializeAndMergeTime: 0ns - ExecTime: 97.2us - GetResultsTime: 39.154us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.462us - HashTableSize: 94 - InsertKeysToColumnTime: 12.542us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.864us - ProjectionTime: 39.237us - RowsProduced: 94 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s408ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 926.132us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 805.626us - CloseTime: 7.985us - GetBlockTime: 149.339us - OpenTime: 2.58us - PrepareTime: 103.517us - SinkTime: 540.942us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 882.855us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.14ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 978ns - DeserializeAndMergeTime: 286.268us - ExecTime: 569.286us - ExprTime: 0ns - HashTableComputeTime: 176.832us - HashTableEmplaceTime: 112.614us - HashTableInputCount: 465 - InputRows: 465 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 517.920us - OpenTime: 32.973us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 19.56 KB - CloseTime: 6.42us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 168.725us - ExecTime: 192.461us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.69 KB - MemoryUsage: - Blocks: 11.13 KB - PeakMemoryUsage: 11.13 KB - OpenTime: 48.643us - ProjectionTime: 0ns - RowsProduced: 465 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms PipelineXTask (index=3):(Active: 1.919ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 966.679us - CloseTime: 820.292us - GetBlockTime: 311.513us - OpenTime: 1.977us - PrepareTime: 124.835us - SinkTime: 567.693us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 904.90us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.862ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 742ns - DeserializeAndMergeTime: 311.865us - ExecTime: 604.230us - ExprTime: 0ns - HashTableComputeTime: 184.466us - HashTableEmplaceTime: 121.727us - HashTableInputCount: 549 - InputRows: 549 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 544.289us - OpenTime: 45.37us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 27.60 KB - CloseTime: 818.246us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 160.714us - ExecTime: 1.164ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 43.75 KB - MemoryUsage: - Blocks: 14.56 KB - PeakMemoryUsage: 14.56 KB - OpenTime: 45.764us - ProjectionTime: 0ns - RowsProduced: 549 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s404ms PipelineXTask (index=5):(Active: 832.436us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 742.243us - CloseTime: 3.717us - GetBlockTime: 127.39us - OpenTime: 1.579us - PrepareTime: 77.989us - SinkTime: 517.387us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 802.185us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.259ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 750ns - DeserializeAndMergeTime: 285.707us - ExecTime: 542.92us - ExprTime: 0ns - HashTableComputeTime: 160.788us - HashTableEmplaceTime: 106.720us - HashTableInputCount: 482 - InputRows: 482 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 499.355us - OpenTime: 29.134us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 24.16 KB - CloseTime: 2.319us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 153.347us - ExecTime: 140.792us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.00 KB - MemoryUsage: - Blocks: 10.44 KB - PeakMemoryUsage: 8.19 KB - OpenTime: 21.393us - ProjectionTime: 0ns - RowsProduced: 482 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms PipelineXTask (index=7):(Active: 1.3ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 901.41us - CloseTime: 3.920us - GetBlockTime: 176.153us - OpenTime: 2.341us - PrepareTime: 89.579us - SinkTime: 619.668us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 968.719us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.124ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 916ns - DeserializeAndMergeTime: 341.321us - ExecTime: 662.963us - ExprTime: 0ns - HashTableComputeTime: 209.391us - HashTableEmplaceTime: 137.53us - HashTableInputCount: 590 - InputRows: 590 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 600.132us - OpenTime: 48.99us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 26.60 KB - CloseTime: 2.342us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 169.619us - ExecTime: 184.942us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.75 KB - MemoryUsage: - Blocks: 8.13 KB - PeakMemoryUsage: 6.25 KB - OpenTime: 18.221us - ProjectionTime: 0ns - RowsProduced: 590 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms PipelineXTask (index=9):(Active: 2.611ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.508ms - CloseTime: 11.920us - GetBlockTime: 186.650us - OpenTime: 2.758us - PrepareTime: 83.56us - SinkTime: 2.222ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.572ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.136ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.394us - DeserializeAndMergeTime: 1.935ms - ExecTime: 2.234ms - ExprTime: 0ns - HashTableComputeTime: 193.374us - HashTableEmplaceTime: 124.515us - HashTableInputCount: 507 - InputRows: 507 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 2.197ms - OpenTime: 17.993us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 93.45 KB - CloseTime: 8.739us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 194.485us - ExecTime: 234.11us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 116.38 KB - MemoryUsage: - Blocks: 40.13 KB - PeakMemoryUsage: 29.19 KB - OpenTime: 50.883us - ProjectionTime: 0ns - RowsProduced: 507 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=11):(Active: 1.11ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 901.889us - CloseTime: 14.137us - GetBlockTime: 203.724us - OpenTime: 2.606us - PrepareTime: 86.988us - SinkTime: 589.841us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 18 - NumBlockedTimes: 20 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 967.204us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.409ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.177us - DeserializeAndMergeTime: 350.557us - ExecTime: 613.709us - ExprTime: 0ns - HashTableComputeTime: 159.893us - HashTableEmplaceTime: 90.246us - HashTableInputCount: 526 - InputRows: 526 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 571.56us - OpenTime: 27.402us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 22.03 KB - CloseTime: 11.869us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 164.824us - ExecTime: 236.656us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.63 KB - MemoryUsage: - Blocks: 7.88 KB - PeakMemoryUsage: 7.88 KB - OpenTime: 30.565us - ProjectionTime: 0ns - RowsProduced: 526 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=13):(Active: 870.574us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 796.810us - CloseTime: 6.496us - GetBlockTime: 162.197us - OpenTime: 2.370us - PrepareTime: 58.727us - SinkTime: 526.820us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 829.48us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.116ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 977ns - DeserializeAndMergeTime: 322.918us - ExecTime: 547.939us - ExprTime: 0ns - HashTableComputeTime: 137.610us - HashTableEmplaceTime: 74.78us - HashTableInputCount: 497 - InputRows: 497 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 507.840us - OpenTime: 25.305us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 23.53 KB - CloseTime: 4.682us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 152.206us - ExecTime: 173.719us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 34.00 KB - MemoryUsage: - Blocks: 6.63 KB - PeakMemoryUsage: 6.63 KB - OpenTime: 18.252us - ProjectionTime: 0ns - RowsProduced: 497 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s404ms PipelineXTask (index=15):(Active: 897.192us, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 830.555us - CloseTime: 7.885us - GetBlockTime: 195.913us - OpenTime: 1.788us - PrepareTime: 50.625us - SinkTime: 503.432us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 855.508us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.296ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.74us - DeserializeAndMergeTime: 280.349us - ExecTime: 520.482us - ExprTime: 0ns - HashTableComputeTime: 156.77us - HashTableEmplaceTime: 80.647us - HashTableInputCount: 512 - InputRows: 512 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 484.979us - OpenTime: 20.665us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 22.79 KB - CloseTime: 5.572us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 150.747us - ExecTime: 201.902us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 34.19 KB - MemoryUsage: - Blocks: 12.00 KB - PeakMemoryUsage: 8.13 KB - OpenTime: 13.908us - ProjectionTime: 0ns - RowsProduced: 512 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=17):(Active: 908.48us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 806.487us - CloseTime: 15.370us - GetBlockTime: 146.618us - OpenTime: 2.703us - PrepareTime: 77.783us - SinkTime: 565.440us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 866.575us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.40ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.1us - DeserializeAndMergeTime: 305.295us - ExecTime: 589.651us - ExprTime: 0ns - HashTableComputeTime: 155.499us - HashTableEmplaceTime: 93.542us - HashTableInputCount: 441 - InputRows: 441 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 510.818us - OpenTime: 28.570us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 20.65 KB - CloseTime: 13.212us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 155.191us - ExecTime: 157.641us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.75 KB - MemoryUsage: - Blocks: 10.44 KB - PeakMemoryUsage: 5.38 KB - OpenTime: 14.162us - ProjectionTime: 0ns - RowsProduced: 441 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms PipelineXTask (index=19):(Active: 947.182us, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 872.565us - CloseTime: 6.586us - GetBlockTime: 170.526us - OpenTime: 2.312us - PrepareTime: 59.112us - SinkTime: 574.690us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 898.346us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.43ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.5us - DeserializeAndMergeTime: 296.846us - ExecTime: 588.959us - ExprTime: 0ns - HashTableComputeTime: 196.921us - HashTableEmplaceTime: 136.245us - HashTableInputCount: 566 - InputRows: 566 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 555.398us - OpenTime: 18.591us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 25.59 KB - CloseTime: 4.595us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 164.579us - ExecTime: 183.583us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 35.25 KB - MemoryUsage: - Blocks: 9.50 KB - PeakMemoryUsage: 6.25 KB - OpenTime: 19.693us - ProjectionTime: 0ns - RowsProduced: 566 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s403ms PipelineXTask (index=21):(Active: 993.932us, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 898.125us - CloseTime: 6.118us - GetBlockTime: 144.69us - OpenTime: 3.753us - PrepareTime: 79.508us - SinkTime: 623.613us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 954.410us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.32ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1000ns - DeserializeAndMergeTime: 341.493us - ExecTime: 646.265us - ExprTime: 0ns - HashTableComputeTime: 212.607us - HashTableEmplaceTime: 113.490us - HashTableInputCount: 518 - InputRows: 518 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 602.205us - OpenTime: 27.754us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 26.39 KB - CloseTime: 4.166us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 161.915us - ExecTime: 154.179us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.75 KB - MemoryUsage: - Blocks: 10.75 KB - PeakMemoryUsage: 5.38 KB - OpenTime: 17.654us - ProjectionTime: 0ns - RowsProduced: 518 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s406ms PipelineXTask (index=23):(Active: 839.518us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 767.0us - CloseTime: 5.731us - GetBlockTime: 132.939us - OpenTime: 2.274us - PrepareTime: 58.346us - SinkTime: 532.26us - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 802.647us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.963ms AGGREGATION_SINK_OPERATOR (id=96): - BuildTime: 0ns - CloseTime: 1.68us - DeserializeAndMergeTime: 299.78us - ExecTime: 551.241us - ExprTime: 0ns - HashTableComputeTime: 172.660us - HashTableEmplaceTime: 117.691us - HashTableInputCount: 500 - InputRows: 500 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 1.27 MB - SerializeKeyArena: 1.27 MB - MergeTime: 514.671us - OpenTime: 23.30us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=95): - BlocksProduced: 36 - BytesReceived: 23.48 KB - CloseTime: 3.769us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 193.208us - ExecTime: 140.346us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 35.31 KB - MemoryUsage: - Blocks: 10.63 KB - PeakMemoryUsage: 5.63 KB - OpenTime: 12.777us - ProjectionTime: 0ns - RowsProduced: 500 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s405ms Fragment 116: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.117ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 938.168us - CloseTime: 13.15us - GetBlockTime: 168.857us - OpenTime: 2.690us - PrepareTime: 156.491us - SinkTime: 738.550us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.89ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 821.249us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 31.81 KB - CloseTime: 11.76us - CompressTime: 0ns - ExecTime: 861.47us - InputRows: 562 - LocalBytesSent: 32.97 KB - LocalSendTime: 144.472us - LocalSentRows: 289 - MemoryUsage: - PeakMemoryUsage: 105.19 KB - MergeBlockTime: 0ns - OpenTime: 112.88us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.702ms - RowsProduced: 562 - RpcAvgTime: 1.710ms - RpcCount: 12 - RpcMaxTime: 1.910ms - RpcMinTime: 1.481ms - RpcSumTime: 20.526ms - SerializeBatchTime: 97.474us - SplitBlockDistributeByChannelTime: 119.608us - SplitBlockHashComputeTime: 15.543us - UncompressedRowBatchSize: 32.19 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 622ns - DeserializeAndMergeTime: 0ns - ExecTime: 189.248us - GetResultsTime: 163.701us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.774us - HashTableSize: 562 - InsertKeysToColumnTime: 32.871us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 20.377us - ProjectionTime: 0ns - RowsProduced: 562 - SerializeDataTime: 121.920us - SerializeResultTime: 166.492us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s400ms PipelineXTask (index=4):(Active: 1.222ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.27ms - CloseTime: 19.430us - GetBlockTime: 228.294us - OpenTime: 3.320us - PrepareTime: 164.728us - SinkTime: 774.148us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.193ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.949ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.01 KB - CloseTime: 16.897us - CompressTime: 0ns - ExecTime: 911.247us - InputRows: 537 - LocalBytesSent: 29.57 KB - LocalSendTime: 68.6us - LocalSentRows: 271 - MemoryUsage: - PeakMemoryUsage: 94.50 KB - MergeBlockTime: 0ns - OpenTime: 120.770us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.590ms - RowsProduced: 537 - RpcAvgTime: 1.503ms - RpcCount: 12 - RpcMaxTime: 1.770ms - RpcMinTime: 1.129ms - RpcSumTime: 18.41ms - SerializeBatchTime: 99.38us - SplitBlockDistributeByChannelTime: 152.195us - SplitBlockHashComputeTime: 29.412us - UncompressedRowBatchSize: 29.50 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 629ns - DeserializeAndMergeTime: 0ns - ExecTime: 242.611us - GetResultsTime: 220.575us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.641us - HashTableSize: 537 - InsertKeysToColumnTime: 51.570us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 14.743us - ProjectionTime: 0ns - RowsProduced: 537 - SerializeDataTime: 149.184us - SerializeResultTime: 225.282us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s399ms PipelineXTask (index=8):(Active: 1.361ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.199ms - CloseTime: 17.529us - GetBlockTime: 228.798us - OpenTime: 2.330us - PrepareTime: 135.774us - SinkTime: 942.78us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.335ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 756.351us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.17 KB - CloseTime: 14.308us - CompressTime: 0ns - ExecTime: 1.59ms - InputRows: 515 - LocalBytesSent: 28.91 KB - LocalSendTime: 87.403us - LocalSentRows: 268 - MemoryUsage: - PeakMemoryUsage: 90.06 KB - MergeBlockTime: 0ns - OpenTime: 103.822us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.372ms - RowsProduced: 515 - RpcAvgTime: 1.285ms - RpcCount: 12 - RpcMaxTime: 1.649ms - RpcMinTime: 783.313us - RpcSumTime: 15.424ms - SerializeBatchTime: 85.64us - SplitBlockDistributeByChannelTime: 245.118us - SplitBlockHashComputeTime: 20.797us - UncompressedRowBatchSize: 26.22 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 937ns - DeserializeAndMergeTime: 0ns - ExecTime: 239.565us - GetResultsTime: 223.354us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.627us - HashTableSize: 515 - InsertKeysToColumnTime: 43.454us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.710us - ProjectionTime: 0ns - RowsProduced: 515 - SerializeDataTime: 168.984us - SerializeResultTime: 225.956us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s400ms PipelineXTask (index=12):(Active: 1.531ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.350ms - CloseTime: 14.329us - GetBlockTime: 260.617us - OpenTime: 2.440us - PrepareTime: 158.142us - SinkTime: 1.59ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.509ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.117ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.71 KB - CloseTime: 11.913us - CompressTime: 0ns - ExecTime: 1.181ms - InputRows: 548 - LocalBytesSent: 32.57 KB - LocalSendTime: 102.521us - LocalSentRows: 288 - MemoryUsage: - PeakMemoryUsage: 98.06 KB - MergeBlockTime: 0ns - OpenTime: 111.610us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.244ms - RowsProduced: 548 - RpcAvgTime: 3.927ms - RpcCount: 12 - RpcMaxTime: 5.151ms - RpcMinTime: 1.438ms - RpcSumTime: 47.134ms - SerializeBatchTime: 116.529us - SplitBlockDistributeByChannelTime: 235.253us - SplitBlockHashComputeTime: 20.400us - UncompressedRowBatchSize: 29.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 761ns - DeserializeAndMergeTime: 0ns - ExecTime: 268.457us - GetResultsTime: 254.557us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.236us - HashTableSize: 548 - InsertKeysToColumnTime: 45.718us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.235us - ProjectionTime: 0ns - RowsProduced: 548 - SerializeDataTime: 184.208us - SerializeResultTime: 257.285us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s401ms PipelineXTask (index=16):(Active: 1.377ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.202ms - CloseTime: 11.534us - GetBlockTime: 249.383us - OpenTime: 3.396us - PrepareTime: 152.972us - SinkTime: 925.720us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.355ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.380ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.26 KB - CloseTime: 9.636us - CompressTime: 0ns - ExecTime: 1.42ms - InputRows: 516 - LocalBytesSent: 31.69 KB - LocalSendTime: 86.758us - LocalSentRows: 269 - MemoryUsage: - PeakMemoryUsage: 96.31 KB - MergeBlockTime: 0ns - OpenTime: 108.282us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.506ms - RowsProduced: 516 - RpcAvgTime: 4.259ms - RpcCount: 12 - RpcMaxTime: 4.293ms - RpcMinTime: 4.222ms - RpcSumTime: 51.114ms - SerializeBatchTime: 109.350us - SplitBlockDistributeByChannelTime: 192.626us - SplitBlockHashComputeTime: 33.450us - UncompressedRowBatchSize: 28.64 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 748ns - DeserializeAndMergeTime: 0ns - ExecTime: 256.759us - GetResultsTime: 243.867us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.987us - HashTableSize: 516 - InsertKeysToColumnTime: 49.3us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.340us - ProjectionTime: 0ns - RowsProduced: 516 - SerializeDataTime: 181.859us - SerializeResultTime: 246.957us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=20):(Active: 1.166ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 984.154us - CloseTime: 25.958us - GetBlockTime: 216.218us - OpenTime: 3.67us - PrepareTime: 147.641us - SinkTime: 743.748us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.130ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.142ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.95 KB - CloseTime: 22.969us - CompressTime: 0ns - ExecTime: 893.968us - InputRows: 530 - LocalBytesSent: 29.90 KB - LocalSendTime: 103.432us - LocalSentRows: 264 - MemoryUsage: - PeakMemoryUsage: 102.50 KB - MergeBlockTime: 0ns - OpenTime: 128.327us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.567ms - RowsProduced: 530 - RpcAvgTime: 2.704ms - RpcCount: 12 - RpcMaxTime: 3.163ms - RpcMinTime: 2.356ms - RpcSumTime: 32.453ms - SerializeBatchTime: 78.226us - SplitBlockDistributeByChannelTime: 159.575us - SplitBlockHashComputeTime: 21.880us - UncompressedRowBatchSize: 31.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 785ns - DeserializeAndMergeTime: 0ns - ExecTime: 221.440us - GetResultsTime: 210.332us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.727us - HashTableSize: 530 - InsertKeysToColumnTime: 41.800us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.133us - ProjectionTime: 0ns - RowsProduced: 530 - SerializeDataTime: 153.113us - SerializeResultTime: 213.806us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s405ms PipelineXTask (index=24):(Active: 847.592us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 678.651us - CloseTime: 12.770us - GetBlockTime: 140.245us - OpenTime: 2.533us - PrepareTime: 146.982us - SinkTime: 521.119us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 827.187us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.696ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.57 KB - CloseTime: 10.676us - CompressTime: 0ns - ExecTime: 638.140us - InputRows: 551 - LocalBytesSent: 32.71 KB - LocalSendTime: 65.835us - LocalSentRows: 294 - MemoryUsage: - PeakMemoryUsage: 99.63 KB - MergeBlockTime: 0ns - OpenTime: 106.838us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.296ms - RowsProduced: 551 - RpcAvgTime: 3.696ms - RpcCount: 12 - RpcMaxTime: 4.270ms - RpcMinTime: 3.324ms - RpcSumTime: 44.360ms - SerializeBatchTime: 47.453us - SplitBlockDistributeByChannelTime: 114.697us - SplitBlockHashComputeTime: 15.855us - UncompressedRowBatchSize: 29.83 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 673ns - DeserializeAndMergeTime: 0ns - ExecTime: 147.127us - GetResultsTime: 136.324us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.979us - HashTableSize: 551 - InsertKeysToColumnTime: 25.189us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.921us - ProjectionTime: 0ns - RowsProduced: 551 - SerializeDataTime: 101.952us - SerializeResultTime: 138.233us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s404ms PipelineXTask (index=28):(Active: 1.142ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 978.907us - CloseTime: 25.414us - GetBlockTime: 244.746us - OpenTime: 2.493us - PrepareTime: 130.134us - SinkTime: 710.876us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.108ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.124ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.77 KB - CloseTime: 14.7us - CompressTime: 0ns - ExecTime: 824.808us - InputRows: 495 - LocalBytesSent: 27.93 KB - LocalSendTime: 82.455us - LocalSentRows: 252 - MemoryUsage: - PeakMemoryUsage: 87.25 KB - MergeBlockTime: 0ns - OpenTime: 100.627us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.386ms - RowsProduced: 495 - RpcAvgTime: 4.272ms - RpcCount: 12 - RpcMaxTime: 4.348ms - RpcMinTime: 4.235ms - RpcSumTime: 51.269ms - SerializeBatchTime: 52.951us - SplitBlockDistributeByChannelTime: 162.296us - SplitBlockHashComputeTime: 21.164us - UncompressedRowBatchSize: 26.00 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 9.508us - DeserializeAndMergeTime: 0ns - ExecTime: 259.957us - GetResultsTime: 238.566us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.195us - HashTableSize: 495 - InsertKeysToColumnTime: 58.954us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.685us - ProjectionTime: 0ns - RowsProduced: 495 - SerializeDataTime: 158.956us - SerializeResultTime: 241.868us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=32):(Active: 858.329us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 671.655us - CloseTime: 12.555us - GetBlockTime: 134.920us - OpenTime: 3.204us - PrepareTime: 165.345us - SinkTime: 507.314us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 838.116us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 862.166us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.10 KB - CloseTime: 10.408us - CompressTime: 0ns - ExecTime: 647.647us - InputRows: 529 - LocalBytesSent: 30.09 KB - LocalSendTime: 63.71us - LocalSentRows: 275 - MemoryUsage: - PeakMemoryUsage: 89.81 KB - MergeBlockTime: 0ns - OpenTime: 130.468us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.822ms - RowsProduced: 529 - RpcAvgTime: 4.53ms - RpcCount: 12 - RpcMaxTime: 4.77ms - RpcMinTime: 4.30ms - RpcSumTime: 48.644ms - SerializeBatchTime: 49.798us - SplitBlockDistributeByChannelTime: 119.37us - SplitBlockHashComputeTime: 24.365us - UncompressedRowBatchSize: 27.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 714ns - DeserializeAndMergeTime: 0ns - ExecTime: 142.835us - GetResultsTime: 130.582us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.938us - HashTableSize: 529 - InsertKeysToColumnTime: 24.612us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.828us - ProjectionTime: 0ns - RowsProduced: 529 - SerializeDataTime: 93.756us - SerializeResultTime: 132.572us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s404ms PipelineXTask (index=36):(Active: 2.437ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.269ms - CloseTime: 32.669us - GetBlockTime: 391.907us - OpenTime: 4.204us - PrepareTime: 123.867us - SinkTime: 1.847ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.269ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.799ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 32.93 KB - CloseTime: 21.696us - CompressTime: 0ns - ExecTime: 1.962ms - InputRows: 577 - LocalBytesSent: 35.62 KB - LocalSendTime: 390.256us - LocalSentRows: 298 - MemoryUsage: - PeakMemoryUsage: 109.25 KB - MergeBlockTime: 0ns - OpenTime: 94.563us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.607ms - RowsProduced: 577 - RpcAvgTime: 1.910ms - RpcCount: 12 - RpcMaxTime: 2.433ms - RpcMinTime: 1.293ms - RpcSumTime: 22.928ms - SerializeBatchTime: 183.424us - SplitBlockDistributeByChannelTime: 290.8us - SplitBlockHashComputeTime: 42.84us - UncompressedRowBatchSize: 33.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 7.574us - DeserializeAndMergeTime: 0ns - ExecTime: 405.963us - GetResultsTime: 384.577us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.645us - HashTableSize: 577 - InsertKeysToColumnTime: 73.75us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.474us - ProjectionTime: 0ns - RowsProduced: 577 - SerializeDataTime: 289.569us - SerializeResultTime: 388.732us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s402ms PipelineXTask (index=40):(Active: 1.139ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 936.812us - CloseTime: 20.790us - GetBlockTime: 177.887us - OpenTime: 2.597us - PrepareTime: 173.990us - SinkTime: 742.79us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.100ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.245ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 32.09 KB - CloseTime: 18.733us - CompressTime: 0ns - ExecTime: 901.554us - InputRows: 536 - LocalBytesSent: 34.71 KB - LocalSendTime: 79.759us - LocalSentRows: 295 - MemoryUsage: - PeakMemoryUsage: 101.50 KB - MergeBlockTime: 0ns - OpenTime: 141.421us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10.405ms - RowsProduced: 536 - RpcAvgTime: 1.657ms - RpcCount: 12 - RpcMaxTime: 2.408ms - RpcMinTime: 782.291us - RpcSumTime: 19.893ms - SerializeBatchTime: 65.506us - SplitBlockDistributeByChannelTime: 125.390us - SplitBlockHashComputeTime: 26.877us - UncompressedRowBatchSize: 32.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 630ns - DeserializeAndMergeTime: 0ns - ExecTime: 183.813us - GetResultsTime: 172.816us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.14us - HashTableSize: 536 - InsertKeysToColumnTime: 41.294us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.229us - ProjectionTime: 0ns - RowsProduced: 536 - SerializeDataTime: 119.439us - SerializeResultTime: 175.284us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s405ms PipelineXTask (index=44):(Active: 1.176ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 998.434us - CloseTime: 14.102us - GetBlockTime: 170.459us - OpenTime: 3.431us - PrepareTime: 154.238us - SinkTime: 802.587us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.153ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.936ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.29 KB - CloseTime: 11.524us - CompressTime: 0ns - ExecTime: 928.117us - InputRows: 532 - LocalBytesSent: 28.56 KB - LocalSendTime: 100.158us - LocalSentRows: 264 - MemoryUsage: - PeakMemoryUsage: 90.63 KB - MergeBlockTime: 0ns - OpenTime: 114.653us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.686ms - RowsProduced: 532 - RpcAvgTime: 4.21ms - RpcCount: 12 - RpcMaxTime: 4.70ms - RpcMinTime: 3.982ms - RpcSumTime: 48.258ms - SerializeBatchTime: 95.459us - SplitBlockDistributeByChannelTime: 177.367us - SplitBlockHashComputeTime: 18.92us - UncompressedRowBatchSize: 27.70 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 884ns - DeserializeAndMergeTime: 0ns - ExecTime: 175.915us - GetResultsTime: 166.441us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 3.320us - HashTableSize: 532 - InsertKeysToColumnTime: 40.629us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.379us - ProjectionTime: 0ns - RowsProduced: 532 - SerializeDataTime: 115.289us - SerializeResultTime: 168.349us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s403ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 2.37ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.890ms - CloseTime: 10.980us - GetBlockTime: 1.90ms - OpenTime: 7.156us - PrepareTime: 122.72us - SinkTime: 763.991us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.16ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 643.50us AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 757.974us - CloseTime: 733ns - DeserializeAndMergeTime: 0ns - ExecTime: 804.34us - ExprTime: 5.688us - HashTableComputeTime: 283.385us - HashTableEmplaceTime: 181.228us - HashTableInputCount: 2.272K (2272) - InputRows: 2.272K (2272) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 40.144us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 7.814us - ExecTime: 633.870us - InitProbeSideTime: 162.23us - JoinFilterTimer: 210ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 23.93us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.763us - ProbeFindNextTime: 0ns - ProbeRows: 6.363K (6363) - ProbeTime: 433.816us - ProbeWhenBuildSideOutputTime: 32.147us - ProbeWhenProbeSideOutputTime: 5.890us - ProbeWhenProcessHashTableTime: 98.456us - ProbeWhenSearchHashTableTime: 98.379us - ProjectionTime: 159.893us - RowsProduced: 2.272K (2272) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s888ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 516ns - DeserializeAndMergeTime: 0ns - ExecTime: 497.297us - GetResultsTime: 469.49us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 42.650us - HashTableSize: 6.363K (6363) - InsertKeysToColumnTime: 272.549us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 15.927us - ProjectionTime: 0ns - RowsProduced: 6.363K (6363) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s510ms PipelineXTask (index=5):(Active: 2.40ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.917ms - CloseTime: 21.143us - GetBlockTime: 996.424us - OpenTime: 3.890us - PrepareTime: 92.459us - SinkTime: 889.883us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.11ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 683.535us AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 875.342us - CloseTime: 758ns - DeserializeAndMergeTime: 0ns - ExecTime: 911.433us - ExprTime: 5.763us - HashTableComputeTime: 396.874us - HashTableEmplaceTime: 311.561us - HashTableInputCount: 1.974K (1974) - InputRows: 1.974K (1974) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 22.130us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 17.718us - ExecTime: 588.702us - InitProbeSideTime: 161.507us - JoinFilterTimer: 143ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 16.917us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.181us - ProbeFindNextTime: 0ns - ProbeRows: 6.427K (6427) - ProbeTime: 390.141us - ProbeWhenBuildSideOutputTime: 25.786us - ProbeWhenProbeSideOutputTime: 4.977us - ProbeWhenProcessHashTableTime: 82.386us - ProbeWhenSearchHashTableTime: 80.284us - ProjectionTime: 155.961us - RowsProduced: 1.974K (1974) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s888ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 688ns - DeserializeAndMergeTime: 0ns - ExecTime: 446.35us - GetResultsTime: 425.370us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 36.236us - HashTableSize: 6.427K (6427) - InsertKeysToColumnTime: 199.978us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.425us - ProjectionTime: 0ns - RowsProduced: 6.427K (6427) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s510ms PipelineXTask (index=9):(Active: 2.31ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.916ms - CloseTime: 16.920us - GetBlockTime: 1.21ms - OpenTime: 4.810us - PrepareTime: 87.315us - SinkTime: 857.152us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.4ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.979ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 850.702us - CloseTime: 636ns - DeserializeAndMergeTime: 0ns - ExecTime: 882.890us - ExprTime: 6.63us - HashTableComputeTime: 393.255us - HashTableEmplaceTime: 306.957us - HashTableInputCount: 1.779K (1779) - InputRows: 1.779K (1779) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 25.854us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 13.871us - ExecTime: 620.705us - InitProbeSideTime: 165.301us - JoinFilterTimer: 183ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 14.551us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.228us - ProbeFindNextTime: 0ns - ProbeRows: 6.272K (6272) - ProbeTime: 446.586us - ProbeWhenBuildSideOutputTime: 32.4us - ProbeWhenProbeSideOutputTime: 6.189us - ProbeWhenProcessHashTableTime: 81.332us - ProbeWhenSearchHashTableTime: 115.258us - ProjectionTime: 137.254us - RowsProduced: 1.779K (1779) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s888ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 485ns - DeserializeAndMergeTime: 0ns - ExecTime: 428.837us - GetResultsTime: 408.142us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 42.38us - HashTableSize: 6.272K (6272) - InsertKeysToColumnTime: 196.628us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.677us - ProjectionTime: 0ns - RowsProduced: 6.272K (6272) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s509ms PipelineXTask (index=13):(Active: 2.228ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.83ms - CloseTime: 12.98us - GetBlockTime: 1.268ms - OpenTime: 7.699us - PrepareTime: 119.102us - SinkTime: 776.972us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.205ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.563ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 770.447us - CloseTime: 688ns - DeserializeAndMergeTime: 0ns - ExecTime: 833.258us - ExprTime: 13.764us - HashTableComputeTime: 358.691us - HashTableEmplaceTime: 268.767us - HashTableInputCount: 2.099K (2099) - InputRows: 2.099K (2099) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 56.557us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 8.640us - ExecTime: 718.336us - InitProbeSideTime: 195.69us - JoinFilterTimer: 160ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 24.69us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.167us - ProbeFindNextTime: 0ns - ProbeRows: 6.402K (6402) - ProbeTime: 488.219us - ProbeWhenBuildSideOutputTime: 37.875us - ProbeWhenProbeSideOutputTime: 7.953us - ProbeWhenProcessHashTableTime: 103.367us - ProbeWhenSearchHashTableTime: 103.152us - ProjectionTime: 188.914us - RowsProduced: 2.099K (2099) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s889ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 713ns - DeserializeAndMergeTime: 0ns - ExecTime: 583.653us - GetResultsTime: 554.430us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 53.664us - HashTableSize: 6.402K (6402) - InsertKeysToColumnTime: 345.282us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.676us - ProjectionTime: 0ns - RowsProduced: 6.402K (6402) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s509ms PipelineXTask (index=17):(Active: 2.871ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.750ms - CloseTime: 17.665us - GetBlockTime: 1.547ms - OpenTime: 4.856us - PrepareTime: 93.78us - SinkTime: 1.170ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.844ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.719ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.161ms - CloseTime: 828ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.204ms - ExprTime: 6.997us - HashTableComputeTime: 429.390us - HashTableEmplaceTime: 300.546us - HashTableInputCount: 2.089K (2089) - InputRows: 2.089K (2089) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 35.521us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 13.931us - ExecTime: 911.92us - InitProbeSideTime: 203.242us - JoinFilterTimer: 510ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 12.326us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.388us - ProbeFindNextTime: 0ns - ProbeRows: 6.399K (6399) - ProbeTime: 616.435us - ProbeWhenBuildSideOutputTime: 38.220us - ProbeWhenProbeSideOutputTime: 9.67us - ProbeWhenProcessHashTableTime: 165.45us - ProbeWhenSearchHashTableTime: 127.919us - ProjectionTime: 257.272us - RowsProduced: 2.089K (2089) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s890ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 524ns - DeserializeAndMergeTime: 0ns - ExecTime: 645.284us - GetResultsTime: 623.577us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 51.293us - HashTableSize: 6.399K (6399) - InsertKeysToColumnTime: 362.440us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.997us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s509ms PipelineXTask (index=21):(Active: 4.246ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.105ms - CloseTime: 39.332us - GetBlockTime: 2.279ms - OpenTime: 5.155us - PrepareTime: 90.863us - SinkTime: 1.778ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.195ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.20ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.765ms - CloseTime: 1.151us - DeserializeAndMergeTime: 0ns - ExecTime: 1.803ms - ExprTime: 20.382us - HashTableComputeTime: 818.440us - HashTableEmplaceTime: 661.347us - HashTableInputCount: 2.154K (2154) - InputRows: 2.154K (2154) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 26.593us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 25.638us - ExecTime: 1.478ms - InitProbeSideTime: 397.683us - JoinFilterTimer: 682ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 22.390us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.823us - ProbeFindNextTime: 0ns - ProbeRows: 6.262K (6262) - ProbeTime: 1.20ms - ProbeWhenBuildSideOutputTime: 45.663us - ProbeWhenProbeSideOutputTime: 15.37us - ProbeWhenProcessHashTableTime: 275.307us - ProbeWhenSearchHashTableTime: 184.970us - ProjectionTime: 390.360us - RowsProduced: 2.154K (2154) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s890ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 1.391us - DeserializeAndMergeTime: 0ns - ExecTime: 843.567us - GetResultsTime: 791.310us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 78.168us - HashTableSize: 6.262K (6262) - InsertKeysToColumnTime: 402.291us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.404us - ProjectionTime: 0ns - RowsProduced: 6.262K (6262) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s510ms PipelineXTask (index=25):(Active: 2.451ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.320ms - CloseTime: 15.191us - GetBlockTime: 1.315ms - OpenTime: 5.960us - PrepareTime: 103.194us - SinkTime: 975.280us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.427ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.382ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 967.823us - CloseTime: 797ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.11ms - ExprTime: 6.263us - HashTableComputeTime: 373.831us - HashTableEmplaceTime: 257.99us - HashTableInputCount: 2.127K (2127) - InputRows: 2.127K (2127) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 37.71us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 11.160us - ExecTime: 763.395us - InitProbeSideTime: 197.851us - JoinFilterTimer: 437ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 13.345us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.24us - ProbeFindNextTime: 0ns - ProbeRows: 6.265K (6265) - ProbeTime: 540.564us - ProbeWhenBuildSideOutputTime: 47.806us - ProbeWhenProbeSideOutputTime: 7.713us - ProbeWhenProcessHashTableTime: 113.622us - ProbeWhenSearchHashTableTime: 108.200us - ProjectionTime: 186.527us - RowsProduced: 2.127K (2127) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 802ns - DeserializeAndMergeTime: 0ns - ExecTime: 574.865us - GetResultsTime: 543.448us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 40.994us - HashTableSize: 6.265K (6265) - InsertKeysToColumnTime: 277.152us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.519us - ProjectionTime: 0ns - RowsProduced: 6.265K (6265) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s509ms PipelineXTask (index=29):(Active: 2.480ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.316ms - CloseTime: 22.950us - GetBlockTime: 1.300ms - OpenTime: 4.353us - PrepareTime: 131.7us - SinkTime: 986.232us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.447ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.940ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 976.953us - CloseTime: 619ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.20ms - ExprTime: 6.817us - HashTableComputeTime: 439.513us - HashTableEmplaceTime: 326.954us - HashTableInputCount: 1.762K (1762) - InputRows: 1.762K (1762) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 35.335us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 19.385us - ExecTime: 827.607us - InitProbeSideTime: 190.427us - JoinFilterTimer: 326ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 21.857us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.412us - ProbeFindNextTime: 0ns - ProbeRows: 6.309K (6309) - ProbeTime: 542.847us - ProbeWhenBuildSideOutputTime: 37.959us - ProbeWhenProbeSideOutputTime: 8.363us - ProbeWhenProcessHashTableTime: 133.550us - ProbeWhenSearchHashTableTime: 122.146us - ProjectionTime: 233.586us - RowsProduced: 1.762K (1762) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s890ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 611ns - DeserializeAndMergeTime: 0ns - ExecTime: 524.798us - GetResultsTime: 488.130us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 40.117us - HashTableSize: 6.309K (6309) - InsertKeysToColumnTime: 291.792us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 22.845us - ProjectionTime: 0ns - RowsProduced: 6.309K (6309) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s509ms PipelineXTask (index=33):(Active: 2.383ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.236ms - CloseTime: 15.395us - GetBlockTime: 1.375ms - OpenTime: 6.978us - PrepareTime: 118.931us - SinkTime: 830.161us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.358ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 858.711us AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 821.797us - CloseTime: 997ns - DeserializeAndMergeTime: 0ns - ExecTime: 880.737us - ExprTime: 7.17us - HashTableComputeTime: 400.864us - HashTableEmplaceTime: 300.935us - HashTableInputCount: 1.876K (1876) - InputRows: 1.876K (1876) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 50.933us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 11.270us - ExecTime: 897.516us - InitProbeSideTime: 248.85us - JoinFilterTimer: 563ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 24.24us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.343us - ProbeFindNextTime: 0ns - ProbeRows: 6.399K (6399) - ProbeTime: 645.897us - ProbeWhenBuildSideOutputTime: 69.107us - ProbeWhenProbeSideOutputTime: 9.88us - ProbeWhenProcessHashTableTime: 129.604us - ProbeWhenSearchHashTableTime: 136.834us - ProjectionTime: 205.287us - RowsProduced: 1.876K (1876) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 727ns - DeserializeAndMergeTime: 0ns - ExecTime: 508.387us - GetResultsTime: 488.600us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 41.435us - HashTableSize: 6.399K (6399) - InsertKeysToColumnTime: 261.713us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.317us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s510ms PipelineXTask (index=37):(Active: 3.156ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.44ms - CloseTime: 13.821us - GetBlockTime: 1.868ms - OpenTime: 5.630us - PrepareTime: 86.944us - SinkTime: 1.138ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.133ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.637ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.128ms - CloseTime: 986ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.153ms - ExprTime: 7.998us - HashTableComputeTime: 416.104us - HashTableEmplaceTime: 306.7us - HashTableInputCount: 2.481K (2481) - InputRows: 2.481K (2481) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 16.146us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 9.489us - ExecTime: 1.129ms - InitProbeSideTime: 255.66us - JoinFilterTimer: 436ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 23.639us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.564us - ProbeFindNextTime: 0ns - ProbeRows: 6.442K (6442) - ProbeTime: 736.673us - ProbeWhenBuildSideOutputTime: 61.859us - ProbeWhenProbeSideOutputTime: 13.985us - ProbeWhenProcessHashTableTime: 200.180us - ProbeWhenSearchHashTableTime: 135.521us - ProjectionTime: 340.21us - RowsProduced: 2.481K (2481) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s892ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 571ns - DeserializeAndMergeTime: 0ns - ExecTime: 764.320us - GetResultsTime: 739.103us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 53.310us - HashTableSize: 6.442K (6442) - InsertKeysToColumnTime: 425.184us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 4.937us - ProjectionTime: 0ns - RowsProduced: 6.442K (6442) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s509ms PipelineXTask (index=41):(Active: 4.829ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.625ms - CloseTime: 28.463us - GetBlockTime: 2.593ms - OpenTime: 5.760us - PrepareTime: 162.735us - SinkTime: 1.987ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.788ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 827.993us AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.974ms - CloseTime: 1.697us - DeserializeAndMergeTime: 0ns - ExecTime: 2.11ms - ExprTime: 12.355us - HashTableComputeTime: 781.760us - HashTableEmplaceTime: 572.886us - HashTableInputCount: 2.485K (2485) - InputRows: 2.485K (2485) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 25.30us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 21.210us - ExecTime: 1.576ms - InitProbeSideTime: 367.217us - JoinFilterTimer: 904ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 11.882us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.584us - ProbeFindNextTime: 0ns - ProbeRows: 6.333K (6333) - ProbeTime: 1.85ms - ProbeWhenBuildSideOutputTime: 66.571us - ProbeWhenProbeSideOutputTime: 30.149us - ProbeWhenProcessHashTableTime: 308.744us - ProbeWhenSearchHashTableTime: 221.833us - ProjectionTime: 439.491us - RowsProduced: 2.485K (2485) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 1.516us - DeserializeAndMergeTime: 0ns - ExecTime: 1.80ms - GetResultsTime: 987.552us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 99.32us - HashTableSize: 6.333K (6333) - InsertKeysToColumnTime: 580.58us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 48.46us - ProjectionTime: 0ns - RowsProduced: 6.333K (6333) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s510ms PipelineXTask (index=45):(Active: 2.438ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.296ms - CloseTime: 17.267us - GetBlockTime: 1.314ms - OpenTime: 7.960us - PrepareTime: 98.436us - SinkTime: 941.883us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.398ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.900ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 928.636us - CloseTime: 1.100us - DeserializeAndMergeTime: 0ns - ExecTime: 958.641us - ExprTime: 17.35us - HashTableComputeTime: 453.332us - HashTableEmplaceTime: 345.5us - HashTableInputCount: 1.811K (1811) - InputRows: 1.811K (1811) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 20.633us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 12.383us - ExecTime: 815.176us - InitProbeSideTime: 184.629us - JoinFilterTimer: 547ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 20.689us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.348us - ProbeFindNextTime: 0ns - ProbeRows: 6.216K (6216) - ProbeTime: 556.624us - ProbeWhenBuildSideOutputTime: 72.642us - ProbeWhenProbeSideOutputTime: 9.222us - ProbeWhenProcessHashTableTime: 128.95us - ProbeWhenSearchHashTableTime: 103.758us - ProjectionTime: 212.564us - RowsProduced: 1.811K (1811) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s892ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 809ns - DeserializeAndMergeTime: 0ns - ExecTime: 529.800us - GetResultsTime: 510.460us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 32.401us - HashTableSize: 6.216K (6216) - InsertKeysToColumnTime: 262.110us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.578us - ProjectionTime: 0ns - RowsProduced: 6.216K (6216) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s507ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 609.515us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 514.915us - CloseTime: 9.720us - GetBlockTime: 78.343us - OpenTime: 2.617us - PrepareTime: 75.505us - SinkTime: 371.398us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 580.358us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.362ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.369us - BuildRows: 2.273K (2273) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 170.306us - BuildTableInsertTime: 118.116us - BuildTableTime: 121.725us - CloseTime: 0ns - ExecTime: 398.701us - InputRows: 2.272K (2272) - MemoryUsage: - BuildBlocks: 173.05 KB - BuildKeyArena: 56.00 KB - HashTable: 27.10 KB - PeakMemoryUsage: 252.15 KB - OpenTime: 30.799us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.8us - RuntimeFilterComputeTime: 24.228us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 86.94 KB - CloseTime: 7.948us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 305.944us - ExecTime: 103.808us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.56 KB - MemoryUsage: - Blocks: 116.12 KB - PeakMemoryUsage: 20.78 KB - OpenTime: 25.561us - ProjectionTime: 0ns - RowsProduced: 2.272K (2272) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s395ms PipelineXTask (index=6):(Active: 611.876us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 544.234us - CloseTime: 5.130us - GetBlockTime: 157.336us - OpenTime: 2.584us - PrepareTime: 53.670us - SinkTime: 330.773us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 589.58us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.775ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.51us - BuildRows: 1.975K (1975) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 147.581us - BuildTableInsertTime: 117.667us - BuildTableTime: 119.565us - CloseTime: 0ns - ExecTime: 351.61us - InputRows: 1.974K (1974) - MemoryUsage: - BuildBlocks: 150.34 KB - BuildKeyArena: 48.00 KB - HashTable: 25.65 KB - PeakMemoryUsage: 219.98 KB - OpenTime: 22.779us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.290us - RuntimeFilterComputeTime: 13.541us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 75.13 KB - CloseTime: 3.998us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 348.297us - ExecTime: 168.324us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.31 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 21.53 KB - OpenTime: 12.766us - ProjectionTime: 0ns - RowsProduced: 1.974K (1974) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s396ms PipelineXTask (index=10):(Active: 637.137us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 480.928us - CloseTime: 4.890us - GetBlockTime: 84.616us - OpenTime: 8.570us - PrepareTime: 134.403us - SinkTime: 334.195us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 612.996us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.662ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.429us - BuildRows: 1.78K (1780) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 189.339us - BuildTableInsertTime: 81.966us - BuildTableTime: 84.247us - CloseTime: 0ns - ExecTime: 408.445us - InputRows: 1.779K (1779) - MemoryUsage: - BuildBlocks: 135.50 KB - BuildKeyArena: 44.00 KB - HashTable: 16.70 KB - PeakMemoryUsage: 192.19 KB - OpenTime: 77.568us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.535us - RuntimeFilterComputeTime: 18.49us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 70.75 KB - CloseTime: 3.665us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 307.976us - ExecTime: 109.52us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 29.19 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 18.78 KB - OpenTime: 28.772us - ProjectionTime: 0ns - RowsProduced: 1.779K (1779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s396ms PipelineXTask (index=14):(Active: 950.409us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 870.861us - CloseTime: 8.692us - GetBlockTime: 120.367us - OpenTime: 3.515us - PrepareTime: 60.796us - SinkTime: 669.114us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 912.306us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.343ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.837us - BuildRows: 2.1K (2100) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 351.901us - BuildTableInsertTime: 182.518us - BuildTableTime: 185.633us - CloseTime: 0ns - ExecTime: 683.915us - InputRows: 2.099K (2099) - MemoryUsage: - BuildBlocks: 159.87 KB - BuildKeyArena: 52.00 KB - HashTable: 26.26 KB - PeakMemoryUsage: 234.12 KB - OpenTime: 19.571us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.726us - RuntimeFilterComputeTime: 28.304us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 80.74 KB - CloseTime: 6.185us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 306.863us - ExecTime: 134.348us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 32.31 KB - MemoryUsage: - Blocks: 83.03 KB - PeakMemoryUsage: 21.53 KB - OpenTime: 17.73us - ProjectionTime: 0ns - RowsProduced: 2.099K (2099) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s397ms PipelineXTask (index=18):(Active: 782.126us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 691.23us - CloseTime: 7.958us - GetBlockTime: 111.106us - OpenTime: 2.203us - PrepareTime: 74.435us - SinkTime: 499.884us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 746.315us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.895ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.443us - BuildRows: 2.09K (2090) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 254.658us - BuildTableInsertTime: 172.373us - BuildTableTime: 174.912us - CloseTime: 0ns - ExecTime: 513.594us - InputRows: 2.089K (2089) - MemoryUsage: - BuildBlocks: 159.12 KB - BuildKeyArena: 52.00 KB - HashTable: 26.21 KB - PeakMemoryUsage: 233.32 KB - OpenTime: 18.84us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.575us - RuntimeFilterComputeTime: 21.858us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 80.93 KB - CloseTime: 6.407us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 381.680us - ExecTime: 130.462us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.94 KB - MemoryUsage: - Blocks: 150.03 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 18.673us - ProjectionTime: 0ns - RowsProduced: 2.089K (2089) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s397ms PipelineXTask (index=22):(Active: 913.899us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 800.885us - CloseTime: 5.912us - GetBlockTime: 133.852us - OpenTime: 2.785us - PrepareTime: 97.434us - SinkTime: 565.530us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 882.671us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.563ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.886us - BuildRows: 2.155K (2155) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 302.879us - BuildTableInsertTime: 161.490us - BuildTableTime: 164.814us - CloseTime: 0ns - ExecTime: 588.237us - InputRows: 2.154K (2154) - MemoryUsage: - BuildBlocks: 164.06 KB - BuildKeyArena: 52.00 KB - HashTable: 26.53 KB - PeakMemoryUsage: 238.58 KB - OpenTime: 27.746us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.385us - RuntimeFilterComputeTime: 42.747us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 81.58 KB - CloseTime: 4.752us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 303.220us - ExecTime: 174.326us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.94 KB - MemoryUsage: - Blocks: 83.03 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 45.248us - ProjectionTime: 0ns - RowsProduced: 2.154K (2154) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s398ms PipelineXTask (index=26):(Active: 664.900us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 552.670us - CloseTime: 5.951us - GetBlockTime: 111.633us - OpenTime: 1.783us - PrepareTime: 98.517us - SinkTime: 378.377us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 640.769us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.946ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.169us - BuildRows: 2.128K (2128) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 221.248us - BuildTableInsertTime: 90.279us - BuildTableTime: 92.800us - CloseTime: 0ns - ExecTime: 419.74us - InputRows: 2.127K (2127) - MemoryUsage: - BuildBlocks: 162.02 KB - BuildKeyArena: 52.00 KB - HashTable: 26.39 KB - PeakMemoryUsage: 236.40 KB - OpenTime: 45.138us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.216us - RuntimeFilterComputeTime: 18.614us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 80.13 KB - CloseTime: 4.502us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 291.225us - ExecTime: 124.47us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 48.31 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 16.58us - ProjectionTime: 0ns - RowsProduced: 2.127K (2127) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s398ms PipelineXTask (index=30):(Active: 616.991us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 484.572us - CloseTime: 7.41us - GetBlockTime: 88.132us - OpenTime: 2.16us - PrepareTime: 116.243us - SinkTime: 305.253us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 590.339us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.34ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.124us - BuildRows: 1.763K (1763) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 155.210us - BuildTableInsertTime: 67.550us - BuildTableTime: 68.838us - CloseTime: 0ns - ExecTime: 317.967us - InputRows: 1.762K (1762) - MemoryUsage: - BuildBlocks: 134.21 KB - BuildKeyArena: 44.00 KB - HashTable: 16.61 KB - PeakMemoryUsage: 190.82 KB - OpenTime: 15.652us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.903us - RuntimeFilterComputeTime: 28.956us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 70.41 KB - CloseTime: 6.23us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 315.761us - ExecTime: 105.429us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.56 KB - MemoryUsage: - Blocks: 75.06 KB - PeakMemoryUsage: 18.78 KB - OpenTime: 18.873us - ProjectionTime: 0ns - RowsProduced: 1.762K (1762) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s398ms PipelineXTask (index=34):(Active: 565.350us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 468.721us - CloseTime: 12.317us - GetBlockTime: 90.798us - OpenTime: 2.713us - PrepareTime: 75.623us - SinkTime: 300.983us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 535.666us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.629ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.621us - BuildRows: 1.877K (1877) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 148.36us - BuildTableInsertTime: 83.347us - BuildTableTime: 85.779us - CloseTime: 0ns - ExecTime: 334.876us - InputRows: 1.876K (1876) - MemoryUsage: - BuildBlocks: 142.88 KB - BuildKeyArena: 48.00 KB - HashTable: 25.17 KB - PeakMemoryUsage: 212.04 KB - OpenTime: 37.897us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.959us - RuntimeFilterComputeTime: 20.16us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 72.02 KB - CloseTime: 3.620us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 300.473us - ExecTime: 108.306us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.56 KB - MemoryUsage: - Blocks: 79.94 KB - PeakMemoryUsage: 18.78 KB - OpenTime: 20.277us - ProjectionTime: 0ns - RowsProduced: 1.876K (1876) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=38):(Active: 895.674us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 825.750us - CloseTime: 6.207us - GetBlockTime: 116.387us - OpenTime: 2.132us - PrepareTime: 55.796us - SinkTime: 615.467us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 856.721us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.317ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.848us - BuildRows: 2.482K (2482) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 259.587us - BuildTableInsertTime: 156.578us - BuildTableTime: 161.532us - CloseTime: 0ns - ExecTime: 628.454us - InputRows: 2.481K (2481) - MemoryUsage: - BuildBlocks: 188.97 KB - BuildKeyArena: 60.00 KB - HashTable: 28.12 KB - PeakMemoryUsage: 273.09 KB - OpenTime: 16.972us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 105.638us - RuntimeFilterComputeTime: 23.971us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 93.47 KB - CloseTime: 4.571us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 374.82us - ExecTime: 133.38us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.59 KB - MemoryUsage: - Blocks: 83.03 KB - PeakMemoryUsage: 20.81 KB - OpenTime: 20.172us - ProjectionTime: 0ns - RowsProduced: 2.481K (2481) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s400ms PipelineXTask (index=42):(Active: 676.91us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 585.33us - CloseTime: 5.254us - GetBlockTime: 93.411us - OpenTime: 2.773us - PrepareTime: 76.691us - SinkTime: 428.398us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 652.646us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.871ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.690us - BuildRows: 2.486K (2486) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 242.457us - BuildTableInsertTime: 125.246us - BuildTableTime: 127.369us - CloseTime: 0ns - ExecTime: 448.794us - InputRows: 2.485K (2485) - MemoryUsage: - BuildBlocks: 189.28 KB - BuildKeyArena: 60.00 KB - HashTable: 28.14 KB - PeakMemoryUsage: 273.42 KB - OpenTime: 24.663us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.308us - RuntimeFilterComputeTime: 15.983us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 93.63 KB - CloseTime: 4.39us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 341.860us - ExecTime: 113.291us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 46.94 KB - MemoryUsage: - Blocks: 83.03 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 22.22us - ProjectionTime: 0ns - RowsProduced: 2.485K (2485) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s399ms PipelineXTask (index=46):(Active: 807.40us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 730.351us - CloseTime: 7.348us - GetBlockTime: 159.203us - OpenTime: 2.710us - PrepareTime: 59.760us - SinkTime: 475.969us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 775.987us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.46ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.12us - BuildRows: 1.812K (1812) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 225.178us - BuildTableInsertTime: 159.280us - BuildTableTime: 161.747us - CloseTime: 0ns - ExecTime: 490.76us - InputRows: 1.811K (1811) - MemoryUsage: - BuildBlocks: 137.92 KB - BuildKeyArena: 44.00 KB - HashTable: 24.85 KB - PeakMemoryUsage: 202.77 KB - OpenTime: 18.484us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.520us - RuntimeFilterComputeTime: 35.840us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 22 - BytesReceived: 70.40 KB - CloseTime: 5.383us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 311.640us - ExecTime: 173.230us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.94 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 37.53 KB - OpenTime: 20.264us - ProjectionTime: 0ns - RowsProduced: 1.811K (1811) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s401ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 2.283ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.214ms - CloseTime: 16.511us - GetBlockTime: 56.598us - OpenTime: 3.617us - PrepareTime: 43.370us - SinkTime: 2.94ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.241ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.258ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 3.917us - DeserializeAndMergeTime: 59.107us - ExecTime: 2.108ms - ExprTime: 0ns - HashTableComputeTime: 1.950ms - HashTableEmplaceTime: 1.713ms - HashTableInputCount: 6.363K (6363) - InputRows: 6.363K (6363) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.58ms - OpenTime: 16.594us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.392us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 73.402us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.43 KB - OpenTime: 13.982us - ProjectionTime: 0ns - RowsProduced: 6.363K (6363) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s413ms PipelineXTask (index=7):(Active: 2.435ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.351ms - CloseTime: 26.149us - GetBlockTime: 45.942us - OpenTime: 2.853us - PrepareTime: 49.828us - SinkTime: 2.245ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.395ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 104.953ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 13.710us - DeserializeAndMergeTime: 59.710us - ExecTime: 2.274ms - ExprTime: 0ns - HashTableComputeTime: 2.117ms - HashTableEmplaceTime: 1.853ms - HashTableInputCount: 6.427K (6427) - InputRows: 6.427K (6427) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.232ms - OpenTime: 16.902us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 9.636us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 58.886us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.86 KB - OpenTime: 12.466us - ProjectionTime: 0ns - RowsProduced: 6.427K (6427) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s403ms PipelineXTask (index=11):(Active: 2.11ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.928ms - CloseTime: 27.65us - GetBlockTime: 51.919us - OpenTime: 2.390us - PrepareTime: 48.438us - SinkTime: 1.827ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.969ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.750ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 3.952us - DeserializeAndMergeTime: 58.688us - ExecTime: 1.843ms - ExprTime: 0ns - HashTableComputeTime: 1.729ms - HashTableEmplaceTime: 1.537ms - HashTableInputCount: 6.272K (6272) - InputRows: 6.272K (6272) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.816ms - OpenTime: 13.840us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 21.888us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 82.488us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 14.290us - ProjectionTime: 0ns - RowsProduced: 6.272K (6272) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s461ms PipelineXTask (index=15):(Active: 2.199ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 2.97ms - CloseTime: 6.511us - GetBlockTime: 102.719us - OpenTime: 2.753us - PrepareTime: 86.385us - SinkTime: 1.937ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.175ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.91ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.809us - DeserializeAndMergeTime: 62.731us - ExecTime: 1.955ms - ExprTime: 0ns - HashTableComputeTime: 1.841ms - HashTableEmplaceTime: 1.624ms - HashTableInputCount: 6.402K (6402) - InputRows: 6.402K (6402) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.927ms - OpenTime: 17.147us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 2.992us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 97.198us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.07 KB - OpenTime: 9.15us - ProjectionTime: 0ns - RowsProduced: 6.402K (6402) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s401ms PipelineXTask (index=19):(Active: 2.286ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.187ms - CloseTime: 10.733us - GetBlockTime: 54.278us - OpenTime: 3.820us - PrepareTime: 76.691us - SinkTime: 2.78ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.248ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.299ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 5.348us - DeserializeAndMergeTime: 60.585us - ExecTime: 2.86ms - ExprTime: 0ns - HashTableComputeTime: 1.843ms - HashTableEmplaceTime: 1.582ms - HashTableInputCount: 6.399K (6399) - InputRows: 6.399K (6399) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.34ms - OpenTime: 14.126us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.511us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 72.604us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 252.00 KB - PeakMemoryUsage: 253.07 KB - OpenTime: 19.320us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s396ms PipelineXTask (index=23):(Active: 2.192ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.127ms - CloseTime: 7.774us - GetBlockTime: 58.637us - OpenTime: 2.730us - PrepareTime: 48.503us - SinkTime: 2.14ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.171ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.318ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.755us - DeserializeAndMergeTime: 59.133us - ExecTime: 2.35ms - ExprTime: 0ns - HashTableComputeTime: 1.880ms - HashTableEmplaceTime: 1.638ms - HashTableInputCount: 6.262K (6262) - InputRows: 6.262K (6262) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.2ms - OpenTime: 19.872us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.339us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 66.731us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.07 KB - OpenTime: 11.619us - ProjectionTime: 0ns - RowsProduced: 6.262K (6262) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s400ms PipelineXTask (index=27):(Active: 1.995ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.896ms - CloseTime: 7.891us - GetBlockTime: 72.591us - OpenTime: 3.160us - PrepareTime: 80.636us - SinkTime: 1.780ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.974ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 49.278ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.297us - DeserializeAndMergeTime: 56.483us - ExecTime: 1.824ms - ExprTime: 0ns - HashTableComputeTime: 1.680ms - HashTableEmplaceTime: 1.463ms - HashTableInputCount: 6.265K (6265) - InputRows: 6.265K (6265) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.771ms - OpenTime: 43.298us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.976us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.742us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 18.508us - ProjectionTime: 0ns - RowsProduced: 6.265K (6265) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s459ms PipelineXTask (index=31):(Active: 2.785ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.725ms - CloseTime: 7.343us - GetBlockTime: 77.192us - OpenTime: 4.112us - PrepareTime: 43.435us - SinkTime: 2.583ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.761ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.279ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.703us - DeserializeAndMergeTime: 70.609us - ExecTime: 2.599ms - ExprTime: 0ns - HashTableComputeTime: 2.414ms - HashTableEmplaceTime: 2.67ms - HashTableInputCount: 6.309K (6309) - InputRows: 6.309K (6309) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.568ms - OpenTime: 16.434us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 4.148us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 83.721us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.07 KB - OpenTime: 10.784us - ProjectionTime: 0ns - RowsProduced: 6.309K (6309) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s425ms PipelineXTask (index=35):(Active: 2.576ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.497ms - CloseTime: 9.801us - GetBlockTime: 71.861us - OpenTime: 3.373us - PrepareTime: 60.863us - SinkTime: 2.351ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.549ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.646ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 4.971us - DeserializeAndMergeTime: 84.232us - ExecTime: 2.381ms - ExprTime: 0ns - HashTableComputeTime: 2.219ms - HashTableEmplaceTime: 1.983ms - HashTableInputCount: 6.399K (6399) - InputRows: 6.399K (6399) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.335ms - OpenTime: 29.690us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 3.819us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 81.931us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.07 KB - OpenTime: 13.907us - ProjectionTime: 0ns - RowsProduced: 6.399K (6399) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s492ms PipelineXTask (index=39):(Active: 15.942ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 15.826ms - CloseTime: 31.464us - GetBlockTime: 55.343us - OpenTime: 2.680us - PrepareTime: 71.507us - SinkTime: 15.667ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.938ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.404ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 19.230us - DeserializeAndMergeTime: 76.886us - ExecTime: 15.726ms - ExprTime: 0ns - HashTableComputeTime: 15.477ms - HashTableEmplaceTime: 15.169ms - HashTableInputCount: 6.442K (6442) - InputRows: 6.442K (6442) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 15.625ms - OpenTime: 43.403us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.486us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 68.895us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 168.43 KB - OpenTime: 12.867us - ProjectionTime: 0ns - RowsProduced: 6.442K (6442) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s395ms PipelineXTask (index=43):(Active: 2.612ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.503ms - CloseTime: 20.970us - GetBlockTime: 67.558us - OpenTime: 3.233us - PrepareTime: 79.637us - SinkTime: 2.383ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.578ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.560ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 17.508us - DeserializeAndMergeTime: 74.400us - ExecTime: 2.432ms - ExprTime: 0ns - HashTableComputeTime: 2.169ms - HashTableEmplaceTime: 1.851ms - HashTableInputCount: 6.333K (6333) - InputRows: 6.333K (6333) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.371ms - OpenTime: 32.974us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 2.946us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 90.232us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 168.00 KB - PeakMemoryUsage: 169.07 KB - OpenTime: 28.889us - ProjectionTime: 0ns - RowsProduced: 6.333K (6333) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s491ms PipelineXTask (index=47):(Active: 2.325ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.811ms - CloseTime: 430.720us - GetBlockTime: 72.32us - OpenTime: 3.67us - PrepareTime: 73.850us - SinkTime: 1.691ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 110.517ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.580us - DeserializeAndMergeTime: 49.487us - ExecTime: 1.722ms - ExprTime: 0ns - HashTableComputeTime: 1.581ms - HashTableEmplaceTime: 1.378ms - HashTableInputCount: 6.216K (6216) - InputRows: 6.216K (6216) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 1.673ms - OpenTime: 30.455us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 427.364us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 523.56us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 420.00 KB - MemoryUsage: - Blocks: 336.00 KB - PeakMemoryUsage: 337.50 KB - OpenTime: 29.508us - ProjectionTime: 0ns - RowsProduced: 6.216K (6216) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s398ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 922.56us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 753.864us - CloseTime: 12.160us - GetBlockTime: 143.443us - OpenTime: 2.910us - PrepareTime: 147.116us - SinkTime: 588.741us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 901.737us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.621ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.79 KB - CloseTime: 10.271us - CompressTime: 0ns - ExecTime: 703.104us - InputRows: 524 - LocalBytesSent: 27.20 KB - LocalSendTime: 91.348us - LocalSentRows: 264 - MemoryUsage: - PeakMemoryUsage: 91.56 KB - MergeBlockTime: 0ns - OpenTime: 104.637us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.269ms - RowsProduced: 524 - RpcAvgTime: 5.403ms - RpcCount: 12 - RpcMaxTime: 5.570ms - RpcMinTime: 5.244ms - RpcSumTime: 64.847ms - SerializeBatchTime: 53.601us - SplitBlockDistributeByChannelTime: 158.218us - SplitBlockHashComputeTime: 14.38us - UncompressedRowBatchSize: 29.99 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 501ns - DeserializeAndMergeTime: 0ns - ExecTime: 152.14us - GetResultsTime: 137.835us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.88us - HashTableSize: 524 - InsertKeysToColumnTime: 34.986us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.966us - ProjectionTime: 0ns - RowsProduced: 524 - SerializeDataTime: 91.843us - SerializeResultTime: 141.62us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s395ms PipelineXTask (index=4):(Active: 1.400ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.238ms - CloseTime: 14.494us - GetBlockTime: 264.642us - OpenTime: 2.963us - PrepareTime: 140.73us - SinkTime: 943.967us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.368ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.735ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.80 KB - CloseTime: 12.253us - CompressTime: 0ns - ExecTime: 1.66ms - InputRows: 474 - LocalBytesSent: 23.74 KB - LocalSendTime: 100.291us - LocalSentRows: 233 - MemoryUsage: - PeakMemoryUsage: 86.06 KB - MergeBlockTime: 0ns - OpenTime: 111.881us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.644ms - RowsProduced: 474 - RpcAvgTime: 5.60ms - RpcCount: 12 - RpcMaxTime: 6.371ms - RpcMinTime: 4.82ms - RpcSumTime: 60.723ms - SerializeBatchTime: 124.811us - SplitBlockDistributeByChannelTime: 236.352us - SplitBlockHashComputeTime: 29.601us - UncompressedRowBatchSize: 28.03 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 817ns - DeserializeAndMergeTime: 0ns - ExecTime: 271.92us - GetResultsTime: 256.891us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.368us - HashTableSize: 474 - InsertKeysToColumnTime: 60.290us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.708us - ProjectionTime: 0ns - RowsProduced: 474 - SerializeDataTime: 174.865us - SerializeResultTime: 261.755us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s397ms PipelineXTask (index=8):(Active: 1.592ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.430ms - CloseTime: 12.308us - GetBlockTime: 276.186us - OpenTime: 2.620us - PrepareTime: 141.231us - SinkTime: 1.134ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.572ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.771ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 33.27 KB - CloseTime: 10.268us - CompressTime: 0ns - ExecTime: 1.254ms - InputRows: 526 - LocalBytesSent: 26.67 KB - LocalSendTime: 148.565us - LocalSentRows: 241 - MemoryUsage: - PeakMemoryUsage: 97.44 KB - MergeBlockTime: 0ns - OpenTime: 110.59us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.515ms - RowsProduced: 526 - RpcAvgTime: 4.703ms - RpcCount: 12 - RpcMaxTime: 6.386ms - RpcMinTime: 4.55ms - RpcSumTime: 56.436ms - SerializeBatchTime: 122.553us - SplitBlockDistributeByChannelTime: 182.934us - SplitBlockHashComputeTime: 26.510us - UncompressedRowBatchSize: 33.96 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 826ns - DeserializeAndMergeTime: 0ns - ExecTime: 282.656us - GetResultsTime: 269.505us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 9.20us - HashTableSize: 526 - InsertKeysToColumnTime: 42.907us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.527us - ProjectionTime: 0ns - RowsProduced: 526 - SerializeDataTime: 206.205us - SerializeResultTime: 273.315us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s396ms PipelineXTask (index=12):(Active: 1.325ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.169ms - CloseTime: 28.405us - GetBlockTime: 262.5us - OpenTime: 1.524us - PrepareTime: 121.543us - SinkTime: 889.16us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.290ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 943.392us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 31.57 KB - CloseTime: 26.313us - CompressTime: 0ns - ExecTime: 1.8ms - InputRows: 549 - LocalBytesSent: 25.82 KB - LocalSendTime: 91.444us - LocalSentRows: 259 - MemoryUsage: - PeakMemoryUsage: 93.06 KB - MergeBlockTime: 0ns - OpenTime: 94.297us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.324ms - RowsProduced: 549 - RpcAvgTime: 5.622ms - RpcCount: 12 - RpcMaxTime: 5.672ms - RpcMinTime: 5.559ms - RpcSumTime: 67.468ms - SerializeBatchTime: 91.513us - SplitBlockDistributeByChannelTime: 228.711us - SplitBlockHashComputeTime: 21.246us - UncompressedRowBatchSize: 32.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 730ns - DeserializeAndMergeTime: 0ns - ExecTime: 267.566us - GetResultsTime: 256.36us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.772us - HashTableSize: 549 - InsertKeysToColumnTime: 42.801us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.683us - ProjectionTime: 0ns - RowsProduced: 549 - SerializeDataTime: 197.713us - SerializeResultTime: 259.594us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s399ms PipelineXTask (index=16):(Active: 3.391ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.217ms - CloseTime: 22.114us - GetBlockTime: 242.268us - OpenTime: 1.857us - PrepareTime: 144.548us - SinkTime: 2.955ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.474ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.341ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.17 KB - CloseTime: 18.28us - CompressTime: 0ns - ExecTime: 3.87ms - InputRows: 493 - LocalBytesSent: 24.48 KB - LocalSendTime: 106.821us - LocalSentRows: 233 - MemoryUsage: - PeakMemoryUsage: 89.31 KB - MergeBlockTime: 0ns - OpenTime: 114.837us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.938ms - RowsProduced: 493 - RpcAvgTime: 5.467ms - RpcCount: 12 - RpcMaxTime: 5.689ms - RpcMinTime: 4.881ms - RpcSumTime: 65.608ms - SerializeBatchTime: 119.690us - SplitBlockDistributeByChannelTime: 214.998us - SplitBlockHashComputeTime: 21.238us - UncompressedRowBatchSize: 29.59 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.139us - DeserializeAndMergeTime: 0ns - ExecTime: 248.435us - GetResultsTime: 236.430us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 4.739us - HashTableSize: 493 - InsertKeysToColumnTime: 61.499us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.127us - ProjectionTime: 0ns - RowsProduced: 493 - SerializeDataTime: 158.931us - SerializeResultTime: 239.484us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s398ms PipelineXTask (index=20):(Active: 841.496us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 663.572us - CloseTime: 23.254us - GetBlockTime: 135.85us - OpenTime: 2.486us - PrepareTime: 147.537us - SinkTime: 510.289us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 811.144us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 934.488us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 29.25 KB - CloseTime: 20.170us - CompressTime: 0ns - ExecTime: 645.527us - InputRows: 521 - LocalBytesSent: 28.53 KB - LocalSendTime: 60.287us - LocalSentRows: 267 - MemoryUsage: - PeakMemoryUsage: 94.38 KB - MergeBlockTime: 0ns - OpenTime: 115.461us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.542ms - RowsProduced: 521 - RpcAvgTime: 5.639ms - RpcCount: 12 - RpcMaxTime: 5.667ms - RpcMinTime: 5.618ms - RpcSumTime: 67.674ms - SerializeBatchTime: 58.640us - SplitBlockDistributeByChannelTime: 136.423us - SplitBlockHashComputeTime: 14.336us - UncompressedRowBatchSize: 29.64 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 951ns - DeserializeAndMergeTime: 0ns - ExecTime: 142.993us - GetResultsTime: 130.746us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 2.985us - HashTableSize: 521 - InsertKeysToColumnTime: 29.675us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.504us - ProjectionTime: 0ns - RowsProduced: 521 - SerializeDataTime: 91.649us - SerializeResultTime: 133.261us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s399ms PipelineXTask (index=24):(Active: 1.489ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.317ms - CloseTime: 33.574us - GetBlockTime: 218.4us - OpenTime: 1.839us - PrepareTime: 132.298us - SinkTime: 1.81ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.448ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.264ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 32.12 KB - CloseTime: 15.8us - CompressTime: 0ns - ExecTime: 1.206ms - InputRows: 561 - LocalBytesSent: 29.99 KB - LocalSendTime: 173.487us - LocalSentRows: 255 - MemoryUsage: - PeakMemoryUsage: 95.06 KB - MergeBlockTime: 0ns - OpenTime: 96.513us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.911ms - RowsProduced: 561 - RpcAvgTime: 5.274ms - RpcCount: 12 - RpcMaxTime: 5.668ms - RpcMinTime: 4.968ms - RpcSumTime: 63.293ms - SerializeBatchTime: 110.877us - SplitBlockDistributeByChannelTime: 200.45us - SplitBlockHashComputeTime: 28.352us - UncompressedRowBatchSize: 33.07 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 823ns - DeserializeAndMergeTime: 0ns - ExecTime: 226.444us - GetResultsTime: 211.235us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.834us - HashTableSize: 561 - InsertKeysToColumnTime: 54.265us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.383us - ProjectionTime: 0ns - RowsProduced: 561 - SerializeDataTime: 138.946us - SerializeResultTime: 215.361us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s398ms PipelineXTask (index=28):(Active: 1.468ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.284ms - CloseTime: 20.704us - GetBlockTime: 294.995us - OpenTime: 2.480us - PrepareTime: 155.904us - SinkTime: 968.552us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.439ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 789.856us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 34.19 KB - CloseTime: 16.680us - CompressTime: 0ns - ExecTime: 1.94ms - InputRows: 546 - LocalBytesSent: 32.48 KB - LocalSendTime: 119.953us - LocalSentRows: 261 - MemoryUsage: - PeakMemoryUsage: 107.25 KB - MergeBlockTime: 0ns - OpenTime: 111.94us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.170ms - RowsProduced: 546 - RpcAvgTime: 5.570ms - RpcCount: 12 - RpcMaxTime: 5.667ms - RpcMinTime: 5.455ms - RpcSumTime: 66.849ms - SerializeBatchTime: 130.813us - SplitBlockDistributeByChannelTime: 207.19us - SplitBlockHashComputeTime: 30.382us - UncompressedRowBatchSize: 34.90 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.131us - DeserializeAndMergeTime: 0ns - ExecTime: 319.708us - GetResultsTime: 286.274us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 7.229us - HashTableSize: 546 - InsertKeysToColumnTime: 48.160us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 25.210us - ProjectionTime: 0ns - RowsProduced: 546 - SerializeDataTime: 217.910us - SerializeResultTime: 290.816us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s399ms PipelineXTask (index=32):(Active: 2.280ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.108ms - CloseTime: 19.345us - GetBlockTime: 283.691us - OpenTime: 2.47us - PrepareTime: 143.788us - SinkTime: 1.805ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.255ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 990.256us DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 33.33 KB - CloseTime: 14.972us - CompressTime: 0ns - ExecTime: 1.924ms - InputRows: 531 - LocalBytesSent: 27.68 KB - LocalSendTime: 124.764us - LocalSentRows: 258 - MemoryUsage: - PeakMemoryUsage: 97.81 KB - MergeBlockTime: 0ns - OpenTime: 104.394us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.8ms - RowsProduced: 531 - RpcAvgTime: 5.328ms - RpcCount: 12 - RpcMaxTime: 5.596ms - RpcMinTime: 4.944ms - RpcSumTime: 63.941ms - SerializeBatchTime: 100.715us - SplitBlockDistributeByChannelTime: 168.487us - SplitBlockHashComputeTime: 27.202us - UncompressedRowBatchSize: 33.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.568us - DeserializeAndMergeTime: 0ns - ExecTime: 295.33us - GetResultsTime: 276.490us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 8.50us - HashTableSize: 531 - InsertKeysToColumnTime: 36.370us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.752us - ProjectionTime: 0ns - RowsProduced: 531 - SerializeDataTime: 205.714us - SerializeResultTime: 280.318us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s399ms PipelineXTask (index=36):(Active: 1.306ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.96ms - CloseTime: 32.430us - GetBlockTime: 258.243us - OpenTime: 19.316us - PrepareTime: 151.824us - SinkTime: 797.909us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.264ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.663ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.31 KB - CloseTime: 10.791us - CompressTime: 0ns - ExecTime: 928.547us - InputRows: 553 - LocalBytesSent: 25.43 KB - LocalSendTime: 99.298us - LocalSentRows: 256 - MemoryUsage: - PeakMemoryUsage: 85.31 KB - MergeBlockTime: 0ns - OpenTime: 120.642us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.892ms - RowsProduced: 553 - RpcAvgTime: 5.801ms - RpcCount: 12 - RpcMaxTime: 5.998ms - RpcMinTime: 5.728ms - RpcSumTime: 69.616ms - SerializeBatchTime: 70.682us - SplitBlockDistributeByChannelTime: 157.690us - SplitBlockHashComputeTime: 22.159us - UncompressedRowBatchSize: 31.25 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 19.760us - DeserializeAndMergeTime: 0ns - ExecTime: 285.903us - GetResultsTime: 251.821us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 6.765us - HashTableSize: 553 - InsertKeysToColumnTime: 32.746us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.26us - ProjectionTime: 0ns - RowsProduced: 553 - SerializeDataTime: 204.668us - SerializeResultTime: 255.252us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s393ms PipelineXTask (index=40):(Active: 1.42ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 874.277us - CloseTime: 17.383us - GetBlockTime: 252.997us - OpenTime: 3.217us - PrepareTime: 142.465us - SinkTime: 598.236us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.16ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.265ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 30.13 KB - CloseTime: 14.297us - CompressTime: 0ns - ExecTime: 725.622us - InputRows: 537 - LocalBytesSent: 26.80 KB - LocalSendTime: 76.987us - LocalSentRows: 265 - MemoryUsage: - PeakMemoryUsage: 93.94 KB - MergeBlockTime: 0ns - OpenTime: 113.692us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.778ms - RowsProduced: 537 - RpcAvgTime: 5.729ms - RpcCount: 12 - RpcMaxTime: 5.791ms - RpcMinTime: 5.670ms - RpcSumTime: 68.755ms - SerializeBatchTime: 81.917us - SplitBlockDistributeByChannelTime: 116.785us - SplitBlockHashComputeTime: 19.228us - UncompressedRowBatchSize: 30.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 878ns - DeserializeAndMergeTime: 0ns - ExecTime: 260.545us - GetResultsTime: 248.91us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 8.92us - HashTableSize: 537 - InsertKeysToColumnTime: 37.797us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.165us - ProjectionTime: 0ns - RowsProduced: 537 - SerializeDataTime: 191.485us - SerializeResultTime: 251.35us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s395ms PipelineXTask (index=44):(Active: 4.91ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.916ms - CloseTime: 20.25us - GetBlockTime: 227.880us - OpenTime: 3.597us - PrepareTime: 146.444us - SinkTime: 3.668ms - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.442ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.121ms DATA_STREAM_SINK_OPERATOR (id=95,dst_id=95): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 28.60 KB - CloseTime: 16.58us - CompressTime: 0ns - ExecTime: 3.785ms - InputRows: 515 - LocalBytesSent: 26.31 KB - LocalSendTime: 97.521us - LocalSentRows: 260 - MemoryUsage: - PeakMemoryUsage: 91.56 KB - MergeBlockTime: 0ns - OpenTime: 100.946us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.298ms - RowsProduced: 515 - RpcAvgTime: 5.467ms - RpcCount: 12 - RpcMaxTime: 5.645ms - RpcMinTime: 5.159ms - RpcSumTime: 65.604ms - SerializeBatchTime: 90.871us - SplitBlockDistributeByChannelTime: 2.863ms - SplitBlockHashComputeTime: 26.709us - UncompressedRowBatchSize: 29.01 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 958ns - DeserializeAndMergeTime: 0ns - ExecTime: 250.883us - GetResultsTime: 215.742us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 5.308us - HashTableSize: 515 - InsertKeysToColumnTime: 40.821us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 22.800us - ProjectionTime: 0ns - RowsProduced: 515 - SerializeDataTime: 156.600us - SerializeResultTime: 225.423us - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 19s394ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 2.503ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.362ms - CloseTime: 16.761us - GetBlockTime: 1.383ms - OpenTime: 3.274us - PrepareTime: 116.408us - SinkTime: 951.251us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.478ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.733ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 944.90us - CloseTime: 1.200us - DeserializeAndMergeTime: 0ns - ExecTime: 973.274us - ExprTime: 6.264us - HashTableComputeTime: 476.903us - HashTableEmplaceTime: 374.938us - HashTableInputCount: 1.873K (1873) - InputRows: 1.873K (1873) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 22.201us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 11.381us - ExecTime: 822.99us - InitProbeSideTime: 194.785us - JoinFilterTimer: 290ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 15.237us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.518us - ProbeFindNextTime: 0ns - ProbeRows: 6.466K (6466) - ProbeTime: 572.980us - ProbeWhenBuildSideOutputTime: 66.854us - ProbeWhenProbeSideOutputTime: 9.705us - ProbeWhenProcessHashTableTime: 124.132us - ProbeWhenSearchHashTableTime: 112.499us - ProjectionTime: 211.109us - RowsProduced: 1.873K (1873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 838ns - DeserializeAndMergeTime: 0ns - ExecTime: 583.852us - GetResultsTime: 563.84us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 49.952us - HashTableSize: 6.466K (6466) - InsertKeysToColumnTime: 313.895us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.623us - ProjectionTime: 0ns - RowsProduced: 6.466K (6466) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s501ms PipelineXTask (index=5):(Active: 2.797ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.640ms - CloseTime: 19.299us - GetBlockTime: 1.711ms - OpenTime: 3.504us - PrepareTime: 129.204us - SinkTime: 896.36us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.767ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.64ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 886.617us - CloseTime: 1.331us - DeserializeAndMergeTime: 0ns - ExecTime: 926.609us - ExprTime: 8.434us - HashTableComputeTime: 360.10us - HashTableEmplaceTime: 237.264us - HashTableInputCount: 1.689K (1689) - InputRows: 1.689K (1689) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 30.956us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 13.496us - ExecTime: 1.69ms - InitProbeSideTime: 300.172us - JoinFilterTimer: 424ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 20.714us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.21us - ProbeFindNextTime: 0ns - ProbeRows: 6.35K (6350) - ProbeTime: 808.490us - ProbeWhenBuildSideOutputTime: 49.355us - ProbeWhenProbeSideOutputTime: 20.725us - ProbeWhenProcessHashTableTime: 133.937us - ProbeWhenSearchHashTableTime: 236.137us - ProjectionTime: 208.181us - RowsProduced: 1.689K (1689) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 1.118us - DeserializeAndMergeTime: 0ns - ExecTime: 677.984us - GetResultsTime: 648.928us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 68.113us - HashTableSize: 6.35K (6350) - InsertKeysToColumnTime: 339.756us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.239us - ProjectionTime: 0ns - RowsProduced: 6.35K (6350) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s501ms PipelineXTask (index=9):(Active: 2.504ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.393ms - CloseTime: 16.449us - GetBlockTime: 1.326ms - OpenTime: 3.450us - PrepareTime: 86.166us - SinkTime: 1.21ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.477ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.692ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.14ms - CloseTime: 911ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.49ms - ExprTime: 6.486us - HashTableComputeTime: 475.122us - HashTableEmplaceTime: 344.970us - HashTableInputCount: 2.103K (2103) - InputRows: 2.103K (2103) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 28.961us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 12.195us - ExecTime: 786.632us - InitProbeSideTime: 202.560us - JoinFilterTimer: 315ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 13.345us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.617us - ProbeFindNextTime: 0ns - ProbeRows: 6.271K (6271) - ProbeTime: 557.624us - ProbeWhenBuildSideOutputTime: 53.554us - ProbeWhenProbeSideOutputTime: 9.331us - ProbeWhenProcessHashTableTime: 119.860us - ProbeWhenSearchHashTableTime: 122.478us - ProjectionTime: 193.741us - RowsProduced: 2.103K (2103) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 708ns - DeserializeAndMergeTime: 0ns - ExecTime: 567.640us - GetResultsTime: 543.191us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 54.618us - HashTableSize: 6.271K (6271) - InsertKeysToColumnTime: 309.951us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.726us - ProjectionTime: 0ns - RowsProduced: 6.271K (6271) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s501ms PipelineXTask (index=13):(Active: 3.370ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.232ms - CloseTime: 19.769us - GetBlockTime: 1.872ms - OpenTime: 4.64us - PrepareTime: 110.106us - SinkTime: 1.324ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.341ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.487ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.312ms - CloseTime: 1.288us - DeserializeAndMergeTime: 0ns - ExecTime: 1.369ms - ExprTime: 9.527us - HashTableComputeTime: 599.694us - HashTableEmplaceTime: 448.729us - HashTableInputCount: 1.847K (1847) - InputRows: 1.847K (1847) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 46.170us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 14.95us - ExecTime: 1.115ms - InitProbeSideTime: 296.860us - JoinFilterTimer: 573ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.759us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.839us - ProbeFindNextTime: 0ns - ProbeRows: 6.359K (6359) - ProbeTime: 759.276us - ProbeWhenBuildSideOutputTime: 59.903us - ProbeWhenProbeSideOutputTime: 13.352us - ProbeWhenProcessHashTableTime: 126.782us - ProbeWhenSearchHashTableTime: 190.727us - ProjectionTime: 305.405us - RowsProduced: 1.847K (1847) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 797ns - DeserializeAndMergeTime: 0ns - ExecTime: 786.455us - GetResultsTime: 756.999us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 65.259us - HashTableSize: 6.359K (6359) - InsertKeysToColumnTime: 420.557us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.319us - ProjectionTime: 0ns - RowsProduced: 6.359K (6359) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s500ms PipelineXTask (index=17):(Active: 2.281ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.143ms - CloseTime: 17.438us - GetBlockTime: 1.290ms - OpenTime: 4.542us - PrepareTime: 111.0us - SinkTime: 825.507us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.255ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.633ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 817.94us - CloseTime: 1.72us - DeserializeAndMergeTime: 0ns - ExecTime: 863.537us - ExprTime: 7.181us - HashTableComputeTime: 357.285us - HashTableEmplaceTime: 282.120us - HashTableInputCount: 1.783K (1783) - InputRows: 1.783K (1783) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 38.557us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 13.137us - ExecTime: 800.349us - InitProbeSideTime: 201.216us - JoinFilterTimer: 306ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 16.694us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.502us - ProbeFindNextTime: 0ns - ProbeRows: 6.407K (6407) - ProbeTime: 601.389us - ProbeWhenBuildSideOutputTime: 78.556us - ProbeWhenProbeSideOutputTime: 8.767us - ProbeWhenProcessHashTableTime: 107.792us - ProbeWhenSearchHashTableTime: 154.420us - ProjectionTime: 159.319us - RowsProduced: 1.783K (1783) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s892ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 636ns - DeserializeAndMergeTime: 0ns - ExecTime: 519.889us - GetResultsTime: 498.449us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 48.160us - HashTableSize: 6.407K (6407) - InsertKeysToColumnTime: 285.284us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.426us - ProjectionTime: 0ns - RowsProduced: 6.407K (6407) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s501ms PipelineXTask (index=21):(Active: 2.480ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.331ms - CloseTime: 17.920us - GetBlockTime: 1.399ms - OpenTime: 5.790us - PrepareTime: 120.44us - SinkTime: 899.442us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.453ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 191.86us AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 889.611us - CloseTime: 1.7us - DeserializeAndMergeTime: 0ns - ExecTime: 931.409us - ExprTime: 6.208us - HashTableComputeTime: 419.524us - HashTableEmplaceTime: 319.325us - HashTableInputCount: 1.949K (1949) - InputRows: 1.949K (1949) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 32.569us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 13.803us - ExecTime: 876.784us - InitProbeSideTime: 223.2us - JoinFilterTimer: 379ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.755us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.478us - ProbeFindNextTime: 0ns - ProbeRows: 6.381K (6381) - ProbeTime: 611.372us - ProbeWhenBuildSideOutputTime: 60.585us - ProbeWhenProbeSideOutputTime: 14.766us - ProbeWhenProcessHashTableTime: 137.561us - ProbeWhenSearchHashTableTime: 103.111us - ProjectionTime: 219.243us - RowsProduced: 1.949K (1949) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s894ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 702ns - DeserializeAndMergeTime: 0ns - ExecTime: 551.27us - GetResultsTime: 531.702us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 46.597us - HashTableSize: 6.381K (6381) - InsertKeysToColumnTime: 306.29us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.546us - ProjectionTime: 0ns - RowsProduced: 6.381K (6381) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s502ms PipelineXTask (index=25):(Active: 1.941ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.802ms - CloseTime: 17.662us - GetBlockTime: 1.56ms - OpenTime: 6.182us - PrepareTime: 110.76us - SinkTime: 717.888us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.915ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.436us AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 710.903us - CloseTime: 919ns - DeserializeAndMergeTime: 0ns - ExecTime: 760.422us - ExprTime: 5.70us - HashTableComputeTime: 383.68us - HashTableEmplaceTime: 278.173us - HashTableInputCount: 2.152K (2152) - InputRows: 2.152K (2152) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 42.795us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.367us - ExecTime: 652.892us - InitProbeSideTime: 176.360us - JoinFilterTimer: 289ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.903us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.282us - ProbeFindNextTime: 0ns - ProbeRows: 6.275K (6275) - ProbeTime: 455.196us - ProbeWhenBuildSideOutputTime: 29.999us - ProbeWhenProbeSideOutputTime: 7.328us - ProbeWhenProcessHashTableTime: 108.10us - ProbeWhenSearchHashTableTime: 82.386us - ProjectionTime: 158.73us - RowsProduced: 2.152K (2152) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s895ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 677ns - DeserializeAndMergeTime: 0ns - ExecTime: 435.482us - GetResultsTime: 417.431us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 30.345us - HashTableSize: 6.275K (6275) - InsertKeysToColumnTime: 220.673us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.636us - ProjectionTime: 0ns - RowsProduced: 6.275K (6275) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s502ms PipelineXTask (index=29):(Active: 3.603ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.463ms - CloseTime: 24.242us - GetBlockTime: 2.28ms - OpenTime: 3.847us - PrepareTime: 107.770us - SinkTime: 1.379ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.568ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.237ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.367ms - CloseTime: 1.695us - DeserializeAndMergeTime: 0ns - ExecTime: 1.414ms - ExprTime: 11.62us - HashTableComputeTime: 530.407us - HashTableEmplaceTime: 341.826us - HashTableInputCount: 2.457K (2457) - InputRows: 2.457K (2457) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 35.368us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 17.215us - ExecTime: 1.232ms - InitProbeSideTime: 294.532us - JoinFilterTimer: 382ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.349us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.705us - ProbeFindNextTime: 0ns - ProbeRows: 6.302K (6302) - ProbeTime: 855.454us - ProbeWhenBuildSideOutputTime: 61.783us - ProbeWhenProbeSideOutputTime: 16.563us - ProbeWhenProcessHashTableTime: 204.608us - ProbeWhenSearchHashTableTime: 194.855us - ProjectionTime: 324.291us - RowsProduced: 2.457K (2457) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 1.645us - DeserializeAndMergeTime: 0ns - ExecTime: 811.602us - GetResultsTime: 776.636us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 99.775us - HashTableSize: 6.302K (6302) - InsertKeysToColumnTime: 417.505us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.369us - ProjectionTime: 0ns - RowsProduced: 6.302K (6302) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s501ms PipelineXTask (index=33):(Active: 3.427ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.305ms - CloseTime: 22.819us - GetBlockTime: 1.906ms - OpenTime: 4.275us - PrepareTime: 90.90us - SinkTime: 1.366ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.395ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.4ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.354ms - CloseTime: 1.113us - DeserializeAndMergeTime: 0ns - ExecTime: 1.397ms - ExprTime: 8.505us - HashTableComputeTime: 586.285us - HashTableEmplaceTime: 442.551us - HashTableInputCount: 2.108K (2108) - InputRows: 2.108K (2108) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 32.864us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 17.192us - ExecTime: 1.246ms - InitProbeSideTime: 275.930us - JoinFilterTimer: 572ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 15.294us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.841us - ProbeFindNextTime: 0ns - ProbeRows: 6.431K (6431) - ProbeTime: 929.139us - ProbeWhenBuildSideOutputTime: 90.513us - ProbeWhenProbeSideOutputTime: 12.677us - ProbeWhenProcessHashTableTime: 203.245us - ProbeWhenSearchHashTableTime: 267.848us - ProjectionTime: 271.135us - RowsProduced: 2.108K (2108) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s892ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 1.35us - DeserializeAndMergeTime: 0ns - ExecTime: 674.587us - GetResultsTime: 649.513us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 64.850us - HashTableSize: 6.431K (6431) - InsertKeysToColumnTime: 368.677us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.370us - ProjectionTime: 0ns - RowsProduced: 6.431K (6431) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s502ms PipelineXTask (index=37):(Active: 3.174ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.48ms - CloseTime: 22.303us - GetBlockTime: 1.916ms - OpenTime: 4.238us - PrepareTime: 93.842us - SinkTime: 1.99ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.142ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.48ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.89ms - CloseTime: 1.155us - DeserializeAndMergeTime: 0ns - ExecTime: 1.127ms - ExprTime: 7.609us - HashTableComputeTime: 533.90us - HashTableEmplaceTime: 432.535us - HashTableInputCount: 1.768K (1768) - InputRows: 1.768K (1768) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 28.717us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 16.990us - ExecTime: 1.110ms - InitProbeSideTime: 285.905us - JoinFilterTimer: 484ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 15.857us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.610us - ProbeFindNextTime: 0ns - ProbeRows: 6.412K (6412) - ProbeTime: 822.740us - ProbeWhenBuildSideOutputTime: 69.391us - ProbeWhenProbeSideOutputTime: 14.751us - ProbeWhenProcessHashTableTime: 165.876us - ProbeWhenSearchHashTableTime: 219.242us - ProjectionTime: 241.428us - RowsProduced: 1.768K (1768) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 1.15us - DeserializeAndMergeTime: 0ns - ExecTime: 835.717us - GetResultsTime: 803.404us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 65.152us - HashTableSize: 6.412K (6412) - InsertKeysToColumnTime: 465.614us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.647us - ProjectionTime: 0ns - RowsProduced: 6.412K (6412) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s499ms PipelineXTask (index=41):(Active: 4.734ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.627ms - CloseTime: 13.790us - GetBlockTime: 3.653ms - OpenTime: 5.197us - PrepareTime: 84.73us - SinkTime: 943.556us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.659ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.795ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 934.714us - CloseTime: 745ns - DeserializeAndMergeTime: 0ns - ExecTime: 960.347us - ExprTime: 8.274us - HashTableComputeTime: 420.790us - HashTableEmplaceTime: 320.521us - HashTableInputCount: 1.844K (1844) - InputRows: 1.844K (1844) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 18.491us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 10.19us - ExecTime: 997.437us - InitProbeSideTime: 262.602us - JoinFilterTimer: 366ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 16.267us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.679us - ProbeFindNextTime: 0ns - ProbeRows: 6.329K (6329) - ProbeTime: 673.791us - ProbeWhenBuildSideOutputTime: 65.770us - ProbeWhenProbeSideOutputTime: 11.72us - ProbeWhenProcessHashTableTime: 137.596us - ProbeWhenSearchHashTableTime: 134.714us - ProjectionTime: 282.982us - RowsProduced: 1.844K (1844) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 796ns - DeserializeAndMergeTime: 0ns - ExecTime: 2.685ms - GetResultsTime: 2.657ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 51.605us - HashTableSize: 6.329K (6329) - InsertKeysToColumnTime: 2.398ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.720us - ProjectionTime: 0ns - RowsProduced: 6.329K (6329) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s499ms PipelineXTask (index=45):(Active: 3.44ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.909ms - CloseTime: 27.323us - GetBlockTime: 1.734ms - OpenTime: 4.446us - PrepareTime: 98.450us - SinkTime: 1.140ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.7ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.420ms AGGREGATION_SINK_OPERATOR (id=94): - BuildTime: 1.131ms - CloseTime: 821ns - DeserializeAndMergeTime: 0ns - ExecTime: 1.161ms - ExprTime: 7.386us - HashTableComputeTime: 558.556us - HashTableEmplaceTime: 418.361us - HashTableInputCount: 1.776K (1776) - InputRows: 1.776K (1776) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 23.98 KB - PeakMemoryUsage: 1.31 MB - SerializeKeyArena: 1.29 MB - MergeTime: 0ns - OpenTime: 22.182us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=93): - BlocksProduced: 3 - BuildOutputBlock: 0ns - CloseTime: 22.843us - ExecTime: 1.131ms - InitProbeSideTime: 308.301us - JoinFilterTimer: 473ns - MemoryUsage: - PeakMemoryUsage: 92.00 KB - ProbeKeyArena: 92.00 KB - OpenTime: 19.419us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.515us - ProbeFindNextTime: 0ns - ProbeRows: 6.347K (6347) - ProbeTime: 820.604us - ProbeWhenBuildSideOutputTime: 76.604us - ProbeWhenProbeSideOutputTime: 16.969us - ProbeWhenProcessHashTableTime: 178.123us - ProbeWhenSearchHashTableTime: 177.765us - ProjectionTime: 253.839us - RowsProduced: 1.776K (1776) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 12s891ms AGGREGATION_OPERATOR (id=92): - BlocksProduced: 2 - CloseTime: 743ns - DeserializeAndMergeTime: 0ns - ExecTime: 641.571us - GetResultsTime: 617.967us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 68.801us - HashTableSize: 6.347K (6347) - InsertKeysToColumnTime: 343.436us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.879us - ProjectionTime: 0ns - RowsProduced: 6.347K (6347) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 6s501ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 616.127us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 532.693us - CloseTime: 11.409us - GetBlockTime: 103.149us - OpenTime: 1.898us - PrepareTime: 65.459us - SinkTime: 380.127us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 591.383us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.204ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.922us - BuildRows: 1.874K (1874) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 183.50us - BuildTableInsertTime: 104.362us - BuildTableTime: 108.473us - CloseTime: 0ns - ExecTime: 399.563us - InputRows: 1.873K (1873) - MemoryUsage: - BuildBlocks: 142.66 KB - BuildKeyArena: 48.00 KB - HashTable: 25.15 KB - PeakMemoryUsage: 211.80 KB - OpenTime: 21.774us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.955us - RuntimeFilterComputeTime: 23.28us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 14.38 KB - CloseTime: 9.210us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 76.672us - ExecTime: 129.394us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 176.87 KB - MemoryUsage: - Blocks: 139.06 KB - PeakMemoryUsage: 139.06 KB - OpenTime: 21.73us - ProjectionTime: 0ns - RowsProduced: 1.873K (1873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s390ms PipelineXTask (index=6):(Active: 625.726us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 556.91us - CloseTime: 7.243us - GetBlockTime: 83.255us - OpenTime: 1.668us - PrepareTime: 55.627us - SinkTime: 414.11us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 602.601us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.501ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.153us - BuildRows: 1.69K (1690) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 217.340us - BuildTableInsertTime: 91.37us - BuildTableTime: 93.258us - CloseTime: 0ns - ExecTime: 429.834us - InputRows: 1.689K (1689) - MemoryUsage: - BuildBlocks: 128.64 KB - BuildKeyArena: 44.00 KB - HashTable: 16.26 KB - PeakMemoryUsage: 184.89 KB - OpenTime: 19.478us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.741us - RuntimeFilterComputeTime: 21.295us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 12.57 KB - CloseTime: 5.814us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 57.326us - ExecTime: 98.439us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 174.68 KB - MemoryUsage: - Blocks: 106.93 KB - PeakMemoryUsage: 106.93 KB - OpenTime: 16.589us - ProjectionTime: 0ns - RowsProduced: 1.689K (1689) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s390ms PipelineXTask (index=10):(Active: 720.138us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 624.182us - CloseTime: 5.802us - GetBlockTime: 90.628us - OpenTime: 2.284us - PrepareTime: 81.712us - SinkTime: 471.682us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 698.916us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.796ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.555us - BuildRows: 2.104K (2104) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 286.980us - BuildTableInsertTime: 105.602us - BuildTableTime: 107.927us - CloseTime: 0ns - ExecTime: 484.116us - InputRows: 2.103K (2103) - MemoryUsage: - BuildBlocks: 160.18 KB - BuildKeyArena: 52.00 KB - HashTable: 26.28 KB - PeakMemoryUsage: 234.45 KB - OpenTime: 16.367us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.84us - RuntimeFilterComputeTime: 18.613us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 16.34 KB - CloseTime: 4.478us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 51.123us - ExecTime: 106.329us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 210.71 KB - MemoryUsage: - Blocks: 108.24 KB - PeakMemoryUsage: 108.24 KB - OpenTime: 18.648us - ProjectionTime: 0ns - RowsProduced: 2.103K (2103) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s392ms PipelineXTask (index=14):(Active: 556.442us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 473.247us - CloseTime: 5.79us - GetBlockTime: 82.404us - OpenTime: 1.713us - PrepareTime: 70.972us - SinkTime: 345.248us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 537.851us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.750ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.571us - BuildRows: 1.848K (1848) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 167.468us - BuildTableInsertTime: 111.670us - BuildTableTime: 113.149us - CloseTime: 0ns - ExecTime: 361.405us - InputRows: 1.847K (1847) - MemoryUsage: - BuildBlocks: 140.66 KB - BuildKeyArena: 44.00 KB - HashTable: 25.03 KB - PeakMemoryUsage: 205.68 KB - OpenTime: 18.250us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.843us - RuntimeFilterComputeTime: 21.644us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 14.31 KB - CloseTime: 3.927us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 50.271us - ExecTime: 97.960us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 181.08 KB - MemoryUsage: - Blocks: 129.43 KB - PeakMemoryUsage: 129.43 KB - OpenTime: 16.578us - ProjectionTime: 0ns - RowsProduced: 1.847K (1847) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s390ms PipelineXTask (index=18):(Active: 597.216us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 515.589us - CloseTime: 4.306us - GetBlockTime: 94.486us - OpenTime: 1.665us - PrepareTime: 70.772us - SinkTime: 341.397us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 561.433us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.368ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.535us - BuildRows: 1.784K (1784) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 172.902us - BuildTableInsertTime: 92.926us - BuildTableTime: 94.456us - CloseTime: 0ns - ExecTime: 360.277us - InputRows: 1.783K (1783) - MemoryUsage: - BuildBlocks: 135.81 KB - BuildKeyArena: 44.00 KB - HashTable: 16.71 KB - PeakMemoryUsage: 192.52 KB - OpenTime: 22.549us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.600us - RuntimeFilterComputeTime: 30.520us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 13.08 KB - CloseTime: 3.563us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 66.86us - ExecTime: 118.529us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 171.58 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 75.03 KB - OpenTime: 26.360us - ProjectionTime: 0ns - RowsProduced: 1.783K (1783) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s392ms PipelineXTask (index=22):(Active: 664.718us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 545.985us - CloseTime: 9.904us - GetBlockTime: 77.372us - OpenTime: 2.26us - PrepareTime: 101.337us - SinkTime: 414.917us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 639.395us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.245ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.744us - BuildRows: 1.95K (1950) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 241.428us - BuildTableInsertTime: 83.594us - BuildTableTime: 86.663us - CloseTime: 0ns - ExecTime: 438.79us - InputRows: 1.949K (1949) - MemoryUsage: - BuildBlocks: 148.45 KB - BuildKeyArena: 48.00 KB - HashTable: 25.53 KB - PeakMemoryUsage: 217.96 KB - OpenTime: 26.534us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.271us - RuntimeFilterComputeTime: 24.224us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 16.38 KB - CloseTime: 7.954us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 98.129us - ExecTime: 130.151us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 186.74 KB - MemoryUsage: - Blocks: 140.49 KB - PeakMemoryUsage: 140.49 KB - OpenTime: 50.626us - ProjectionTime: 0ns - RowsProduced: 1.949K (1949) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s392ms PipelineXTask (index=26):(Active: 672.747us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 577.432us - CloseTime: 7.747us - GetBlockTime: 75.98us - OpenTime: 3.530us - PrepareTime: 68.513us - SinkTime: 448.791us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 639.438us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.640ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.255us - BuildRows: 2.153K (2153) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 194.329us - BuildTableInsertTime: 92.781us - BuildTableTime: 95.351us - CloseTime: 0ns - ExecTime: 481.392us - InputRows: 2.152K (2152) - MemoryUsage: - BuildBlocks: 163.92 KB - BuildKeyArena: 52.00 KB - HashTable: 26.52 KB - PeakMemoryUsage: 238.43 KB - OpenTime: 35.435us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 100.533us - RuntimeFilterComputeTime: 13.292us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 16.15 KB - CloseTime: 6.285us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 58.797us - ExecTime: 89.796us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 191.46 KB - MemoryUsage: - Blocks: 119.40 KB - PeakMemoryUsage: 119.40 KB - OpenTime: 14.334us - ProjectionTime: 0ns - RowsProduced: 2.152K (2152) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s389ms PipelineXTask (index=30):(Active: 629.349us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 560.88us - CloseTime: 4.885us - GetBlockTime: 74.393us - OpenTime: 2.956us - PrepareTime: 56.183us - SinkTime: 436.77us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 610.812us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.249ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.908us - BuildRows: 2.458K (2458) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 223.545us - BuildTableInsertTime: 150.833us - BuildTableTime: 152.512us - CloseTime: 0ns - ExecTime: 452.862us - InputRows: 2.457K (2457) - MemoryUsage: - BuildBlocks: 187.15 KB - BuildKeyArena: 60.00 KB - HashTable: 28.01 KB - PeakMemoryUsage: 271.15 KB - OpenTime: 19.245us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.562us - RuntimeFilterComputeTime: 21.669us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 18.90 KB - CloseTime: 3.594us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 65.349us - ExecTime: 90.92us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 229.90 KB - MemoryUsage: - Blocks: 87.94 KB - PeakMemoryUsage: 87.94 KB - OpenTime: 17.911us - ProjectionTime: 0ns - RowsProduced: 2.457K (2457) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s387ms PipelineXTask (index=34):(Active: 797.598us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 622.476us - CloseTime: 4.891us - GetBlockTime: 96.672us - OpenTime: 2.833us - PrepareTime: 162.322us - SinkTime: 472.555us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 776.493us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.952ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.114us - BuildRows: 2.109K (2109) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 259.810us - BuildTableInsertTime: 124.876us - BuildTableTime: 126.751us - CloseTime: 0ns - ExecTime: 582.317us - InputRows: 2.108K (2108) - MemoryUsage: - BuildBlocks: 160.57 KB - BuildKeyArena: 52.00 KB - HashTable: 26.30 KB - PeakMemoryUsage: 234.86 KB - OpenTime: 113.495us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.970us - RuntimeFilterComputeTime: 23.857us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 15.66 KB - CloseTime: 3.804us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 78.778us - ExecTime: 113.327us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 193.12 KB - MemoryUsage: - Blocks: 80.44 KB - PeakMemoryUsage: 80.44 KB - OpenTime: 18.766us - ProjectionTime: 0ns - RowsProduced: 2.108K (2108) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s388ms PipelineXTask (index=38):(Active: 581.555us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 516.819us - CloseTime: 5.37us - GetBlockTime: 70.492us - OpenTime: 2.19us - PrepareTime: 53.588us - SinkTime: 395.794us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 563.206us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.575ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.860us - BuildRows: 1.769K (1769) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 215.933us - BuildTableInsertTime: 94.341us - BuildTableTime: 96.310us - CloseTime: 0ns - ExecTime: 409.776us - InputRows: 1.768K (1768) - MemoryUsage: - BuildBlocks: 134.66 KB - BuildKeyArena: 44.00 KB - HashTable: 16.64 KB - PeakMemoryUsage: 191.29 KB - OpenTime: 17.121us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.810us - RuntimeFilterComputeTime: 17.486us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 14.41 KB - CloseTime: 3.873us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 36.892us - ExecTime: 88.938us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 169.62 KB - MemoryUsage: - Blocks: 75.03 KB - PeakMemoryUsage: 75.03 KB - OpenTime: 20.647us - ProjectionTime: 0ns - RowsProduced: 1.768K (1768) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s390ms PipelineXTask (index=42):(Active: 553.337us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 455.352us - CloseTime: 4.654us - GetBlockTime: 90.429us - OpenTime: 1.946us - PrepareTime: 86.708us - SinkTime: 308.463us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 532.662us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.636ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.656us - BuildRows: 1.845K (1845) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 157.484us - BuildTableInsertTime: 90.192us - BuildTableTime: 92.105us - CloseTime: 0ns - ExecTime: 341.640us - InputRows: 1.844K (1844) - MemoryUsage: - BuildBlocks: 140.44 KB - BuildKeyArena: 44.00 KB - HashTable: 25.01 KB - PeakMemoryUsage: 205.44 KB - OpenTime: 36.385us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.655us - RuntimeFilterComputeTime: 20.273us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 14.64 KB - CloseTime: 3.706us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 67.476us - ExecTime: 113.589us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 177.49 KB - MemoryUsage: - Blocks: 79.94 KB - PeakMemoryUsage: 79.94 KB - OpenTime: 26.40us - ProjectionTime: 0ns - RowsProduced: 1.844K (1844) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s392ms PipelineXTask (index=46):(Active: 560.60us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 491.652us - CloseTime: 8.30us - GetBlockTime: 83.518us - OpenTime: 2.408us - PrepareTime: 52.554us - SinkTime: 351.143us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 531.979us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.435ms HASH_JOIN_SINK_OPERATOR (id=93): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.274us - BuildRows: 1.777K (1777) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 149.42us - BuildTableInsertTime: 121.668us - BuildTableTime: 124.322us - CloseTime: 0ns - ExecTime: 367.241us - InputRows: 1.776K (1776) - MemoryUsage: - BuildBlocks: 135.27 KB - BuildKeyArena: 44.00 KB - HashTable: 16.68 KB - PeakMemoryUsage: 191.94 KB - OpenTime: 18.772us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.692us - RuntimeFilterComputeTime: 27.749us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=88): - BlocksProduced: 14 - BytesReceived: 14.39 KB - CloseTime: 6.483us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 39.860us - ExecTime: 98.765us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 177.90 KB - MemoryUsage: - Blocks: 86.90 KB - PeakMemoryUsage: 86.90 KB - OpenTime: 13.157us - ProjectionTime: 0ns - RowsProduced: 1.776K (1776) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s387ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 3.382ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.303ms - CloseTime: 13.574us - GetBlockTime: 98.708us - OpenTime: 2.163us - PrepareTime: 56.939us - SinkTime: 3.80ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.345ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.70ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 5.122us - DeserializeAndMergeTime: 88.742us - ExecTime: 3.93ms - ExprTime: 0ns - HashTableComputeTime: 2.926ms - HashTableEmplaceTime: 2.543ms - HashTableInputCount: 6.466K (6466) - InputRows: 6.466K (6466) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 3.53ms - OpenTime: 18.964us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 108.38 KB - CloseTime: 6.862us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 309.969us - ExecTime: 113.979us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 16.923us - ProjectionTime: 0ns - RowsProduced: 6.466K (6466) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s498ms PipelineXTask (index=7):(Active: 3.452ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.382ms - CloseTime: 14.840us - GetBlockTime: 146.655us - OpenTime: 2.368us - PrepareTime: 48.325us - SinkTime: 3.122ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.412ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.309ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 5.754us - DeserializeAndMergeTime: 79.167us - ExecTime: 3.134ms - ExprTime: 0ns - HashTableComputeTime: 2.958ms - HashTableEmplaceTime: 2.478ms - HashTableInputCount: 6.35K (6350) - InputRows: 6.35K (6350) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 3.101ms - OpenTime: 11.317us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 106.62 KB - CloseTime: 7.375us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 337.724us - ExecTime: 161.159us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 17.125us - ProjectionTime: 0ns - RowsProduced: 6.35K (6350) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s498ms PipelineXTask (index=11):(Active: 2.885ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.799ms - CloseTime: 5.378us - GetBlockTime: 114.638us - OpenTime: 1.930us - PrepareTime: 72.807us - SinkTime: 2.584ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.842ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.315ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 1.872us - DeserializeAndMergeTime: 81.0us - ExecTime: 2.610ms - ExprTime: 0ns - HashTableComputeTime: 2.415ms - HashTableEmplaceTime: 1.992ms - HashTableInputCount: 6.271K (6271) - InputRows: 6.271K (6271) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.566ms - OpenTime: 28.218us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 105.83 KB - CloseTime: 2.740us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 420.712us - ExecTime: 129.592us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 18.767us - ProjectionTime: 0ns - RowsProduced: 6.271K (6271) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s497ms PipelineXTask (index=15):(Active: 2.704ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.637ms - CloseTime: 18.973us - GetBlockTime: 105.342us - OpenTime: 2.129us - PrepareTime: 42.241us - SinkTime: 2.452ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.665ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.964ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 4.730us - DeserializeAndMergeTime: 77.365us - ExecTime: 2.465ms - ExprTime: 0ns - HashTableComputeTime: 2.308ms - HashTableEmplaceTime: 1.950ms - HashTableInputCount: 6.359K (6359) - InputRows: 6.359K (6359) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.438ms - OpenTime: 11.155us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 106.84 KB - CloseTime: 11.970us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 295.695us - ExecTime: 127.562us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 16.825us - ProjectionTime: 0ns - RowsProduced: 6.359K (6359) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s498ms PipelineXTask (index=19):(Active: 2.934ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.860ms - CloseTime: 24.410us - GetBlockTime: 80.64us - OpenTime: 2.628us - PrepareTime: 42.515us - SinkTime: 2.679ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.887ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 602.303us AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 13.637us - DeserializeAndMergeTime: 74.687us - ExecTime: 2.702ms - ExprTime: 0ns - HashTableComputeTime: 2.536ms - HashTableEmplaceTime: 2.172ms - HashTableInputCount: 6.407K (6407) - InputRows: 6.407K (6407) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.661ms - OpenTime: 13.419us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 107.50 KB - CloseTime: 8.300us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 351.259us - ExecTime: 95.464us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 14.212us - ProjectionTime: 0ns - RowsProduced: 6.407K (6407) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s499ms PipelineXTask (index=23):(Active: 2.912ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.823ms - CloseTime: 29.797us - GetBlockTime: 73.204us - OpenTime: 3.700us - PrepareTime: 50.977us - SinkTime: 2.657ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.862ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 432.14us AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 10.157us - DeserializeAndMergeTime: 59.542us - ExecTime: 2.680ms - ExprTime: 0ns - HashTableComputeTime: 2.529ms - HashTableEmplaceTime: 2.196ms - HashTableInputCount: 6.381K (6381) - InputRows: 6.381K (6381) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.633ms - OpenTime: 16.810us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 105.96 KB - CloseTime: 17.883us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 278.479us - ExecTime: 91.659us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.850us - ProjectionTime: 0ns - RowsProduced: 6.381K (6381) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s499ms PipelineXTask (index=27):(Active: 2.756ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.660ms - CloseTime: 36.193us - GetBlockTime: 102.199us - OpenTime: 2.603us - PrepareTime: 52.663us - SinkTime: 2.453ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.686ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.580ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 4.895us - DeserializeAndMergeTime: 67.866us - ExecTime: 2.469ms - ExprTime: 0ns - HashTableComputeTime: 2.313ms - HashTableEmplaceTime: 2.11ms - HashTableInputCount: 6.275K (6275) - InputRows: 6.275K (6275) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.438ms - OpenTime: 14.701us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 105.77 KB - CloseTime: 29.853us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 332.608us - ExecTime: 143.590us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 17.599us - ProjectionTime: 0ns - RowsProduced: 6.275K (6275) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s496ms PipelineXTask (index=31):(Active: 2.378ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.317ms - CloseTime: 6.400us - GetBlockTime: 69.185us - OpenTime: 2.178us - PrepareTime: 47.304us - SinkTime: 2.164ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.352ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 432.643us AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.37us - DeserializeAndMergeTime: 67.9us - ExecTime: 2.177ms - ExprTime: 0ns - HashTableComputeTime: 2.29ms - HashTableEmplaceTime: 1.677ms - HashTableInputCount: 6.302K (6302) - InputRows: 6.302K (6302) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.150ms - OpenTime: 13.966us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 106.35 KB - CloseTime: 3.402us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 331.575us - ExecTime: 80.442us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 15.46us - ProjectionTime: 0ns - RowsProduced: 6.302K (6302) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s500ms PipelineXTask (index=35):(Active: 3.825ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.752ms - CloseTime: 15.260us - GetBlockTime: 134.56us - OpenTime: 3.600us - PrepareTime: 48.387us - SinkTime: 3.497ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.784ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.131ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 2.643us - DeserializeAndMergeTime: 119.676us - ExecTime: 3.510ms - ExprTime: 0ns - HashTableComputeTime: 3.181ms - HashTableEmplaceTime: 2.757ms - HashTableInputCount: 6.431K (6431) - InputRows: 6.431K (6431) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 3.475ms - OpenTime: 15.540us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 108.18 KB - CloseTime: 11.750us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 387.120us - ExecTime: 150.633us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.430us - ProjectionTime: 0ns - RowsProduced: 6.431K (6431) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s493ms PipelineXTask (index=39):(Active: 3.231ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.171ms - CloseTime: 11.30us - GetBlockTime: 83.588us - OpenTime: 1.903us - PrepareTime: 42.980us - SinkTime: 2.972ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.197ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.318ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 5.573us - DeserializeAndMergeTime: 102.182us - ExecTime: 2.989ms - ExprTime: 0ns - HashTableComputeTime: 2.791ms - HashTableEmplaceTime: 2.440ms - HashTableInputCount: 6.412K (6412) - InputRows: 6.412K (6412) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.953ms - OpenTime: 16.799us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 107.22 KB - CloseTime: 4.659us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 399.613us - ExecTime: 90.823us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 9.808us - ProjectionTime: 0ns - RowsProduced: 6.412K (6412) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s497ms PipelineXTask (index=43):(Active: 3.295ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.235ms - CloseTime: 6.345us - GetBlockTime: 79.194us - OpenTime: 3.311us - PrepareTime: 46.7us - SinkTime: 3.86ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.270ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 464.759us AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 1.989us - DeserializeAndMergeTime: 80.84us - ExecTime: 3.93ms - ExprTime: 0ns - HashTableComputeTime: 2.919ms - HashTableEmplaceTime: 2.547ms - HashTableInputCount: 6.329K (6329) - InputRows: 6.329K (6329) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 3.51ms - OpenTime: 17.106us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 106.51 KB - CloseTime: 3.522us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 425.250us - ExecTime: 88.738us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 13.116us - ProjectionTime: 0ns - RowsProduced: 6.329K (6329) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s499ms PipelineXTask (index=47):(Active: 2.866ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.800ms - CloseTime: 12.429us - GetBlockTime: 108.547us - OpenTime: 2.923us - PrepareTime: 45.195us - SinkTime: 2.617ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.837ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.226ms AGGREGATION_SINK_OPERATOR (id=92): - BuildTime: 0ns - CloseTime: 5.694us - DeserializeAndMergeTime: 67.523us - ExecTime: 2.642ms - ExprTime: 0ns - HashTableComputeTime: 2.467ms - HashTableEmplaceTime: 2.133ms - HashTableInputCount: 6.347K (6347) - InputRows: 6.347K (6347) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 191.98 KB - PeakMemoryUsage: 843.98 KB - SerializeKeyArena: 652.00 KB - MergeTime: 2.587ms - OpenTime: 22.349us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=91): - BlocksProduced: 10 - BytesReceived: 105.94 KB - CloseTime: 5.450us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 419.541us - ExecTime: 116.344us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 2.58 KB - OpenTime: 8.309us - ProjectionTime: 0ns - RowsProduced: 6.347K (6347) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s495ms Fragment 117: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 1.162ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 397.486us - CloseTime: 50.796us - GetBlockTime: 24.950us - OpenTime: 198.12us - PrepareTime: 508.205us - SinkTime: 150.890us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.102ms - WaitBfTime: 925.100ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 245.743ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.215us - CompressTime: 0ns - ExecTime: 301.771us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 18.604us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 140.879us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 279.637ms - RowsProduced: 0 - RpcAvgTime: 256.638ms - RpcCount: 12 - RpcMaxTime: 256.675ms - RpcMinTime: 256.595ms - RpcSumTime: 3s79ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 242ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 555ns - DeserializeAndMergeTime: 0ns - ExecTime: 35.278us - ExprTime: 0ns - GetResultsTime: 3.777us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 237ns - HashTableSize: 0 - InsertKeysToColumnTime: 293ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.532us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 431ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.972us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.122us - BlocksProduced: 0 - CloseTime: 37.516us - ExecTime: 91.179ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 297.759us - ProcessConjunctTime: 79.758us - ProjectionTime: 2.803us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 67.301ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 90.825ms - 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.677us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [67.301ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.411ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 140ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.381ms - ScannerCtxSchedTime: 67.299ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.555us - ScannerInitTime: 89.118us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 320ns - BlockConditionsFilteredBloomFilterTime: 487ns - BlockConditionsFilteredDictTime: 369ns - BlockConditionsFilteredTime: 8.4us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 537ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.432us - BlockInitTime: 50.885us - BlockLoadTime: 23.163ms - BlocksLoad: 62 - CachedPagesNum: 47 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 17.523ms - FirstReadSeekCount: 61 - FirstReadSeekTime: 31.903us - FirstReadTime: 923.846us - IOTimer: 0ns - InvertedIndexFilterTime: 583ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.807ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 651.425us - OutputIndexResultColumnTimer: 9.704us - RawRowsRead: 245.246K (245246) - 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: 2.927ms - ShortPredEvalTime: 524.260us - TotalPagesNum: 47 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 40.737us PipelineXTask (index=1):(Active: 749.705us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 292.261us - CloseTime: 95.597us - GetBlockTime: 26.178us - OpenTime: 62.401us - PrepareTime: 292.714us - SinkTime: 186.95us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 646.532us - WaitBfTime: 925.294ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 251.996ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.410us - CompressTime: 0ns - ExecTime: 320.425us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 21.908us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 112.169us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 279.719ms - RowsProduced: 0 - RpcAvgTime: 256.793ms - RpcCount: 12 - RpcMaxTime: 256.830ms - RpcMinTime: 256.743ms - RpcSumTime: 3s81ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 360ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.690us - DeserializeAndMergeTime: 0ns - ExecTime: 48.99us - ExprTime: 0ns - GetResultsTime: 4.326us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 115ns - HashTableSize: 0 - InsertKeysToColumnTime: 302ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 37.577us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 747ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.775us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.398us - BlocksProduced: 0 - CloseTime: 63.294us - ExecTime: 84.694ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 124.225us - ProcessConjunctTime: 20.496us - ProjectionTime: 2.138us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 67.455ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 84.486ms - 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.218us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [67.455ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 16.962ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 115ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.985ms - ScannerCtxSchedTime: 67.454ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.522us - ScannerInitTime: 27.821us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 198ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 992ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.128us - BlockInitTime: 29.101us - BlockLoadTime: 16.802ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 13.264ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 42.800us - FirstReadTime: 2.892ms - IOTimer: 0ns - InvertedIndexFilterTime: 273ns - 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: 22.404us - OutputIndexResultColumnTimer: 9.94us - RawRowsRead: 341.69K (341690) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=2):(Active: 1.119ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 479.753us - CloseTime: 53.17us - GetBlockTime: 56.531us - OpenTime: 186.401us - PrepareTime: 391.156us - SinkTime: 207.243us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.55ms - WaitBfTime: 918.985ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 72.932ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 13.289us - CompressTime: 0ns - ExecTime: 312.229us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 38.524us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 92.283us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 259.822ms - RowsProduced: 0 - RpcAvgTime: 250.554ms - RpcCount: 12 - RpcMaxTime: 250.703ms - RpcMinTime: 250.420ms - RpcSumTime: 3s6ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 502ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 760ns - DeserializeAndMergeTime: 0ns - ExecTime: 131.57us - ExprTime: 0ns - GetResultsTime: 11.238us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 139ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.485us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 111.504us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.428us - SerializeKeyTime: 0ns - SerializeResultTime: 15.183us - 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] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.550us - BlocksProduced: 0 - CloseTime: 36.104us - ExecTime: 143.920ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 261.948us - ProcessConjunctTime: 77.427us - ProjectionTime: 1.870us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 70.294ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.584ms - 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.785us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [70.294ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 73.204ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 100ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 25.277ms - ScannerCtxSchedTime: 70.293ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.228us - ScannerInitTime: 76.986us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 190ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.339us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.215us - BlockInitTime: 40.824us - BlockLoadTime: 73.26ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 68.15ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 62.66us - FirstReadTime: 4.87ms - IOTimer: 0ns - InvertedIndexFilterTime: 362ns - 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: 33.350us - OutputIndexResultColumnTimer: 9.187us - RawRowsRead: 343.677K (343677) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=3):(Active: 917.645us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 416.308us - CloseTime: 67.67us - GetBlockTime: 46.514us - OpenTime: 73.509us - PrepareTime: 352.961us - SinkTime: 274.328us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 842.324us - WaitBfTime: 919.181ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 116.657ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.22us - CompressTime: 0ns - ExecTime: 440.923us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 50.612us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 142.830us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 271.460ms - RowsProduced: 0 - RpcAvgTime: 257.449ms - RpcCount: 12 - RpcMaxTime: 257.493ms - RpcMinTime: 257.389ms - RpcSumTime: 3s89ms - 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=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 2.861us - DeserializeAndMergeTime: 0ns - ExecTime: 46.325us - ExprTime: 0ns - GetResultsTime: 9.60us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 151ns - HashTableSize: 0 - InsertKeysToColumnTime: 682ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.323us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.147us - SerializeKeyTime: 0ns - SerializeResultTime: 12.853us - 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: [15313] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.351us - BlocksProduced: 0 - CloseTime: 35.874us - ExecTime: 88.327ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 132.962us - ProcessConjunctTime: 22.698us - ProjectionTime: 2.162us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 70.887ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 88.127ms - 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: [5.263us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [70.887ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 17.176ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 127ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 17.223ms - ScannerCtxSchedTime: 70.885ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.80us - ScannerInitTime: 33.294us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 190ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 966ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.132us - BlockInitTime: 30.734us - BlockLoadTime: 17.38ms - BlocksLoad: 93 - CachedPagesNum: 71 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 13.485ms - FirstReadSeekCount: 184 - FirstReadSeekTime: 48.640us - FirstReadTime: 2.882ms - IOTimer: 0ns - InvertedIndexFilterTime: 257ns - 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.341us - OutputIndexResultColumnTimer: 6.341us - RawRowsRead: 372.571K (372571) - 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 PipelineXTask (index=4):(Active: 683.625us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 298.298us - CloseTime: 37.196us - GetBlockTime: 28.610us - OpenTime: 77.840us - PrepareTime: 262.717us - SinkTime: 174.537us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 638.228us - WaitBfTime: 919.248ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 115.842ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.487us - CompressTime: 0ns - ExecTime: 275.486us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 22.935us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 91.799us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 271.359ms - RowsProduced: 0 - RpcAvgTime: 257.254ms - RpcCount: 12 - RpcMaxTime: 257.298ms - RpcMinTime: 257.214ms - RpcSumTime: 3s87ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 305ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 556ns - DeserializeAndMergeTime: 0ns - ExecTime: 38.716us - ExprTime: 0ns - GetResultsTime: 4.378us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 145ns - HashTableSize: 0 - InsertKeysToColumnTime: 442ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 30.380us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 658ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.636us - 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: [15315] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.399us - BlocksProduced: 0 - CloseTime: 24.880us - ExecTime: 89.421ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 151.405us - ProcessConjunctTime: 18.990us - ProjectionTime: 2.38us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 71.87ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 89.223ms - 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.347us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [71.087ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 18.58ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 148ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.128ms - ScannerCtxSchedTime: 71.85ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.634us - ScannerInitTime: 42.419us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 199ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 983ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 11.680us - BlockInitTime: 31.451us - BlockLoadTime: 17.911ms - BlocksLoad: 95 - CachedPagesNum: 73 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 14.192ms - FirstReadSeekCount: 188 - FirstReadSeekTime: 57.345us - FirstReadTime: 3.0ms - IOTimer: 0ns - InvertedIndexFilterTime: 277ns - 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.603us - OutputIndexResultColumnTimer: 6.535us - RawRowsRead: 379.18K (379180) - 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: 73 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 732.790us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 295.445us - CloseTime: 55.200us - GetBlockTime: 17.954us - OpenTime: 107.839us - PrepareTime: 267.655us - SinkTime: 139.596us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 669.975us - WaitBfTime: 919.992ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 57.729ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.642us - CompressTime: 0ns - ExecTime: 262.111us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 15.641us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 113.60us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 259.626ms - RowsProduced: 0 - RpcAvgTime: 249.930ms - RpcCount: 12 - RpcMaxTime: 250.55ms - RpcMinTime: 249.727ms - RpcSumTime: 2s999ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 298ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.323us - DeserializeAndMergeTime: 0ns - ExecTime: 31.769us - ExprTime: 0ns - GetResultsTime: 3.960us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 146ns - HashTableSize: 0 - InsertKeysToColumnTime: 280ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.782us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 744ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.580us - 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: [15331] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.297us - BlocksProduced: 0 - CloseTime: 42.343us - ExecTime: 159.378ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 165.485us - ProcessConjunctTime: 21.918us - ProjectionTime: 1.470us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 72.222ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 159.159ms - 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.866us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [72.222ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 86.874ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 35ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 12.925ms - ScannerCtxSchedTime: 72.220ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.493us - ScannerInitTime: 33.469us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 187ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 968ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 13.423us - BlockInitTime: 43.224us - BlockLoadTime: 86.744ms - BlocksLoad: 71 - CachedPagesNum: 56 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 84.92ms - FirstReadSeekCount: 140 - FirstReadSeekTime: 34.591us - FirstReadTime: 2.180ms - IOTimer: 0ns - InvertedIndexFilterTime: 261ns - 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: 13.596us - OutputIndexResultColumnTimer: 4.42us - RawRowsRead: 280.538K (280538) - 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: 56 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 960.871us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 433.914us - CloseTime: 113.34us - GetBlockTime: 65.495us - OpenTime: 136.50us - PrepareTime: 269.921us - SinkTime: 207.835us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 838.919us - WaitBfTime: 925.75ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 253.902ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 24.726us - CompressTime: 0ns - ExecTime: 341.354us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 32.862us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 109.264us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 269.102ms - RowsProduced: 0 - RpcAvgTime: 256.885ms - RpcCount: 12 - RpcMaxTime: 256.907ms - RpcMinTime: 256.851ms - RpcSumTime: 3s82ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 458ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.542us - DeserializeAndMergeTime: 0ns - ExecTime: 46.497us - ExprTime: 0ns - GetResultsTime: 12.233us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 285ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.555us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.680us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.338us - SerializeKeyTime: 0ns - SerializeResultTime: 16.428us - 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: [15317] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.659us - BlocksProduced: 0 - CloseTime: 78.633us - ExecTime: 84.576ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 195.60us - ProcessConjunctTime: 17.713us - ProjectionTime: 1.547us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 68.444ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 84.256ms - 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.659us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [68.444ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 15.754ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 173ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 15.809ms - ScannerCtxSchedTime: 68.442ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.320us - ScannerInitTime: 74.834us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 188ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.26us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 7.847us - BlockInitTime: 32.783us - BlockLoadTime: 15.613ms - BlocksLoad: 84 - CachedPagesNum: 64 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 12.363ms - FirstReadSeekCount: 166 - FirstReadSeekTime: 54.119us - FirstReadTime: 2.582ms - IOTimer: 0ns - InvertedIndexFilterTime: 342ns - 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: 29.487us - OutputIndexResultColumnTimer: 5.966us - RawRowsRead: 334.289K (334289) - 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: 64 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 654.654us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 272.876us - CloseTime: 61.573us - GetBlockTime: 24.282us - OpenTime: 63.817us - PrepareTime: 249.524us - SinkTime: 168.989us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 585.315us - WaitBfTime: 925.492ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 241.637ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 23.745us - CompressTime: 0ns - ExecTime: 284.97us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.392us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 91.939us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 279.368ms - RowsProduced: 0 - RpcAvgTime: 256.381ms - RpcCount: 12 - RpcMaxTime: 256.417ms - RpcMinTime: 256.340ms - RpcSumTime: 3s76ms - 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 STREAMING_AGGREGATION_OPERATOR (id=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 726ns - DeserializeAndMergeTime: 0ns - ExecTime: 35.507us - ExprTime: 0ns - GetResultsTime: 3.672us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 112ns - HashTableSize: 0 - InsertKeysToColumnTime: 248ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 27.872us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 600ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.877us - 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: [15319] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.250us - BlocksProduced: 0 - CloseTime: 34.294us - ExecTime: 95.537ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 121.45us - ProcessConjunctTime: 17.836us - ProjectionTime: 2.444us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 68.998ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 95.363ms - 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.787us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [68.998ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 26.286ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 100ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.356ms - ScannerCtxSchedTime: 68.997ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.244us - ScannerInitTime: 28.638us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 245ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.378us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.480us - BlockInitTime: 45.792us - BlockLoadTime: 26.114ms - BlocksLoad: 85 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 20.740ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 62.724us - FirstReadTime: 4.306ms - IOTimer: 0ns - InvertedIndexFilterTime: 497ns - 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: 35.413us - OutputIndexResultColumnTimer: 10.973us - RawRowsRead: 338.501K (338501) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 692.419us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 259.19us - CloseTime: 46.454us - GetBlockTime: 25.503us - OpenTime: 59.255us - PrepareTime: 320.70us - SinkTime: 157.890us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 637.963us - WaitBfTime: 919.318ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.567ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.278us - CompressTime: 0ns - ExecTime: 280.80us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 20.438us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 112.220us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 271.214ms - RowsProduced: 0 - RpcAvgTime: 257.113ms - RpcCount: 12 - RpcMaxTime: 257.158ms - RpcMinTime: 257.63ms - RpcSumTime: 3s85ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 201ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 759ns - DeserializeAndMergeTime: 0ns - ExecTime: 68.231us - ExprTime: 0ns - GetResultsTime: 4.565us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 167ns - HashTableSize: 0 - InsertKeysToColumnTime: 394ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 59.451us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 749ns - SerializeKeyTime: 0ns - SerializeResultTime: 6.711us - 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: [15325] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.480us - BlocksProduced: 0 - CloseTime: 33.116us - ExecTime: 138.897ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 128.234us - ProcessConjunctTime: 17.275us - ProjectionTime: 1.974us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 71.204ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 138.717ms - 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.558us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [71.204ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 67.430ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 115ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 28.499ms - ScannerCtxSchedTime: 71.202ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.332us - ScannerInitTime: 24.214us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 294ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.383us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.992us - BlockInitTime: 36.781us - BlockLoadTime: 67.208ms - BlocksLoad: 86 - CachedPagesNum: 65 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 35.503ms - FirstReadSeekCount: 170 - FirstReadSeekTime: 67.36us - FirstReadTime: 30.657ms - IOTimer: 0ns - InvertedIndexFilterTime: 401ns - 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: 35.476us - OutputIndexResultColumnTimer: 11.57us - RawRowsRead: 341.787K (341787) - 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: 65 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 817.109us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 359.701us - CloseTime: 71.943us - GetBlockTime: 69.703us - OpenTime: 53.815us - PrepareTime: 324.542us - SinkTime: 215.38us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 736.768us - WaitBfTime: 925.551ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 219.83ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 15.982us - CompressTime: 0ns - ExecTime: 371.56us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 33.913us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 140.547us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 260.725ms - RowsProduced: 0 - RpcAvgTime: 248.489ms - RpcCount: 12 - RpcMaxTime: 248.685ms - RpcMinTime: 248.310ms - RpcSumTime: 2s981ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 417ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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.866us - DeserializeAndMergeTime: 0ns - ExecTime: 53.439us - ExprTime: 0ns - GetResultsTime: 15.188us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 105ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.323us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.945us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.184us - SerializeKeyTime: 0ns - SerializeResultTime: 23.458us - 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: [15349] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.236us - BlocksProduced: 0 - CloseTime: 47.376us - ExecTime: 127.576ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 116.607us - ProcessConjunctTime: 15.818us - ProjectionTime: 1.482us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 69.105ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 127.369ms - 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.403us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [69.105ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 58.183ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 112ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.248ms - ScannerCtxSchedTime: 69.103ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.263us - ScannerInitTime: 23.300us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 310ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.750us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 13.960us - BlockInitTime: 49.643us - BlockLoadTime: 57.960ms - BlocksLoad: 106 - CachedPagesNum: 80 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 38.453ms - FirstReadSeekCount: 210 - FirstReadSeekTime: 72.513us - FirstReadTime: 5.217ms - IOTimer: 0ns - InvertedIndexFilterTime: 534ns - 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: 50.600us - OutputIndexResultColumnTimer: 16.152us - RawRowsRead: 423.736K (423736) - 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: 80 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 641.679us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 245.924us - CloseTime: 43.509us - GetBlockTime: 35.210us - OpenTime: 57.128us - PrepareTime: 287.961us - SinkTime: 137.414us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 590.832us - WaitBfTime: 919.369ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 59.535ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.185us - CompressTime: 0ns - ExecTime: 251.309us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 17.462us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 105.994us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 259.734ms - RowsProduced: 0 - RpcAvgTime: 250.226ms - RpcCount: 12 - RpcMaxTime: 250.345ms - RpcMinTime: 250.112ms - RpcSumTime: 3s2ms - 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=90): - BlocksProduced: 0 - BuildConvertToPartitionedTime: 0ns - BuildTime: 0ns - CloseTime: 803ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.511us - ExprTime: 0ns - GetResultsTime: 5.35us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 210ns - HashTableSize: 0 - InsertKeysToColumnTime: 414ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 23.797us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.46us - SerializeKeyTime: 0ns - SerializeResultTime: 7.521us - 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: [15351] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.210us - BlocksProduced: 0 - CloseTime: 32.191us - ExecTime: 157.548ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 127.676us - ProcessConjunctTime: 17.465us - ProjectionTime: 1.404us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 71.419ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.362ms - 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: [5.661us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [71.419ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 85.859ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 40ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 19.865ms - ScannerCtxSchedTime: 71.418ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.159us - ScannerInitTime: 23.430us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 218ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.67us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.704us - BlockInitTime: 30.47us - BlockLoadTime: 85.686ms - BlocksLoad: 104 - CachedPagesNum: 79 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 81.281ms - FirstReadSeekCount: 206 - FirstReadSeekTime: 51.601us - FirstReadTime: 3.703ms - 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: 20.769us - OutputIndexResultColumnTimer: 6.982us - RawRowsRead: 416.268K (416268) - 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: 79 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 636.867us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 263.986us - CloseTime: 42.829us - GetBlockTime: 21.870us - OpenTime: 62.771us - PrepareTime: 260.957us - SinkTime: 163.416us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 587.171us - WaitBfTime: 925.600ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 243.953ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 11.165us - CompressTime: 0ns - ExecTime: 268.356us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 23.332us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 93.997us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 279.508ms - RowsProduced: 0 - RpcAvgTime: 256.509ms - RpcCount: 12 - RpcMaxTime: 256.543ms - RpcMinTime: 256.466ms - RpcSumTime: 3s78ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 290ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 603ns - DeserializeAndMergeTime: 0ns - ExecTime: 29.635us - ExprTime: 0ns - GetResultsTime: 3.530us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 129ns - HashTableSize: 0 - InsertKeysToColumnTime: 254ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.650us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 545ns - SerializeKeyTime: 0ns - SerializeResultTime: 5.189us - 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: [15339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.262us - BlocksProduced: 0 - CloseTime: 28.526us - ExecTime: 93.26ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 116.763us - ProcessConjunctTime: 15.760us - ProjectionTime: 2.189us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 69.368ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 92.863ms - 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: [5.725us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [69.368ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 23.402ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 125ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.471ms - ScannerCtxSchedTime: 69.366ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.432us - ScannerInitTime: 28.2us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 372ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.900us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 11.551us - BlockInitTime: 45.543us - BlockLoadTime: 23.201ms - BlocksLoad: 100 - CachedPagesNum: 76 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 18.530ms - FirstReadSeekCount: 198 - FirstReadSeekTime: 66.773us - FirstReadTime: 3.757ms - IOTimer: 0ns - InvertedIndexFilterTime: 678ns - 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: 29.65us - OutputIndexResultColumnTimer: 9.56us - RawRowsRead: 399.553K (399553) - 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: 76 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 34.11ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 26.22ms - CloseTime: 556.476us - GetBlockTime: 13.184ms - OpenTime: 7.56ms - PrepareTime: 362.963us - SinkTime: 5.680ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 19.549ms - WaitBfTime: 869.368ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 207.378ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 258.52 KB - CloseTime: 30.990us - CompressTime: 0ns - ExecTime: 5.824ms - InputRows: 30.907K (30907) - LocalBytesSent: 650.63 KB - LocalSendTime: 97.132us - LocalSentRows: 15.494K (15494) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 116.863us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s332ms - RowsProduced: 30.907K (30907) - RpcAvgTime: 5s299ms - RpcCount: 12 - RpcMaxTime: 5s307ms - RpcMinTime: 5s292ms - RpcSumTime: 1m3s - SerializeBatchTime: 796.439us - SplitBlockDistributeByChannelTime: 3.471ms - SplitBlockHashComputeTime: 518.690us - UncompressedRowBatchSize: 668.09 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 11.90ms - CloseTime: 401.96us - DeserializeAndMergeTime: 0ns - ExecTime: 13.363ms - ExprTime: 30.883us - GetResultsTime: 1.782ms - HashTableComputeTime: 10.798ms - HashTableEmplaceTime: 9.182ms - HashTableInputCount: 68.654K (68654) - HashTableIterateTime: 209.103us - HashTableSize: 30.907K (30907) - InsertKeysToColumnTime: 697.761us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 31.307us - ProjectionTime: 0ns - RowsProduced: 30.907K (30907) - SerializeDataTime: 572.242us - SerializeKeyTime: 0ns - SerializeResultTime: 1.797ms - 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, 15333, 15279] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.104us - BlocksProduced: 19 - CloseTime: 119.287us - ExecTime: 122.423ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 7.146ms - ProcessConjunctTime: 85.30us - ProjectionTime: 4.869ms - RowsProduced: 68.654K (68654) - RowsRead: 68.654K (68654) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 293.632ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 110.48ms - 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.690us, 11.610us, 11.583ms, ] - PerScannerRowsRead: [0, 0, 68.65K, ] - PerScannerWaitTime: [97.645ms, 97.702ms, 98.284ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 11.105ms - MemoryUsage: - FreeBlocks: 2.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 34.884ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 998ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.61ms - ScannerCtxSchedTime: 293.629ms - ScannerFilterTime: 19.214us - ScannerGetBlockTime: 11.547ms - ScannerInitTime: 6.912ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 753ns - BlockConditionsFilteredBloomFilterTime: 581ns - BlockConditionsFilteredDictTime: 163ns - BlockConditionsFilteredTime: 6.923us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 303ns - BlockInitSeekCount: 33 - BlockInitSeekTime: 34.393us - BlockInitTime: 128.401us - BlockLoadTime: 45.853ms - BlocksLoad: 155 - CachedPagesNum: 139 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 35.805ms - FirstReadSeekCount: 241 - FirstReadSeekTime: 101.615us - FirstReadTime: 5.255ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.73us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.298ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 472.963us - OutputIndexResultColumnTimer: 14.207us - RawRowsRead: 604.659K (604659) - 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.660ms - ShortPredEvalTime: 574.808us - TotalPagesNum: 139 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 24.967us PipelineXTask (index=1):(Active: 137.797ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 136.437ms - CloseTime: 730.206us - GetBlockTime: 101.672ms - OpenTime: 277.575us - PrepareTime: 342.275us - SinkTime: 34.248ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 33.654ms - WaitBfTime: 869.393ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.201ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 254.67 KB - CloseTime: 38.845us - CompressTime: 0ns - ExecTime: 34.432ms - InputRows: 30.552K (30552) - LocalBytesSent: 643.70 KB - LocalSendTime: 214.932us - LocalSentRows: 15.329K (15329) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 152.999us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s212ms - RowsProduced: 30.552K (30552) - RpcAvgTime: 5s164ms - RpcCount: 12 - RpcMaxTime: 5s189ms - RpcMinTime: 5s141ms - RpcSumTime: 1m1s - SerializeBatchTime: 1.579ms - SplitBlockDistributeByChannelTime: 6.770ms - SplitBlockHashComputeTime: 1.274ms - UncompressedRowBatchSize: 659.86 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 97.623ms - CloseTime: 490.147us - DeserializeAndMergeTime: 0ns - ExecTime: 101.761ms - ExprTime: 41.929us - GetResultsTime: 3.475ms - HashTableComputeTime: 97.185ms - HashTableEmplaceTime: 94.791ms - HashTableInputCount: 67.716K (67716) - HashTableIterateTime: 377.820us - HashTableSize: 30.552K (30552) - InsertKeysToColumnTime: 1.492ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 17.944us - ProjectionTime: 0ns - RowsProduced: 30.552K (30552) - SerializeDataTime: 1.174ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.543ms - 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, 15335, 15281] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.35us - BlocksProduced: 19 - CloseTime: 196.882us - ExecTime: 94.567ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 337.801us - ProcessConjunctTime: 47.337us - ProjectionTime: 2.808ms - RowsProduced: 67.716K (67716) - RowsRead: 67.716K (67716) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 225.15ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 90.836ms - 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.402us, 11.645us, 9.302ms, ] - PerScannerRowsRead: [0, 0, 67.72K, ] - PerScannerWaitTime: [74.279ms, 74.550ms, 76.184ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 7.162ms - MemoryUsage: - FreeBlocks: 2.09 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 62.389ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.516us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.487ms - ScannerCtxSchedTime: 225.10ms - ScannerFilterTime: 13.516us - ScannerGetBlockTime: 9.276ms - ScannerInitTime: 158.410us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 891ns - BlockConditionsFilteredBloomFilterTime: 350ns - BlockConditionsFilteredDictTime: 164ns - BlockConditionsFilteredTime: 9.695us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 297ns - BlockInitSeekCount: 49 - BlockInitSeekTime: 46.133us - BlockInitTime: 161.453us - BlockLoadTime: 70.907ms - BlocksLoad: 160 - CachedPagesNum: 144 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 60.24ms - FirstReadSeekCount: 248 - FirstReadSeekTime: 137.945us - FirstReadTime: 5.414ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.644us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.460ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 546.622us - OutputIndexResultColumnTimer: 18.845us - RawRowsRead: 624.718K (624718) - 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.920ms - ShortPredEvalTime: 690.392us - TotalPagesNum: 144 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 33.109us PipelineXTask (index=2):(Active: 30.80ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.934ms - CloseTime: 597.958us - GetBlockTime: 19.720ms - OpenTime: 174.359us - PrepareTime: 362.766us - SinkTime: 8.899ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 28.280ms - WaitBfTime: 870.39ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 193.493ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 254.46 KB - CloseTime: 19.444us - CompressTime: 0ns - ExecTime: 9.41ms - InputRows: 30.201K (30201) - LocalBytesSent: 632.82 KB - LocalSendTime: 101.714us - LocalSentRows: 15.07K (15070) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 127.682us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s212ms - RowsProduced: 30.201K (30201) - RpcAvgTime: 5s164ms - RpcCount: 12 - RpcMaxTime: 5s189ms - RpcMinTime: 5s143ms - RpcSumTime: 1m1s - SerializeBatchTime: 914.903us - SplitBlockDistributeByChannelTime: 5.553ms - SplitBlockHashComputeTime: 889.37us - UncompressedRowBatchSize: 655.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 16.615ms - CloseTime: 386.241us - DeserializeAndMergeTime: 0ns - ExecTime: 19.760ms - ExprTime: 36.483us - GetResultsTime: 2.611ms - HashTableComputeTime: 16.213ms - HashTableEmplaceTime: 13.318ms - HashTableInputCount: 66.761K (66761) - HashTableIterateTime: 266.459us - HashTableSize: 30.201K (30201) - InsertKeysToColumnTime: 1.124ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 33.583us - ProjectionTime: 0ns - RowsProduced: 30.201K (30201) - SerializeDataTime: 894.293us - SerializeKeyTime: 0ns - SerializeResultTime: 2.646ms - 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, 15321, 15283] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.851us - BlocksProduced: 19 - CloseTime: 177.453us - ExecTime: 109.261ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 289.969us - ProcessConjunctTime: 25.798us - ProjectionTime: 4.573ms - RowsProduced: 66.761K (66761) - RowsRead: 66.761K (66761) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 250.581ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 103.867ms - 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: [11.444us, 4.173us, 12.696ms, ] - PerScannerRowsRead: [0, 0, 66.76K, ] - PerScannerWaitTime: [82.204ms, 83.273ms, 85.103ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 12.303ms - MemoryUsage: - FreeBlocks: 2.15 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 69.926ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.336us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 53.704ms - ScannerCtxSchedTime: 250.574ms - ScannerFilterTime: 19.341us - ScannerGetBlockTime: 12.665ms - ScannerInitTime: 83.118us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 806ns - BlockConditionsFilteredBloomFilterTime: 234ns - BlockConditionsFilteredDictTime: 150ns - BlockConditionsFilteredTime: 7.607us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 193ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 32.503us - BlockInitTime: 151.507us - BlockLoadTime: 81.940ms - BlocksLoad: 165 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 69.794ms - FirstReadSeekCount: 262 - FirstReadSeekTime: 123.264us - FirstReadTime: 4.419ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.432us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.558ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.549ms - OutputIndexResultColumnTimer: 16.134us - RawRowsRead: 645.772K (645772) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 242.615K (242615) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 2.977ms - ShortPredEvalTime: 1.73ms - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 39.734us PipelineXTask (index=3):(Active: 26.986ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.794ms - CloseTime: 718.602us - GetBlockTime: 19.658ms - OpenTime: 135.224us - PrepareTime: 328.826us - SinkTime: 5.868ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.971ms - WaitBfTime: 870.211ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 202.657ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 253.91 KB - CloseTime: 20.640us - CompressTime: 0ns - ExecTime: 6.12ms - InputRows: 30.3K (30300) - LocalBytesSent: 634.67 KB - LocalSendTime: 76.598us - LocalSentRows: 15.114K (15114) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 127.952us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s259ms - RowsProduced: 30.3K (30300) - RpcAvgTime: 5s218ms - RpcCount: 12 - RpcMaxTime: 5s236ms - RpcMinTime: 5s202ms - RpcSumTime: 1m2s - SerializeBatchTime: 855.642us - SplitBlockDistributeByChannelTime: 3.87ms - SplitBlockHashComputeTime: 773.734us - UncompressedRowBatchSize: 658.26 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 16.775ms - CloseTime: 557.140us - DeserializeAndMergeTime: 0ns - ExecTime: 19.807ms - ExprTime: 35.215us - GetResultsTime: 2.377ms - HashTableComputeTime: 16.343ms - HashTableEmplaceTime: 13.997ms - HashTableInputCount: 68.072K (68072) - HashTableIterateTime: 245.493us - HashTableSize: 30.3K (30300) - InsertKeysToColumnTime: 1.2ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 18.846us - ProjectionTime: 0ns - RowsProduced: 30.3K (30300) - SerializeDataTime: 857.64us - SerializeKeyTime: 0ns - SerializeResultTime: 2.398ms - 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, 15323, 15285] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.885us - BlocksProduced: 19 - CloseTime: 133.891us - ExecTime: 108.534ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 239.644us - ProcessConjunctTime: 29.882us - ProjectionTime: 3.433ms - RowsProduced: 68.072K (68072) - RowsRead: 68.072K (68072) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 257.131ms - TabletNum: 3 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 104.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] - DeleteConditionPredicates: ComparisonPredicateBase(DATETIMEV2, GE), column_id=3, opposite=true - PerScannerRunningTime: [7.210us, 8.313us, 17.460ms, ] - PerScannerRowsRead: [0, 0, 68.07K, ] - PerScannerWaitTime: [84.982ms, 85.861ms, 86.286ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 17.181ms - MemoryUsage: - FreeBlocks: 2.16 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 56.45ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.536us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.485ms - ScannerCtxSchedTime: 257.125ms - ScannerFilterTime: 12.718us - ScannerGetBlockTime: 17.436ms - ScannerInitTime: 81.812us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 720ns - BlockConditionsFilteredBloomFilterTime: 497ns - BlockConditionsFilteredDictTime: 220ns - BlockConditionsFilteredTime: 7.267us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 325ns - BlockInitSeekCount: 34 - BlockInitSeekTime: 42.582us - BlockInitTime: 152.590us - BlockLoadTime: 72.837ms - BlocksLoad: 167 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 54.744ms - FirstReadSeekCount: 307 - FirstReadSeekTime: 135.216us - FirstReadTime: 5.999ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.213us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 10.233ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 226.656us - OutputIndexResultColumnTimer: 15.797us - RawRowsRead: 650.634K (650634) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 0 - RowsShortCircuitPredFiltered: 0 - RowsShortCircuitPredInput: 75.379K (75379) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 655.872us - ShortPredEvalTime: 106.267us - TotalPagesNum: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 9.92us PipelineXTask (index=4):(Active: 919.471us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 420.976us - CloseTime: 64.392us - GetBlockTime: 50.911us - OpenTime: 132.246us - PrepareTime: 292.842us - SinkTime: 215.381us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 845.193us - WaitBfTime: 870.338ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 209.10ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.670us - CompressTime: 0ns - ExecTime: 340.26us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.359us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 116.389us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s215ms - RowsProduced: 0 - RpcAvgTime: 5s196ms - RpcCount: 12 - RpcMaxTime: 5s196ms - RpcMinTime: 5s195ms - RpcSumTime: 1m2s - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 392ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 398ns - DeserializeAndMergeTime: 0ns - ExecTime: 42.906us - ExprTime: 0ns - GetResultsTime: 5.993us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 125ns - HashTableSize: 0 - InsertKeysToColumnTime: 590ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 32.696us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 942ns - SerializeKeyTime: 0ns - SerializeResultTime: 8.411us - 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, 15347] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.53us - BlocksProduced: 0 - CloseTime: 53.264us - ExecTime: 119.429ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 200.418us - ProcessConjunctTime: 21.148us - ProjectionTime: 3.494us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 173.665ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 119.133ms - 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.632us, 8.316us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [86.507ms, 87.157ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 107.211ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 146ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 62.980ms - ScannerCtxSchedTime: 173.662ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.851us - ScannerInitTime: 88.283us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 595ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.121us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 30 - BlockInitSeekTime: 30.776us - BlockInitTime: 132.889us - BlockLoadTime: 106.627ms - BlocksLoad: 191 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 93.993ms - FirstReadSeekCount: 378 - FirstReadSeekTime: 232.80us - FirstReadTime: 10.384ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.112us - 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: 99.34us - OutputIndexResultColumnTimer: 21.235us - RawRowsRead: 761.668K (761668) - 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: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=5):(Active: 1.152ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 556.609us - CloseTime: 157.437us - GetBlockTime: 108.883us - OpenTime: 122.197us - PrepareTime: 307.356us - SinkTime: 292.525us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 983.292us - WaitBfTime: 869.163ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 194.952ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 33.889us - CompressTime: 0ns - ExecTime: 429.395us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 50.782us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 103.814us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s69ms - RowsProduced: 0 - RpcAvgTime: 5s45ms - RpcCount: 12 - RpcMaxTime: 5s50ms - RpcMinTime: 5s41ms - RpcSumTime: 1m - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 669ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 3.677us - DeserializeAndMergeTime: 0ns - ExecTime: 48.362us - ExprTime: 0ns - GetResultsTime: 13.765us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 154ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.453us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.761us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 2.57us - SerializeKeyTime: 0ns - SerializeResultTime: 18.872us - 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, 15353] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 2.330us - BlocksProduced: 0 - CloseTime: 102.726us - ExecTime: 103.795ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 207.746us - ProcessConjunctTime: 39.567us - ProjectionTime: 2.663us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 175.765ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 103.399ms - 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.672us, 4.859us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [87.593ms, 88.171ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 36.779ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 215ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 36.761ms - ScannerCtxSchedTime: 175.762ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.809us - ScannerInitTime: 54.10us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 543ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.547us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 19.125us - BlockInitTime: 72.770us - BlockLoadTime: 36.441ms - BlocksLoad: 192 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 28.464ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 114.905us - FirstReadTime: 6.455ms - IOTimer: 0ns - InvertedIndexFilterTime: 847ns - 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: 45.92us - OutputIndexResultColumnTimer: 11.658us - RawRowsRead: 765.16K (765160) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=6):(Active: 1.536ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 778.75us - CloseTime: 174.249us - GetBlockTime: 108.814us - OpenTime: 275.137us - PrepareTime: 297.780us - SinkTime: 357.444us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.349ms - WaitBfTime: 855.655ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 115.133ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 25.958us - CompressTime: 0ns - ExecTime: 488.809us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 57.933us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 105.668us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s628ms - RowsProduced: 0 - RpcAvgTime: 4s610ms - RpcCount: 12 - RpcMaxTime: 4s611ms - RpcMinTime: 4s605ms - RpcSumTime: 55s326ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 683ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.480us - DeserializeAndMergeTime: 0ns - ExecTime: 49.6us - ExprTime: 0ns - GetResultsTime: 17.745us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 374ns - HashTableSize: 0 - InsertKeysToColumnTime: 711ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 22.50us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.485us - SerializeKeyTime: 0ns - SerializeResultTime: 21.942us - 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, 15355] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.530us - BlocksProduced: 0 - CloseTime: 139.644us - ExecTime: 98.636ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 329.14us - ProcessConjunctTime: 88.288us - ProjectionTime: 2.889us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 163.545ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 98.82ms - 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.004us, 7.402us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [81.640ms, 81.905ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 49.755ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 198ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.385ms - ScannerCtxSchedTime: 163.542ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.377us - ScannerInitTime: 136.765us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 594ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.255us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 13 - BlockInitSeekTime: 18.146us - BlockInitTime: 67.722us - BlockLoadTime: 49.375ms - BlocksLoad: 193 - CachedPagesNum: 149 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 39.206ms - FirstReadSeekCount: 382 - FirstReadSeekTime: 170.459us - FirstReadTime: 8.180ms - IOTimer: 0ns - InvertedIndexFilterTime: 791ns - 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.373us - OutputIndexResultColumnTimer: 20.190us - RawRowsRead: 772.394K (772394) - 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: 149 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=7):(Active: 1.66ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 502.964us - CloseTime: 154.308us - GetBlockTime: 99.837us - OpenTime: 93.443us - PrepareTime: 307.502us - SinkTime: 286.30us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 902.527us - WaitBfTime: 870.584ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 219.104ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.446us - CompressTime: 0ns - ExecTime: 436.949us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 45.606us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 132.218us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s216ms - RowsProduced: 0 - RpcAvgTime: 5s196ms - RpcCount: 12 - RpcMaxTime: 5s196ms - RpcMinTime: 5s196ms - RpcSumTime: 1m2s - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 400ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.488us - DeserializeAndMergeTime: 0ns - ExecTime: 41.223us - ExprTime: 0ns - GetResultsTime: 9.83us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 152ns - HashTableSize: 0 - InsertKeysToColumnTime: 610ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 24.304us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 937ns - SerializeKeyTime: 0ns - SerializeResultTime: 12.692us - 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, 15337] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.467us - BlocksProduced: 0 - CloseTime: 126.319us - ExecTime: 108.557ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 168.703us - ProcessConjunctTime: 20.534us - ProjectionTime: 2.823us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 177.894ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 108.177ms - 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.730us, 4.411us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [88.099ms, 89.794ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 75.45ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 228ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.322ms - ScannerCtxSchedTime: 177.890ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.272us - ScannerInitTime: 50.348us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 488ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.356us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 15 - BlockInitSeekTime: 20.329us - BlockInitTime: 74.931us - BlockLoadTime: 74.762ms - BlocksLoad: 192 - CachedPagesNum: 147 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 43.21ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 112.755us - FirstReadTime: 30.452ms - IOTimer: 0ns - InvertedIndexFilterTime: 727ns - 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: 49.99us - OutputIndexResultColumnTimer: 12.533us - RawRowsRead: 767.593K (767593) - 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: 147 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=8):(Active: 961.141us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 471.638us - CloseTime: 76.358us - GetBlockTime: 62.171us - OpenTime: 101.238us - PrepareTime: 302.979us - SinkTime: 280.934us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 874.105us - WaitBfTime: 870.667ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 209.420ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 7.179us - CompressTime: 0ns - ExecTime: 420.342us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 34.197us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 132.668us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s216ms - RowsProduced: 0 - RpcAvgTime: 5s196ms - RpcCount: 12 - RpcMaxTime: 5s196ms - RpcMinTime: 5s196ms - RpcSumTime: 1m2s - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 408ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 339ns - DeserializeAndMergeTime: 0ns - ExecTime: 49.152us - ExprTime: 0ns - GetResultsTime: 10.227us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 128ns - HashTableSize: 0 - InsertKeysToColumnTime: 600ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 34.234us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 4.9us - SerializeKeyTime: 0ns - SerializeResultTime: 13.85us - 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, 15341] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.722us - BlocksProduced: 0 - CloseTime: 66.618us - ExecTime: 118.734ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 165.474us - ProcessConjunctTime: 18.513us - ProjectionTime: 2.660us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 187.503ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 118.454ms - 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.101us, 5.125us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [90.466ms, 97.037ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 73.54ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 188ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 34.495ms - ScannerCtxSchedTime: 187.500ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.189us - ScannerInitTime: 53.961us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 488ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.679us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 22.985us - BlockInitTime: 83.424us - BlockLoadTime: 72.743ms - BlocksLoad: 192 - CachedPagesNum: 148 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 65.879ms - FirstReadSeekCount: 380 - FirstReadSeekTime: 88.480us - FirstReadTime: 5.835ms - IOTimer: 0ns - InvertedIndexFilterTime: 647ns - 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: 32.623us - OutputIndexResultColumnTimer: 10.462us - RawRowsRead: 769.413K (769413) - 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: 148 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=9):(Active: 1.952ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.169ms - CloseTime: 135.339us - GetBlockTime: 210.720us - OpenTime: 155.299us - PrepareTime: 482.940us - SinkTime: 761.721us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.805ms - WaitBfTime: 872.586ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 204.135ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 19.567us - CompressTime: 0ns - ExecTime: 912.551us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 87.616us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 132.90us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s321ms - RowsProduced: 0 - RpcAvgTime: 5s292ms - RpcCount: 12 - RpcMaxTime: 5s296ms - RpcMinTime: 5s288ms - RpcSumTime: 1m3s - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 677ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.191us - DeserializeAndMergeTime: 0ns - ExecTime: 177.656us - ExprTime: 0ns - GetResultsTime: 32.564us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 119ns - HashTableSize: 0 - InsertKeysToColumnTime: 1.131us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 135.625us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.832us - SerializeKeyTime: 0ns - SerializeResultTime: 36.526us - 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: [15311, 15343] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.462us - BlocksProduced: 0 - CloseTime: 107.266us - ExecTime: 131.312ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 221.534us - ProcessConjunctTime: 36.228us - ProjectionTime: 4.586us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 197.253ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 130.811ms - 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.800us, 9.893us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [97.448ms, 99.804ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 68.956ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 221ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 63.752ms - ScannerCtxSchedTime: 197.249ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.711us - ScannerInitTime: 90.720us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 700ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.474us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 24.259us - BlockInitTime: 106.425us - BlockLoadTime: 68.514ms - BlocksLoad: 190 - CachedPagesNum: 145 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 52.181ms - FirstReadSeekCount: 376 - FirstReadSeekTime: 186.769us - FirstReadTime: 10.366ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.134us - 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: 66.267us - OutputIndexResultColumnTimer: 19.710us - RawRowsRead: 759.906K (759906) - 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: 145 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=10):(Active: 979.333us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 436.819us - CloseTime: 108.383us - GetBlockTime: 84.111us - OpenTime: 102.570us - PrepareTime: 321.895us - SinkTime: 215.386us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 852.677us - WaitBfTime: 872.736ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.893ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.651us - CompressTime: 0ns - ExecTime: 361.259us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 35.684us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 127.483us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s325ms - RowsProduced: 0 - RpcAvgTime: 5s300ms - RpcCount: 12 - RpcMaxTime: 5s300ms - RpcMinTime: 5s300ms - RpcSumTime: 1m3s - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 538ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 2.330us - DeserializeAndMergeTime: 0ns - ExecTime: 38.512us - ExprTime: 0ns - GetResultsTime: 8.834us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 53ns - HashTableSize: 0 - InsertKeysToColumnTime: 676ns - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 0.00 - PeakMemoryUsage: 0.00 - SerializeKeyArena: 0.00 - MergeTime: 0ns - OpenTime: 20.531us - ProjectionTime: 0ns - RowsProduced: 0 - SerializeDataTime: 1.853us - SerializeKeyTime: 0ns - SerializeResultTime: 13.423us - 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: [15327, 15345] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 1.729us - BlocksProduced: 0 - CloseTime: 82.863us - ExecTime: 141.462ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 182.95us - ProcessConjunctTime: 24.108us - ProjectionTime: 3.638us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 200.585ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 141.127ms - 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: [5.705us, 7.201us, ] - PerScannerRowsRead: [0, 0, ] - PerScannerWaitTime: [99.997ms, 100.588ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 160.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 87.300ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 135ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 47.81ms - ScannerCtxSchedTime: 200.583ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 3.140us - ScannerInitTime: 55.498us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 614ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.824us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 16 - BlockInitSeekTime: 19.630us - BlockInitTime: 75.857us - BlockLoadTime: 86.957ms - BlocksLoad: 170 - CachedPagesNum: 132 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 45.422ms - FirstReadSeekCount: 336 - FirstReadSeekTime: 130.651us - FirstReadTime: 40.2ms - IOTimer: 0ns - InvertedIndexFilterTime: 799ns - 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.907us - OutputIndexResultColumnTimer: 16.875us - RawRowsRead: 681.79K (681790) - 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: 132 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 0ns PipelineXTask (index=11):(Active: 18.941ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 17.710ms - CloseTime: 533.479us - GetBlockTime: 12.790ms - OpenTime: 226.437us - PrepareTime: 457.829us - SinkTime: 4.594ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 18.271ms - WaitBfTime: 870.713ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 66.50ms DATA_STREAM_SINK_OPERATOR (id=91,dst_id=91): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 257.57 KB - CloseTime: 19.301us - CompressTime: 0ns - ExecTime: 4.722ms - InputRows: 30.459K (30459) - LocalBytesSent: 633.33 KB - LocalSendTime: 93.852us - LocalSentRows: 15.082K (15082) - MemoryUsage: - PeakMemoryUsage: 1.97 MB - MergeBlockTime: 0ns - OpenTime: 113.63us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4s535ms - RowsProduced: 30.459K (30459) - RpcAvgTime: 4s506ms - RpcCount: 12 - RpcMaxTime: 4s513ms - RpcMinTime: 4s498ms - RpcSumTime: 54s79ms - SerializeBatchTime: 877.525us - SplitBlockDistributeByChannelTime: 2.209ms - SplitBlockHashComputeTime: 497.299us - UncompressedRowBatchSize: 666.51 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 10.665ms - CloseTime: 411.707us - DeserializeAndMergeTime: 0ns - ExecTime: 12.991ms - ExprTime: 19.615us - GetResultsTime: 1.826ms - HashTableComputeTime: 10.282ms - HashTableEmplaceTime: 8.521ms - HashTableInputCount: 67.464K (67464) - HashTableIterateTime: 249.30us - HashTableSize: 30.459K (30459) - InsertKeysToColumnTime: 690.149us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 4.43 MB - SerializeKeyArena: 2.93 MB - MergeTime: 0ns - OpenTime: 26.466us - ProjectionTime: 0ns - RowsProduced: 30.459K (30459) - SerializeDataTime: 694.51us - SerializeKeyTime: 0ns - SerializeResultTime: 1.853ms - 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: [15329, 15277] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 4.470us - BlocksProduced: 19 - CloseTime: 96.433us - ExecTime: 116.279ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 443.305us - ProcessConjunctTime: 58.677us - ProjectionTime: 4.608ms - RowsProduced: 67.464K (67464) - RowsRead: 67.464K (67464) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 195.607ms - TabletNum: 2 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 110.902ms - 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: [4.658us, 11.989ms, ] - PerScannerRowsRead: [0, 67.46K, ] - PerScannerWaitTime: [97.066ms, 98.540ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 11.501ms - MemoryUsage: - FreeBlocks: 2.15 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 14.978ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 899ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.310ms - ScannerCtxSchedTime: 195.603ms - ScannerFilterTime: 17.864us - ScannerGetBlockTime: 11.955ms - ScannerInitTime: 128.522us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 663ns - BlockConditionsFilteredBloomFilterTime: 644ns - BlockConditionsFilteredDictTime: 324ns - BlockConditionsFilteredTime: 8.734us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 409ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 35.527us - BlockInitTime: 144.754us - BlockLoadTime: 26.411ms - BlocksLoad: 95 - CachedPagesNum: 93 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 20.920ms - FirstReadSeekCount: 165 - FirstReadSeekTime: 67.689us - FirstReadTime: 2.681ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.118us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.568ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 243.521us - OutputIndexResultColumnTimer: 7.146us - RawRowsRead: 366.774K (366774) - 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: 897.924us - ShortPredEvalTime: 172.878us - TotalPagesNum: 93 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 13.261us Fragment 118: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 4.419ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 4.167ms - CloseTime: 44.278us - GetBlockTime: 1.717ms - OpenTime: 8.316us - PrepareTime: 189.726us - SinkTime: 2.282ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.348ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.315ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.80 KB - CloseTime: 12.559us - CompressTime: 0ns - ExecTime: 2.427ms - InputRows: 3.438K (3438) - LocalBytesSent: 114.62 KB - LocalSendTime: 154.405us - LocalSentRows: 1.505K (1505) - MemoryUsage: - PeakMemoryUsage: 358.50 KB - MergeBlockTime: 0ns - OpenTime: 139.668us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.42ms - RowsProduced: 3.438K (3438) - RpcAvgTime: 8.52ms - RpcCount: 12 - RpcMaxTime: 10.650ms - RpcMinTime: 5.751ms - RpcSumTime: 96.633ms - SerializeBatchTime: 289.108us - SplitBlockDistributeByChannelTime: 1.16ms - SplitBlockHashComputeTime: 107.854us - UncompressedRowBatchSize: 153.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 27.948us - ExecTime: 1.657ms - InitProbeSideTime: 333.608us - JoinFilterTimer: 1.585us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 14.979us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.405us - ProbeFindNextTime: 0ns - ProbeRows: 3.438K (3438) - ProbeTime: 1.422ms - ProbeWhenBuildSideOutputTime: 84.279us - ProbeWhenProbeSideOutputTime: 78.978us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 689.398us - ProjectionTime: 138.794us - RowsProduced: 3.438K (3438) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 54.768us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 70.00 KB - OpenTime: 767ns - ProjectionTime: 0ns - RowsProduced: 3.438K (3438) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s379ms PipelineXTask (index=3):(Active: 4.917ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.671ms - CloseTime: 53.717us - GetBlockTime: 2.13ms - OpenTime: 5.143us - PrepareTime: 179.432us - SinkTime: 2.550ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.845ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.150ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.75 KB - CloseTime: 33.510us - CompressTime: 0ns - ExecTime: 2.705ms - InputRows: 4.66K (4660) - LocalBytesSent: 206.27 KB - LocalSendTime: 179.678us - LocalSentRows: 2.708K (2708) - MemoryUsage: - PeakMemoryUsage: 542.94 KB - MergeBlockTime: 0ns - OpenTime: 128.558us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.422ms - RowsProduced: 4.66K (4660) - RpcAvgTime: 8.447ms - RpcCount: 12 - RpcMaxTime: 8.755ms - RpcMinTime: 8.124ms - RpcSumTime: 101.364ms - SerializeBatchTime: 353.435us - SplitBlockDistributeByChannelTime: 1.18ms - SplitBlockHashComputeTime: 142.290us - UncompressedRowBatchSize: 155.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 16.39us - ExecTime: 1.971ms - InitProbeSideTime: 403.617us - JoinFilterTimer: 1.770us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 14.120us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.270us - ProbeFindNextTime: 0ns - ProbeRows: 4.66K (4660) - ProbeTime: 1.735ms - ProbeWhenBuildSideOutputTime: 80.768us - ProbeWhenProbeSideOutputTime: 137.741us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 863.574us - ProjectionTime: 155.21us - RowsProduced: 4.66K (4660) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 12 - CloseTime: 0ns - ExecTime: 30.153us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 78.00 KB - OpenTime: 628ns - ProjectionTime: 0ns - RowsProduced: 4.66K (4660) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s379ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.505ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.296ms - CloseTime: 11.440us - GetBlockTime: 2.988ms - OpenTime: 3.547us - PrepareTime: 185.498us - SinkTime: 191.584us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.466ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.984ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 171.860us - InputRows: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.148us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.823ms - CloseTime: 3.193us - ExecTime: 2.844ms - HashTableComputeTime: 2.296ms - HashTableEmplaceTime: 1.763ms - HashTableInputCount: 4.001K (4001) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.313us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 22 - BytesReceived: 146.32 KB - CloseTime: 6.533us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 469.283us - ExecTime: 150.297us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 70.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 35.00 KB - OpenTime: 26.14us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s377ms PipelineXTask (index=4):(Active: 2.878ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.794ms - CloseTime: 21.39us - GetBlockTime: 2.599ms - OpenTime: 2.57us - PrepareTime: 53.946us - SinkTime: 89.13us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.832ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.345ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 83.556us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.153us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.461ms - CloseTime: 13.2us - ExecTime: 2.498ms - HashTableComputeTime: 1.972ms - HashTableEmplaceTime: 1.546ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 9.662us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 22 - BytesReceived: 150.53 KB - CloseTime: 5.495us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 553.790us - ExecTime: 117.890us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 70.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 35.00 KB - OpenTime: 13.220us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s378ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 10.432ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 10.334ms - CloseTime: 21.154us - GetBlockTime: 430.586us - OpenTime: 2.517us - PrepareTime: 65.613us - SinkTime: 9.656ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 17 - NumScheduleTimes: 17 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 10.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.277ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 40.441us - BuildRows: 52.588K (52588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.364ms - BuildTableInsertTime: 5.945ms - BuildTableTime: 6.130ms - CloseTime: 0ns - ExecTime: 9.653ms - InputRows: 52.587K (52587) - MemoryUsage: - BuildBlocks: 3.71 MB - BuildKeyArena: 3.16 MB - HashTable: 461.43 KB - PeakMemoryUsage: 7.32 MB - OpenTime: 14.617us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=71): - BlocksProduced: 34 - BytesReceived: 884.09 KB - CloseTime: 15.250us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.431ms - ExecTime: 434.354us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.97 MB - MemoryUsage: - Blocks: 2.16 MB - PeakMemoryUsage: 2.12 MB - OpenTime: 18.426us - ProjectionTime: 0ns - RowsProduced: 52.587K (52587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s351ms PipelineXTask (index=5):(Active: 140.538us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 67.740us - CloseTime: 19.711us - GetBlockTime: 0ns - OpenTime: 9.87us - PrepareTime: 37.145us - SinkTime: 36.717us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.490us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.22ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f6 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.238us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.953us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s367ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 17.607us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.972us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.309us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 8.591ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 8.377ms - CloseTime: 36.391us - GetBlockTime: 3.588ms - OpenTime: 5.369us - PrepareTime: 166.83us - SinkTime: 4.604ms - GetBlockCounter: 23 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.523ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.408ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 167.91 KB - CloseTime: 13.993us - CompressTime: 0ns - ExecTime: 4.716ms - InputRows: 5.87K (5870) - LocalBytesSent: 155.16 KB - LocalSendTime: 125.525us - LocalSentRows: 2.037K (2037) - MemoryUsage: - PeakMemoryUsage: 635.13 KB - MergeBlockTime: 0ns - OpenTime: 114.128us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.538ms - RowsProduced: 5.87K (5870) - RpcAvgTime: 6.714ms - RpcCount: 12 - RpcMaxTime: 8.453ms - RpcMinTime: 5.448ms - RpcSumTime: 80.572ms - SerializeBatchTime: 726.515us - SplitBlockDistributeByChannelTime: 2.223ms - SplitBlockHashComputeTime: 312.251us - UncompressedRowBatchSize: 302.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 20 - BuildOutputBlock: 0ns - CloseTime: 18.103us - ExecTime: 3.448ms - InitProbeSideTime: 726.749us - JoinFilterTimer: 9.10us - MemoryUsage: - PeakMemoryUsage: 48.00 KB - ProbeKeyArena: 48.00 KB - OpenTime: 14.732us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 19.576us - ProbeFindNextTime: 0ns - ProbeRows: 5.87K (5870) - ProbeTime: 3.9ms - ProbeWhenBuildSideOutputTime: 230.630us - ProbeWhenProbeSideOutputTime: 294.936us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.238ms - ProjectionTime: 288.656us - RowsProduced: 5.87K (5870) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 100.794us - GetBlockFailedTime: 3 - MemoryUsage: - PeakMemoryUsage: 280.00 KB - OpenTime: 850ns - ProjectionTime: 0ns - RowsProduced: 5.87K (5870) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s377ms PipelineXTask (index=3):(Active: 9.459ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 9.269ms - CloseTime: 25.633us - GetBlockTime: 4.116ms - OpenTime: 4.953us - PrepareTime: 155.236us - SinkTime: 5.39ms - GetBlockCounter: 22 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.405ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.824ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 247.02 KB - CloseTime: 10.559us - CompressTime: 0ns - ExecTime: 5.143ms - InputRows: 10.54K (10540) - LocalBytesSent: 366.75 KB - LocalSendTime: 135.514us - LocalSentRows: 4.815K (4815) - MemoryUsage: - PeakMemoryUsage: 1.17 MB - MergeBlockTime: 0ns - OpenTime: 104.305us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.49ms - RowsProduced: 10.54K (10540) - RpcAvgTime: 10.51ms - RpcCount: 12 - RpcMaxTime: 11.176ms - RpcMinTime: 8.562ms - RpcSumTime: 120.619ms - SerializeBatchTime: 987.776us - SplitBlockDistributeByChannelTime: 2.401ms - SplitBlockHashComputeTime: 334.72us - UncompressedRowBatchSize: 450.10 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 20 - BuildOutputBlock: 0ns - CloseTime: 11.768us - ExecTime: 4.20ms - InitProbeSideTime: 826.257us - JoinFilterTimer: 3.562us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 12.405us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.35us - ProbeFindNextTime: 0ns - ProbeRows: 10.54K (10540) - ProbeTime: 3.689ms - ProbeWhenBuildSideOutputTime: 192.678us - ProbeWhenProbeSideOutputTime: 319.886us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.968ms - ProjectionTime: 223.502us - RowsProduced: 10.54K (10540) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 75.210us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 280.00 KB - OpenTime: 782ns - ProjectionTime: 0ns - RowsProduced: 10.54K (10540) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s378ms PipelineXTask (index=6):(Active: 3.469ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 3.245ms - CloseTime: 50.743us - GetBlockTime: 1.298ms - OpenTime: 3.475us - PrepareTime: 164.257us - SinkTime: 1.849ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.406ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.13ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 62.58 KB - CloseTime: 12.894us - CompressTime: 0ns - ExecTime: 1.966ms - InputRows: 2.96K (2960) - LocalBytesSent: 126.59 KB - LocalSendTime: 158.942us - LocalSentRows: 1.662K (1662) - MemoryUsage: - PeakMemoryUsage: 349.69 KB - MergeBlockTime: 0ns - OpenTime: 112.494us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.776ms - RowsProduced: 2.96K (2960) - RpcAvgTime: 5.742ms - RpcCount: 12 - RpcMaxTime: 6.229ms - RpcMinTime: 5.186ms - RpcSumTime: 68.914ms - SerializeBatchTime: 322.884us - SplitBlockDistributeByChannelTime: 589.892us - SplitBlockHashComputeTime: 75.83us - UncompressedRowBatchSize: 102.94 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 34.356us - ExecTime: 1.233ms - InitProbeSideTime: 255.400us - JoinFilterTimer: 1.122us - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 15.746us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.990us - ProbeFindNextTime: 0ns - ProbeRows: 2.96K (2960) - ProbeTime: 1.49ms - ProbeWhenBuildSideOutputTime: 80.822us - ProbeWhenProbeSideOutputTime: 125.415us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 421.261us - ProjectionTime: 98.264us - RowsProduced: 2.96K (2960) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 78.387us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 245.00 KB - OpenTime: 725ns - ProjectionTime: 0ns - RowsProduced: 2.96K (2960) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s380ms PipelineXTask (index=9):(Active: 3.311ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.139ms - CloseTime: 27.926us - GetBlockTime: 1.177ms - OpenTime: 4.833us - PrepareTime: 134.336us - SinkTime: 1.903ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.274ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.806ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 105.24 KB - CloseTime: 9.732us - CompressTime: 0ns - ExecTime: 1.999ms - InputRows: 2.933K (2933) - LocalBytesSent: 45.15 KB - LocalSendTime: 91.3us - LocalSentRows: 593 - MemoryUsage: - PeakMemoryUsage: 346.88 KB - MergeBlockTime: 0ns - OpenTime: 90.324us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.686ms - RowsProduced: 2.933K (2933) - RpcAvgTime: 9.604ms - RpcCount: 12 - RpcMaxTime: 10.597ms - RpcMinTime: 8.686ms - RpcSumTime: 115.259ms - SerializeBatchTime: 433.47us - SplitBlockDistributeByChannelTime: 668.268us - SplitBlockHashComputeTime: 81.654us - UncompressedRowBatchSize: 185.07 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 15.894us - ExecTime: 1.149ms - InitProbeSideTime: 257.745us - JoinFilterTimer: 689ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 10.598us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.624us - ProbeFindNextTime: 0ns - ProbeRows: 2.933K (2933) - ProbeTime: 1.2ms - ProbeWhenBuildSideOutputTime: 79.844us - ProbeWhenProbeSideOutputTime: 112.323us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 411.62us - ProjectionTime: 90.173us - RowsProduced: 2.933K (2933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 35.584us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 638ns - ProjectionTime: 0ns - RowsProduced: 2.933K (2933) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s380ms PipelineXTask (index=12):(Active: 3.82ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.886ms - CloseTime: 37.291us - GetBlockTime: 1.76ms - OpenTime: 7.15us - PrepareTime: 146.412us - SinkTime: 1.747ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.34ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.814ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 61.47 KB - CloseTime: 17.698us - CompressTime: 0ns - ExecTime: 1.850ms - InputRows: 2.972K (2972) - LocalBytesSent: 129.03 KB - LocalSendTime: 121.425us - LocalSentRows: 1.694K (1694) - MemoryUsage: - PeakMemoryUsage: 348.25 KB - MergeBlockTime: 0ns - OpenTime: 89.613us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.563ms - RowsProduced: 2.972K (2972) - RpcAvgTime: 7.684ms - RpcCount: 12 - RpcMaxTime: 8.189ms - RpcMinTime: 6.220ms - RpcSumTime: 92.210ms - SerializeBatchTime: 277.798us - SplitBlockDistributeByChannelTime: 659.495us - SplitBlockHashComputeTime: 74.779us - UncompressedRowBatchSize: 101.49 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 14.412us - ExecTime: 1.59ms - InitProbeSideTime: 211.469us - JoinFilterTimer: 636ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 13.458us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.976us - ProbeFindNextTime: 0ns - ProbeRows: 2.972K (2972) - ProbeTime: 928.71us - ProbeWhenBuildSideOutputTime: 58.222us - ProbeWhenProbeSideOutputTime: 97.891us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 446.172us - ProjectionTime: 77.133us - RowsProduced: 2.972K (2972) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 27.712us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 741ns - ProjectionTime: 0ns - RowsProduced: 2.972K (2972) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s379ms PipelineXTask (index=15):(Active: 2.928ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.746ms - CloseTime: 28.471us - GetBlockTime: 1.70ms - OpenTime: 4.398us - PrepareTime: 143.163us - SinkTime: 1.616ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.889ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.944ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 84.82 KB - CloseTime: 12.148us - CompressTime: 0ns - ExecTime: 1.720ms - InputRows: 3.027K (3027) - LocalBytesSent: 91.17 KB - LocalSendTime: 135.870us - LocalSentRows: 1.197K (1197) - MemoryUsage: - PeakMemoryUsage: 356.31 KB - MergeBlockTime: 0ns - OpenTime: 96.420us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.691ms - RowsProduced: 3.027K (3027) - RpcAvgTime: 5.723ms - RpcCount: 12 - RpcMaxTime: 6.853ms - RpcMinTime: 5.3ms - RpcSumTime: 68.684ms - SerializeBatchTime: 384.54us - SplitBlockDistributeByChannelTime: 445.317us - SplitBlockHashComputeTime: 72.214us - UncompressedRowBatchSize: 144.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 12.837us - ExecTime: 1.43ms - InitProbeSideTime: 232.136us - JoinFilterTimer: 678ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 13.607us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.21us - ProbeFindNextTime: 0ns - ProbeRows: 3.027K (3027) - ProbeTime: 903.478us - ProbeWhenBuildSideOutputTime: 63.638us - ProbeWhenProbeSideOutputTime: 90.182us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 382.162us - ProjectionTime: 84.203us - RowsProduced: 3.027K (3027) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 36.188us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 245.00 KB - OpenTime: 633ns - ProjectionTime: 0ns - RowsProduced: 3.027K (3027) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s380ms PipelineXTask (index=18):(Active: 2.857ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.615ms - CloseTime: 60.167us - GetBlockTime: 900.456us - OpenTime: 4.317us - PrepareTime: 172.670us - SinkTime: 1.657ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.761ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.912ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.40 KB - CloseTime: 10.17us - CompressTime: 0ns - ExecTime: 1.780ms - InputRows: 2.911K (2911) - LocalBytesSent: 166.73 KB - LocalSendTime: 174.899us - LocalSentRows: 2.189K (2189) - MemoryUsage: - PeakMemoryUsage: 339.75 KB - MergeBlockTime: 0ns - OpenTime: 117.588us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.757ms - RowsProduced: 2.911K (2911) - RpcAvgTime: 5.685ms - RpcCount: 12 - RpcMaxTime: 6.208ms - RpcMinTime: 5.270ms - RpcSumTime: 68.221ms - SerializeBatchTime: 259.224us - SplitBlockDistributeByChannelTime: 518.974us - SplitBlockHashComputeTime: 62.500us - UncompressedRowBatchSize: 57.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 47.734us - ExecTime: 909.463us - InitProbeSideTime: 173.237us - JoinFilterTimer: 878ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 15.181us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.142us - ProbeFindNextTime: 0ns - ProbeRows: 2.911K (2911) - ProbeTime: 764.341us - ProbeWhenBuildSideOutputTime: 59.992us - ProbeWhenProbeSideOutputTime: 80.318us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 333.446us - ProjectionTime: 57.691us - RowsProduced: 2.911K (2911) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 37.790us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 280.00 KB - OpenTime: 753ns - ProjectionTime: 0ns - RowsProduced: 2.911K (2911) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s383ms PipelineXTask (index=21):(Active: 4.452ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.158ms - CloseTime: 22.487us - GetBlockTime: 1.431ms - OpenTime: 6.179us - PrepareTime: 258.941us - SinkTime: 2.632ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 4.417ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.777ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 78.08 KB - CloseTime: 8.956us - CompressTime: 0ns - ExecTime: 2.833ms - InputRows: 3.052K (3052) - LocalBytesSent: 106.63 KB - LocalSendTime: 143.679us - LocalSentRows: 1.4K (1400) - MemoryUsage: - PeakMemoryUsage: 342.31 KB - MergeBlockTime: 0ns - OpenTime: 197.837us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.873ms - RowsProduced: 3.052K (3052) - RpcAvgTime: 8.445ms - RpcCount: 12 - RpcMaxTime: 9.539ms - RpcMinTime: 8.28ms - RpcSumTime: 101.345ms - SerializeBatchTime: 487.369us - SplitBlockDistributeByChannelTime: 899.307us - SplitBlockHashComputeTime: 134.829us - UncompressedRowBatchSize: 131.01 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 11.650us - ExecTime: 1.388ms - InitProbeSideTime: 355.998us - JoinFilterTimer: 828ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 14.763us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.853us - ProbeFindNextTime: 0ns - ProbeRows: 3.052K (3052) - ProbeTime: 1.200ms - ProbeWhenBuildSideOutputTime: 68.868us - ProbeWhenProbeSideOutputTime: 137.273us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 455.821us - ProjectionTime: 122.280us - RowsProduced: 3.052K (3052) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 43.715us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 822ns - ProjectionTime: 0ns - RowsProduced: 3.052K (3052) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s383ms PipelineXTask (index=24):(Active: 2.836ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.625ms - CloseTime: 28.525us - GetBlockTime: 982.138us - OpenTime: 3.858us - PrepareTime: 174.543us - SinkTime: 1.590ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.800ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.937ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.23 KB - CloseTime: 10.936us - CompressTime: 0ns - ExecTime: 1.711ms - InputRows: 3.002K (3002) - LocalBytesSent: 174.05 KB - LocalSendTime: 73.11us - LocalSentRows: 2.285K (2285) - MemoryUsage: - PeakMemoryUsage: 352.38 KB - MergeBlockTime: 0ns - OpenTime: 113.21us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.202ms - RowsProduced: 3.002K (3002) - RpcAvgTime: 8.586ms - RpcCount: 12 - RpcMaxTime: 8.906ms - RpcMinTime: 8.251ms - RpcSumTime: 103.37ms - SerializeBatchTime: 216.550us - SplitBlockDistributeByChannelTime: 648.802us - SplitBlockHashComputeTime: 74.850us - UncompressedRowBatchSize: 57.43 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 14.591us - ExecTime: 964.224us - InitProbeSideTime: 192.388us - JoinFilterTimer: 906ns - MemoryUsage: - PeakMemoryUsage: 60.00 KB - ProbeKeyArena: 60.00 KB - OpenTime: 13.776us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.612us - ProbeFindNextTime: 0ns - ProbeRows: 3.002K (3002) - ProbeTime: 840.33us - ProbeWhenBuildSideOutputTime: 45.321us - ProbeWhenProbeSideOutputTime: 89.294us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 374.574us - ProjectionTime: 70.900us - RowsProduced: 3.002K (3002) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 28.385us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 280.00 KB - OpenTime: 515ns - ProjectionTime: 0ns - RowsProduced: 3.002K (3002) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s384ms PipelineXTask (index=27):(Active: 3.382ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.191ms - CloseTime: 32.941us - GetBlockTime: 1.373ms - OpenTime: 5.140us - PrepareTime: 147.265us - SinkTime: 1.749ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.327ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.345ms DATA_STREAM_SINK_OPERATOR (id=88,dst_id=88): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 62.15 KB - CloseTime: 10.409us - CompressTime: 0ns - ExecTime: 1.858ms - InputRows: 2.893K (2893) - LocalBytesSent: 121.24 KB - LocalSendTime: 92.98us - LocalSentRows: 1.592K (1592) - MemoryUsage: - PeakMemoryUsage: 343.19 KB - MergeBlockTime: 0ns - OpenTime: 102.653us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.287ms - RowsProduced: 2.893K (2893) - RpcAvgTime: 7.269ms - RpcCount: 12 - RpcMaxTime: 8.119ms - RpcMinTime: 6.191ms - RpcSumTime: 87.239ms - SerializeBatchTime: 254.742us - SplitBlockDistributeByChannelTime: 756.999us - SplitBlockHashComputeTime: 147.570us - UncompressedRowBatchSize: 103.34 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer10: 0ns - 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: 10 - BuildOutputBlock: 0ns - CloseTime: 19.459us - ExecTime: 1.341ms - InitProbeSideTime: 321.608us - JoinFilterTimer: 544ns - MemoryUsage: - PeakMemoryUsage: 24.00 KB - ProbeKeyArena: 24.00 KB - OpenTime: 14.207us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.492us - ProbeFindNextTime: 0ns - ProbeRows: 2.893K (2893) - ProbeTime: 1.205ms - ProbeWhenBuildSideOutputTime: 118.22us - ProbeWhenProbeSideOutputTime: 135.697us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 489.995us - ProjectionTime: 60.453us - RowsProduced: 2.893K (2893) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-4): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 49.367us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 315.00 KB - OpenTime: 708ns - ProjectionTime: 0ns - RowsProduced: 2.893K (2893) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 19s383ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 4.324ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 4.242ms - CloseTime: 13.178us - GetBlockTime: 3.853ms - OpenTime: 2.137us - PrepareTime: 60.220us - SinkTime: 251.107us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.273ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.194ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 243.18us - InputRows: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.243us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 3.647ms - CloseTime: 3.694us - ExecTime: 3.675ms - HashTableComputeTime: 2.955ms - HashTableEmplaceTime: 2.298ms - HashTableInputCount: 3.998K (3998) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.237us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 22.85 KB - CloseTime: 7.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 75.202us - ExecTime: 180.676us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 16.00 KB - OpenTime: 15.459us - ProjectionTime: 0ns - RowsProduced: 3.998K (3998) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s376ms PipelineXTask (index=4):(Active: 3.704ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 3.618ms - CloseTime: 10.121us - GetBlockTime: 3.405ms - OpenTime: 1.232us - PrepareTime: 69.575us - SinkTime: 97.348us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.666ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.789ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 90.105us - InputRows: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.120us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 3.226ms - CloseTime: 3.280us - ExecTime: 3.256ms - HashTableComputeTime: 2.571ms - HashTableEmplaceTime: 2.32ms - HashTableInputCount: 4.057K (4057) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.156us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 26.19 KB - CloseTime: 5.82us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 70.187us - ExecTime: 147.522us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 13.708us - ProjectionTime: 0ns - RowsProduced: 4.057K (4057) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s375ms PipelineXTask (index=7):(Active: 3.334ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.264ms - CloseTime: 8.926us - GetBlockTime: 3.41ms - OpenTime: 1.813us - PrepareTime: 51.803us - SinkTime: 91.358us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.290ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.192ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 84.280us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.84us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.860ms - CloseTime: 257ns - ExecTime: 2.884ms - HashTableComputeTime: 2.217ms - HashTableEmplaceTime: 1.645ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.64us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 26.25 KB - CloseTime: 6.79us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 87.888us - ExecTime: 158.243us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 16.503us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s378ms PipelineXTask (index=10):(Active: 3.281ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 3.210ms - CloseTime: 19.974us - GetBlockTime: 3.45ms - OpenTime: 2.543us - PrepareTime: 42.449us - SinkTime: 58.529us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.232ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.347ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 54.647us - InputRows: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.205us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.870ms - CloseTime: 12.217us - ExecTime: 2.905ms - HashTableComputeTime: 2.210ms - HashTableEmplaceTime: 1.711ms - HashTableInputCount: 3.958K (3958) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.357us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 24.56 KB - CloseTime: 5.430us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 69.115us - ExecTime: 145.237us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 385.00 KB - MemoryUsage: - Blocks: 70.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.796us - ProjectionTime: 0ns - RowsProduced: 3.958K (3958) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s373ms PipelineXTask (index=13):(Active: 2.959ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 2.877ms - CloseTime: 29.54us - GetBlockTime: 2.674ms - OpenTime: 1.641us - PrepareTime: 46.267us - SinkTime: 75.840us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.901ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.403ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 69.370us - InputRows: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.115us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.488ms - CloseTime: 22.752us - ExecTime: 2.537ms - HashTableComputeTime: 1.892ms - HashTableEmplaceTime: 1.412ms - HashTableInputCount: 4.097K (4097) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 8.99us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 25.52 KB - CloseTime: 4.338us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 59.108us - ExecTime: 151.893us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 14.253us - ProjectionTime: 0ns - RowsProduced: 4.097K (4097) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s374ms PipelineXTask (index=16):(Active: 3.465ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.369ms - CloseTime: 20.243us - GetBlockTime: 3.160ms - OpenTime: 1.817us - PrepareTime: 67.898us - SinkTime: 76.694us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.411ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.3ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 73.529us - InputRows: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.285us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.973ms - CloseTime: 11.404us - ExecTime: 3.7ms - HashTableComputeTime: 2.362ms - HashTableEmplaceTime: 1.795ms - HashTableInputCount: 4.129K (4129) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.303us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 25.08 KB - CloseTime: 7.169us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 59.580us - ExecTime: 171.795us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 36.35us - ProjectionTime: 0ns - RowsProduced: 4.129K (4129) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s374ms PipelineXTask (index=19):(Active: 3.226ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 3.120ms - CloseTime: 19.299us - GetBlockTime: 2.967ms - OpenTime: 1.998us - PrepareTime: 79.131us - SinkTime: 50.535us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.181ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.776ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 45.654us - InputRows: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.70us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.800ms - CloseTime: 12.810us - ExecTime: 2.853ms - HashTableComputeTime: 2.263ms - HashTableEmplaceTime: 1.763ms - HashTableInputCount: 3.988K (3988) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 21.330us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 24.69 KB - CloseTime: 4.961us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 64.747us - ExecTime: 134.854us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 18.552us - ProjectionTime: 0ns - RowsProduced: 3.988K (3988) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s377ms PipelineXTask (index=22):(Active: 3.615ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 3.519ms - CloseTime: 31.528us - GetBlockTime: 3.233ms - OpenTime: 1.454us - PrepareTime: 57.808us - SinkTime: 136.707us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.553ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.15ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 129.77us - InputRows: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.222us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 3.57ms - CloseTime: 21.236us - ExecTime: 3.105ms - HashTableComputeTime: 2.419ms - HashTableEmplaceTime: 1.862ms - HashTableInputCount: 3.957K (3957) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.50us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 26.05 KB - CloseTime: 8.577us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 81.879us - ExecTime: 151.202us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 18.184us - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s376ms PipelineXTask (index=25):(Active: 3.996ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 3.850ms - CloseTime: 13.750us - GetBlockTime: 3.599ms - OpenTime: 2.140us - PrepareTime: 121.969us - SinkTime: 105.788us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.946ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.419ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 98.167us - InputRows: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.28us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 3.385ms - CloseTime: 3.944us - ExecTime: 3.422ms - HashTableComputeTime: 2.650ms - HashTableEmplaceTime: 2.29ms - HashTableInputCount: 3.97K (3970) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.804us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 25.33 KB - CloseTime: 6.667us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 61.704us - ExecTime: 251.815us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 385.00 KB - MemoryUsage: - Blocks: 70.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 90.528us - ProjectionTime: 0ns - RowsProduced: 3.97K (3970) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s377ms PipelineXTask (index=28):(Active: 3.361ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 3.286ms - CloseTime: 20.628us - GetBlockTime: 3.56ms - OpenTime: 1.395us - PrepareTime: 47.861us - SinkTime: 109.463us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.313ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.345ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-4): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 105.45us - InputRows: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.233us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=86): - BlocksProduced: 0 - BuildTime: 2.892ms - CloseTime: 13.702us - ExecTime: 2.929ms - HashTableComputeTime: 2.280ms - HashTableEmplaceTime: 1.765ms - HashTableInputCount: 4.036K (4036) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.690us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) EXCHANGE_OPERATOR (id=85): - BlocksProduced: 14 - BytesReceived: 26.00 KB - CloseTime: 4.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 120.249us - ExecTime: 124.685us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 393.00 KB - MemoryUsage: - Blocks: 78.00 KB - PeakMemoryUsage: 8.00 KB - OpenTime: 15.908us - ProjectionTime: 0ns - RowsProduced: 4.036K (4036) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s377ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 12.575ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 12.415ms - CloseTime: 16.704us - GetBlockTime: 372.204us - OpenTime: 1.961us - PrepareTime: 121.741us - SinkTime: 11.832ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.507ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.54ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 40.969us - BuildRows: 52.588K (52588) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.380ms - BuildTableInsertTime: 9.114ms - BuildTableTime: 9.269ms - CloseTime: 0ns - ExecTime: 11.828ms - InputRows: 52.587K (52587) - MemoryUsage: - BuildBlocks: 3.71 MB - BuildKeyArena: 3.16 MB - HashTable: 461.43 KB - PeakMemoryUsage: 7.32 MB - OpenTime: 9.598us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=71): - BlocksProduced: 38 - BytesReceived: 1.21 MB - CloseTime: 11.872us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.0ms - ExecTime: 448.724us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.19 MB - MemoryUsage: - Blocks: 1.07 MB - PeakMemoryUsage: 0.00 - OpenTime: 85.528us - ProjectionTime: 0ns - RowsProduced: 52.587K (52587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s331ms PipelineXTask (index=5):(Active: 89.517us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.471us - CloseTime: 5.446us - GetBlockTime: 0ns - OpenTime: 1.293us - PrepareTime: 45.682us - SinkTime: 20.218us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.887us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.32ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.322us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.537us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s346ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.977us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.324us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.679us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 93.919us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.434us - CloseTime: 3.16us - GetBlockTime: 0ns - OpenTime: 2.765us - PrepareTime: 58.7us - SinkTime: 7.541us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.328us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.230ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.62us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.693us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s344ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.981us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.532us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 121.261us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 20.135us - CloseTime: 4.440us - GetBlockTime: 0ns - OpenTime: 1.718us - PrepareTime: 90.372us - SinkTime: 6.852us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.888us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.369ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.247us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.524us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s343ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.398us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.447us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.365us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 96.581us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.89us - CloseTime: 3.394us - GetBlockTime: 0ns - OpenTime: 2.265us - PrepareTime: 64.215us - SinkTime: 4.756us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.648us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.440ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 10.490us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 5.906us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s343ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.186us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 11.535us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.568us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 72.35us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 18.322us - CloseTime: 5.851us - GetBlockTime: 0ns - OpenTime: 1.982us - PrepareTime: 42.514us - SinkTime: 6.436us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 61.748us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 872.669us HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 12.966us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.782us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s348ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.140us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.540us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.771us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 103.449us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.997us - CloseTime: 9.435us - GetBlockTime: 0ns - OpenTime: 1.632us - PrepareTime: 39.929us - SinkTime: 32.652us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.293us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.38ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.300us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.336us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s347ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.918us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.708us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.202us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 92.465us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.449us - CloseTime: 20.611us - GetBlockTime: 0ns - OpenTime: 1.560us - PrepareTime: 42.214us - SinkTime: 9.180us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 65.570us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.448ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 22.335us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.379us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s345ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 18.964us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.981us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.273us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 129.215us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.979us - CloseTime: 3.540us - GetBlockTime: 0ns - OpenTime: 2.276us - PrepareTime: 95.600us - SinkTime: 5.289us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 118.960us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.80ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.295us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.127us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s348ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.365us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 57.847us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 54.665us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 68.71us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 21.279us - CloseTime: 5.914us - GetBlockTime: 0ns - OpenTime: 1.610us - PrepareTime: 35.942us - SinkTime: 5.583us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 56.210us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.33ms HASH_JOIN_SINK_OPERATOR (id=87): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82f4 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 13.668us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.284us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 9s348ms EXCHANGE_OPERATOR (id=71): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.535us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.976us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.854us - 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: 103.122ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 102.859ms - CloseTime: 44.584us - GetBlockTime: 89.121ms - OpenTime: 9.20us - PrepareTime: 151.193us - SinkTime: 9.420ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 378 - NumBlockedTimes: 380 - NumScheduleTimes: 381 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 102.234ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 123.477ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 125.70 KB - CloseTime: 15.203us - CompressTime: 0ns - ExecTime: 9.269ms - InputRows: 3.497K (3497) - LocalBytesSent: 40.49 KB - LocalSendTime: 25.999us - LocalSentRows: 568 - MemoryUsage: - PeakMemoryUsage: 412.00 KB - MergeBlockTime: 0ns - OpenTime: 56.306us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.886ms - RowsProduced: 3.497K (3497) - RpcAvgTime: 14.143ms - RpcCount: 10 - RpcMaxTime: 14.307ms - RpcMinTime: 14.18ms - RpcSumTime: 141.432ms - SerializeBatchTime: 368.786us - SplitBlockDistributeByChannelTime: 4.201ms - SplitBlockHashComputeTime: 2.43ms - UncompressedRowBatchSize: 215.82 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 4.517ms - CloseTime: 4.496us - ExecTime: 5.32ms - HashTableComputeTime: 2.923ms - HashTableEmplaceTime: 1.865ms - HashTableInputCount: 3.497K (3497) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 6.563us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 730 - BuildOutputBlock: 0ns - CloseTime: 10.173us - ExecTime: 75.585ms - InitProbeSideTime: 21.67ms - JoinFilterTimer: 52.436us - MemoryUsage: - PeakMemoryUsage: 68.88 KB - ProbeKeyArena: 68.88 KB - OpenTime: 17.458us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 188.294us - ProbeFindNextTime: 0ns - ProbeRows: 3.295289M (3295289) - ProbeTime: 67.853ms - ProbeWhenBuildSideOutputTime: 3.59ms - ProbeWhenProbeSideOutputTime: 521.821us - ProbeWhenProcessHashTableTime: 9.441us - ProbeWhenSearchHashTableTime: 35.589ms - ProjectionTime: 5.636ms - RowsProduced: 3.497K (3497) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s881ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 1.489K (1489) - BytesReceived: 15.67 MB - CloseTime: 9.947us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 14.273ms - ExecTime: 5.561ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.65 MB - MemoryUsage: - Blocks: 19.82 MB - PeakMemoryUsage: 4.65 MB - OpenTime: 21.413us - ProjectionTime: 0ns - RowsProduced: 3.295289M (3295289) - SendersBlockedTotalTimer(*): 1m5s - WaitForDependencyTime: 0ns - WaitForData0: 2s992ms PipelineXTask (index=2):(Active: 103.582ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 103.195ms - CloseTime: 38.276us - GetBlockTime: 89.232ms - OpenTime: 6.407us - PrepareTime: 299.752us - SinkTime: 9.878ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 373 - NumBlockedTimes: 375 - NumScheduleTimes: 376 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 102.781ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 123.426ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 125.62 KB - CloseTime: 14.100us - CompressTime: 0ns - ExecTime: 9.776ms - InputRows: 3.516K (3516) - LocalBytesSent: 42.06 KB - LocalSendTime: 42.317us - LocalSentRows: 590 - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 121.431us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 20.743ms - RowsProduced: 3.516K (3516) - RpcAvgTime: 14.865ms - RpcCount: 10 - RpcMaxTime: 14.942ms - RpcMinTime: 14.773ms - RpcSumTime: 148.654ms - SerializeBatchTime: 563.462us - SplitBlockDistributeByChannelTime: 4.353ms - SplitBlockHashComputeTime: 2.76ms - UncompressedRowBatchSize: 215.69 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns DISTINCT_STREAMING_AGGREGATION_OPERATOR (id=84): - BlocksProduced: 0 - BuildTime: 4.689ms - CloseTime: 4.657us - ExecTime: 5.250ms - HashTableComputeTime: 2.891ms - HashTableEmplaceTime: 1.896ms - HashTableInputCount: 3.516K (3516) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.88us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 9.658us - ExecTime: 75.518ms - InitProbeSideTime: 20.820ms - JoinFilterTimer: 54.376us - MemoryUsage: - PeakMemoryUsage: 68.98 KB - ProbeKeyArena: 68.98 KB - OpenTime: 14.892us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 178.669us - ProbeFindNextTime: 0ns - ProbeRows: 3.295378M (3295378) - ProbeTime: 67.490ms - ProbeWhenBuildSideOutputTime: 3.153ms - ProbeWhenProbeSideOutputTime: 525.864us - ProbeWhenProcessHashTableTime: 19.481us - ProbeWhenSearchHashTableTime: 35.422ms - ProjectionTime: 5.867ms - RowsProduced: 3.516K (3516) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s881ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 1.489K (1489) - BytesReceived: 15.67 MB - CloseTime: 6.104us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 14.43ms - ExecTime: 5.596ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.69 MB - MemoryUsage: - Blocks: 19.84 MB - PeakMemoryUsage: 4.69 MB - OpenTime: 53.719us - ProjectionTime: 0ns - RowsProduced: 3.295378M (3295378) - SendersBlockedTotalTimer(*): 1m4s - WaitForDependencyTime: 0ns - WaitForData0: 3s19ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.221ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.75ms - CloseTime: 8.429us - GetBlockTime: 194.615us - OpenTime: 3.103us - PrepareTime: 126.996us - SinkTime: 716.594us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.180ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.352ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.449us - BuildRows: 3.498K (3498) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 393.805us - BuildTableInsertTime: 131.384us - BuildTableTime: 134.260us - CloseTime: 0ns - ExecTime: 763.78us - InputRows: 3.497K (3497) - MemoryUsage: - BuildBlocks: 235.61 KB - BuildKeyArena: 54.66 KB - HashTable: 33.08 KB - PeakMemoryUsage: 323.34 KB - OpenTime: 53.277us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 76.869us - RuntimeFilterComputeTime: 36.441us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 17 - BytesReceived: 68.25 KB - CloseTime: 6.354us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 273.15us - ExecTime: 225.899us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 217.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 33.00 KB - OpenTime: 35.937us - ProjectionTime: 0ns - RowsProduced: 3.497K (3497) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s20ms PipelineXTask (index=3):(Active: 1.99ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 979.972us - CloseTime: 10.361us - GetBlockTime: 165.637us - OpenTime: 2.160us - PrepareTime: 99.770us - SinkTime: 676.980us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.44ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.436ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.496us - BuildRows: 3.517K (3517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 338.430us - BuildTableInsertTime: 203.91us - BuildTableTime: 205.545us - CloseTime: 0ns - ExecTime: 709.328us - InputRows: 3.516K (3516) - MemoryUsage: - BuildBlocks: 236.88 KB - BuildKeyArena: 54.95 KB - HashTable: 33.18 KB - PeakMemoryUsage: 325.01 KB - OpenTime: 39.174us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.955us - RuntimeFilterComputeTime: 44.456us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 17 - BytesReceived: 67.33 KB - CloseTime: 8.596us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 279.897us - ExecTime: 203.597us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 231.00 KB - MemoryUsage: - Blocks: 33.00 KB - PeakMemoryUsage: 33.00 KB - OpenTime: 39.803us - ProjectionTime: 0ns - RowsProduced: 3.516K (3516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s21ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 110.835ms, % non-child: 0.00%) - CoreChangeTimes: 41 - ExecuteTime: 110.594ms - CloseTime: 42.414us - GetBlockTime: 97.690ms - OpenTime: 8.52us - PrepareTime: 163.969us - SinkTime: 9.378ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 140 - NumBlockedTimes: 142 - NumScheduleTimes: 143 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 102.171ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 239.884ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.41 KB - CloseTime: 14.980us - CompressTime: 0ns - ExecTime: 9.221ms - InputRows: 3.591K (3591) - LocalBytesSent: 213.98 KB - LocalSendTime: 203.565us - LocalSentRows: 3.002K (3002) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 67.123us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 12.97ms - RowsProduced: 3.591K (3591) - RpcAvgTime: 808.627us - RpcCount: 2 - RpcMaxTime: 823.146us - RpcMinTime: 794.108us - RpcSumTime: 1.617ms - SerializeBatchTime: 170.634us - SplitBlockDistributeByChannelTime: 3.867ms - SplitBlockHashComputeTime: 2.420ms - UncompressedRowBatchSize: 43.42 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.106ms - CloseTime: 4.624us - ExecTime: 6.712ms - HashTableComputeTime: 4.218ms - HashTableEmplaceTime: 3.267ms - HashTableInputCount: 3.591K (3591) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.267us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 737 - BuildOutputBlock: 0ns - CloseTime: 11.842us - ExecTime: 75.31ms - InitProbeSideTime: 26.212ms - JoinFilterTimer: 67.9us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 15.607us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 161.565us - ProbeFindNextTime: 0ns - ProbeRows: 3.296777M (3296777) - ProbeTime: 66.55ms - ProbeWhenBuildSideOutputTime: 3.629ms - ProbeWhenProbeSideOutputTime: 630.352us - ProbeWhenProcessHashTableTime: 18.375us - ProbeWhenSearchHashTableTime: 27.195ms - ProjectionTime: 6.405ms - RowsProduced: 3.591K (3591) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s787ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 875 - BytesReceived: 1.87 MB - CloseTime: 6.272us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.542ms - ExecTime: 13.274ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.32 MB - MemoryUsage: - Blocks: 19.60 MB - PeakMemoryUsage: 19.39 MB - OpenTime: 28.409us - ProjectionTime: 0ns - RowsProduced: 3.296777M (3296777) - SendersBlockedTotalTimer(*): 18s798ms - WaitForDependencyTime: 0ns - WaitForData0: 3s221ms PipelineXTask (index=2):(Active: 172.590ms, % non-child: 0.00%) - CoreChangeTimes: 50 - ExecuteTime: 172.370ms - CloseTime: 46.567us - GetBlockTime: 146.384ms - OpenTime: 4.634us - PrepareTime: 152.539us - SinkTime: 12.355ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 118 - NumBlockedTimes: 120 - NumScheduleTimes: 121 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 114.252ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 124.322ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.56 KB - CloseTime: 13.772us - CompressTime: 0ns - ExecTime: 12.156ms - InputRows: 9.221K (9221) - LocalBytesSent: 542.76 KB - LocalSendTime: 150.635us - LocalSentRows: 7.614K (7614) - MemoryUsage: - PeakMemoryUsage: 920.00 KB - MergeBlockTime: 0ns - OpenTime: 64.660us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.616ms - RowsProduced: 9.221K (9221) - RpcAvgTime: 1.252ms - RpcCount: 2 - RpcMaxTime: 1.433ms - RpcMinTime: 1.71ms - RpcSumTime: 2.504ms - SerializeBatchTime: 308.247us - SplitBlockDistributeByChannelTime: 5.505ms - SplitBlockHashComputeTime: 3.170ms - UncompressedRowBatchSize: 117.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 9.910ms - CloseTime: 9.285us - ExecTime: 10.612ms - HashTableComputeTime: 7.32ms - HashTableEmplaceTime: 5.375ms - HashTableInputCount: 9.221K (9221) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.873us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 728 - BuildOutputBlock: 0ns - CloseTime: 10.542us - ExecTime: 109.974ms - InitProbeSideTime: 30.911ms - JoinFilterTimer: 82.53us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 12.791us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 155.823us - ProbeFindNextTime: 0ns - ProbeRows: 3.295426M (3295426) - ProbeTime: 70.828ms - ProbeWhenBuildSideOutputTime: 4.59ms - ProbeWhenProbeSideOutputTime: 659.255us - ProbeWhenProcessHashTableTime: 408.225us - ProbeWhenSearchHashTableTime: 25.628ms - ProjectionTime: 36.465ms - RowsProduced: 9.221K (9221) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s856ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 871 - BytesReceived: 1.86 MB - CloseTime: 7.937us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.700ms - ExecTime: 23.140ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.15 MB - MemoryUsage: - Blocks: 19.61 MB - PeakMemoryUsage: 19.50 MB - OpenTime: 12.419us - ProjectionTime: 0ns - RowsProduced: 3.295426M (3295426) - SendersBlockedTotalTimer(*): 22s137ms - WaitForDependencyTime: 0ns - WaitForData0: 3s229ms PipelineXTask (index=4):(Active: 162.315ms, % non-child: 0.00%) - CoreChangeTimes: 42 - ExecuteTime: 162.31ms - CloseTime: 49.738us - GetBlockTime: 146.413ms - OpenTime: 4.795us - PrepareTime: 201.822us - SinkTime: 11.711ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 128 - NumBlockedTimes: 130 - NumScheduleTimes: 131 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 130.95ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.803ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.28 KB - CloseTime: 17.784us - CompressTime: 0ns - ExecTime: 11.475ms - InputRows: 3.523K (3523) - LocalBytesSent: 207.49 KB - LocalSendTime: 111.677us - LocalSentRows: 2.911K (2911) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 69.606us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.907ms - RowsProduced: 3.523K (3523) - RpcAvgTime: 678.275us - RpcCount: 2 - RpcMaxTime: 738.205us - RpcMinTime: 618.345us - RpcSumTime: 1.356ms - SerializeBatchTime: 200.477us - SplitBlockDistributeByChannelTime: 5.207ms - SplitBlockHashComputeTime: 2.903ms - UncompressedRowBatchSize: 45.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.61ms - CloseTime: 6.501us - ExecTime: 6.873ms - HashTableComputeTime: 3.830ms - HashTableEmplaceTime: 2.551ms - HashTableInputCount: 3.523K (3523) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.656us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 722 - BuildOutputBlock: 0ns - CloseTime: 9.348us - ExecTime: 109.539ms - InitProbeSideTime: 29.653ms - JoinFilterTimer: 102.491us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 15.325us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 190.156us - ProbeFindNextTime: 0ns - ProbeRows: 3.295435M (3295435) - ProbeTime: 89.282ms - ProbeWhenBuildSideOutputTime: 4.348ms - ProbeWhenProbeSideOutputTime: 888.288us - ProbeWhenProcessHashTableTime: 18.489us - ProbeWhenSearchHashTableTime: 44.45ms - ProjectionTime: 17.150ms - RowsProduced: 3.523K (3523) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s856ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 871 - BytesReceived: 1.86 MB - CloseTime: 9.237us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.553ms - ExecTime: 25.27ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.42 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.34 MB - OpenTime: 15.442us - ProjectionTime: 0ns - RowsProduced: 3.295435M (3295435) - SendersBlockedTotalTimer(*): 17s954ms - WaitForDependencyTime: 0ns - WaitForData0: 3s207ms PipelineXTask (index=6):(Active: 128.252ms, % non-child: 0.00%) - CoreChangeTimes: 51 - ExecuteTime: 128.5ms - CloseTime: 45.567us - GetBlockTime: 114.601ms - OpenTime: 5.167us - PrepareTime: 166.706us - SinkTime: 9.722ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 143 - NumBlockedTimes: 145 - NumScheduleTimes: 146 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 100.258ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 150.857ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.01 KB - CloseTime: 12.835us - CompressTime: 0ns - ExecTime: 9.548ms - InputRows: 3.657K (3657) - LocalBytesSent: 215.76 KB - LocalSendTime: 178.916us - LocalSentRows: 3.027K (3027) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 64.803us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.184ms - RowsProduced: 3.657K (3657) - RpcAvgTime: 677.735us - RpcCount: 2 - RpcMaxTime: 719.846us - RpcMinTime: 635.624us - RpcSumTime: 1.355ms - SerializeBatchTime: 157.691us - SplitBlockDistributeByChannelTime: 4.114ms - SplitBlockHashComputeTime: 2.495ms - UncompressedRowBatchSize: 46.41 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.44ms - CloseTime: 8.963us - ExecTime: 6.690ms - HashTableComputeTime: 4.53ms - HashTableEmplaceTime: 3.40ms - HashTableInputCount: 3.657K (3657) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.913us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 736 - BuildOutputBlock: 0ns - CloseTime: 11.914us - ExecTime: 77.966ms - InitProbeSideTime: 28.216ms - JoinFilterTimer: 69.851us - MemoryUsage: - PeakMemoryUsage: 69.27 KB - ProbeKeyArena: 69.27 KB - OpenTime: 14.314us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 167.98us - ProbeFindNextTime: 0ns - ProbeRows: 3.296125M (3296125) - ProbeTime: 69.155ms - ProbeWhenBuildSideOutputTime: 3.514ms - ProbeWhenProbeSideOutputTime: 559.668us - ProbeWhenProcessHashTableTime: 9.508us - ProbeWhenSearchHashTableTime: 28.364ms - ProjectionTime: 6.342ms - RowsProduced: 3.657K (3657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s857ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 873 - BytesReceived: 1.87 MB - CloseTime: 6.986us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.638ms - ExecTime: 27.451ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.34 MB - MemoryUsage: - Blocks: 19.58 MB - PeakMemoryUsage: 19.32 MB - OpenTime: 23.414us - ProjectionTime: 0ns - RowsProduced: 3.296125M (3296125) - SendersBlockedTotalTimer(*): 17s952ms - WaitForDependencyTime: 0ns - WaitForData0: 3s209ms PipelineXTask (index=8):(Active: 109.509ms, % non-child: 0.00%) - CoreChangeTimes: 52 - ExecuteTime: 109.263ms - CloseTime: 33.775us - GetBlockTime: 94.916ms - OpenTime: 4.799us - PrepareTime: 166.486us - SinkTime: 9.716ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 137 - NumBlockedTimes: 139 - NumScheduleTimes: 140 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 107.770ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 169.853ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.25 KB - CloseTime: 12.947us - CompressTime: 0ns - ExecTime: 9.569ms - InputRows: 3.665K (3665) - LocalBytesSent: 217.55 KB - LocalSendTime: 100.764us - LocalSentRows: 3.052K (3052) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 92.746us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.908ms - RowsProduced: 3.665K (3665) - RpcAvgTime: 1.28ms - RpcCount: 2 - RpcMaxTime: 1.88ms - RpcMinTime: 969.523us - RpcSumTime: 2.57ms - SerializeBatchTime: 109.195us - SplitBlockDistributeByChannelTime: 4.215ms - SplitBlockHashComputeTime: 2.569ms - UncompressedRowBatchSize: 45.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.921ms - CloseTime: 3.880us - ExecTime: 6.522ms - HashTableComputeTime: 3.998ms - HashTableEmplaceTime: 2.862ms - HashTableInputCount: 3.665K (3665) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.823us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 732 - BuildOutputBlock: 0ns - CloseTime: 8.160us - ExecTime: 80.702ms - InitProbeSideTime: 30.299ms - JoinFilterTimer: 74.117us - MemoryUsage: - PeakMemoryUsage: 69.14 KB - ProbeKeyArena: 69.14 KB - OpenTime: 16.541us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 168.559us - ProbeFindNextTime: 0ns - ProbeRows: 3.295157M (3295157) - ProbeTime: 71.433ms - ProbeWhenBuildSideOutputTime: 3.771ms - ProbeWhenProbeSideOutputTime: 634.475us - ProbeWhenProcessHashTableTime: 8.687us - ProbeWhenSearchHashTableTime: 27.970ms - ProjectionTime: 6.709ms - RowsProduced: 3.665K (3665) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s857ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 873 - BytesReceived: 1.87 MB - CloseTime: 5.205us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.634ms - ExecTime: 5.5ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.21 MB - MemoryUsage: - Blocks: 19.64 MB - PeakMemoryUsage: 19.32 MB - OpenTime: 9.698us - ProjectionTime: 0ns - RowsProduced: 3.295157M (3295157) - SendersBlockedTotalTimer(*): 17s960ms - WaitForDependencyTime: 0ns - WaitForData0: 3s217ms PipelineXTask (index=10):(Active: 157.359ms, % non-child: 0.00%) - CoreChangeTimes: 62 - ExecuteTime: 157.93ms - CloseTime: 58.577us - GetBlockTime: 142.546ms - OpenTime: 4.94us - PrepareTime: 184.255us - SinkTime: 10.765ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 138 - NumBlockedTimes: 140 - NumScheduleTimes: 142 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 127.741ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 112.120ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 24.86 KB - CloseTime: 16.577us - CompressTime: 0ns - ExecTime: 10.618ms - InputRows: 3.473K (3473) - LocalBytesSent: 206.22 KB - LocalSendTime: 181.85us - LocalSentRows: 2.893K (2893) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 110.554us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.449ms - RowsProduced: 3.473K (3473) - RpcAvgTime: 1.200ms - RpcCount: 2 - RpcMaxTime: 1.242ms - RpcMinTime: 1.158ms - RpcSumTime: 2.401ms - SerializeBatchTime: 141.490us - SplitBlockDistributeByChannelTime: 4.730ms - SplitBlockHashComputeTime: 2.783ms - UncompressedRowBatchSize: 42.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.580ms - CloseTime: 11.72us - ExecTime: 6.273ms - HashTableComputeTime: 3.540ms - HashTableEmplaceTime: 2.397ms - HashTableInputCount: 3.473K (3473) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.29us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 728 - BuildOutputBlock: 0ns - CloseTime: 15.411us - ExecTime: 104.911ms - InitProbeSideTime: 30.918ms - JoinFilterTimer: 96.437us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 15.513us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 177.451us - ProbeFindNextTime: 0ns - ProbeRows: 3.295927M (3295927) - ProbeTime: 92.853ms - ProbeWhenBuildSideOutputTime: 4.120ms - ProbeWhenProbeSideOutputTime: 743.328us - ProbeWhenProcessHashTableTime: 9.255us - ProbeWhenSearchHashTableTime: 47.94ms - ProjectionTime: 9.202ms - RowsProduced: 3.473K (3473) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s866ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 872 - BytesReceived: 1.87 MB - CloseTime: 9.588us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.586ms - ExecTime: 28.479ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.01 MB - MemoryUsage: - Blocks: 19.61 MB - PeakMemoryUsage: 19.39 MB - OpenTime: 14.468us - ProjectionTime: 0ns - RowsProduced: 3.295927M (3295927) - SendersBlockedTotalTimer(*): 18s820ms - WaitForDependencyTime: 0ns - WaitForData0: 3s231ms PipelineXTask (index=12):(Active: 136.320ms, % non-child: 0.00%) - CoreChangeTimes: 47 - ExecuteTime: 136.86ms - CloseTime: 31.717us - GetBlockTime: 121.818ms - OpenTime: 7.783us - PrepareTime: 170.131us - SinkTime: 9.977ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 131 - NumBlockedTimes: 133 - NumScheduleTimes: 134 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 126.420ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 124.275ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.89 KB - CloseTime: 10.193us - CompressTime: 0ns - ExecTime: 9.774ms - InputRows: 3.529K (3529) - LocalBytesSent: 211.84 KB - LocalSendTime: 169.77us - LocalSentRows: 2.972K (2972) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 73.260us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 14.805ms - RowsProduced: 3.529K (3529) - RpcAvgTime: 2.856ms - RpcCount: 2 - RpcMaxTime: 2.919ms - RpcMinTime: 2.793ms - RpcSumTime: 5.713ms - SerializeBatchTime: 108.870us - SplitBlockDistributeByChannelTime: 4.142ms - SplitBlockHashComputeTime: 2.668ms - UncompressedRowBatchSize: 41.08 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.66ms - CloseTime: 3.424us - ExecTime: 5.678ms - HashTableComputeTime: 3.276ms - HashTableEmplaceTime: 2.231ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 7.169us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 731 - BuildOutputBlock: 0ns - CloseTime: 9.654us - ExecTime: 108.169ms - InitProbeSideTime: 31.239ms - JoinFilterTimer: 67.27us - MemoryUsage: - PeakMemoryUsage: 68.94 KB - ProbeKeyArena: 68.94 KB - OpenTime: 15.68us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 191.352us - ProbeFindNextTime: 0ns - ProbeRows: 3.29507M (3295070) - ProbeTime: 98.734ms - ProbeWhenBuildSideOutputTime: 3.403ms - ProbeWhenProbeSideOutputTime: 657.418us - ProbeWhenProcessHashTableTime: 9.269us - ProbeWhenSearchHashTableTime: 45.984ms - ProjectionTime: 6.707ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s870ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 872 - BytesReceived: 1.86 MB - CloseTime: 4.761us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.645ms - ExecTime: 5.278ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.65 MB - MemoryUsage: - Blocks: 19.63 MB - PeakMemoryUsage: 19.16 MB - OpenTime: 17.455us - ProjectionTime: 0ns - RowsProduced: 3.29507M (3295070) - SendersBlockedTotalTimer(*): 14s816ms - WaitForDependencyTime: 0ns - WaitForData0: 3s175ms PipelineXTask (index=14):(Active: 137.464ms, % non-child: 0.00%) - CoreChangeTimes: 54 - ExecuteTime: 137.231ms - CloseTime: 66.300us - GetBlockTime: 122.673ms - OpenTime: 4.900us - PrepareTime: 143.780us - SinkTime: 10.521ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 129 - NumBlockedTimes: 131 - NumScheduleTimes: 132 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 125.762ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.318ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 22.82 KB - CloseTime: 23.857us - CompressTime: 0ns - ExecTime: 10.326ms - InputRows: 3.484K (3484) - LocalBytesSent: 211.00 KB - LocalSendTime: 113.855us - LocalSentRows: 2.96K (2960) - MemoryUsage: - PeakMemoryUsage: 408.00 KB - MergeBlockTime: 0ns - OpenTime: 61.886us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.726ms - RowsProduced: 3.484K (3484) - RpcAvgTime: 4.997ms - RpcCount: 2 - RpcMaxTime: 5.36ms - RpcMinTime: 4.957ms - RpcSumTime: 9.994ms - SerializeBatchTime: 106.254us - SplitBlockDistributeByChannelTime: 4.474ms - SplitBlockHashComputeTime: 2.772ms - UncompressedRowBatchSize: 38.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.414ms - CloseTime: 5.494us - ExecTime: 6.106ms - HashTableComputeTime: 3.478ms - HashTableEmplaceTime: 2.358ms - HashTableInputCount: 3.484K (3484) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.537us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 726 - BuildOutputBlock: 0ns - CloseTime: 18.143us - ExecTime: 98.289ms - InitProbeSideTime: 29.797ms - JoinFilterTimer: 94.510us - MemoryUsage: - PeakMemoryUsage: 68.92 KB - ProbeKeyArena: 68.92 KB - OpenTime: 11.955us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 179.859us - ProbeFindNextTime: 0ns - ProbeRows: 3.294982M (3294982) - ProbeTime: 88.17ms - ProbeWhenBuildSideOutputTime: 3.934ms - ProbeWhenProbeSideOutputTime: 677.30us - ProbeWhenProcessHashTableTime: 10.250us - ProbeWhenSearchHashTableTime: 43.734ms - ProjectionTime: 7.430ms - RowsProduced: 3.484K (3484) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s881ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 873 - BytesReceived: 1.86 MB - CloseTime: 11.767us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.523ms - ExecTime: 15.291ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.45 MB - MemoryUsage: - Blocks: 19.65 MB - PeakMemoryUsage: 18.83 MB - OpenTime: 15.303us - ProjectionTime: 0ns - RowsProduced: 3.294982M (3294982) - SendersBlockedTotalTimer(*): 11s823ms - WaitForDependencyTime: 0ns - WaitForData0: 3s152ms PipelineXTask (index=16):(Active: 145.949ms, % non-child: 0.00%) - CoreChangeTimes: 56 - ExecuteTime: 145.630ms - CloseTime: 91.219us - GetBlockTime: 131.346ms - OpenTime: 5.905us - PrepareTime: 197.822us - SinkTime: 10.544ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 121 - NumBlockedTimes: 123 - NumScheduleTimes: 125 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 127.594ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.354ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.33 KB - CloseTime: 20.637us - CompressTime: 0ns - ExecTime: 10.368ms - InputRows: 3.573K (3573) - LocalBytesSent: 209.05 KB - LocalSendTime: 141.65us - LocalSentRows: 2.933K (2933) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 98.319us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.33ms - RowsProduced: 3.573K (3573) - RpcAvgTime: 4.364ms - RpcCount: 2 - RpcMaxTime: 6.168ms - RpcMinTime: 2.559ms - RpcSumTime: 8.728ms - SerializeBatchTime: 133.984us - SplitBlockDistributeByChannelTime: 4.527ms - SplitBlockHashComputeTime: 2.822ms - UncompressedRowBatchSize: 47.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10.321ms - CloseTime: 7.520us - ExecTime: 11.64ms - HashTableComputeTime: 7.752ms - HashTableEmplaceTime: 2.431ms - HashTableInputCount: 3.573K (3573) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.955us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 17.487us - ExecTime: 108.739ms - InitProbeSideTime: 30.909ms - JoinFilterTimer: 100.231us - MemoryUsage: - PeakMemoryUsage: 69.28 KB - ProbeKeyArena: 69.28 KB - OpenTime: 25.795us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 191.633us - ProbeFindNextTime: 0ns - ProbeRows: 3.296253M (3296253) - ProbeTime: 96.590ms - ProbeWhenBuildSideOutputTime: 4.985ms - ProbeWhenProbeSideOutputTime: 796.384us - ProbeWhenProcessHashTableTime: 14.763us - ProbeWhenSearchHashTableTime: 49.346ms - ProjectionTime: 9.263ms - RowsProduced: 3.573K (3573) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s698ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 873 - BytesReceived: 1.87 MB - CloseTime: 18.394us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.577ms - ExecTime: 8.652ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 37.91 MB - MemoryUsage: - Blocks: 19.62 MB - PeakMemoryUsage: 18.85 MB - OpenTime: 16.469us - ProjectionTime: 0ns - RowsProduced: 3.296253M (3296253) - SendersBlockedTotalTimer(*): 11s554ms - WaitForDependencyTime: 0ns - WaitForData0: 3s164ms PipelineXTask (index=18):(Active: 117.993ms, % non-child: 0.00%) - CoreChangeTimes: 46 - ExecuteTime: 117.672ms - CloseTime: 68.539us - GetBlockTime: 103.979ms - OpenTime: 7.20us - PrepareTime: 225.80us - SinkTime: 10.377ms - GetBlockCounter: 785 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 117 - NumBlockedTimes: 119 - NumScheduleTimes: 120 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 116.539ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 144.380ms DATA_STREAM_SINK_OPERATOR (id=85,dst_id=85): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.23 KB - CloseTime: 12.707us - CompressTime: 0ns - ExecTime: 10.211ms - InputRows: 3.529K (3529) - LocalBytesSent: 209.65 KB - LocalSendTime: 147.580us - LocalSentRows: 2.941K (2941) - MemoryUsage: - PeakMemoryUsage: 420.00 KB - MergeBlockTime: 0ns - OpenTime: 78.613us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5.462ms - RowsProduced: 3.529K (3529) - RpcAvgTime: 1.372ms - RpcCount: 2 - RpcMaxTime: 2.15ms - RpcMinTime: 729.876us - RpcSumTime: 2.745ms - SerializeBatchTime: 158.463us - SplitBlockDistributeByChannelTime: 4.637ms - SplitBlockHashComputeTime: 2.603ms - UncompressedRowBatchSize: 43.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 5.201ms - CloseTime: 10.978us - ExecTime: 5.848ms - HashTableComputeTime: 3.229ms - HashTableEmplaceTime: 2.177ms - HashTableInputCount: 3.529K (3529) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 4.986us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) HASH_JOIN_OPERATOR (id=83): - BlocksProduced: 733 - BuildOutputBlock: 0ns - CloseTime: 27.804us - ExecTime: 90.421ms - InitProbeSideTime: 27.285ms - JoinFilterTimer: 69.981us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 13.696us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 147.310us - ProbeFindNextTime: 0ns - ProbeRows: 3.295578M (3295578) - ProbeTime: 81.176ms - ProbeWhenBuildSideOutputTime: 3.480ms - ProbeWhenProbeSideOutputTime: 601.218us - ProbeWhenProcessHashTableTime: 13.864us - ProbeWhenSearchHashTableTime: 41.761ms - ProjectionTime: 6.681ms - RowsProduced: 3.529K (3529) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s890ms EXCHANGE_OPERATOR (id=82): - BlocksProduced: 869 - BytesReceived: 1.87 MB - CloseTime: 8.786us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.490ms - ExecTime: 5.255ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 38.50 MB - MemoryUsage: - Blocks: 19.69 MB - PeakMemoryUsage: 19.58 MB - OpenTime: 88.745us - ProjectionTime: 0ns - RowsProduced: 3.295578M (3295578) - SendersBlockedTotalTimer(*): 22s137ms - WaitForDependencyTime: 0ns - WaitForData0: 3s222ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.66ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 918.366us - CloseTime: 8.360us - GetBlockTime: 146.821us - OpenTime: 1.374us - PrepareTime: 131.940us - SinkTime: 646.474us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.30ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.353ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 22.127us - BuildRows: 3.592K (3592) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 386.735us - BuildTableInsertTime: 74.292us - BuildTableTime: 76.662us - CloseTime: 0ns - ExecTime: 664.443us - InputRows: 3.591K (3591) - MemoryUsage: - BuildBlocks: 241.94 KB - BuildKeyArena: 56.13 KB - HashTable: 49.54 KB - PeakMemoryUsage: 347.60 KB - OpenTime: 25.197us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.566us - RuntimeFilterComputeTime: 62.522us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 96.31 KB - CloseTime: 6.755us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 294.165us - ExecTime: 164.269us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 21.707us - ProjectionTime: 0ns - RowsProduced: 3.591K (3591) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s14ms PipelineXTask (index=3):(Active: 1.497ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.410ms - CloseTime: 6.21us - GetBlockTime: 169.357us - OpenTime: 1.359us - PrepareTime: 74.902us - SinkTime: 1.127ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.461ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.210ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.182us - BuildRows: 9.222K (9222) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 725.892us - BuildTableInsertTime: 202.66us - BuildTableTime: 203.823us - CloseTime: 0ns - ExecTime: 1.146ms - InputRows: 9.221K (9221) - MemoryUsage: - BuildBlocks: 621.30 KB - BuildKeyArena: 144.09 KB - HashTable: 109.03 KB - PeakMemoryUsage: 874.42 KB - OpenTime: 26.137us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.134us - RuntimeFilterComputeTime: 115.738us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 238.31 KB - CloseTime: 4.817us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 318.706us - ExecTime: 176.329us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 370.00 KB - MemoryUsage: - Blocks: 74.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.34us - ProjectionTime: 0ns - RowsProduced: 9.221K (9221) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s17ms PipelineXTask (index=5):(Active: 777.63us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 706.769us - CloseTime: 6.228us - GetBlockTime: 127.565us - OpenTime: 1.502us - PrepareTime: 57.165us - SinkTime: 481.934us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 746.799us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.329ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.616us - BuildRows: 3.524K (3524) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 274.215us - BuildTableInsertTime: 67.450us - BuildTableTime: 68.491us - CloseTime: 0ns - ExecTime: 494.688us - InputRows: 3.523K (3523) - MemoryUsage: - BuildBlocks: 237.34 KB - BuildKeyArena: 55.06 KB - HashTable: 33.21 KB - PeakMemoryUsage: 325.60 KB - OpenTime: 18.78us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.17us - RuntimeFilterComputeTime: 65.608us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 96.71 KB - CloseTime: 5.366us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 325.346us - ExecTime: 141.183us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.593us - ProjectionTime: 0ns - RowsProduced: 3.523K (3523) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=7):(Active: 705.859us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 642.983us - CloseTime: 5.479us - GetBlockTime: 137.411us - OpenTime: 1.895us - PrepareTime: 50.106us - SinkTime: 423.12us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 677.171us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.2ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.711us - BuildRows: 3.658K (3658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 248.951us - BuildTableInsertTime: 77.338us - BuildTableTime: 78.610us - CloseTime: 0ns - ExecTime: 436.413us - InputRows: 3.657K (3657) - MemoryUsage: - BuildBlocks: 246.38 KB - BuildKeyArena: 57.16 KB - HashTable: 49.87 KB - PeakMemoryUsage: 353.39 KB - OpenTime: 17.541us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 1.983us - RuntimeFilterComputeTime: 36.977us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 100.70 KB - CloseTime: 4.515us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 281.917us - ExecTime: 130.248us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 8.128us - ProjectionTime: 0ns - RowsProduced: 3.657K (3657) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=9):(Active: 710.87us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 625.558us - CloseTime: 6.61us - GetBlockTime: 159.302us - OpenTime: 1.793us - PrepareTime: 70.221us - SinkTime: 395.211us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 682.701us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.134ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.515us - BuildRows: 3.666K (3666) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 242.198us - BuildTableInsertTime: 72.911us - BuildTableTime: 74.151us - CloseTime: 0ns - ExecTime: 416.879us - InputRows: 3.665K (3665) - MemoryUsage: - BuildBlocks: 246.93 KB - BuildKeyArena: 57.28 KB - HashTable: 49.90 KB - PeakMemoryUsage: 354.11 KB - OpenTime: 25.386us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.810us - RuntimeFilterComputeTime: 33.601us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 98.15 KB - CloseTime: 5.205us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 303.314us - ExecTime: 172.743us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.454us - ProjectionTime: 0ns - RowsProduced: 3.665K (3665) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=11):(Active: 823.214us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 747.81us - CloseTime: 11.34us - GetBlockTime: 127.196us - OpenTime: 2.471us - PrepareTime: 57.156us - SinkTime: 534.445us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 787.846us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.537ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.823us - BuildRows: 3.474K (3474) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 259.755us - BuildTableInsertTime: 140.487us - BuildTableTime: 143.540us - CloseTime: 0ns - ExecTime: 554.769us - InputRows: 3.473K (3473) - MemoryUsage: - BuildBlocks: 233.99 KB - BuildKeyArena: 54.28 KB - HashTable: 32.97 KB - PeakMemoryUsage: 321.23 KB - OpenTime: 26.362us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 19.95us - RuntimeFilterComputeTime: 42.681us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 94.13 KB - CloseTime: 8.720us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 205.710us - ExecTime: 139.725us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.90us - ProjectionTime: 0ns - RowsProduced: 3.473K (3473) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=13):(Active: 716.524us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 653.425us - CloseTime: 4.495us - GetBlockTime: 117.79us - OpenTime: 2.240us - PrepareTime: 50.529us - SinkTime: 435.741us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 688.750us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.106ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.706us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 290.382us - BuildTableInsertTime: 62.257us - BuildTableTime: 63.579us - CloseTime: 0ns - ExecTime: 449.473us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.76 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.15 KB - OpenTime: 18.236us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.55us - RuntimeFilterComputeTime: 31.685us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 94.77 KB - CloseTime: 3.500us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 247.568us - ExecTime: 123.380us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 66.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.783us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s17ms PipelineXTask (index=15):(Active: 835.341us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 773.473us - CloseTime: 6.148us - GetBlockTime: 99.477us - OpenTime: 2.337us - PrepareTime: 47.70us - SinkTime: 595.843us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 807.660us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.834ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.755us - BuildRows: 3.485K (3485) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 372.171us - BuildTableInsertTime: 121.680us - BuildTableTime: 123.659us - CloseTime: 0ns - ExecTime: 609.536us - InputRows: 3.484K (3484) - MemoryUsage: - BuildBlocks: 234.75 KB - BuildKeyArena: 54.45 KB - HashTable: 33.02 KB - PeakMemoryUsage: 322.22 KB - OpenTime: 17.789us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.351us - RuntimeFilterComputeTime: 34.293us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 95.04 KB - CloseTime: 4.914us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 245.165us - ExecTime: 111.325us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 66.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.959us - ProjectionTime: 0ns - RowsProduced: 3.484K (3484) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s18ms PipelineXTask (index=17):(Active: 725.587us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 661.667us - CloseTime: 7.303us - GetBlockTime: 116.738us - OpenTime: 1.920us - PrepareTime: 49.636us - SinkTime: 475.665us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 699.193us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.652ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.916us - BuildRows: 3.574K (3574) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 318.717us - BuildTableInsertTime: 58.750us - BuildTableTime: 60.428us - CloseTime: 0ns - ExecTime: 487.576us - InputRows: 3.573K (3573) - MemoryUsage: - BuildBlocks: 240.72 KB - BuildKeyArena: 55.84 KB - HashTable: 33.46 KB - PeakMemoryUsage: 330.01 KB - OpenTime: 15.742us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.259us - RuntimeFilterComputeTime: 36.223us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 97.01 KB - CloseTime: 5.870us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 176.233us - ExecTime: 126.830us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.800us - ProjectionTime: 0ns - RowsProduced: 3.573K (3573) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms PipelineXTask (index=19):(Active: 881.247us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 793.149us - CloseTime: 6.198us - GetBlockTime: 111.134us - OpenTime: 1.932us - PrepareTime: 75.409us - SinkTime: 611.549us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 854.606us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.861ms HASH_JOIN_SINK_OPERATOR (id=83): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.694us - BuildRows: 3.53K (3530) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 213.99us - BuildTableInsertTime: 79.196us - BuildTableTime: 81.739us - CloseTime: 0ns - ExecTime: 634.529us - InputRows: 3.529K (3529) - MemoryUsage: - BuildBlocks: 237.78 KB - BuildKeyArena: 55.16 KB - HashTable: 33.24 KB - PeakMemoryUsage: 326.17 KB - OpenTime: 27.500us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 203.959us - RuntimeFilterComputeTime: 65.326us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=80): - BlocksProduced: 19 - BytesReceived: 95.32 KB - CloseTime: 4.849us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 184.972us - ExecTime: 123.409us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 165.00 KB - MemoryUsage: - Blocks: 99.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.889us - ProjectionTime: 0ns - RowsProduced: 3.529K (3529) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s16ms Fragment 120: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 300.0ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 299.405ms - CloseTime: 98.884us - GetBlockTime: 5.899ms - OpenTime: 128.196us - PrepareTime: 358.656us - SinkTime: 289.687ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 9 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 214.825ms - WaitBfTime: 927.42ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 389.614ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.147K (1147) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.44 MB - CloseTime: 15.658us - CompressTime: 0ns - ExecTime: 289.378ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 34.32 MB - LocalSendTime: 5.488ms - LocalSentRows: 3.99915M (3999150) - MemoryUsage: - PeakMemoryUsage: 50.95 MB - MergeBlockTime: 0ns - OpenTime: 78.874us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s441ms - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 59.432ms - RpcCount: 190 - RpcMaxTime: 5s673ms - RpcMinTime: 5s618ms - RpcSumTime: 11s292ms - SerializeBatchTime: 13.160ms - SplitBlockDistributeByChannelTime: 104.813ms - SplitBlockHashComputeTime: 121.940ms - UncompressedRowBatchSize: 7.31 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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.960us - BlocksProduced: 1.183K (1183) - CloseTime: 79.458us - ExecTime: 100.543ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 336.982us - ProcessConjunctTime: 29.789us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 221.831ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 94.671ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [126.597ms, 19.922ms, 19.928ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [73.282ms, 73.974ms, 74.574ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 154.893ms - MemoryUsage: - FreeBlocks: 25.28 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 715.829us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 66.965us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 69.474ms - ScannerCtxSchedTime: 221.823ms - ScannerFilterTime: 8.603ms - ScannerGetBlockTime: 157.256ms - ScannerInitTime: 65.632us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 7.483us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 24.778us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 28.958us - BlockInitTime: 333.400us - BlockLoadTime: 154.866ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 589 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 333.738us - FirstReadTime: 150.862ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.105us - 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: 206.605us - OutputIndexResultColumnTimer: 143.834us - 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: 248.799ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 248.442ms - CloseTime: 67.492us - GetBlockTime: 4.640ms - OpenTime: 63.30us - PrepareTime: 219.896us - SinkTime: 240.746ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 161.157ms - WaitBfTime: 927.165ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 371.177ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.146K (1146) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.44 MB - CloseTime: 12.857us - CompressTime: 0ns - ExecTime: 240.556ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 34.32 MB - LocalSendTime: 3.827ms - LocalSentRows: 3.998968M (3998968) - MemoryUsage: - PeakMemoryUsage: 51.81 MB - MergeBlockTime: 0ns - OpenTime: 92.904us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s497ms - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 60.227ms - RpcCount: 191 - RpcMaxTime: 5s801ms - RpcMinTime: 5s701ms - RpcSumTime: 11s503ms - SerializeBatchTime: 11.730ms - SplitBlockDistributeByChannelTime: 137.64ms - SplitBlockHashComputeTime: 55.124ms - UncompressedRowBatchSize: 7.31 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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.391us - BlocksProduced: 1.182K (1182) - CloseTime: 51.100us - ExecTime: 90.727ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 125.745us - ProcessConjunctTime: 9.676us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 233.55ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 86.287ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [88.770ms, 79.163ms, 5.549ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [78.012ms, 76.550ms, 78.491ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 171.392ms - MemoryUsage: - FreeBlocks: 22.61 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 713.547us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 61.913us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 44.764ms - ScannerCtxSchedTime: 233.46ms - ScannerFilterTime: 311.25us - ScannerGetBlockTime: 172.766ms - ScannerInitTime: 35.258us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 12.433us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 21.636us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 29.727us - BlockInitTime: 205.735us - BlockLoadTime: 171.525ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 590 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 181.13us - FirstReadTime: 169.204ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.767us - 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: 113.873us - OutputIndexResultColumnTimer: 95.135us - 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: 224.654ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 224.319ms - CloseTime: 76.838us - GetBlockTime: 3.676ms - OpenTime: 98.862us - PrepareTime: 151.497us - SinkTime: 218.499ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 128.352ms - WaitBfTime: 927.223ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 398.185ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 832 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.66 MB - CloseTime: 26.790us - CompressTime: 0ns - ExecTime: 218.327ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 24.83 MB - LocalSendTime: 3.1ms - LocalSentRows: 2.893477M (2893477) - MemoryUsage: - PeakMemoryUsage: 36.53 MB - MergeBlockTime: 0ns - OpenTime: 53.582us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 861.977ms - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 72.198ms - RpcCount: 140 - RpcMaxTime: 5s155ms - RpcMinTime: 4s952ms - RpcSumTime: 10s107ms - SerializeBatchTime: 4.580ms - SplitBlockDistributeByChannelTime: 70.612ms - SplitBlockHashComputeTime: 91.989ms - UncompressedRowBatchSize: 5.29 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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: 1.256us - BlocksProduced: 856 - CloseTime: 45.862us - ExecTime: 96.879ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 153.773us - ProcessConjunctTime: 8.931us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 162.48ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.272ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [15.232ms, 162.932ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [79.860ms, 82.187ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 176.118ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 419.697us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 42.786us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 38.401ms - ScannerCtxSchedTime: 162.44ms - ScannerFilterTime: 256.709us - ScannerGetBlockTime: 177.652ms - ScannerInitTime: 68.259us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.102us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.721us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 49.529us - BlockInitTime: 255.151us - BlockLoadTime: 176.303ms - BlocksLoad: 865 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 857 - FirstReadSeekTime: 157.561us - FirstReadTime: 174.176ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.759us - 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: 101.512us - OutputIndexResultColumnTimer: 68.132us - 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: 191.619ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 191.326ms - CloseTime: 55.489us - GetBlockTime: 3.977ms - OpenTime: 85.498us - PrepareTime: 145.503us - SinkTime: 185.139ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 5 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 135.742ms - WaitBfTime: 927.320ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 398.814ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 832 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.66 MB - CloseTime: 17.341us - CompressTime: 0ns - ExecTime: 184.930ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 24.83 MB - LocalSendTime: 3.181ms - LocalSentRows: 2.893452M (2893452) - MemoryUsage: - PeakMemoryUsage: 36.57 MB - MergeBlockTime: 0ns - OpenTime: 54.610us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 803.859ms - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 75.411ms - RpcCount: 139 - RpcMaxTime: 5s285ms - RpcMinTime: 5s197ms - RpcSumTime: 10s482ms - SerializeBatchTime: 5.620ms - SplitBlockDistributeByChannelTime: 78.856ms - SplitBlockHashComputeTime: 59.262ms - UncompressedRowBatchSize: 5.28 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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.324us - BlocksProduced: 856 - CloseTime: 34.614us - ExecTime: 100.460ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 136.383us - ProcessConjunctTime: 10.802us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 163.802ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 96.579ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [27.668ms, 13.402ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [80.376ms, 83.426ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 39.34ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 473.376us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 45.319us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.579ms - ScannerCtxSchedTime: 163.795ms - ScannerFilterTime: 239.218us - ScannerGetBlockTime: 40.477ms - ScannerInitTime: 54.499us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.959us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 13.58us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 40.250us - BlockInitTime: 255.369us - BlockLoadTime: 39.262ms - BlocksLoad: 863 - CachedPagesNum: 430 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 858 - FirstReadSeekTime: 150.623us - FirstReadTime: 37.279ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.52us - 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: 84.206us - OutputIndexResultColumnTimer: 66.973us - 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: 97.555ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 97.206ms - CloseTime: 66.359us - GetBlockTime: 1.818ms - OpenTime: 49.73us - PrepareTime: 226.628us - SinkTime: 94.148ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 73.367ms - WaitBfTime: 927.401ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 374.402ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 545 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.09 MB - CloseTime: 17.925us - CompressTime: 0ns - ExecTime: 94.90ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 16.16 MB - LocalSendTime: 1.686ms - LocalSentRows: 1.883163M (1883163) - MemoryUsage: - PeakMemoryUsage: 23.40 MB - MergeBlockTime: 0ns - OpenTime: 67.82us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s814ms - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 107.35ms - RpcCount: 90 - RpcMaxTime: 4s821ms - RpcMinTime: 4s811ms - RpcSumTime: 9s633ms - SerializeBatchTime: 3.327ms - SplitBlockDistributeByChannelTime: 26.933ms - SplitBlockHashComputeTime: 48.344ms - UncompressedRowBatchSize: 3.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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: 1.62us - BlocksProduced: 557 - CloseTime: 44.501us - ExecTime: 110.792ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 165.493us - ProcessConjunctTime: 8.642us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 85.108ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 108.875ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [18.585ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [85.108ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 17.533ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 182.634us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.758us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.806ms - ScannerCtxSchedTime: 85.105ms - ScannerFilterTime: 160.702us - ScannerGetBlockTime: 18.268ms - ScannerInitTime: 23.530us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.25us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.971us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.252us - BlockInitTime: 48.460us - BlockLoadTime: 17.477ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 104.519us - FirstReadTime: 16.396ms - IOTimer: 0ns - InvertedIndexFilterTime: 888ns - 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: 63.235us - OutputIndexResultColumnTimer: 42.298us - 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: 79.524ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 79.235ms - CloseTime: 56.918us - GetBlockTime: 1.738ms - OpenTime: 49.306us - PrepareTime: 175.869us - SinkTime: 76.231ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 79.41ms - WaitBfTime: 927.446ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 423.261ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 544 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.09 MB - CloseTime: 21.10us - CompressTime: 0ns - ExecTime: 76.176ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 16.16 MB - LocalSendTime: 1.802ms - LocalSentRows: 1.883147M (1883147) - MemoryUsage: - PeakMemoryUsage: 22.95 MB - MergeBlockTime: 0ns - OpenTime: 68.354us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s807ms - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 106.963ms - RpcCount: 90 - RpcMaxTime: 4s816ms - RpcMinTime: 4s809ms - RpcSumTime: 9s626ms - SerializeBatchTime: 3.669ms - SplitBlockDistributeByChannelTime: 31.462ms - SplitBlockHashComputeTime: 24.303ms - UncompressedRowBatchSize: 3.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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.17us - BlocksProduced: 557 - CloseTime: 32.157us - ExecTime: 108.678ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 111.114us - ProcessConjunctTime: 9.311us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 84.963ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 106.949ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [17.797ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [84.963ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 16.770ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 148.961us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 24.795us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.986ms - ScannerCtxSchedTime: 84.959ms - ScannerFilterTime: 165.564us - ScannerGetBlockTime: 17.470ms - ScannerInitTime: 26.114us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 744ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.672us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.797us - BlockInitTime: 40.25us - BlockLoadTime: 16.713ms - BlocksLoad: 558 - CachedPagesNum: 277 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 557 - FirstReadSeekTime: 99.777us - FirstReadTime: 15.606ms - IOTimer: 0ns - InvertedIndexFilterTime: 837ns - 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.25us - OutputIndexResultColumnTimer: 36.795us - 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: 33.999ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 33.662ms - CloseTime: 86.617us - GetBlockTime: 851.894us - OpenTime: 46.92us - PrepareTime: 197.638us - SinkTime: 32.347ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.26ms - WaitBfTime: 927.490ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 364.2ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 218 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 830.91 KB - CloseTime: 23.950us - CompressTime: 0ns - ExecTime: 32.374ms - InputRows: 876.727K (876727) - LocalBytesSent: 6.27 MB - LocalSendTime: 518.484us - LocalSentRows: 730.602K (730602) - MemoryUsage: - PeakMemoryUsage: 9.26 MB - MergeBlockTime: 0ns - OpenTime: 56.374us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s978ms - RowsProduced: 876.727K (876727) - RpcAvgTime: 165.631ms - RpcCount: 36 - RpcMaxTime: 2s983ms - RpcMinTime: 2s979ms - RpcSumTime: 5s962ms - SerializeBatchTime: 1.318ms - SplitBlockDistributeByChannelTime: 9.299ms - SplitBlockHashComputeTime: 15.559ms - UncompressedRowBatchSize: 1.33 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 2s942ms - 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.88us - BlocksProduced: 216 - CloseTime: 57.304us - ExecTime: 176.277ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 143.914us - ProcessConjunctTime: 7.882us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 83.663ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 175.270ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [88.730ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [83.663ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 88.194ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 205.30us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.29us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.554ms - ScannerCtxSchedTime: 83.661ms - ScannerFilterTime: 77.805us - ScannerGetBlockTime: 88.574ms - ScannerInitTime: 22.44us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 668ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.927us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 13.418us - BlockInitTime: 53.738us - BlockLoadTime: 33.194ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 41.603us - FirstReadTime: 32.573ms - IOTimer: 0ns - InvertedIndexFilterTime: 754ns - 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: 29.624us - OutputIndexResultColumnTimer: 23.547us - 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=7):(Active: 174.983ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 174.632ms - CloseTime: 87.924us - GetBlockTime: 3.477ms - OpenTime: 75.40us - PrepareTime: 182.269us - SinkTime: 168.882ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 113.490ms - WaitBfTime: 927.531ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 461.290ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 807 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.92 MB - CloseTime: 17.492us - CompressTime: 0ns - ExecTime: 168.714ms - InputRows: 3.389614M (3389614) - LocalBytesSent: 24.24 MB - LocalSendTime: 3.388ms - LocalSentRows: 2.824561M (2824561) - MemoryUsage: - PeakMemoryUsage: 39.05 MB - MergeBlockTime: 0ns - OpenTime: 66.214us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s94ms - RowsProduced: 3.389614M (3389614) - RpcAvgTime: 55.71ms - RpcCount: 134 - RpcMaxTime: 3s746ms - RpcMinTime: 3s632ms - RpcSumTime: 7s379ms - SerializeBatchTime: 8.245ms - SplitBlockDistributeByChannelTime: 54.641ms - SplitBlockHashComputeTime: 63.964ms - UncompressedRowBatchSize: 5.16 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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: 1.187us - BlocksProduced: 836 - CloseTime: 66.161us - ExecTime: 107.297ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 141.69us - ProcessConjunctTime: 18.917us - ProjectionTime: 0ns - RowsProduced: 3.389614M (3389614) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 173.139ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 103.883ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [19.833ms, 189.971ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [87.838ms, 85.300ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 205.272ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 417.899us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 32.504us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 44.99ms - ScannerCtxSchedTime: 173.124ms - ScannerFilterTime: 2.833ms - ScannerGetBlockTime: 206.640ms - ScannerInitTime: 32.766us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 2.877us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.910us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 18.799us - BlockInitTime: 166.847us - BlockLoadTime: 205.235ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 188.747us - FirstReadTime: 202.998ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.241us - 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: 108.105us - OutputIndexResultColumnTimer: 80.486us - 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=8):(Active: 204.163ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 203.839ms - CloseTime: 77.338us - GetBlockTime: 5.200ms - OpenTime: 69.30us - PrepareTime: 170.268us - SinkTime: 195.187ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 6 - NumScheduleTimes: 8 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 194.821ms - WaitBfTime: 927.602ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 447.681ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.188K (1188) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.60 MB - CloseTime: 13.241us - CompressTime: 0ns - ExecTime: 194.866ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 35.60 MB - LocalSendTime: 6.327ms - LocalSentRows: 4.147282M (4147282) - MemoryUsage: - PeakMemoryUsage: 54.23 MB - MergeBlockTime: 0ns - OpenTime: 64.292us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s560ms - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 54.648ms - RpcCount: 198 - RpcMaxTime: 5s461ms - RpcMinTime: 5s359ms - RpcSumTime: 10s820ms - SerializeBatchTime: 7.330ms - SplitBlockDistributeByChannelTime: 66.627ms - SplitBlockHashComputeTime: 74.39ms - UncompressedRowBatchSize: 7.57 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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: 1.25us - BlocksProduced: 1.227K (1227) - CloseTime: 60.535us - ExecTime: 106.179ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 126.496us - ProcessConjunctTime: 8.404us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 273.558ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 101.208ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [18.200ms, 12.114ms, 82.019ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [89.858ms, 92.740ms, 90.959ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 109.843ms - MemoryUsage: - FreeBlocks: 26.86 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 645.389us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 74.697us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.47ms - ScannerCtxSchedTime: 273.548ms - ScannerFilterTime: 362.151us - ScannerGetBlockTime: 111.577ms - ScannerInitTime: 34.882us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 4.338us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 17.398us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 58.820us - BlockInitTime: 294.455us - BlockLoadTime: 110.73ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 194.842us - FirstReadTime: 107.531ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.52us - 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: 127.277us - OutputIndexResultColumnTimer: 92.888us - 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=9):(Active: 229.32ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 228.670ms - CloseTime: 93.274us - GetBlockTime: 4.981ms - OpenTime: 86.801us - PrepareTime: 174.734us - SinkTime: 219.969ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 5 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 183.664ms - WaitBfTime: 927.669ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 479.750ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.187K (1187) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.60 MB - CloseTime: 13.450us - CompressTime: 0ns - ExecTime: 219.673ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 35.59 MB - LocalSendTime: 5.710ms - LocalSentRows: 4.146843M (4146843) - MemoryUsage: - PeakMemoryUsage: 54.64 MB - MergeBlockTime: 0ns - OpenTime: 55.86us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s905ms - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 30.512ms - RpcCount: 198 - RpcMaxTime: 3s51ms - RpcMinTime: 2s989ms - RpcSumTime: 6s41ms - SerializeBatchTime: 9.579ms - SplitBlockDistributeByChannelTime: 66.649ms - SplitBlockHashComputeTime: 97.263ms - UncompressedRowBatchSize: 7.57 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 119.181us - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 12.3ms - WaitForLocalExchangeBuffer9: 15s494ms - 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.212us - BlocksProduced: 1.228K (1228) - CloseTime: 69.763us - ExecTime: 109.759ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 150.965us - ProcessConjunctTime: 11.45us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 285.509ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 105.29ms - 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: 0 - expr_filtered_rows: 596 - expr_input_rows: 1.098692M (1098692) 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: 0 - expr_filtered_rows: 0 - expr_input_rows: 549.346K (549346) VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [38.327ms, 33.546ms, 8.973ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [99.829ms, 92.880ms, 92.799ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 69.511ms - MemoryUsage: - FreeBlocks: 26.86 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 13.684ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 68.422us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 69.39ms - ScannerCtxSchedTime: 285.503ms - ScannerFilterTime: 7.962ms - ScannerGetBlockTime: 72.293ms - ScannerInitTime: 58.939us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - BitmapIndexFilterTimer: 5.592us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 26.308us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 13.92ms - BlockInitTime: 13.436ms - BlockLoadTime: 82.854ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 620 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 325.306us - FirstReadTime: 65.960ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.264us - 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: 185.527us - OutputIndexResultColumnTimer: 145.581us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 44.163ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 43.732ms - CloseTime: 49.326us - GetBlockTime: 1.243ms - OpenTime: 68.668us - PrepareTime: 303.675us - SinkTime: 42.36ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 39.598ms - WaitBfTime: 868.535ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 190.899ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 226 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.06 MB - CloseTime: 19.488us - CompressTime: 0ns - ExecTime: 42.51ms - InputRows: 876.719K (876719) - LocalBytesSent: 1.25 MB - LocalSendTime: 219.789us - LocalSentRows: 146.104K (146104) - MemoryUsage: - PeakMemoryUsage: 2.40 MB - MergeBlockTime: 0ns - OpenTime: 68.318us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17s150ms - RowsProduced: 876.719K (876719) - RpcAvgTime: 446.420ms - RpcCount: 180 - RpcMaxTime: 10s734ms - RpcMinTime: 6s213ms - RpcSumTime: 1m20s - SerializeBatchTime: 7.982ms - SplitBlockDistributeByChannelTime: 7.457ms - SplitBlockHashComputeTime: 18.256ms - UncompressedRowBatchSize: 6.67 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.327us - BlocksProduced: 216 - CloseTime: 26.468us - ExecTime: 124.314ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 235.221us - ProcessConjunctTime: 10.871us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 82.374ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 122.893ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [25.161ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [82.374ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 24.790ms - MemoryUsage: - FreeBlocks: 7.63 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 13.116ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.890us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.629ms - ScannerCtxSchedTime: 82.372ms - ScannerFilterTime: 46.848us - ScannerGetBlockTime: 25.55ms - ScannerInitTime: 35.724us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 443ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.40us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 14.353us - BlockInitTime: 45.636us - BlockLoadTime: 37.812ms - BlocksLoad: 217 - CachedPagesNum: 109 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 216 - FirstReadSeekTime: 35.825us - FirstReadTime: 37.365ms - IOTimer: 0ns - InvertedIndexFilterTime: 765ns - 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.318us - OutputIndexResultColumnTimer: 18.260us - 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=1):(Active: 234.856ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 234.377ms - CloseTime: 107.42us - GetBlockTime: 4.118ms - OpenTime: 129.411us - PrepareTime: 231.615us - SinkTime: 228.677ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 7 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 156.260ms - WaitBfTime: 868.396ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 138.610ms DATA_STREAM_SINK_OPERATOR (id=82,dst_id=82): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 818 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.58 MB - CloseTime: 18.903us - CompressTime: 0ns - ExecTime: 228.510ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 4.84 MB - LocalSendTime: 969.639us - LocalSentRows: 564.151K (564151) - MemoryUsage: - PeakMemoryUsage: 8.35 MB - MergeBlockTime: 0ns - OpenTime: 76.83us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18s38ms - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 134.766ms - RpcCount: 674 - RpcMaxTime: 12s27ms - RpcMinTime: 6s255ms - RpcSumTime: 1m30s - SerializeBatchTime: 40.460ms - SplitBlockDistributeByChannelTime: 62.645ms - SplitBlockHashComputeTime: 61.774ms - UncompressedRowBatchSize: 25.80 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 2.883us - BlocksProduced: 836 - CloseTime: 84.475us - ExecTime: 103.689ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 220.473us - ProcessConjunctTime: 21.530us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 167.492ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 99.579ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 32, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 33, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [CUS_ID] - PerScannerRunningTime: [36.613ms, 13.424ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [81.706ms, 85.786ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 48.88ms - MemoryUsage: - FreeBlocks: 20.04 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 569.974us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 46.801us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.262ms - ScannerCtxSchedTime: 167.486ms - ScannerFilterTime: 309.529us - ScannerGetBlockTime: 49.414ms - ScannerInitTime: 37.285us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 3.302us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.509us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 27.2us - BlockInitTime: 228.794us - BlockLoadTime: 48.209ms - BlocksLoad: 838 - CachedPagesNum: 416 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 836 - FirstReadSeekTime: 189.245us - FirstReadTime: 45.831ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.83us - 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.439us - OutputIndexResultColumnTimer: 87.676us - 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 Fragment 121: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 78.136ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 77.872ms - CloseTime: 71.700us - GetBlockTime: 65.693ms - OpenTime: 8.183us - PrepareTime: 148.83us - SinkTime: 9.716ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 163 - NumBlockedTimes: 165 - NumScheduleTimes: 166 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 74.646ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 159.128ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 160.73 KB - CloseTime: 25.450us - CompressTime: 0ns - ExecTime: 9.685ms - InputRows: 4.133K (4133) - LocalBytesSent: 42.04 KB - LocalSendTime: 44.745us - LocalSentRows: 624 - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 61.747us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s88ms - RowsProduced: 4.133K (4133) - RpcAvgTime: 1s85ms - RpcCount: 10 - RpcMaxTime: 1s85ms - RpcMinTime: 1s85ms - RpcSumTime: 10s856ms - SerializeBatchTime: 447.346us - SplitBlockDistributeByChannelTime: 5.653ms - SplitBlockHashComputeTime: 781.132us - UncompressedRowBatchSize: 244.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 169 - BuildOutputBlock: 0ns - CloseTime: 31.220us - ExecTime: 61.801ms - InitProbeSideTime: 23.422ms - JoinFilterTimer: 27.134us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 25.357us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 129.602us - ProbeFindNextTime: 0ns - ProbeRows: 696.522K (696522) - ProbeTime: 59.149ms - ProbeWhenBuildSideOutputTime: 1.879ms - ProbeWhenProbeSideOutputTime: 605.129us - ProbeWhenProcessHashTableTime: 16.844us - ProbeWhenSearchHashTableTime: 29.163ms - ProjectionTime: 1.503ms - RowsProduced: 4.133K (4133) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 294 - BytesReceived: 15.79 MB - CloseTime: 10.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.499ms - ExecTime: 3.114ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.62 MB - MemoryUsage: - Blocks: 928.00 KB - PeakMemoryUsage: 928.00 KB - OpenTime: 15.261us - ProjectionTime: 0ns - RowsProduced: 696.522K (696522) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s502ms PipelineXTask (index=2):(Active: 76.25ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 75.713ms - CloseTime: 47.229us - GetBlockTime: 64.84ms - OpenTime: 4.970us - PrepareTime: 223.542us - SinkTime: 9.236ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 157 - NumBlockedTimes: 159 - NumScheduleTimes: 160 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 75.527ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 160.677ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 156.63 KB - CloseTime: 12.678us - CompressTime: 0ns - ExecTime: 9.225ms - InputRows: 4.044K (4044) - LocalBytesSent: 41.98 KB - LocalSendTime: 37.33us - LocalSentRows: 623 - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 130.97us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s117ms - RowsProduced: 4.044K (4044) - RpcAvgTime: 1s115ms - RpcCount: 10 - RpcMaxTime: 1s115ms - RpcMinTime: 1s114ms - RpcSumTime: 11s152ms - SerializeBatchTime: 592.644us - SplitBlockDistributeByChannelTime: 5.136ms - SplitBlockHashComputeTime: 802.558us - UncompressedRowBatchSize: 238.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 17.617us - ExecTime: 59.772ms - InitProbeSideTime: 22.52ms - JoinFilterTimer: 24.148us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 13.57us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 138.162us - ProbeFindNextTime: 0ns - ProbeRows: 694.151K (694151) - ProbeTime: 57.404ms - ProbeWhenBuildSideOutputTime: 1.787ms - ProbeWhenProbeSideOutputTime: 524.926us - ProbeWhenProcessHashTableTime: 16.905us - ProbeWhenSearchHashTableTime: 29.263ms - ProjectionTime: 1.295ms - RowsProduced: 4.044K (4044) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 289 - BytesReceived: 15.76 MB - CloseTime: 13.603us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.776ms - ExecTime: 3.422ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.69 MB - MemoryUsage: - Blocks: 1.44 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 38.850us - ProjectionTime: 0ns - RowsProduced: 694.151K (694151) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s458ms PipelineXTask (index=4):(Active: 94.509ms, % non-child: 0.00%) - CoreChangeTimes: 26 - ExecuteTime: 94.256ms - CloseTime: 61.680us - GetBlockTime: 83.981ms - OpenTime: 4.463us - PrepareTime: 151.435us - SinkTime: 7.924ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 158 - NumBlockedTimes: 160 - NumScheduleTimes: 161 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 71.968ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 144.223ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 159.61 KB - CloseTime: 15.914us - CompressTime: 0ns - ExecTime: 7.921ms - InputRows: 4.073K (4073) - LocalBytesSent: 39.49 KB - LocalSendTime: 39.148us - LocalSentRows: 586 - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 90.875us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s86ms - RowsProduced: 4.073K (4073) - RpcAvgTime: 1s85ms - RpcCount: 10 - RpcMaxTime: 1s86ms - RpcMinTime: 1s85ms - RpcSumTime: 10s858ms - SerializeBatchTime: 404.635us - SplitBlockDistributeByChannelTime: 4.150ms - SplitBlockHashComputeTime: 728.761us - UncompressedRowBatchSize: 243.35 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 34.419us - ExecTime: 57.817ms - InitProbeSideTime: 21.254ms - JoinFilterTimer: 20.347us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 13.363us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 102.458us - ProbeFindNextTime: 0ns - ProbeRows: 695.779K (695779) - ProbeTime: 55.611ms - ProbeWhenBuildSideOutputTime: 1.805ms - ProbeWhenProbeSideOutputTime: 610.164us - ProbeWhenProcessHashTableTime: 14.328us - ProbeWhenSearchHashTableTime: 28.199ms - ProjectionTime: 1.160ms - RowsProduced: 4.073K (4073) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 291 - BytesReceived: 15.78 MB - CloseTime: 7.749us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.520ms - ExecTime: 3.409ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.37 MB - MemoryUsage: - Blocks: 1.44 MB - PeakMemoryUsage: 1.44 MB - OpenTime: 13.454us - ProjectionTime: 0ns - RowsProduced: 695.779K (695779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s502ms PipelineXTask (index=6):(Active: 76.648ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 76.449ms - CloseTime: 34.152us - GetBlockTime: 65.776ms - OpenTime: 4.66us - PrepareTime: 136.657us - SinkTime: 8.414ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 158 - NumBlockedTimes: 160 - NumScheduleTimes: 161 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 72.685ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 146.392ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 156.30 KB - CloseTime: 11.449us - CompressTime: 0ns - ExecTime: 8.375ms - InputRows: 3.96K (3960) - LocalBytesSent: 36.72 KB - LocalSendTime: 30.432us - LocalSentRows: 545 - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 73.570us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s105ms - RowsProduced: 3.96K (3960) - RpcAvgTime: 1s103ms - RpcCount: 10 - RpcMaxTime: 1s103ms - RpcMinTime: 1s103ms - RpcSumTime: 11s35ms - SerializeBatchTime: 404.909us - SplitBlockDistributeByChannelTime: 4.501ms - SplitBlockHashComputeTime: 842.439us - UncompressedRowBatchSize: 238.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 15.4us - ExecTime: 61.848ms - InitProbeSideTime: 25.243ms - JoinFilterTimer: 18.833us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 10.857us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 164.726us - ProbeFindNextTime: 0ns - ProbeRows: 694.145K (694145) - ProbeTime: 59.444ms - ProbeWhenBuildSideOutputTime: 1.754ms - ProbeWhenProbeSideOutputTime: 558.386us - ProbeWhenProcessHashTableTime: 18.570us - ProbeWhenSearchHashTableTime: 28.218ms - ProjectionTime: 1.338ms - RowsProduced: 3.96K (3960) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 290 - BytesReceived: 15.74 MB - CloseTime: 5.281us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.354ms - ExecTime: 3.169ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.41 MB - MemoryUsage: - Blocks: 928.00 KB - PeakMemoryUsage: 928.00 KB - OpenTime: 15.426us - ProjectionTime: 0ns - RowsProduced: 694.145K (694145) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s488ms PipelineXTask (index=8):(Active: 77.79ms, % non-child: 0.00%) - CoreChangeTimes: 25 - ExecuteTime: 76.890ms - CloseTime: 44.466us - GetBlockTime: 65.65ms - OpenTime: 4.423us - PrepareTime: 105.98us - SinkTime: 9.417ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 160 - NumBlockedTimes: 162 - NumScheduleTimes: 163 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 76.439ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.30ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 154.92 KB - CloseTime: 11.281us - CompressTime: 0ns - ExecTime: 9.341ms - InputRows: 3.933K (3933) - LocalBytesSent: 38.00 KB - LocalSendTime: 49.444us - LocalSentRows: 564 - MemoryUsage: - PeakMemoryUsage: 423.00 KB - MergeBlockTime: 0ns - OpenTime: 47.596us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s106ms - RowsProduced: 3.933K (3933) - RpcAvgTime: 1s103ms - RpcCount: 10 - RpcMaxTime: 1s103ms - RpcMinTime: 1s103ms - RpcSumTime: 11s33ms - SerializeBatchTime: 638.530us - SplitBlockDistributeByChannelTime: 4.938ms - SplitBlockHashComputeTime: 804.820us - UncompressedRowBatchSize: 235.11 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 25.364us - ExecTime: 61.27ms - InitProbeSideTime: 22.444ms - JoinFilterTimer: 19.512us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 10.574us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 140.430us - ProbeFindNextTime: 0ns - ProbeRows: 695.323K (695323) - ProbeTime: 58.597ms - ProbeWhenBuildSideOutputTime: 1.875ms - ProbeWhenProbeSideOutputTime: 573.98us - ProbeWhenProcessHashTableTime: 35.149us - ProbeWhenSearchHashTableTime: 29.812ms - ProjectionTime: 1.331ms - RowsProduced: 3.933K (3933) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 292 - BytesReceived: 15.77 MB - CloseTime: 5.97us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.981ms - ExecTime: 3.289ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.83 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 12.89us - ProjectionTime: 0ns - RowsProduced: 695.323K (695323) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s474ms PipelineXTask (index=10):(Active: 87.305ms, % non-child: 0.00%) - CoreChangeTimes: 31 - ExecuteTime: 87.56ms - CloseTime: 42.932us - GetBlockTime: 65.487ms - OpenTime: 4.126us - PrepareTime: 148.132us - SinkTime: 19.113ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 160 - NumBlockedTimes: 162 - NumScheduleTimes: 163 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 76.285ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.722ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 152.03 KB - CloseTime: 15.962us - CompressTime: 0ns - ExecTime: 19.104ms - InputRows: 3.873K (3873) - LocalBytesSent: 37.58 KB - LocalSendTime: 33.207us - LocalSentRows: 558 - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 93.377us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s99ms - RowsProduced: 3.873K (3873) - RpcAvgTime: 1s97ms - RpcCount: 10 - RpcMaxTime: 1s97ms - RpcMinTime: 1s96ms - RpcSumTime: 10s972ms - SerializeBatchTime: 515.723us - SplitBlockDistributeByChannelTime: 14.981ms - SplitBlockHashComputeTime: 826.918us - UncompressedRowBatchSize: 231.46 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 167 - BuildOutputBlock: 0ns - CloseTime: 15.855us - ExecTime: 61.343ms - InitProbeSideTime: 22.490ms - JoinFilterTimer: 21.623us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 8.846us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 147.152us - ProbeFindNextTime: 0ns - ProbeRows: 695.57K (695570) - ProbeTime: 58.871ms - ProbeWhenBuildSideOutputTime: 1.943ms - ProbeWhenProbeSideOutputTime: 544.199us - ProbeWhenProcessHashTableTime: 22.6us - ProbeWhenSearchHashTableTime: 29.908ms - ProjectionTime: 1.365ms - RowsProduced: 3.873K (3873) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 292 - BytesReceived: 15.75 MB - CloseTime: 7.271us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.356ms - ExecTime: 3.308ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.92 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 16.164us - ProjectionTime: 0ns - RowsProduced: 695.57K (695570) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s495ms PipelineXTask (index=12):(Active: 77.287ms, % non-child: 0.00%) - CoreChangeTimes: 29 - ExecuteTime: 77.41ms - CloseTime: 69.30us - GetBlockTime: 65.375ms - OpenTime: 9.67us - PrepareTime: 143.311us - SinkTime: 9.187ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 160 - NumBlockedTimes: 162 - NumScheduleTimes: 163 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 76.328ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 141.30ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 161.17 KB - CloseTime: 28.807us - CompressTime: 0ns - ExecTime: 9.132ms - InputRows: 4.104K (4104) - LocalBytesSent: 39.48 KB - LocalSendTime: 23.949us - LocalSentRows: 586 - MemoryUsage: - PeakMemoryUsage: 429.00 KB - MergeBlockTime: 0ns - OpenTime: 54.173us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s110ms - RowsProduced: 4.104K (4104) - RpcAvgTime: 1s109ms - RpcCount: 10 - RpcMaxTime: 1s110ms - RpcMinTime: 1s109ms - RpcSumTime: 11s97ms - SerializeBatchTime: 491.779us - SplitBlockDistributeByChannelTime: 4.903ms - SplitBlockHashComputeTime: 853.828us - UncompressedRowBatchSize: 245.51 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=79): - BlocksProduced: 166 - BuildOutputBlock: 0ns - CloseTime: 25.434us - ExecTime: 61.550ms - InitProbeSideTime: 21.884ms - JoinFilterTimer: 28.192us - MemoryUsage: - PeakMemoryUsage: 432.00 KB - ProbeKeyArena: 432.00 KB - OpenTime: 31.384us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 131.792us - ProbeFindNextTime: 0ns - ProbeRows: 694.608K (694608) - ProbeTime: 58.919ms - ProbeWhenBuildSideOutputTime: 1.939ms - ProbeWhenProbeSideOutputTime: 549.456us - ProbeWhenProcessHashTableTime: 15.752us - ProbeWhenSearchHashTableTime: 30.668ms - ProjectionTime: 1.468ms - RowsProduced: 4.104K (4104) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=78): - BlocksProduced: 289 - BytesReceived: 15.75 MB - CloseTime: 10.120us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 11.606ms - ExecTime: 3.95ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.36 MB - MemoryUsage: - Blocks: 736.00 KB - PeakMemoryUsage: 736.00 KB - OpenTime: 14.253us - ProjectionTime: 0ns - RowsProduced: 694.608K (694608) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s483ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 984.597us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 884.992us - CloseTime: 11.197us - GetBlockTime: 66.46us - OpenTime: 3.63us - PrepareTime: 79.993us - SinkTime: 771.239us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 961.495us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.738ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.566us - BuildRows: 4.134K (4134) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 386.479us - BuildTableInsertTime: 233.560us - BuildTableTime: 237.462us - CloseTime: 0ns - ExecTime: 791.242us - InputRows: 4.133K (4133) - MemoryUsage: - BuildBlocks: 242.12 KB - BuildKeyArena: 152.00 KB - HashTable: 52.19 KB - PeakMemoryUsage: 442.30 KB - OpenTime: 23.384us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.444us - RuntimeFilterComputeTime: 94.272us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 16 - BytesReceived: 87.44 KB - CloseTime: 8.929us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 142.777us - ExecTime: 100.46us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 171.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 33.576us - ProjectionTime: 0ns - RowsProduced: 4.133K (4133) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 350.851ms PipelineXTask (index=3):(Active: 1.202ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.127ms - CloseTime: 5.749us - GetBlockTime: 86.914us - OpenTime: 2.74us - PrepareTime: 62.72us - SinkTime: 976.398us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.160ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.310ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.190us - BuildRows: 4.045K (4045) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 529.325us - BuildTableInsertTime: 304.433us - BuildTableTime: 306.892us - CloseTime: 0ns - ExecTime: 989.180us - InputRows: 4.044K (4044) - MemoryUsage: - BuildBlocks: 236.92 KB - BuildKeyArena: 148.00 KB - HashTable: 51.75 KB - PeakMemoryUsage: 432.67 KB - OpenTime: 16.753us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.246us - RuntimeFilterComputeTime: 104.174us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 16 - BytesReceived: 86.45 KB - CloseTime: 4.790us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 166.988us - ExecTime: 105.13us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 156.75 KB - MemoryUsage: - Blocks: 171.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 19.521us - ProjectionTime: 0ns - RowsProduced: 4.044K (4044) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 349.509ms PipelineXTask (index=5):(Active: 3.12ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.914ms - CloseTime: 5.680us - GetBlockTime: 79.401us - OpenTime: 2.223us - PrepareTime: 84.32us - SinkTime: 2.793ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 972.288us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.374ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.424us - BuildRows: 4.074K (4074) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 413.928us - BuildTableInsertTime: 2.255ms - BuildTableTime: 2.257ms - CloseTime: 0ns - ExecTime: 2.808ms - InputRows: 4.073K (4073) - MemoryUsage: - BuildBlocks: 238.63 KB - BuildKeyArena: 148.00 KB - HashTable: 51.90 KB - PeakMemoryUsage: 434.52 KB - OpenTime: 18.121us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.430us - RuntimeFilterComputeTime: 92.302us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 16 - BytesReceived: 84.94 KB - CloseTime: 4.828us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 177.187us - ExecTime: 110.119us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 171.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 31.854us - ProjectionTime: 0ns - RowsProduced: 4.073K (4073) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 349.55ms PipelineXTask (index=7):(Active: 1.59ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 982.442us - CloseTime: 6.556us - GetBlockTime: 80.598us - OpenTime: 2.353us - PrepareTime: 62.720us - SinkTime: 852.696us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.39ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.305ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.158us - BuildRows: 3.961K (3961) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 440.32us - BuildTableInsertTime: 286.698us - BuildTableTime: 288.275us - CloseTime: 0ns - ExecTime: 877.258us - InputRows: 3.96K (3960) - MemoryUsage: - BuildBlocks: 232.02 KB - BuildKeyArena: 144.00 KB - HashTable: 51.34 KB - PeakMemoryUsage: 423.36 KB - OpenTime: 26.975us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.152us - RuntimeFilterComputeTime: 94.138us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 16 - BytesReceived: 83.13 KB - CloseTime: 5.297us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 146.243us - ExecTime: 97.337us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 171.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.308us - ProjectionTime: 0ns - RowsProduced: 3.96K (3960) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 349.189ms PipelineXTask (index=9):(Active: 1.128ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.64ms - CloseTime: 13.924us - GetBlockTime: 95.533us - OpenTime: 2.550us - PrepareTime: 41.918us - SinkTime: 909.559us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.99ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.595ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.360us - BuildRows: 3.934K (3934) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 414.943us - BuildTableInsertTime: 237.148us - BuildTableTime: 241.407us - CloseTime: 0ns - ExecTime: 917.747us - InputRows: 3.933K (3933) - MemoryUsage: - BuildBlocks: 230.42 KB - BuildKeyArena: 144.00 KB - HashTable: 51.21 KB - PeakMemoryUsage: 421.62 KB - OpenTime: 11.698us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.998us - RuntimeFilterComputeTime: 186.530us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 16 - BytesReceived: 83.01 KB - CloseTime: 11.140us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 136.795us - ExecTime: 107.311us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 156.75 KB - MemoryUsage: - Blocks: 171.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 8.140us - ProjectionTime: 0ns - RowsProduced: 3.933K (3933) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 349.131ms PipelineXTask (index=11):(Active: 1.73ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 913.773us - CloseTime: 10.669us - GetBlockTime: 81.979us - OpenTime: 1.947us - PrepareTime: 140.876us - SinkTime: 772.423us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.38ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.392ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.371us - BuildRows: 3.874K (3874) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 325.798us - BuildTableInsertTime: 195.203us - BuildTableTime: 198.616us - CloseTime: 0ns - ExecTime: 790.720us - InputRows: 3.873K (3873) - MemoryUsage: - BuildBlocks: 226.88 KB - BuildKeyArena: 144.00 KB - HashTable: 50.92 KB - PeakMemoryUsage: 417.79 KB - OpenTime: 20.740us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 83.916us - RuntimeFilterComputeTime: 129.39us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 16 - BytesReceived: 84.79 KB - CloseTime: 8.996us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 158.885us - ExecTime: 99.136us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 156.75 KB - MemoryUsage: - Blocks: 171.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.632us - ProjectionTime: 0ns - RowsProduced: 3.873K (3873) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 350.310ms PipelineXTask (index=13):(Active: 1.192ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.133ms - CloseTime: 8.129us - GetBlockTime: 104.29us - OpenTime: 2.643us - PrepareTime: 42.904us - SinkTime: 970.44us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.169ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.261ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.834us - BuildRows: 4.105K (4105) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 537.443us - BuildTableInsertTime: 286.454us - BuildTableTime: 288.905us - CloseTime: 0ns - ExecTime: 980.41us - InputRows: 4.104K (4104) - MemoryUsage: - BuildBlocks: 240.46 KB - BuildKeyArena: 152.00 KB - HashTable: 52.05 KB - PeakMemoryUsage: 440.50 KB - OpenTime: 13.966us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.152us - RuntimeFilterComputeTime: 87.80us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 16 - BytesReceived: 88.66 KB - CloseTime: 6.728us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 184.401us - ExecTime: 111.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 158.75 KB - MemoryUsage: - Blocks: 171.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.510us - ProjectionTime: 0ns - RowsProduced: 4.104K (4104) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 349.631ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 68.410ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 68.182ms - CloseTime: 61.899us - GetBlockTime: 58.709ms - OpenTime: 4.347us - PrepareTime: 133.697us - SinkTime: 7.740ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 95 - NumBlockedTimes: 97 - NumScheduleTimes: 98 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 68.49ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 131.819ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.42 KB - CloseTime: 21.42us - CompressTime: 0ns - ExecTime: 7.695ms - InputRows: 4.001K (4001) - LocalBytesSent: 230.94 KB - LocalSendTime: 115.193us - LocalSentRows: 3.428K (3428) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 68.203us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.600ms - RowsProduced: 4.001K (4001) - RpcAvgTime: 685.912us - RpcCount: 2 - RpcMaxTime: 720.853us - RpcMinTime: 650.971us - RpcSumTime: 1.371ms - SerializeBatchTime: 158.143us - SplitBlockDistributeByChannelTime: 4.426ms - SplitBlockHashComputeTime: 690.926us - UncompressedRowBatchSize: 40.07 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 29.130us - ExecTime: 55.635ms - InitProbeSideTime: 24.465ms - JoinFilterTimer: 27.697us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 12.63us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 85.428us - ProbeFindNextTime: 0ns - ProbeRows: 694.766K (694766) - ProbeTime: 53.497ms - ProbeWhenBuildSideOutputTime: 1.500ms - ProbeWhenProbeSideOutputTime: 506.202us - ProbeWhenProcessHashTableTime: 30.76us - ProbeWhenSearchHashTableTime: 23.503ms - ProjectionTime: 1.202ms - RowsProduced: 4.001K (4001) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s613ms EXCHANGE_OPERATOR (id=78): - BlocksProduced: 207 - BytesReceived: 5.25 MB - CloseTime: 7.775us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.266ms - ExecTime: 2.540ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.52 MB - MemoryUsage: - Blocks: 19.48 MB - PeakMemoryUsage: 19.48 MB - OpenTime: 14.944us - ProjectionTime: 0ns - RowsProduced: 694.766K (694766) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s205ms PipelineXTask (index=2):(Active: 53.846ms, % non-child: 0.00%) - CoreChangeTimes: 20 - ExecuteTime: 53.644ms - CloseTime: 53.544us - GetBlockTime: 46.761ms - OpenTime: 5.650us - PrepareTime: 120.11us - SinkTime: 5.345ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 101 - NumBlockedTimes: 103 - NumScheduleTimes: 104 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 53.522ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 60.436ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.38 KB - CloseTime: 18.788us - CompressTime: 0ns - ExecTime: 5.345ms - InputRows: 4.088K (4088) - LocalBytesSent: 235.20 KB - LocalSendTime: 95.328us - LocalSentRows: 3.491K (3491) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 63.595us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17.271ms - RowsProduced: 4.088K (4088) - RpcAvgTime: 684.737us - RpcCount: 2 - RpcMaxTime: 692.553us - RpcMinTime: 676.922us - RpcSumTime: 1.369ms - SerializeBatchTime: 121.978us - SplitBlockDistributeByChannelTime: 2.845ms - SplitBlockHashComputeTime: 577.661us - UncompressedRowBatchSize: 41.73 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 16.658us - ExecTime: 44.392ms - InitProbeSideTime: 18.399ms - JoinFilterTimer: 22.162us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 19.225us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 70.379us - ProbeFindNextTime: 0ns - ProbeRows: 694.445K (694445) - ProbeTime: 42.754ms - ProbeWhenBuildSideOutputTime: 1.205ms - ProbeWhenProbeSideOutputTime: 439.90us - ProbeWhenProcessHashTableTime: 16.868us - ProbeWhenSearchHashTableTime: 20.51ms - ProjectionTime: 862.35us - RowsProduced: 4.088K (4088) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s676ms EXCHANGE_OPERATOR (id=78): - BlocksProduced: 208 - BytesReceived: 5.24 MB - CloseTime: 12.605us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.690ms - ExecTime: 1.948ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.20 MB - MemoryUsage: - Blocks: 18.68 MB - PeakMemoryUsage: 18.68 MB - OpenTime: 11.140us - ProjectionTime: 0ns - RowsProduced: 694.445K (694445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s123ms PipelineXTask (index=4):(Active: 55.901ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 55.688ms - CloseTime: 39.990us - GetBlockTime: 48.27ms - OpenTime: 4.187us - PrepareTime: 143.270us - SinkTime: 6.116ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 102 - NumBlockedTimes: 104 - NumScheduleTimes: 105 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 55.575ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 91.698ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.99 KB - CloseTime: 12.458us - CompressTime: 0ns - ExecTime: 6.92ms - InputRows: 4.055K (4055) - LocalBytesSent: 233.80 KB - LocalSendTime: 123.21us - LocalSentRows: 3.47K (3470) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 64.957us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.837ms - RowsProduced: 4.055K (4055) - RpcAvgTime: 692.243us - RpcCount: 2 - RpcMaxTime: 710.945us - RpcMinTime: 673.542us - RpcSumTime: 1.384ms - SerializeBatchTime: 136.646us - SplitBlockDistributeByChannelTime: 3.373ms - SplitBlockHashComputeTime: 643.626us - UncompressedRowBatchSize: 40.90 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.262us - ExecTime: 45.516ms - InitProbeSideTime: 19.198ms - JoinFilterTimer: 16.840us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 13.676us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 92.663us - ProbeFindNextTime: 0ns - ProbeRows: 695.934K (695934) - ProbeTime: 43.795ms - ProbeWhenBuildSideOutputTime: 1.329ms - ProbeWhenProbeSideOutputTime: 437.769us - ProbeWhenProcessHashTableTime: 28.57us - ProbeWhenSearchHashTableTime: 20.87ms - ProjectionTime: 925.313us - RowsProduced: 4.055K (4055) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s677ms EXCHANGE_OPERATOR (id=78): - BlocksProduced: 209 - BytesReceived: 5.27 MB - CloseTime: 7.337us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.776ms - ExecTime: 2.55ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.63 MB - MemoryUsage: - Blocks: 18.84 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 17.734us - ProjectionTime: 0ns - RowsProduced: 695.934K (695934) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s228ms PipelineXTask (index=6):(Active: 68.158ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 67.828ms - CloseTime: 53.378us - GetBlockTime: 59.172ms - OpenTime: 4.77us - PrepareTime: 253.307us - SinkTime: 6.927ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 99 - NumBlockedTimes: 101 - NumScheduleTimes: 102 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 67.778ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 140.288ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.05 KB - CloseTime: 19.901us - CompressTime: 0ns - ExecTime: 6.894ms - InputRows: 3.922K (3922) - LocalBytesSent: 224.78 KB - LocalSendTime: 152.860us - LocalSentRows: 3.336K (3336) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 57.422us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.379ms - RowsProduced: 3.922K (3922) - RpcAvgTime: 667.942us - RpcCount: 2 - RpcMaxTime: 689.808us - RpcMinTime: 646.76us - RpcSumTime: 1.335ms - SerializeBatchTime: 108.913us - SplitBlockDistributeByChannelTime: 3.829ms - SplitBlockHashComputeTime: 726.258us - UncompressedRowBatchSize: 40.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 19.66us - ExecTime: 55.898ms - InitProbeSideTime: 23.543ms - JoinFilterTimer: 23.237us - MemoryUsage: - PeakMemoryUsage: 444.00 KB - ProbeKeyArena: 444.00 KB - OpenTime: 18.965us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 92.98us - ProbeFindNextTime: 0ns - ProbeRows: 695.836K (695836) - ProbeTime: 53.777ms - ProbeWhenBuildSideOutputTime: 1.577ms - ProbeWhenProbeSideOutputTime: 571.25us - ProbeWhenProcessHashTableTime: 22.754us - ProbeWhenSearchHashTableTime: 24.634ms - ProjectionTime: 1.146ms - RowsProduced: 3.922K (3922) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s617ms EXCHANGE_OPERATOR (id=78): - BlocksProduced: 207 - BytesReceived: 5.25 MB - CloseTime: 10.8us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.663ms - ExecTime: 2.837ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.35 MB - MemoryUsage: - Blocks: 18.68 MB - PeakMemoryUsage: 18.68 MB - OpenTime: 129.61us - ProjectionTime: 0ns - RowsProduced: 695.836K (695836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s196ms PipelineXTask (index=8):(Active: 86.615ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 86.434ms - CloseTime: 33.50us - GetBlockTime: 58.790ms - OpenTime: 3.725us - PrepareTime: 126.474us - SinkTime: 26.40ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 98 - NumBlockedTimes: 100 - NumScheduleTimes: 101 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 68.86ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.258ms DATA_STREAM_SINK_OPERATOR (id=80,dst_id=80): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 27.02 KB - CloseTime: 12.794us - CompressTime: 0ns - ExecTime: 26.3ms - InputRows: 4.072K (4072) - LocalBytesSent: 234.86 KB - LocalSendTime: 89.349us - LocalSentRows: 3.486K (3486) - MemoryUsage: - PeakMemoryUsage: 437.00 KB - MergeBlockTime: 0ns - OpenTime: 73.907us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.196ms - RowsProduced: 4.072K (4072) - RpcAvgTime: 698.525us - RpcCount: 2 - RpcMaxTime: 703.608us - RpcMinTime: 693.443us - RpcSumTime: 1.397ms - SerializeBatchTime: 280.490us - SplitBlockDistributeByChannelTime: 22.692ms - SplitBlockHashComputeTime: 719.227us - UncompressedRowBatchSize: 40.95 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 12.342us - ExecTime: 55.752ms - InitProbeSideTime: 23.783ms - JoinFilterTimer: 25.5us - MemoryUsage: - PeakMemoryUsage: 160.00 KB - ProbeKeyArena: 160.00 KB - OpenTime: 12.51us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 90.554us - ProbeFindNextTime: 0ns - ProbeRows: 695.248K (695248) - ProbeTime: 53.667ms - ProbeWhenBuildSideOutputTime: 1.547ms - ProbeWhenProbeSideOutputTime: 569.56us - ProbeWhenProcessHashTableTime: 20.102us - ProbeWhenSearchHashTableTime: 24.401ms - ProjectionTime: 1.120ms - RowsProduced: 4.072K (4072) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 2s616ms EXCHANGE_OPERATOR (id=78): - BlocksProduced: 208 - BytesReceived: 5.27 MB - CloseTime: 5.160us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.917ms - ExecTime: 2.465ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.36 MB - MemoryUsage: - Blocks: 19.55 MB - PeakMemoryUsage: 19.55 MB - OpenTime: 12.39us - ProjectionTime: 0ns - RowsProduced: 695.248K (695248) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14s187ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 932.184us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 845.246us - CloseTime: 19.476us - GetBlockTime: 104.383us - OpenTime: 2.898us - PrepareTime: 59.208us - SinkTime: 646.173us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 889.919us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.56ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.312us - BuildRows: 4.002K (4002) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 181.918us - BuildTableInsertTime: 192.910us - BuildTableTime: 195.852us - CloseTime: 0ns - ExecTime: 664.785us - InputRows: 4.001K (4001) - MemoryUsage: - BuildBlocks: 234.39 KB - BuildKeyArena: 148.00 KB - HashTable: 51.54 KB - PeakMemoryUsage: 429.92 KB - OpenTime: 23.309us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.404us - RuntimeFilterComputeTime: 194.650us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 17 - BytesReceived: 73.09 KB - CloseTime: 6.516us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 206.836us - ExecTime: 115.981us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 85.50 KB - PeakMemoryUsage: 85.50 KB - OpenTime: 14.54us - ProjectionTime: 0ns - RowsProduced: 4.001K (4001) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s819ms PipelineXTask (index=3):(Active: 820.339us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 753.781us - CloseTime: 7.937us - GetBlockTime: 85.395us - OpenTime: 1.470us - PrepareTime: 51.744us - SinkTime: 588.977us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 790.649us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.592ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.651us - BuildRows: 4.089K (4089) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 261.964us - BuildTableInsertTime: 127.472us - BuildTableTime: 130.310us - CloseTime: 0ns - ExecTime: 605.659us - InputRows: 4.088K (4088) - MemoryUsage: - BuildBlocks: 239.50 KB - BuildKeyArena: 148.00 KB - HashTable: 51.97 KB - PeakMemoryUsage: 435.46 KB - OpenTime: 22.617us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.115us - RuntimeFilterComputeTime: 113.391us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 17 - BytesReceived: 74.00 KB - CloseTime: 6.273us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 247.925us - ExecTime: 91.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 85.50 KB - PeakMemoryUsage: 114.00 KB - OpenTime: 8.303us - ProjectionTime: 0ns - RowsProduced: 4.088K (4088) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s819ms PipelineXTask (index=5):(Active: 843.26us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 760.848us - CloseTime: 3.726us - GetBlockTime: 99.906us - OpenTime: 1.492us - PrepareTime: 71.391us - SinkTime: 573.442us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 814.929us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.518ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.862us - BuildRows: 4.056K (4056) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 220.245us - BuildTableInsertTime: 169.271us - BuildTableTime: 170.478us - CloseTime: 0ns - ExecTime: 586.628us - InputRows: 4.055K (4055) - MemoryUsage: - BuildBlocks: 237.58 KB - BuildKeyArena: 148.00 KB - HashTable: 51.81 KB - PeakMemoryUsage: 433.38 KB - OpenTime: 17.952us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 2.246us - RuntimeFilterComputeTime: 139.954us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 17 - BytesReceived: 74.40 KB - CloseTime: 2.752us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 197.582us - ExecTime: 108.729us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 57.00 KB - PeakMemoryUsage: 57.00 KB - OpenTime: 14.629us - ProjectionTime: 0ns - RowsProduced: 4.055K (4055) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s818ms PipelineXTask (index=7):(Active: 1.159ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.84ms - CloseTime: 8.580us - GetBlockTime: 106.819us - OpenTime: 2.86us - PrepareTime: 58.30us - SinkTime: 889.404us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.125ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.895ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.854us - BuildRows: 3.923K (3923) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 269.563us - BuildTableInsertTime: 214.811us - BuildTableTime: 218.672us - CloseTime: 0ns - ExecTime: 901.62us - InputRows: 3.922K (3922) - MemoryUsage: - BuildBlocks: 229.79 KB - BuildKeyArena: 144.00 KB - HashTable: 51.16 KB - PeakMemoryUsage: 420.94 KB - OpenTime: 16.767us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 142.463us - RuntimeFilterComputeTime: 184.666us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 17 - BytesReceived: 74.02 KB - CloseTime: 6.775us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 181.194us - ExecTime: 121.534us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 57.00 KB - PeakMemoryUsage: 57.00 KB - OpenTime: 18.206us - ProjectionTime: 0ns - RowsProduced: 3.922K (3922) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s819ms PipelineXTask (index=9):(Active: 14.168ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 14.92ms - CloseTime: 10.392us - GetBlockTime: 107.327us - OpenTime: 7.38us - PrepareTime: 52.811us - SinkTime: 13.873ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.66ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.481ms HASH_JOIN_SINK_OPERATOR (id=79): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.616us - BuildRows: 4.073K (4073) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.362ms - BuildTableInsertTime: 195.573us - BuildTableTime: 209.807us - CloseTime: 0ns - ExecTime: 13.879ms - InputRows: 4.072K (4072) - MemoryUsage: - BuildBlocks: 238.54 KB - BuildKeyArena: 148.00 KB - HashTable: 51.89 KB - PeakMemoryUsage: 434.42 KB - OpenTime: 11.776us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.499us - RuntimeFilterComputeTime: 212.122us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=76): - BlocksProduced: 17 - BytesReceived: 74.70 KB - CloseTime: 8.304us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 271.528us - ExecTime: 113.192us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 199.50 KB - MemoryUsage: - Blocks: 142.50 KB - PeakMemoryUsage: 142.50 KB - OpenTime: 8.734us - ProjectionTime: 0ns - RowsProduced: 4.072K (4072) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s810ms Fragment 122: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 366.165ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 362.153ms - CloseTime: 65.89us - GetBlockTime: 2.76ms - OpenTime: 3.694ms - PrepareTime: 240.869us - SinkTime: 355.336ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 334.812ms - WaitBfTime: 938.573ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 275.420ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 504 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.68 MB - CloseTime: 16.753us - CompressTime: 0ns - ExecTime: 355.229ms - InputRows: 2.082156M (2082156) - LocalBytesSent: 38.11 MB - LocalSendTime: 2.349ms - LocalSentRows: 868.659K (868659) - MemoryUsage: - PeakMemoryUsage: 68.69 MB - MergeBlockTime: 0ns - OpenTime: 66.104us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s667ms - RowsProduced: 2.082156M (2082156) - RpcAvgTime: 131.487ms - RpcCount: 288 - RpcMaxTime: 5s463ms - RpcMinTime: 5s382ms - RpcSumTime: 37s868ms - SerializeBatchTime: 143.945ms - SplitBlockDistributeByChannelTime: 110.746ms - SplitBlockHashComputeTime: 67.366ms - UncompressedRowBatchSize: 54.43 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 2s216ms - 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: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.499us - BlocksProduced: 514 - CloseTime: 44.821us - ExecTime: 257.859ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 3.816ms - ProcessConjunctTime: 40.648us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 86.113ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 252.92ms - 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: [167.102ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [86.113ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 140.756ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.275ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.2us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 116.739ms - ScannerCtxSchedTime: 86.95ms - ScannerFilterTime: 24.555ms - ScannerGetBlockTime: 142.308ms - ScannerInitTime: 3.621ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.337us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.593us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 22.177us - BlockInitTime: 148.195us - BlockLoadTime: 142.164ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.156ms - FirstReadTime: 139.887ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.623us - 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: 132.992us - OutputIndexResultColumnTimer: 66.914us - 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: 357.539ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 357.215ms - CloseTime: 50.246us - GetBlockTime: 2.246ms - OpenTime: 74.832us - PrepareTime: 190.295us - SinkTime: 353.740ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 351.992ms - WaitBfTime: 942.268ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 299.43ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.81 MB - CloseTime: 20.727us - CompressTime: 0ns - ExecTime: 353.633ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 38.14 MB - LocalSendTime: 2.754ms - LocalSentRows: 869.426K (869426) - MemoryUsage: - PeakMemoryUsage: 69.36 MB - MergeBlockTime: 0ns - OpenTime: 60.711us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s664ms - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 127.145ms - RpcCount: 291 - RpcMaxTime: 5s316ms - RpcMinTime: 5s248ms - RpcSumTime: 36s999ms - SerializeBatchTime: 155.665ms - SplitBlockDistributeByChannelTime: 102.468ms - SplitBlockHashComputeTime: 71.468ms - UncompressedRowBatchSize: 54.62 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 2s216ms - 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: 1.417us - BlocksProduced: 515 - CloseTime: 27.149us - ExecTime: 268.316ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 144.71us - ProcessConjunctTime: 16.947us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 87.869ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 266.85ms - 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: [177.676ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [87.869ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 122.775ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 975.441us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.759us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 112.547ms - ScannerCtxSchedTime: 87.852ms - ScannerFilterTime: 19.876ms - ScannerGetBlockTime: 157.573ms - ScannerInitTime: 35.302us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.354us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.338us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.913us - BlockInitTime: 147.622us - BlockLoadTime: 124.24ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.45ms - FirstReadTime: 121.755ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.769us - 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: 141.83us - OutputIndexResultColumnTimer: 61.813us - 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=2):(Active: 423.675ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 423.351ms - CloseTime: 76.69us - GetBlockTime: 2.105ms - OpenTime: 65.257us - PrepareTime: 174.506us - SinkTime: 419.993ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 339.594ms - WaitBfTime: 942.344ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 260.428ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 509 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.82 MB - CloseTime: 15.840us - CompressTime: 0ns - ExecTime: 419.887ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 38.12 MB - LocalSendTime: 2.731ms - LocalSentRows: 868.896K (868896) - MemoryUsage: - PeakMemoryUsage: 70.55 MB - MergeBlockTime: 0ns - OpenTime: 53.837us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s675ms - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 131.45ms - RpcCount: 294 - RpcMaxTime: 5s517ms - RpcMinTime: 5s483ms - RpcSumTime: 38s527ms - SerializeBatchTime: 165.596ms - SplitBlockDistributeByChannelTime: 152.969ms - SplitBlockHashComputeTime: 77.733ms - UncompressedRowBatchSize: 54.64 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 2s216ms - 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: 1.226us - BlocksProduced: 515 - CloseTime: 56.376us - ExecTime: 199.470ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 131.911us - ProcessConjunctTime: 14.318us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 115.560ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 197.357ms - 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: [85.726ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [115.560ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 69.907ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 582.333us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.55us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 88.575ms - ScannerCtxSchedTime: 115.546ms - ScannerFilterTime: 14.378ms - ScannerGetBlockTime: 71.171ms - ScannerInitTime: 34.488us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 872ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.132us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 13.624us - BlockInitTime: 100.45us - BlockLoadTime: 70.645ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 591.466us - FirstReadTime: 68.973ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.168us - 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: 91.368us - OutputIndexResultColumnTimer: 48.9us - 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 :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 381.631ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 381.167ms - CloseTime: 80.64us - GetBlockTime: 2.621ms - OpenTime: 151.995us - PrepareTime: 218.989us - SinkTime: 376.839ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 348.267ms - WaitBfTime: 869.602ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 167.375ms DATA_STREAM_SINK_OPERATOR (id=78,dst_id=78): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.28 MB - CloseTime: 31.660us - CompressTime: 0ns - ExecTime: 376.760ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 53.39 MB - LocalSendTime: 4.313ms - LocalSentRows: 1.216986M (1216986) - MemoryUsage: - PeakMemoryUsage: 96.00 MB - MergeBlockTime: 0ns - OpenTime: 69.501us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s409ms - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 373.278ms - RpcCount: 209 - RpcMaxTime: 15s644ms - RpcMinTime: 15s551ms - RpcSumTime: 1m18s - SerializeBatchTime: 122.741ms - SplitBlockDistributeByChannelTime: 150.270ms - SplitBlockHashComputeTime: 66.536ms - UncompressedRowBatchSize: 38.99 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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.758us - BlocksProduced: 514 - CloseTime: 42.963us - ExecTime: 196.821ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 243.516us - ProcessConjunctTime: 19.290us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 87.538ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.180ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 30, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 31, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 2048 VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [107.832ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [87.538ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 105.444ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.53ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 41.353us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 105.84ms - ScannerCtxSchedTime: 87.521ms - ScannerFilterTime: 461.882us - ScannerGetBlockTime: 107.105ms - ScannerInitTime: 47.751us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.316us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.497us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.466us - BlockInitTime: 121.800us - BlockLoadTime: 106.606ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.98ms - FirstReadTime: 104.82ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.917us - 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.118us - OutputIndexResultColumnTimer: 81.837us - 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 Fragment 123: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 3.505ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 3.348ms - CloseTime: 32.495us - GetBlockTime: 1.13ms - OpenTime: 6.306us - PrepareTime: 110.177us - SinkTime: 2.246ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.455ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.762ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 179.27 KB - CloseTime: 13.708us - CompressTime: 0ns - ExecTime: 2.317ms - InputRows: 7.79K (7790) - LocalBytesSent: 189.52 KB - LocalSendTime: 27.414us - LocalSentRows: 3.235K (3235) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 59.261us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 138.129ms - RowsProduced: 7.79K (7790) - RpcAvgTime: 124.40ms - RpcCount: 7 - RpcMaxTime: 124.171ms - RpcMinTime: 123.927ms - RpcSumTime: 868.286ms - SerializeBatchTime: 407.148us - SplitBlockDistributeByChannelTime: 1.26ms - SplitBlockHashComputeTime: 344.147us - UncompressedRowBatchSize: 273.54 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 16.490us - ExecTime: 983.797us - InitProbeSideTime: 225.219us - JoinFilterTimer: 482ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 17.145us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.872us - ProbeFindNextTime: 0ns - ProbeRows: 7.79K (7790) - ProbeTime: 762.71us - ProbeWhenBuildSideOutputTime: 15.643us - ProbeWhenProbeSideOutputTime: 201.942us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 264.193us - ProjectionTime: 170.721us - RowsProduced: 7.79K (7790) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 40.813us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 520.00 KB - OpenTime: 874ns - ProjectionTime: 0ns - RowsProduced: 7.79K (7790) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 171.51ms PipelineXTask (index=3):(Active: 3.716ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 3.558ms - CloseTime: 32.833us - GetBlockTime: 882.213us - OpenTime: 4.79us - PrepareTime: 116.440us - SinkTime: 2.618ms - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.669ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.354ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 150.90 KB - CloseTime: 17.430us - CompressTime: 0ns - ExecTime: 2.687ms - InputRows: 6.547K (6547) - LocalBytesSent: 159.04 KB - LocalSendTime: 39.565us - LocalSentRows: 2.715K (2715) - MemoryUsage: - PeakMemoryUsage: 684.00 KB - MergeBlockTime: 0ns - OpenTime: 53.527us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 136.993ms - RowsProduced: 6.547K (6547) - RpcAvgTime: 123.267ms - RpcCount: 7 - RpcMaxTime: 123.564ms - RpcMinTime: 123.33ms - RpcSumTime: 862.873ms - SerializeBatchTime: 628.949us - SplitBlockDistributeByChannelTime: 892.532us - SplitBlockHashComputeTime: 580.424us - UncompressedRowBatchSize: 230.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 11.784us - ExecTime: 878.833us - InitProbeSideTime: 212.451us - JoinFilterTimer: 692ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 13.386us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.501us - ProbeFindNextTime: 0ns - ProbeRows: 6.547K (6547) - ProbeTime: 725.300us - ProbeWhenBuildSideOutputTime: 18.4us - ProbeWhenProbeSideOutputTime: 154.54us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 266.609us - ProjectionTime: 114.367us - RowsProduced: 6.547K (6547) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 16.831us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 488.00 KB - OpenTime: 724ns - ProjectionTime: 0ns - RowsProduced: 6.547K (6547) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 167.348ms PipelineXTask (index=6):(Active: 1.743ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.597ms - CloseTime: 32.554us - GetBlockTime: 430.349us - OpenTime: 2.829us - PrepareTime: 105.678us - SinkTime: 1.131ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.701ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.25ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.11 KB - CloseTime: 7.815us - CompressTime: 0ns - ExecTime: 1.202ms - InputRows: 3.957K (3957) - LocalBytesSent: 99.81 KB - LocalSendTime: 45.555us - LocalSentRows: 1.704K (1704) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 64.364us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 133.319ms - RowsProduced: 3.957K (3957) - RpcAvgTime: 118.443ms - RpcCount: 7 - RpcMaxTime: 119.128ms - RpcMinTime: 118.61ms - RpcSumTime: 829.101ms - SerializeBatchTime: 315.538us - SplitBlockDistributeByChannelTime: 343.777us - SplitBlockHashComputeTime: 136.594us - UncompressedRowBatchSize: 135.89 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 22.655us - ExecTime: 446.781us - InitProbeSideTime: 122.841us - JoinFilterTimer: 242ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 9.983us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 796ns - ProbeFindNextTime: 0ns - ProbeRows: 3.957K (3957) - ProbeTime: 325.72us - ProbeWhenBuildSideOutputTime: 7.191us - ProbeWhenProbeSideOutputTime: 74.838us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 92.817us - ProjectionTime: 82.653us - RowsProduced: 3.957K (3957) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 10.799us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 860ns - ProjectionTime: 0ns - RowsProduced: 3.957K (3957) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 168.679ms PipelineXTask (index=9):(Active: 2.12ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.875ms - CloseTime: 20.493us - GetBlockTime: 678.815us - OpenTime: 4.137us - PrepareTime: 108.962us - SinkTime: 1.151ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.984ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.772ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 89.60 KB - CloseTime: 8.236us - CompressTime: 0ns - ExecTime: 1.216ms - InputRows: 3.842K (3842) - LocalBytesSent: 92.55 KB - LocalSendTime: 59.176us - LocalSentRows: 1.58K (1580) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 57.559us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 138.700ms - RowsProduced: 3.842K (3842) - RpcAvgTime: 124.244ms - RpcCount: 7 - RpcMaxTime: 124.274ms - RpcMinTime: 124.208ms - RpcSumTime: 869.711ms - SerializeBatchTime: 247.317us - SplitBlockDistributeByChannelTime: 437.629us - SplitBlockHashComputeTime: 143.27us - UncompressedRowBatchSize: 136.45 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 10.619us - ExecTime: 692.138us - InitProbeSideTime: 194.477us - JoinFilterTimer: 208ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 16.382us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 474ns - ProbeFindNextTime: 0ns - ProbeRows: 3.842K (3842) - ProbeTime: 510.436us - ProbeWhenBuildSideOutputTime: 27.380us - ProbeWhenProbeSideOutputTime: 170.536us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 90.82us - ProjectionTime: 149.262us - RowsProduced: 3.842K (3842) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 8.96us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 700ns - ProjectionTime: 0ns - RowsProduced: 3.842K (3842) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 169.921ms PipelineXTask (index=12):(Active: 24.610ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.412ms - CloseTime: 91.568us - GetBlockTime: 497.252us - OpenTime: 4.366us - PrepareTime: 96.445us - SinkTime: 23.859ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.878ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.128ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 87.48 KB - CloseTime: 24.754us - CompressTime: 0ns - ExecTime: 23.932ms - InputRows: 3.849K (3849) - LocalBytesSent: 96.20 KB - LocalSendTime: 22.711ms - LocalSentRows: 1.642K (1642) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 49.954us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 138.231ms - RowsProduced: 3.849K (3849) - RpcAvgTime: 135.954ms - RpcCount: 7 - RpcMaxTime: 136.120ms - RpcMinTime: 135.644ms - RpcSumTime: 951.684ms - SerializeBatchTime: 351.274us - SplitBlockDistributeByChannelTime: 312.380us - SplitBlockHashComputeTime: 144.104us - UncompressedRowBatchSize: 133.17 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 59.845us - ExecTime: 534.588us - InitProbeSideTime: 140.486us - JoinFilterTimer: 89ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.442us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 591ns - ProbeFindNextTime: 0ns - ProbeRows: 3.849K (3849) - ProbeTime: 358.821us - ProbeWhenBuildSideOutputTime: 6.791us - ProbeWhenProbeSideOutputTime: 79.464us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 104.449us - ProjectionTime: 96.253us - RowsProduced: 3.849K (3849) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 12.469us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 2.882us - ProjectionTime: 0ns - RowsProduced: 3.849K (3849) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 171.697ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 962.46us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 413.48us - CloseTime: 20.232us - GetBlockTime: 17.985us - OpenTime: 353.684us - PrepareTime: 166.799us - SinkTime: 19.873us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 932.541us - WaitBfTime: 7.211ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.194ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 20.647us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.223us - 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.439us - BlocksProduced: 0 - CloseTime: 19.37us - ExecTime: 41.866ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 456.448us - ProcessConjunctTime: 166.676us - ProjectionTime: 2.38us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 36.422ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 41.370ms - 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: [5.991us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [36.422ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 4.876ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 88ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.937ms - ScannerCtxSchedTime: 36.420ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.302us - ScannerInitTime: 138.892us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 3.157us - BlockConditionsFilteredBloomFilterTime: 9.728us - BlockConditionsFilteredDictTime: 203.548us - BlockConditionsFilteredTime: 322.941us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 76.293us - BlockInitSeekCount: 37 - BlockInitSeekTime: 319.216us - BlockInitTime: 774.891us - BlockLoadTime: 4.255ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 79.731us - FirstReadSeekCount: 441 - FirstReadSeekTime: 83.176us - FirstReadTime: 1.504ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.993us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 25.157us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 31.411us - OutputIndexResultColumnTimer: 588ns - 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: 28.337us - ShortPredEvalTime: 569.900us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 869.233us PipelineXTask (index=4):(Active: 773.228us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 313.679us - CloseTime: 32.855us - GetBlockTime: 39.736us - OpenTime: 239.401us - PrepareTime: 178.609us - SinkTime: 9.921us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 728.723us - WaitBfTime: 7.895ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.733ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.957us - 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: 27.512us - BlocksProduced: 0 - CloseTime: 30.486us - ExecTime: 61.271ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 339.630us - ProcessConjunctTime: 140.408us - ProjectionTime: 1.989us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 649.228K (649228) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 40.651ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 60.859ms - 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.055us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [40.651ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 20.127ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 102ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.138ms - ScannerCtxSchedTime: 40.650ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.543us - ScannerInitTime: 56.880us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 649228] - BitmapIndexFilterTimer: 2.332us - BlockConditionsFilteredBloomFilterTime: 6.530us - BlockConditionsFilteredDictTime: 94.25us - BlockConditionsFilteredTime: 230.460us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 104.870us - BlockInitSeekCount: 26 - BlockInitSeekTime: 26.524us - BlockInitTime: 342.812us - BlockLoadTime: 19.633ms - BlocksLoad: 405 - CachedPagesNum: 509 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.288ms - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 183.148us - FirstReadTime: 6.462ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.956us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.651ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 990.59us - OutputIndexResultColumnTimer: 33.303us - 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: 1.912ms - ShortPredEvalTime: 1.340ms - TotalPagesNum: 509 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.846ms PipelineXTask (index=7):(Active: 841.791us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 360.192us - CloseTime: 42.850us - GetBlockTime: 30.404us - OpenTime: 300.399us - PrepareTime: 130.328us - SinkTime: 10.838us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 790.274us - WaitBfTime: 7.570ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.598ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.15us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.611us - 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: 28.13us - BlocksProduced: 0 - CloseTime: 41.46us - ExecTime: 113.26ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 379.43us - ProcessConjunctTime: 167.962us - ProjectionTime: 2.82us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 921.434K (921434) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 40.669ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 112.574ms - 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.806us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [40.669ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 71.833ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 95ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.749ms - ScannerCtxSchedTime: 40.667ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.70us - ScannerInitTime: 72.26us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921434] - BitmapIndexFilterTimer: 3.939us - BlockConditionsFilteredBloomFilterTime: 10.423us - BlockConditionsFilteredDictTime: 119.631us - BlockConditionsFilteredTime: 282.612us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 111.399us - BlockInitSeekCount: 31 - BlockInitSeekTime: 32.119us - BlockInitTime: 462.308us - BlockLoadTime: 70.950ms - BlocksLoad: 410 - CachedPagesNum: 516 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 17.848ms - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 239.24us - FirstReadTime: 7.183ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.433us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.989ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 1.241ms - OutputIndexResultColumnTimer: 41.109us - 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.312ms - ShortPredEvalTime: 36.901ms - TotalPagesNum: 516 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.224ms PipelineXTask (index=10):(Active: 1.424ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 626.910us - CloseTime: 40.74us - GetBlockTime: 33.503us - OpenTime: 544.397us - PrepareTime: 200.813us - SinkTime: 14.38us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.369ms - WaitBfTime: 5.833ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.420ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.318us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.38us - 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: 58.729us - BlocksProduced: 0 - CloseTime: 38.224us - ExecTime: 167.718ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 682.705us - ProcessConjunctTime: 324.131us - ProjectionTime: 1.582us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.061902M (1061902) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 36.319ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 166.962ms - 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.746us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [36.319ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 130.569ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 85ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 29.752ms - ScannerCtxSchedTime: 36.318ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.518us - ScannerInitTime: 122.327us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1061902] - BitmapIndexFilterTimer: 3.208us - BlockConditionsFilteredBloomFilterTime: 8.94us - BlockConditionsFilteredDictTime: 109.800us - BlockConditionsFilteredTime: 269.721us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 102.8us - BlockInitSeekCount: 35 - BlockInitSeekTime: 28.288us - BlockInitTime: 456.426us - BlockLoadTime: 129.812ms - BlocksLoad: 345 - CachedPagesNum: 436 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 40.132ms - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 249.36us - FirstReadTime: 23.741ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.708us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.892ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 3.99ms - OutputIndexResultColumnTimer: 33.934us - 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: 55.154ms - TotalPagesNum: 436 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.746ms PipelineXTask (index=13):(Active: 1.314ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 590.494us - CloseTime: 43.374us - GetBlockTime: 56.62us - OpenTime: 441.758us - PrepareTime: 227.153us - SinkTime: 66.126us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.259ms - WaitBfTime: 7.715ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.44ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 65.807us - InputRows: 25.985K (25985) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.363us - 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: 50.821us - BlocksProduced: 7 - CloseTime: 41.729us - ExecTime: 52.341ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 534.712us - ProcessConjunctTime: 287.325us - ProjectionTime: 319.667us - RowsProduced: 25.985K (25985) - RowsRead: 25.985K (25985) - RuntimeFilterInfo: - filter id = -1 filtered: 349.77K (349770) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 40.741ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 51.382ms - 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.766ms, ] - PerScannerRowsRead: [25.98K, ] - PerScannerWaitTime: [40.741ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 8.574ms - MemoryUsage: - FreeBlocks: 1.84 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 654.901us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 420ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.51ms - ScannerCtxSchedTime: 40.740ms - ScannerFilterTime: 46.588us - ScannerGetBlockTime: 8.693ms - ScannerInitTime: 81.262us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 349770] - BitmapIndexFilterTimer: 577ns - BlockConditionsFilteredBloomFilterTime: 1.393us - BlockConditionsFilteredDictTime: 14.167us - BlockConditionsFilteredTime: 47.527us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 26.148us - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.161us - BlockInitTime: 76.540us - BlockLoadTime: 9.83ms - BlocksLoad: 61 - CachedPagesNum: 199 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.751ms - FirstReadSeekCount: 180 - FirstReadSeekTime: 34.937us - FirstReadTime: 861.801us - IOTimer: 0ns - InvertedIndexFilterTime: 1.551us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.141ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 602.255us - OutputIndexResultColumnTimer: 7.111us - 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: 532.786us - ShortPredEvalTime: 637.201us - TotalPagesNum: 199 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 683.161us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 170.424us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 92.821us - CloseTime: 6.324us - GetBlockTime: 4.339us - OpenTime: 1.713us - PrepareTime: 65.882us - SinkTime: 75.7us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 159.256us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.144ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 856ns - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.249us - BuildTableInsertTime: 27.466us - BuildTableTime: 30.657us - CloseTime: 0ns - ExecTime: 96.275us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 21.624us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.944us - RuntimeFilterComputeTime: 12.513us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=73): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 4.980us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.151us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 19.517us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6.922ms PipelineXTask (index=5):(Active: 117.139us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.183us - CloseTime: 5.628us - GetBlockTime: 0ns - OpenTime: 1.281us - PrepareTime: 78.419us - SinkTime: 16.476us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.978us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.516ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.487us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.253us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 7.74ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.233us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.222us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 32.414us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 162.65us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.137us - CloseTime: 8.839us - GetBlockTime: 0ns - OpenTime: 2.566us - PrepareTime: 101.854us - SinkTime: 21.992us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 144.346us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 666.504us HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 75.161us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 53.322us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 8.450ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.26us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.511us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.525us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 126.4us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.579us - CloseTime: 5.773us - GetBlockTime: 0ns - OpenTime: 2.216us - PrepareTime: 62.169us - SinkTime: 15.991us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.595us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 714.642us HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.796us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.701us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 8.430ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.932us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.232us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.359us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 123.302us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 30.384us - CloseTime: 3.654us - GetBlockTime: 0ns - OpenTime: 2.306us - PrepareTime: 81.737us - SinkTime: 13.365us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.687us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 783.950us HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c0 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.563us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.261us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 8.404ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.685us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 45.941us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 41.994us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.902ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 2.593ms - CloseTime: 50.180us - GetBlockTime: 998.680us - OpenTime: 10.751us - PrepareTime: 238.613us - SinkTime: 1.494ms - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.580ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.622ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.17 KB - CloseTime: 13.255us - CompressTime: 0ns - ExecTime: 1.575ms - InputRows: 3.962K (3962) - LocalBytesSent: 134.30 KB - LocalSendTime: 31.63us - LocalSentRows: 2.292K (2292) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 68.971us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s486ms - RowsProduced: 3.962K (3962) - RpcAvgTime: 3s470ms - RpcCount: 5 - RpcMaxTime: 3s472ms - RpcMinTime: 3s469ms - RpcSumTime: 17s354ms - SerializeBatchTime: 170.573us - SplitBlockDistributeByChannelTime: 932.674us - SplitBlockHashComputeTime: 126.277us - UncompressedRowBatchSize: 100.72 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 34.460us - ExecTime: 978.801us - InitProbeSideTime: 230.466us - JoinFilterTimer: 172ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 21.696us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 695ns - ProbeFindNextTime: 0ns - ProbeRows: 3.962K (3962) - ProbeTime: 611.937us - ProbeWhenBuildSideOutputTime: 22.144us - ProbeWhenProbeSideOutputTime: 291.236us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.347us - ProjectionTime: 303.632us - RowsProduced: 3.962K (3962) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 42.540us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 336.00 KB - OpenTime: 1.41us - ProjectionTime: 0ns - RowsProduced: 3.962K (3962) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 345.951ms PipelineXTask (index=3):(Active: 2.238ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.14ms - CloseTime: 79.261us - GetBlockTime: 694.733us - OpenTime: 7.777us - PrepareTime: 130.917us - SinkTime: 1.254ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.145ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.387ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.13 KB - CloseTime: 27.30us - CompressTime: 0ns - ExecTime: 1.352ms - InputRows: 4.024K (4024) - LocalBytesSent: 138.05 KB - LocalSendTime: 59.198us - LocalSentRows: 2.356K (2356) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 72.322us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s474ms - RowsProduced: 4.024K (4024) - RpcAvgTime: 3s450ms - RpcCount: 5 - RpcMaxTime: 3s452ms - RpcMinTime: 3s449ms - RpcSumTime: 17s254ms - SerializeBatchTime: 181.852us - SplitBlockDistributeByChannelTime: 658.409us - SplitBlockHashComputeTime: 117.766us - UncompressedRowBatchSize: 100.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 47.430us - ExecTime: 751.10us - InitProbeSideTime: 102.610us - JoinFilterTimer: 180ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 32.519us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 849ns - ProbeFindNextTime: 0ns - ProbeRows: 4.024K (4024) - ProbeTime: 554.561us - ProbeWhenBuildSideOutputTime: 6.447us - ProbeWhenProbeSideOutputTime: 369.679us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 51.997us - ProjectionTime: 108.942us - RowsProduced: 4.024K (4024) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 17.942us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 670ns - ProjectionTime: 0ns - RowsProduced: 4.024K (4024) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 354.323ms PipelineXTask (index=6):(Active: 1.724ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.537ms - CloseTime: 33.77us - GetBlockTime: 425.621us - OpenTime: 4.74us - PrepareTime: 141.698us - SinkTime: 1.59ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.677ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.80ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 65.21 KB - CloseTime: 15.52us - CompressTime: 0ns - ExecTime: 1.124ms - InputRows: 4.045K (4045) - LocalBytesSent: 140.61 KB - LocalSendTime: 49.992us - LocalSentRows: 2.4K (2400) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 51.43us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s474ms - RowsProduced: 4.045K (4045) - RpcAvgTime: 3s454ms - RpcCount: 5 - RpcMaxTime: 3s458ms - RpcMinTime: 3s450ms - RpcSumTime: 17s271ms - SerializeBatchTime: 274.869us - SplitBlockDistributeByChannelTime: 288.433us - SplitBlockHashComputeTime: 117.271us - UncompressedRowBatchSize: 99.24 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 13.680us - ExecTime: 476.85us - InitProbeSideTime: 119.291us - JoinFilterTimer: 190ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 53.888us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 686ns - ProbeFindNextTime: 0ns - ProbeRows: 4.045K (4045) - ProbeTime: 299.592us - ProbeWhenBuildSideOutputTime: 6.885us - ProbeWhenProbeSideOutputTime: 97.66us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 48.603us - ProjectionTime: 100.788us - RowsProduced: 4.045K (4045) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 11.189us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 656ns - ProjectionTime: 0ns - RowsProduced: 4.045K (4045) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 354.250ms PipelineXTask (index=9):(Active: 1.767ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.596ms - CloseTime: 18.930us - GetBlockTime: 489.605us - OpenTime: 5.727us - PrepareTime: 137.695us - SinkTime: 1.55ms - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.734ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.801ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 64.73 KB - CloseTime: 8.911us - CompressTime: 0ns - ExecTime: 1.119ms - InputRows: 3.986K (3986) - LocalBytesSent: 137.93 KB - LocalSendTime: 26.914us - LocalSentRows: 2.354K (2354) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 55.983us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s487ms - RowsProduced: 3.986K (3986) - RpcAvgTime: 3s464ms - RpcCount: 5 - RpcMaxTime: 3s466ms - RpcMinTime: 3s462ms - RpcSumTime: 17s323ms - SerializeBatchTime: 165.946us - SplitBlockDistributeByChannelTime: 444.886us - SplitBlockHashComputeTime: 142.724us - UncompressedRowBatchSize: 98.46 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 8.513us - ExecTime: 491.409us - InitProbeSideTime: 121.754us - JoinFilterTimer: 233ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 9.733us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 880ns - ProbeFindNextTime: 0ns - ProbeRows: 3.986K (3986) - ProbeTime: 357.185us - ProbeWhenBuildSideOutputTime: 16.67us - ProbeWhenProbeSideOutputTime: 107.462us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 81.783us - ProjectionTime: 109.277us - RowsProduced: 3.986K (3986) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 14.10us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 4.284us - ProjectionTime: 0ns - RowsProduced: 3.986K (3986) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 353.838ms PipelineXTask (index=12):(Active: 1.879ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.719ms - CloseTime: 45.286us - GetBlockTime: 744.877us - OpenTime: 8.63us - PrepareTime: 98.322us - SinkTime: 911.449us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.822ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.798ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 66.79 KB - CloseTime: 20.517us - CompressTime: 0ns - ExecTime: 986.486us - InputRows: 4.017K (4017) - LocalBytesSent: 136.76 KB - LocalSendTime: 36.319us - LocalSentRows: 2.334K (2334) - MemoryUsage: - PeakMemoryUsage: 342.00 KB - MergeBlockTime: 0ns - OpenTime: 55.842us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s476ms - RowsProduced: 4.017K (4017) - RpcAvgTime: 3s460ms - RpcCount: 5 - RpcMaxTime: 3s462ms - RpcMinTime: 3s458ms - RpcSumTime: 17s301ms - SerializeBatchTime: 156.349us - SplitBlockDistributeByChannelTime: 348.778us - SplitBlockHashComputeTime: 110.360us - UncompressedRowBatchSize: 101.51 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 20.354us - ExecTime: 759.773us - InitProbeSideTime: 199.4us - JoinFilterTimer: 191ns - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.587us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 719ns - ProbeFindNextTime: 0ns - ProbeRows: 4.017K (4017) - ProbeTime: 501.968us - ProbeWhenBuildSideOutputTime: 11.703us - ProbeWhenProbeSideOutputTime: 219.549us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 45.856us - ProjectionTime: 219.542us - RowsProduced: 4.017K (4017) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 11.738us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 260.00 KB - OpenTime: 641ns - ProjectionTime: 0ns - RowsProduced: 4.017K (4017) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 353.578ms PipelineXTask (index=15):(Active: 1.389ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.214ms - CloseTime: 28.688us - GetBlockTime: 482.529us - OpenTime: 4.329us - PrepareTime: 135.882us - SinkTime: 686.889us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.349ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.76ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 39.42 KB - CloseTime: 13.438us - CompressTime: 0ns - ExecTime: 788.445us - InputRows: 2.239K (2239) - LocalBytesSent: 74.71 KB - LocalSendTime: 40.328us - LocalSentRows: 1.275K (1275) - MemoryUsage: - PeakMemoryUsage: 187.00 KB - MergeBlockTime: 0ns - OpenTime: 89.634us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s488ms - RowsProduced: 2.239K (2239) - RpcAvgTime: 3s462ms - RpcCount: 5 - RpcMaxTime: 3s462ms - RpcMinTime: 3s462ms - RpcSumTime: 17s313ms - SerializeBatchTime: 173.121us - SplitBlockDistributeByChannelTime: 160.537us - SplitBlockHashComputeTime: 64.850us - UncompressedRowBatchSize: 58.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 1 - BuildOutputBlock: 0ns - CloseTime: 12.237us - ExecTime: 479.818us - InitProbeSideTime: 147.241us - JoinFilterTimer: 195ns - MemoryUsage: - PeakMemoryUsage: 40.00 KB - ProbeKeyArena: 40.00 KB - OpenTime: 11.253us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 715ns - ProbeFindNextTime: 0ns - ProbeRows: 2.239K (2239) - ProbeTime: 329.169us - ProbeWhenBuildSideOutputTime: 10.768us - ProbeWhenProbeSideOutputTime: 107.563us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.733us - ProjectionTime: 119.418us - RowsProduced: 2.239K (2239) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 1 - CloseTime: 0ns - ExecTime: 19.839us - GetBlockFailedTime: 2 - MemoryUsage: - PeakMemoryUsage: 228.00 KB - OpenTime: 644ns - ProjectionTime: 0ns - RowsProduced: 2.239K (2239) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 353.993ms PipelineXTask (index=18):(Active: 253.123us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 109.838us - CloseTime: 18.227us - GetBlockTime: 13.436us - OpenTime: 4.320us - PrepareTime: 114.651us - SinkTime: 76.991us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 228.442us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.274ms DATA_STREAM_SINK_OPERATOR (id=76,dst_id=76): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 8.261us - CompressTime: 0ns - ExecTime: 142.639us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 12.500us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 57.759us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s488ms - RowsProduced: 0 - RpcAvgTime: 3s462ms - RpcCount: 5 - RpcMaxTime: 3s462ms - RpcMinTime: 3s462ms - RpcSumTime: 17s314ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 318ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=75): - BlocksProduced: 0 - BuildOutputBlock: 0ns - CloseTime: 8.303us - ExecTime: 40.347us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 20.243us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.787us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.195us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.331us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 646ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 355.869ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.203ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 541.885us - CloseTime: 70.260us - GetBlockTime: 42.729us - OpenTime: 404.326us - PrepareTime: 170.120us - SinkTime: 51.522us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.110ms - WaitBfTime: 17.178ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.548ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.679us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.283us - 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: 45.612us - BlocksProduced: 0 - CloseTime: 67.120us - ExecTime: 129.294ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 513.703us - ProcessConjunctTime: 260.930us - ProjectionTime: 1.962us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 128.113ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 128.668ms - 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.854us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [128.113ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 492.957us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 37ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 553.399us - ScannerCtxSchedTime: 128.111ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.663us - ScannerInitTime: 74.414us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 719ns - BlockConditionsFilteredBloomFilterTime: 1.794us - BlockConditionsFilteredDictTime: 161.144us - BlockConditionsFilteredTime: 214.9us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 35.266us - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.119us - BlockInitTime: 253.851us - BlockLoadTime: 280.979us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 453ns - IOTimer: 0ns - InvertedIndexFilterTime: 11.996us - 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: 994.28us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 440.742us - CloseTime: 42.420us - GetBlockTime: 53.352us - OpenTime: 351.307us - PrepareTime: 148.355us - SinkTime: 8.373us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 940.341us - WaitBfTime: 46.556ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.563ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.224us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.656us - 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: 41.616us - BlocksProduced: 0 - CloseTime: 39.952us - ExecTime: 285.316ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 427.780us - ProcessConjunctTime: 220.3us - ProjectionTime: 1.471us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 656.744K (656744) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 150.479ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 284.794ms - 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.792us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [150.479ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 134.221ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 143ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 16.223ms - ScannerCtxSchedTime: 150.477ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.549us - ScannerInitTime: 68.361us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656744] - BitmapIndexFilterTimer: 1.998us - BlockConditionsFilteredBloomFilterTime: 4.543us - BlockConditionsFilteredDictTime: 86.353us - BlockConditionsFilteredTime: 211.951us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 95.974us - BlockInitSeekCount: 17 - BlockInitSeekTime: 25.141us - BlockInitTime: 313.759us - BlockLoadTime: 133.749ms - BlocksLoad: 367 - CachedPagesNum: 461 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.839ms - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 170.831us - FirstReadTime: 31.566ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.672us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 93.878ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 606.929us - OutputIndexResultColumnTimer: 25.34us - 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: 94.110ms - ShortPredEvalTime: 926.34us - TotalPagesNum: 461 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.223ms PipelineXTask (index=7):(Active: 1.61ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 477.334us - CloseTime: 43.681us - GetBlockTime: 47.916us - OpenTime: 391.136us - PrepareTime: 138.294us - SinkTime: 11.241us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.5ms - WaitBfTime: 46.640ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.148ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.89us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.416us - 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: 51.292us - BlocksProduced: 0 - CloseTime: 40.213us - ExecTime: 278.778ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 468.286us - ProcessConjunctTime: 233.82us - ProjectionTime: 1.468us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 916.15K (916150) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 152.714ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 278.219ms - 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.679us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [152.714ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 125.415ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 103ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 18.427ms - ScannerCtxSchedTime: 152.712ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.689us - ScannerInitTime: 84.330us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 916150] - BitmapIndexFilterTimer: 2.662us - BlockConditionsFilteredBloomFilterTime: 7.151us - BlockConditionsFilteredDictTime: 84.88us - BlockConditionsFilteredTime: 245.205us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 117.292us - BlockInitSeekCount: 25 - BlockInitSeekTime: 21.300us - BlockInitTime: 367.88us - BlockLoadTime: 124.931ms - BlocksLoad: 384 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 3.752ms - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 140.635us - FirstReadTime: 5.684ms - IOTimer: 0ns - InvertedIndexFilterTime: 17.441us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 109.284ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.2ms - OutputIndexResultColumnTimer: 23.522us - 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: 109.505ms - ShortPredEvalTime: 1.315ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.275ms PipelineXTask (index=10):(Active: 1.12ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 448.725us - CloseTime: 27.237us - GetBlockTime: 34.362us - OpenTime: 381.14us - PrepareTime: 144.37us - SinkTime: 4.489us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 972.433us - WaitBfTime: 46.809ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.243ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.332us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.103us - 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: 32.853us - BlocksProduced: 0 - CloseTime: 25.947us - ExecTime: 210.139ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 462.943us - ProcessConjunctTime: 237.413us - ProjectionTime: 1.642us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.157826M (1157826) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 155.567ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 209.614ms - 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.008us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [155.567ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 53.974ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 201ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.211ms - ScannerCtxSchedTime: 155.566ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.51us - ScannerInitTime: 76.845us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1157826] - BitmapIndexFilterTimer: 2.412us - BlockConditionsFilteredBloomFilterTime: 6.638us - BlockConditionsFilteredDictTime: 119.388us - BlockConditionsFilteredTime: 256.689us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 103.288us - BlockInitSeekCount: 33 - BlockInitSeekTime: 41.312us - BlockInitTime: 406.172us - BlockLoadTime: 53.353ms - BlocksLoad: 382 - CachedPagesNum: 482 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 5.731ms - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 187.964us - FirstReadTime: 5.790ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.94us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 18.156ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 17.374ms - OutputIndexResultColumnTimer: 23.692us - 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: 18.404ms - ShortPredEvalTime: 2.133ms - TotalPagesNum: 482 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.398ms PipelineXTask (index=13):(Active: 1.157ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 486.279us - CloseTime: 52.57us - GetBlockTime: 49.795us - OpenTime: 393.288us - PrepareTime: 212.847us - SinkTime: 14.337us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.92ms - WaitBfTime: 46.899ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.175ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.90us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.100us - 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: 34.436us - BlocksProduced: 0 - CloseTime: 48.800us - ExecTime: 242.375ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 490.527us - ProcessConjunctTime: 261.494us - ProjectionTime: 2.233us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 932.61K (932610) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 161.197ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 241.784ms - 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: [13.663us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [161.197ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 80.440ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 60ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.584ms - ScannerCtxSchedTime: 161.195ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 2.395us - ScannerInitTime: 74.633us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 932610] - BitmapIndexFilterTimer: 3.754us - BlockConditionsFilteredBloomFilterTime: 11.462us - BlockConditionsFilteredDictTime: 149.822us - BlockConditionsFilteredTime: 321.82us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 117.691us - BlockInitSeekCount: 25 - BlockInitSeekTime: 659.313us - BlockInitTime: 1.114ms - BlockLoadTime: 79.439ms - BlocksLoad: 260 - CachedPagesNum: 332 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 58.436ms - FirstReadSeekCount: 771 - FirstReadSeekTime: 198.293us - FirstReadTime: 5.700ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.230us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.508ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.548ms - OutputIndexResultColumnTimer: 33.579us - 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.803ms - ShortPredEvalTime: 2.878ms - TotalPagesNum: 332 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.352ms PipelineXTask (index=16):(Active: 1.36ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 458.498us - CloseTime: 54.588us - GetBlockTime: 45.65us - OpenTime: 363.428us - PrepareTime: 150.11us - SinkTime: 18.493us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 969.948us - WaitBfTime: 48.263ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.959ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.147us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.139us - 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: 36.695us - BlocksProduced: 0 - CloseTime: 51.785us - ExecTime: 307.765ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 437.67us - ProcessConjunctTime: 226.501us - ProjectionTime: 2.498us - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - filter id = -1 filtered: 1.006286M (1006286) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 164.111ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 307.229ms - 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: [11.118us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [164.111ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 76.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 143.17ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 126ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 26.517ms - ScannerCtxSchedTime: 164.110ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 4.783us - ScannerInitTime: 78.601us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 1006286] - BitmapIndexFilterTimer: 3.40us - BlockConditionsFilteredBloomFilterTime: 8.912us - BlockConditionsFilteredDictTime: 54.956us - BlockConditionsFilteredTime: 155.78us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 66.167us - BlockInitSeekCount: 26 - BlockInitSeekTime: 249.671us - BlockInitTime: 517.241us - BlockLoadTime: 142.440ms - BlocksLoad: 291 - CachedPagesNum: 372 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 68.233ms - FirstReadSeekCount: 864 - FirstReadSeekTime: 156.76us - FirstReadTime: 13.810ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.240us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 50.928ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.721ms - OutputIndexResultColumnTimer: 21.787us - 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: 51.126ms - ShortPredEvalTime: 3.48ms - TotalPagesNum: 372 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.37ms PipelineXTask (index=19):(Active: 1.188ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 612.135us - CloseTime: 72.409us - GetBlockTime: 66.504us - OpenTime: 365.639us - PrepareTime: 127.372us - SinkTime: 137.715us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.94ms - WaitBfTime: 43.372ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.587ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 136.801us - InputRows: 22.273K (22273) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.6us - 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: 36.6us - BlocksProduced: 6 - CloseTime: 69.940us - ExecTime: 210.21ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 444.155us - ProcessConjunctTime: 252.181us - ProjectionTime: 418.463us - RowsProduced: 22.273K (22273) - RowsRead: 22.273K (22273) - RuntimeFilterInfo: - filter id = -1 filtered: 338.22K (338220) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 162.176ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 209.16ms - 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: [43.751ms, ] - PerScannerRowsRead: [22.27K, ] - PerScannerWaitTime: [162.176ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 43.469ms - MemoryUsage: - FreeBlocks: 1.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.159ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 266ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 11.982ms - ScannerCtxSchedTime: 162.175ms - ScannerFilterTime: 59.294us - ScannerGetBlockTime: 43.643ms - ScannerInitTime: 56.110us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 338220] - BitmapIndexFilterTimer: 846ns - BlockConditionsFilteredBloomFilterTime: 2.895us - BlockConditionsFilteredDictTime: 21.203us - BlockConditionsFilteredTime: 72.666us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.989us - BlockInitSeekCount: 9 - BlockInitSeekTime: 11.447us - BlockInitTime: 137.872us - BlockLoadTime: 44.440ms - BlocksLoad: 57 - CachedPagesNum: 184 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 2.771ms - FirstReadSeekCount: 168 - FirstReadSeekTime: 56.716us - FirstReadTime: 1.90ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.325us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 38.187ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 574.317us - OutputIndexResultColumnTimer: 7.651us - 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: 695.576us - ShortPredEvalTime: 608.586us - TotalPagesNum: 184 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 576.27us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 32.87ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 31.970ms - CloseTime: 12.581us - GetBlockTime: 9.497us - OpenTime: 2.938us - PrepareTime: 81.714us - SinkTime: 31.924ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 277.284us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 760.76us HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 2.326us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.964us - BuildTableInsertTime: 31.810ms - BuildTableTime: 31.817ms - CloseTime: 0ns - ExecTime: 31.951ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 27.656us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.851us - RuntimeFilterComputeTime: 26.760us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=73): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 8.871us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.576us - ExecTime: 33.908us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.890us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14.735ms PipelineXTask (index=5):(Active: 120.76us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.394us - CloseTime: 6.414us - GetBlockTime: 0ns - OpenTime: 2.457us - PrepareTime: 55.69us - SinkTime: 30.748us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 106.469us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.89ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 49.869us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.680us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 46.344ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.781us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.717us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.98us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 120.915us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.976us - CloseTime: 5.454us - GetBlockTime: 0ns - OpenTime: 2.545us - PrepareTime: 70.535us - SinkTime: 19.242us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.560us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.162ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.79us - 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: 46.302ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.946us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.619us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.752us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 137.542us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.816us - CloseTime: 16.411us - GetBlockTime: 0ns - OpenTime: 2.207us - PrepareTime: 71.23us - SinkTime: 21.943us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.529us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.247ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 44.522us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.72us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 46.240ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 14.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.609us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.671us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 1.283ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 39.321us - CloseTime: 1.189ms - GetBlockTime: 0ns - OpenTime: 3.123us - PrepareTime: 45.100us - SinkTime: 16.584us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.608us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.337ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 27.463us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.206us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 46.157ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 1.187ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 1.201ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.710us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 125.169us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.475us - CloseTime: 5.897us - GetBlockTime: 0ns - OpenTime: 2.535us - PrepareTime: 76.511us - SinkTime: 15.692us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 111.870us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 544.325us HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.777us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.157us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 46.998ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.156us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.486us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.387us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 110.738us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.312us - CloseTime: 7.989us - GetBlockTime: 0ns - OpenTime: 2.617us - PrepareTime: 49.647us - SinkTime: 24.375us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.439us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.696ms HASH_JOIN_SINK_OPERATOR (id=75): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82c5 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.593us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.26us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 46.500ms EXCHANGE_OPERATOR (id=73): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.143us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.260us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.111us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 124: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 674.798us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 269.287us - CloseTime: 71.136us - GetBlockTime: 22.368us - OpenTime: 120.314us - PrepareTime: 206.515us - SinkTime: 109.334us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 595.317us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.772ms DATA_STREAM_SINK_OPERATOR (id=73,dst_id=73): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 14.689us - CompressTime: 0ns - ExecTime: 167.180us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 23.562us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 2.548us - OpenTime: 43.920us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.488ms - RowsProduced: 80 - RpcAvgTime: 4.454ms - RpcCount: 1 - RpcMaxTime: 4.454ms - RpcMinTime: 4.454ms - RpcSumTime: 4.454ms - SerializeBatchTime: 8.540us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 362ns - BlocksProduced: 1 - CloseTime: 53.499us - ExecTime: 7.614ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 236.403us - ProcessConjunctTime: 30.85us - ProjectionTime: 4.711us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 6.982ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 7.297ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [30.523us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [6.982ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.486us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 202.103us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 117ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 303.944us - ScannerCtxSchedTime: 6.980ms - ScannerFilterTime: 1.182us - ScannerGetBlockTime: 24.134us - ScannerInitTime: 67.819us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 346ns - BlockConditionsFilteredBloomFilterTime: 1.512us - BlockConditionsFilteredDictTime: 3.840us - BlockConditionsFilteredTime: 24.545us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.937us - BlockInitSeekCount: 6 - BlockInitSeekTime: 13.464us - BlockInitTime: 64.854us - BlockLoadTime: 107.935us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 3.797us - FirstReadTime: 5.772us - IOTimer: 0ns - InvertedIndexFilterTime: 2.441us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.286us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 8.138us - OutputIndexResultColumnTimer: 173ns - 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: 93ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.583us Fragment 125: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 23.275ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.75ms - CloseTime: 23.391us - GetBlockTime: 21.972ms - OpenTime: 960ns - PrepareTime: 166.286us - SinkTime: 1.35ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 23.241ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.801ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 345.12 KB - CloseTime: 18.376us - CompressTime: 0ns - ExecTime: 1.143ms - InputRows: 4.277K (4277) - LocalBytesSent: 309.07 KB - LocalSendTime: 76.762us - LocalSentRows: 4.277K (4277) - MemoryUsage: - PeakMemoryUsage: 328.00 KB - MergeBlockTime: 192.93us - OpenTime: 104.543us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s225ms - RowsProduced: 4.277K (4277) - RpcAvgTime: 3s112ms - RpcCount: 2 - RpcMaxTime: 6s224ms - RpcMinTime: 6s224ms - RpcSumTime: 6s224ms - SerializeBatchTime: 564.174us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 629.86 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.563us - DeserializeAndMergeTime: 0ns - ExecTime: 21.888ms - GetResultsTime: 11.99ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 962.315us - HashTableSize: 163.478K (163478) - InsertKeysToColumnTime: 4.557ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.781us - ProjectionTime: 899.864us - RowsProduced: 4.277K (4277) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s652ms PipelineXTask (index=2):(Active: 25.477ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.344ms - CloseTime: 16.631us - GetBlockTime: 23.742ms - OpenTime: 844ns - PrepareTime: 108.178us - SinkTime: 1.523ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.445ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.864ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 352.56 KB - CloseTime: 13.810us - CompressTime: 0ns - ExecTime: 1.553ms - InputRows: 4.367K (4367) - LocalBytesSent: 315.58 KB - LocalSendTime: 106.42us - LocalSentRows: 4.367K (4367) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 471.19us - OpenTime: 57.271us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s224ms - RowsProduced: 4.367K (4367) - RpcAvgTime: 3s111ms - RpcCount: 2 - RpcMaxTime: 6s223ms - RpcMinTime: 6s223ms - RpcSumTime: 6s223ms - SerializeBatchTime: 673.713us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 643.11 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 897ns - DeserializeAndMergeTime: 0ns - ExecTime: 23.650ms - GetResultsTime: 11.772ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.24ms - HashTableSize: 163.44K (163440) - InsertKeysToColumnTime: 4.782ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.177us - ProjectionTime: 1.58ms - RowsProduced: 4.367K (4367) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s652ms PipelineXTask (index=4):(Active: 25.827ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.694ms - CloseTime: 26.177us - GetBlockTime: 23.382ms - OpenTime: 579ns - PrepareTime: 99.134us - SinkTime: 2.217ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.790ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.885ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 352.82 KB - CloseTime: 21.617us - CompressTime: 0ns - ExecTime: 2.260ms - InputRows: 4.375K (4375) - LocalBytesSent: 316.16 KB - LocalSendTime: 377.361us - LocalSentRows: 4.375K (4375) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 442.887us - OpenTime: 38.81us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s223ms - RowsProduced: 4.375K (4375) - RpcAvgTime: 3s111ms - RpcCount: 2 - RpcMaxTime: 6s223ms - RpcMinTime: 6s223ms - RpcSumTime: 6s223ms - SerializeBatchTime: 1.111ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 644.29 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.137us - DeserializeAndMergeTime: 0ns - ExecTime: 23.279ms - GetResultsTime: 11.672ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 968.239us - HashTableSize: 163.641K (163641) - InsertKeysToColumnTime: 4.725ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.540us - ProjectionTime: 1.84ms - RowsProduced: 4.375K (4375) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s653ms PipelineXTask (index=6):(Active: 24.374ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.204ms - CloseTime: 17.433us - GetBlockTime: 22.510ms - OpenTime: 906ns - PrepareTime: 145.470us - SinkTime: 1.621ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.347ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.394ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 341.18 KB - CloseTime: 14.37us - CompressTime: 0ns - ExecTime: 1.682ms - InputRows: 4.236K (4236) - LocalBytesSent: 306.11 KB - LocalSendTime: 213.951us - LocalSentRows: 4.236K (4236) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 451.72us - OpenTime: 64.934us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s225ms - RowsProduced: 4.236K (4236) - RpcAvgTime: 3s111ms - RpcCount: 2 - RpcMaxTime: 6s222ms - RpcMinTime: 6s222ms - RpcSumTime: 6s222ms - SerializeBatchTime: 755.606us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 623.86 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.294us - DeserializeAndMergeTime: 0ns - ExecTime: 22.417ms - GetResultsTime: 11.503ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 924.41us - HashTableSize: 163.705K (163705) - InsertKeysToColumnTime: 4.572ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.753us - ProjectionTime: 966.544us - RowsProduced: 4.236K (4236) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s655ms PipelineXTask (index=8):(Active: 27.111ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 26.940ms - CloseTime: 26.968us - GetBlockTime: 25.371ms - OpenTime: 933ns - PrepareTime: 136.602us - SinkTime: 1.486ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 27.64ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.11ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 365.09 KB - CloseTime: 22.382us - CompressTime: 0ns - ExecTime: 1.521ms - InputRows: 4.533K (4533) - LocalBytesSent: 327.55 KB - LocalSendTime: 141.580us - LocalSentRows: 4.533K (4533) - MemoryUsage: - PeakMemoryUsage: 392.00 KB - MergeBlockTime: 270.16us - OpenTime: 42.718us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s222ms - RowsProduced: 4.533K (4533) - RpcAvgTime: 3s110ms - RpcCount: 2 - RpcMaxTime: 6s221ms - RpcMinTime: 6s221ms - RpcSumTime: 6s221ms - SerializeBatchTime: 791.312us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 667.54 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.447us - DeserializeAndMergeTime: 0ns - ExecTime: 25.264ms - GetResultsTime: 13.106ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.48ms - HashTableSize: 163.983K (163983) - InsertKeysToColumnTime: 5.266ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.420us - ProjectionTime: 1.80ms - RowsProduced: 4.533K (4533) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s656ms PipelineXTask (index=10):(Active: 45.291ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 45.125ms - CloseTime: 42.677us - GetBlockTime: 43.95ms - OpenTime: 923ns - PrepareTime: 116.282us - SinkTime: 1.935ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 44.483ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.72ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 359.06 KB - CloseTime: 37.663us - CompressTime: 0ns - ExecTime: 1.979ms - InputRows: 4.45K (4450) - LocalBytesSent: 321.57 KB - LocalSendTime: 295.791us - LocalSentRows: 4.45K (4450) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 328.432us - OpenTime: 29.723us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s207ms - RowsProduced: 4.45K (4450) - RpcAvgTime: 3s101ms - RpcCount: 2 - RpcMaxTime: 6s203ms - RpcMinTime: 6s203ms - RpcSumTime: 6s203ms - SerializeBatchTime: 996.565us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 655.38 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.420us - DeserializeAndMergeTime: 0ns - ExecTime: 42.905ms - GetResultsTime: 21.410ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.910ms - HashTableSize: 162.829K (162829) - InsertKeysToColumnTime: 9.9ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.960us - ProjectionTime: 1.660ms - RowsProduced: 4.45K (4450) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s656ms PipelineXTask (index=12):(Active: 35.889ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.735ms - CloseTime: 17.218us - GetBlockTime: 33.660ms - OpenTime: 2.63us - PrepareTime: 128.449us - SinkTime: 1.982ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 35.847ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 947.208us DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 356.88 KB - CloseTime: 14.417us - CompressTime: 0ns - ExecTime: 2.6ms - InputRows: 4.435K (4435) - LocalBytesSent: 320.49 KB - LocalSendTime: 325.850us - LocalSentRows: 4.435K (4435) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 440.61us - OpenTime: 34.368us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s214ms - RowsProduced: 4.435K (4435) - RpcAvgTime: 3s106ms - RpcCount: 2 - RpcMaxTime: 6s213ms - RpcMinTime: 6s213ms - RpcSumTime: 6s213ms - SerializeBatchTime: 923.908us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 653.18 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 944ns - DeserializeAndMergeTime: 0ns - ExecTime: 33.532ms - GetResultsTime: 16.331ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.340ms - HashTableSize: 163.547K (163547) - InsertKeysToColumnTime: 6.969ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 25.208us - ProjectionTime: 1.517ms - RowsProduced: 4.435K (4435) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 1s656ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 172.865ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 172.739ms - CloseTime: 51.111us - GetBlockTime: 1.311ms - OpenTime: 3.574us - PrepareTime: 62.636us - SinkTime: 171.20ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.0ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 130.597ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 12.289us - DeserializeAndMergeTime: 4.235ms - ExecTime: 171.9ms - ExprTime: 0ns - HashTableComputeTime: 166.187ms - HashTableEmplaceTime: 156.995ms - HashTableInputCount: 163.478K (163478) - InputRows: 163.478K (163478) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 170.820ms - OpenTime: 23.627us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 66 - BytesReceived: 2.70 MB - CloseTime: 16.44us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.325ms - ExecTime: 1.286ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.14 MB - MemoryUsage: - Blocks: 2.43 MB - PeakMemoryUsage: 0.00 - OpenTime: 20.399us - ProjectionTime: 0ns - RowsProduced: 163.478K (163478) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s353ms PipelineXTask (index=3):(Active: 107.634ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 107.523ms - CloseTime: 34.290us - GetBlockTime: 1.73ms - OpenTime: 3.167us - PrepareTime: 54.6us - SinkTime: 106.20ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.862ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 128.931ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 21.923us - DeserializeAndMergeTime: 3.869ms - ExecTime: 106.21ms - ExprTime: 0ns - HashTableComputeTime: 101.671ms - HashTableEmplaceTime: 93.390ms - HashTableInputCount: 163.44K (163440) - InputRows: 163.44K (163440) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 105.856ms - OpenTime: 18.394us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 62 - BytesReceived: 2.70 MB - CloseTime: 10.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.725ms - ExecTime: 1.35ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.02 MB - MemoryUsage: - Blocks: 1.47 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.372us - ProjectionTime: 0ns - RowsProduced: 163.44K (163440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s420ms PipelineXTask (index=5):(Active: 91.976ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 91.883ms - CloseTime: 22.165us - GetBlockTime: 999.828us - OpenTime: 2.953us - PrepareTime: 57.356us - SinkTime: 90.486ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.433ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 272.636ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 9.669us - DeserializeAndMergeTime: 3.546ms - ExecTime: 90.494ms - ExprTime: 0ns - HashTableComputeTime: 86.487ms - HashTableEmplaceTime: 79.113ms - HashTableInputCount: 163.641K (163641) - InputRows: 163.641K (163641) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 90.358ms - OpenTime: 28.154us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 64 - BytesReceived: 2.70 MB - CloseTime: 10.985us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.440ms - ExecTime: 970.483us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.40 MB - MemoryUsage: - Blocks: 2.27 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.28us - ProjectionTime: 0ns - RowsProduced: 163.641K (163641) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s292ms PipelineXTask (index=7):(Active: 113.668ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 113.581ms - CloseTime: 20.756us - GetBlockTime: 1.308ms - OpenTime: 3.286us - PrepareTime: 56.40us - SinkTime: 111.920ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.947ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.608ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 14.537us - DeserializeAndMergeTime: 4.420ms - ExecTime: 111.924ms - ExprTime: 0ns - HashTableComputeTime: 107.3ms - HashTableEmplaceTime: 97.878ms - HashTableInputCount: 163.705K (163705) - InputRows: 163.705K (163705) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 111.788ms - OpenTime: 20.873us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 64 - BytesReceived: 2.70 MB - CloseTime: 5.319us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.667ms - ExecTime: 1.274ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.38 MB - MemoryUsage: - Blocks: 3.81 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.547us - ProjectionTime: 0ns - RowsProduced: 163.705K (163705) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s387ms PipelineXTask (index=9):(Active: 108.740ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 108.620ms - CloseTime: 26.857us - GetBlockTime: 1.130ms - OpenTime: 2.693us - PrepareTime: 81.71us - SinkTime: 107.130ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.189ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.874ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 8.206us - DeserializeAndMergeTime: 3.761ms - ExecTime: 107.152ms - ExprTime: 0ns - HashTableComputeTime: 102.758ms - HashTableEmplaceTime: 92.234ms - HashTableInputCount: 163.983K (163983) - InputRows: 163.983K (163983) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 106.995ms - OpenTime: 42.771us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 64 - BytesReceived: 2.70 MB - CloseTime: 6.292us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.800ms - ExecTime: 1.117ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.43 MB - MemoryUsage: - Blocks: 2.48 MB - PeakMemoryUsage: 0.00 - OpenTime: 23.425us - ProjectionTime: 0ns - RowsProduced: 163.983K (163983) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s411ms PipelineXTask (index=11):(Active: 126.291ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 126.183ms - CloseTime: 28.889us - GetBlockTime: 1.187ms - OpenTime: 2.403us - PrepareTime: 65.407us - SinkTime: 124.581ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 97.667ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 267.861ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 11.89us - DeserializeAndMergeTime: 3.595ms - ExecTime: 124.594ms - ExprTime: 0ns - HashTableComputeTime: 120.444ms - HashTableEmplaceTime: 112.76ms - HashTableInputCount: 162.829K (162829) - InputRows: 162.829K (162829) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 124.458ms - OpenTime: 30.299us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 62 - BytesReceived: 2.69 MB - CloseTime: 16.692us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.674ms - ExecTime: 1.156ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.23 MB - MemoryUsage: - Blocks: 2.25 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.219us - ProjectionTime: 0ns - RowsProduced: 162.829K (162829) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s263ms PipelineXTask (index=13):(Active: 109.172ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 109.68ms - CloseTime: 21.464us - GetBlockTime: 1.159ms - OpenTime: 3.227us - PrepareTime: 57.245us - SinkTime: 107.472ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.266ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 187.11ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 7.175us - DeserializeAndMergeTime: 3.843ms - ExecTime: 107.458ms - ExprTime: 0ns - HashTableComputeTime: 103.37ms - HashTableEmplaceTime: 94.447ms - HashTableInputCount: 163.547K (163547) - InputRows: 163.547K (163547) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 107.318ms - OpenTime: 18.531us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 62 - BytesReceived: 2.70 MB - CloseTime: 12.819us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.884ms - ExecTime: 1.138ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.38 MB - MemoryUsage: - Blocks: 3.00 MB - PeakMemoryUsage: 0.00 - OpenTime: 19.835us - ProjectionTime: 0ns - RowsProduced: 163.547K (163547) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s361ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 46.571ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 46.441ms - CloseTime: 21.750us - GetBlockTime: 44.369ms - OpenTime: 734ns - PrepareTime: 101.803us - SinkTime: 1.979ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 46.540ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.195ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 359.04 KB - CloseTime: 16.914us - CompressTime: 0ns - ExecTime: 2.12ms - InputRows: 4.452K (4452) - LocalBytesSent: 321.72 KB - LocalSendTime: 132.250us - LocalSentRows: 4.452K (4452) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 358.496us - OpenTime: 38.254us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.146ms - RowsProduced: 4.452K (4452) - RpcAvgTime: 9.652ms - RpcCount: 2 - RpcMaxTime: 19.304ms - RpcMinTime: 19.304ms - RpcSumTime: 19.304ms - SerializeBatchTime: 1.20ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 655.67 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.230us - DeserializeAndMergeTime: 0ns - ExecTime: 44.220ms - GetResultsTime: 21.567ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.932ms - HashTableSize: 163.775K (163775) - InsertKeysToColumnTime: 9.802ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.357us - ProjectionTime: 1.880ms - RowsProduced: 4.452K (4452) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s290ms PipelineXTask (index=2):(Active: 24.63ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 23.927ms - CloseTime: 29.412us - GetBlockTime: 22.651ms - OpenTime: 1.673us - PrepareTime: 98.948us - SinkTime: 1.168ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 24.25ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 105.512us DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 354.99 KB - CloseTime: 24.950us - CompressTime: 0ns - ExecTime: 1.211ms - InputRows: 4.403K (4403) - LocalBytesSent: 318.17 KB - LocalSendTime: 78.106us - LocalSentRows: 4.403K (4403) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 236.701us - OpenTime: 37.327us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.310ms - RowsProduced: 4.403K (4403) - RpcAvgTime: 1.465ms - RpcCount: 2 - RpcMaxTime: 2.930ms - RpcMinTime: 2.930ms - RpcSumTime: 2.930ms - SerializeBatchTime: 519.131us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 648.45 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.316us - DeserializeAndMergeTime: 0ns - ExecTime: 22.555ms - GetResultsTime: 11.110ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 949.860us - HashTableSize: 163.489K (163489) - InsertKeysToColumnTime: 4.721ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.911us - ProjectionTime: 1.38ms - RowsProduced: 4.403K (4403) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s291ms PipelineXTask (index=4):(Active: 46.464ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 46.272ms - CloseTime: 29.677us - GetBlockTime: 44.149ms - OpenTime: 10.423us - PrepareTime: 146.275us - SinkTime: 2.20ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 46.412ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.54ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 349.28 KB - CloseTime: 25.865us - CompressTime: 0ns - ExecTime: 2.59ms - InputRows: 4.332K (4332) - LocalBytesSent: 313.04 KB - LocalSendTime: 136.799us - LocalSentRows: 4.332K (4332) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 421.433us - OpenTime: 36.321us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.583ms - RowsProduced: 4.332K (4332) - RpcAvgTime: 10.247ms - RpcCount: 2 - RpcMaxTime: 20.495ms - RpcMinTime: 20.495ms - RpcSumTime: 20.495ms - SerializeBatchTime: 985.765us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 637.94 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 800ns - DeserializeAndMergeTime: 0ns - ExecTime: 43.963ms - GetResultsTime: 21.485ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.986ms - HashTableSize: 163.426K (163426) - InsertKeysToColumnTime: 9.878ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.730us - ProjectionTime: 1.944ms - RowsProduced: 4.332K (4332) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s291ms PipelineXTask (index=6):(Active: 46.260ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 46.101ms - CloseTime: 25.548us - GetBlockTime: 43.565ms - OpenTime: 593ns - PrepareTime: 128.960us - SinkTime: 2.455ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 44.645ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.424ms DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 351.60 KB - CloseTime: 21.260us - CompressTime: 0ns - ExecTime: 2.497ms - InputRows: 4.358K (4358) - LocalBytesSent: 314.92 KB - LocalSendTime: 136.764us - LocalSentRows: 4.358K (4358) - MemoryUsage: - PeakMemoryUsage: 328.00 KB - MergeBlockTime: 575.869us - OpenTime: 40.957us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.407ms - RowsProduced: 4.358K (4358) - RpcAvgTime: 9.134ms - RpcCount: 2 - RpcMaxTime: 18.269ms - RpcMinTime: 18.269ms - RpcSumTime: 18.269ms - SerializeBatchTime: 1.275ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 641.84 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 1.187us - DeserializeAndMergeTime: 0ns - ExecTime: 43.366ms - GetResultsTime: 20.867ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.942ms - HashTableSize: 163.825K (163825) - InsertKeysToColumnTime: 9.153ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.335us - ProjectionTime: 1.667ms - RowsProduced: 4.358K (4358) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s291ms PipelineXTask (index=8):(Active: 29.549ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.415ms - CloseTime: 16.335us - GetBlockTime: 27.923ms - OpenTime: 930ns - PrepareTime: 110.828us - SinkTime: 1.433ms - GetBlockCounter: 41 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 29.515ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 136.314us DATA_STREAM_SINK_OPERATOR (id=71,dst_id=71): - BlocksProduced: 5 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 352.20 KB - CloseTime: 13.463us - CompressTime: 0ns - ExecTime: 1.475ms - InputRows: 4.369K (4369) - LocalBytesSent: 315.71 KB - LocalSendTime: 142.956us - LocalSentRows: 4.369K (4369) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 220.16us - OpenTime: 41.176us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.563ms - RowsProduced: 4.369K (4369) - RpcAvgTime: 1.568ms - RpcCount: 2 - RpcMaxTime: 3.137ms - RpcMinTime: 3.137ms - RpcSumTime: 3.137ms - SerializeBatchTime: 643.950us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 643.37 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=70): - BlocksProduced: 41 - CloseTime: 856ns - DeserializeAndMergeTime: 0ns - ExecTime: 27.776ms - GetResultsTime: 15.687ms - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.594ms - HashTableSize: 163.902K (163902) - InsertKeysToColumnTime: 6.975ms - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.992us - ProjectionTime: 979.92us - RowsProduced: 4.369K (4369) - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 9s292ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 85.96ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 85.13ms - CloseTime: 18.990us - GetBlockTime: 907.486us - OpenTime: 2.2us - PrepareTime: 52.792us - SinkTime: 83.655ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 39 - NumBlockedTimes: 41 - NumScheduleTimes: 41 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.935ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.400ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 11.312us - DeserializeAndMergeTime: 3.296ms - ExecTime: 83.656ms - ExprTime: 0ns - HashTableComputeTime: 79.875ms - HashTableEmplaceTime: 72.686ms - HashTableInputCount: 163.775K (163775) - InputRows: 163.775K (163775) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 83.535ms - OpenTime: 19.141us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 74 - BytesReceived: 4.15 MB - CloseTime: 6.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.679ms - ExecTime: 891.579us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.92 MB - MemoryUsage: - Blocks: 512.00 KB - PeakMemoryUsage: 512.00 KB - OpenTime: 18.619us - ProjectionTime: 0ns - RowsProduced: 163.775K (163775) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s198ms PipelineXTask (index=3):(Active: 96.112ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 96.13ms - CloseTime: 10.740us - GetBlockTime: 920.157us - OpenTime: 2.274us - PrepareTime: 69.888us - SinkTime: 94.634ms - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.953ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.622ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 5.328us - DeserializeAndMergeTime: 3.557ms - ExecTime: 94.630ms - ExprTime: 0ns - HashTableComputeTime: 90.705ms - HashTableEmplaceTime: 82.572ms - HashTableInputCount: 163.489K (163489) - InputRows: 163.489K (163489) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 94.521ms - OpenTime: 23.320us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 73 - BytesReceived: 4.13 MB - CloseTime: 4.623us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.540ms - ExecTime: 905.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.20 MB - MemoryUsage: - Blocks: 1024.00 KB - PeakMemoryUsage: 1024.00 KB - OpenTime: 22.909us - ProjectionTime: 0ns - RowsProduced: 163.489K (163489) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s183ms PipelineXTask (index=5):(Active: 90.345ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 90.277ms - CloseTime: 7.960us - GetBlockTime: 847.220us - OpenTime: 2.607us - PrepareTime: 49.617us - SinkTime: 89.59ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.228ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.18ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 3.89us - DeserializeAndMergeTime: 3.154ms - ExecTime: 89.59ms - ExprTime: 0ns - HashTableComputeTime: 85.581ms - HashTableEmplaceTime: 78.385ms - HashTableInputCount: 163.426K (163426) - InputRows: 163.426K (163426) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 88.975ms - OpenTime: 20.666us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 74 - BytesReceived: 4.10 MB - CloseTime: 4.97us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.595ms - ExecTime: 804.794us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.29 MB - MemoryUsage: - Blocks: 1024.00 KB - PeakMemoryUsage: 1024.00 KB - OpenTime: 15.166us - ProjectionTime: 0ns - RowsProduced: 163.426K (163426) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s192ms PipelineXTask (index=7):(Active: 95.210ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 95.126ms - CloseTime: 11.392us - GetBlockTime: 990.74us - OpenTime: 1.687us - PrepareTime: 61.84us - SinkTime: 93.729ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.935ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.996ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 5.513us - DeserializeAndMergeTime: 3.402ms - ExecTime: 93.716ms - ExprTime: 0ns - HashTableComputeTime: 89.952ms - HashTableEmplaceTime: 82.673ms - HashTableInputCount: 163.825K (163825) - InputRows: 163.825K (163825) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 93.614ms - OpenTime: 21.167us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 74 - BytesReceived: 4.14 MB - CloseTime: 5.197us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.159ms - ExecTime: 976.66us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.20 MB - MemoryUsage: - Blocks: 544.00 KB - PeakMemoryUsage: 544.00 KB - OpenTime: 18.296us - ProjectionTime: 0ns - RowsProduced: 163.825K (163825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s190ms PipelineXTask (index=9):(Active: 84.343ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 84.239ms - CloseTime: 11.575us - GetBlockTime: 852.482us - OpenTime: 1.830us - PrepareTime: 63.898us - SinkTime: 82.982ms - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.218ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.568ms AGGREGATION_SINK_OPERATOR (id=70): - BuildTime: 0ns - CloseTime: 7.129us - DeserializeAndMergeTime: 3.593ms - ExecTime: 82.987ms - ExprTime: 0ns - HashTableComputeTime: 79.17ms - HashTableEmplaceTime: 71.479ms - HashTableInputCount: 163.902K (163902) - InputRows: 163.902K (163902) - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 6.00 MB - PeakMemoryUsage: 25.87 MB - SerializeKeyArena: 19.88 MB - MergeTime: 82.864ms - OpenTime: 25.202us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=69): - BlocksProduced: 75 - BytesReceived: 4.14 MB - CloseTime: 4.28us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.485ms - ExecTime: 837.594us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.95 MB - MemoryUsage: - Blocks: 1024.00 KB - PeakMemoryUsage: 1024.00 KB - OpenTime: 22.74us - ProjectionTime: 0ns - RowsProduced: 163.902K (163902) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s196ms Fragment 126: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 157.409ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 156.423ms - CloseTime: 805.932us - GetBlockTime: 102.624ms - OpenTime: 4.718us - PrepareTime: 167.498us - SinkTime: 53.297ms - GetBlockCounter: 76 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 121.661ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 213.772ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 55 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.08 MB - CloseTime: 11.183us - CompressTime: 0ns - ExecTime: 53.359ms - InputRows: 166.449K (166449) - LocalBytesSent: 4.70 MB - LocalSendTime: 231.799us - LocalSentRows: 69.185K (69185) - MemoryUsage: - PeakMemoryUsage: 11.29 MB - MergeBlockTime: 0ns - OpenTime: 82.540us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 929.23ms - RowsProduced: 166.449K (166449) - RpcAvgTime: 236.911ms - RpcCount: 28 - RpcMaxTime: 952.197ms - RpcMinTime: 941.693ms - RpcSumTime: 6s633ms - SerializeBatchTime: 18.304ms - SplitBlockDistributeByChannelTime: 22.491ms - SplitBlockHashComputeTime: 8.217ms - UncompressedRowBatchSize: 6.73 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 78.411ms - CloseTime: 765.803us - DeserializeAndMergeTime: 0ns - ExecTime: 86.252ms - ExprTime: 118.452us - GetResultsTime: 6.793ms - HashTableComputeTime: 67.639ms - HashTableEmplaceTime: 60.681ms - HashTableInputCount: 57.296K (57296) - HashTableIterateTime: 468.714us - HashTableSize: 57.296K (57296) - InsertKeysToColumnTime: 2.411ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 28.193us - ProjectionTime: 0ns - RowsProduced: 166.449K (166449) - SerializeDataTime: 11.622ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.824ms - StreamingAggTime: 9.619ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 22.133us - ExecTime: 16.411ms - InitProbeSideTime: 3.583ms - JoinFilterTimer: 8.640us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 14.160us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 23.61us - ProbeFindNextTime: 0ns - ProbeRows: 166.449K (166449) - ProbeTime: 13.634ms - ProbeWhenBuildSideOutputTime: 305.22us - ProbeWhenProbeSideOutputTime: 3.844ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.314ms - ProjectionTime: 2.532ms - RowsProduced: 166.449K (166449) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 419.412us - GetBlockFailedTime: 17 - MemoryUsage: - PeakMemoryUsage: 1.28 MB - OpenTime: 808ns - ProjectionTime: 0ns - RowsProduced: 166.449K (166449) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 178.638ms PipelineXTask (index=5):(Active: 183.813ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 182.981ms - CloseTime: 662.326us - GetBlockTime: 131.517ms - OpenTime: 6.753us - PrepareTime: 153.959us - SinkTime: 51.1ms - GetBlockCounter: 69 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 112.718ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.742ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 52 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.75 MB - CloseTime: 16.413us - CompressTime: 0ns - ExecTime: 51.55ms - InputRows: 152.025K (152025) - LocalBytesSent: 4.35 MB - LocalSendTime: 262.71us - LocalSentRows: 63.621K (63621) - MemoryUsage: - PeakMemoryUsage: 10.72 MB - MergeBlockTime: 0ns - OpenTime: 69.944us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 937.849ms - RowsProduced: 152.025K (152025) - RpcAvgTime: 237.726ms - RpcCount: 25 - RpcMaxTime: 975.241ms - RpcMinTime: 692.168ms - RpcSumTime: 5s943ms - SerializeBatchTime: 19.110ms - SplitBlockDistributeByChannelTime: 20.16ms - SplitBlockHashComputeTime: 7.633ms - UncompressedRowBatchSize: 6.15 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 39 - BuildConvertToPartitionedTime: 0ns - BuildTime: 65.554ms - CloseTime: 619.119us - DeserializeAndMergeTime: 0ns - ExecTime: 73.91ms - ExprTime: 113.992us - GetResultsTime: 6.700ms - HashTableComputeTime: 55.918ms - HashTableEmplaceTime: 53.446ms - HashTableInputCount: 56.131K (56131) - HashTableIterateTime: 454.715us - HashTableSize: 56.131K (56131) - InsertKeysToColumnTime: 2.185ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 26.695us - ProjectionTime: 0ns - RowsProduced: 152.025K (152025) - SerializeDataTime: 11.197ms - SerializeKeyTime: 0ns - SerializeResultTime: 6.729ms - StreamingAggTime: 8.595ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 18.660us - ExecTime: 35.438ms - InitProbeSideTime: 13.40ms - JoinFilterTimer: 8.65us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 14.652us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.642us - ProbeFindNextTime: 0ns - ProbeRows: 152.025K (152025) - ProbeTime: 33.47ms - ProbeWhenBuildSideOutputTime: 416.463us - ProbeWhenProbeSideOutputTime: 3.707ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 14.454ms - ProjectionTime: 2.171ms - RowsProduced: 152.025K (152025) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 45 - CloseTime: 0ns - ExecTime: 323.573us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 2.88 MB - OpenTime: 993ns - ProjectionTime: 0ns - RowsProduced: 152.025K (152025) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 163.642ms PipelineXTask (index=10):(Active: 165.226ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 164.216ms - CloseTime: 837.310us - GetBlockTime: 106.461ms - OpenTime: 4.353us - PrepareTime: 161.203us - SinkTime: 57.350ms - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 115.730ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.912ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 55 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.85 MB - CloseTime: 19.880us - CompressTime: 0ns - ExecTime: 57.395ms - InputRows: 156.35K (156350) - LocalBytesSent: 4.45 MB - LocalSendTime: 274.157us - LocalSentRows: 65.3K (65300) - MemoryUsage: - PeakMemoryUsage: 10.82 MB - MergeBlockTime: 0ns - OpenTime: 67.752us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 946.782ms - RowsProduced: 156.35K (156350) - RpcAvgTime: 241.500ms - RpcCount: 28 - RpcMaxTime: 973.995ms - RpcMinTime: 958.107ms - RpcSumTime: 6s762ms - SerializeBatchTime: 24.342ms - SplitBlockDistributeByChannelTime: 20.728ms - SplitBlockHashComputeTime: 7.302ms - UncompressedRowBatchSize: 6.31 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 40 - BuildConvertToPartitionedTime: 0ns - BuildTime: 63.221ms - CloseTime: 777.281us - DeserializeAndMergeTime: 0ns - ExecTime: 69.298ms - ExprTime: 132.461us - GetResultsTime: 5.88ms - HashTableComputeTime: 52.756ms - HashTableEmplaceTime: 50.22ms - HashTableInputCount: 56.574K (56574) - HashTableIterateTime: 349.160us - HashTableSize: 56.574K (56574) - InsertKeysToColumnTime: 1.642ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 22.910us - ProjectionTime: 0ns - RowsProduced: 156.35K (156350) - SerializeDataTime: 10.847ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.122ms - StreamingAggTime: 9.502ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 30.77us - ExecTime: 37.327ms - InitProbeSideTime: 24.280ms - JoinFilterTimer: 7.842us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 17.152us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.530us - ProbeFindNextTime: 0ns - ProbeRows: 156.35K (156350) - ProbeTime: 34.502ms - ProbeWhenBuildSideOutputTime: 318.776us - ProbeWhenProbeSideOutputTime: 4.509ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.836ms - ProjectionTime: 2.554ms - RowsProduced: 156.35K (156350) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 335.309us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 1.92 MB - OpenTime: 812ns - ProjectionTime: 0ns - RowsProduced: 156.35K (156350) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 166.855ms PipelineXTask (index=15):(Active: 167.671ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 166.711ms - CloseTime: 784.817us - GetBlockTime: 79.64ms - OpenTime: 5.14us - PrepareTime: 164.73us - SinkTime: 87.305ms - GetBlockCounter: 62 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 103.884ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.301ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 50 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.70 MB - CloseTime: 12.267us - CompressTime: 0ns - ExecTime: 87.346ms - InputRows: 150.966K (150966) - LocalBytesSent: 4.27 MB - LocalSendTime: 271.903us - LocalSentRows: 62.993K (62993) - MemoryUsage: - PeakMemoryUsage: 10.29 MB - MergeBlockTime: 0ns - OpenTime: 64.724us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 946.211ms - RowsProduced: 150.966K (150966) - RpcAvgTime: 244.474ms - RpcCount: 24 - RpcMaxTime: 954.309ms - RpcMinTime: 705.479ms - RpcSumTime: 5s867ms - SerializeBatchTime: 16.526ms - SplitBlockDistributeByChannelTime: 50.113ms - SplitBlockHashComputeTime: 6.727ms - UncompressedRowBatchSize: 6.07 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 40 - BuildConvertToPartitionedTime: 0ns - BuildTime: 59.919ms - CloseTime: 755.142us - DeserializeAndMergeTime: 0ns - ExecTime: 65.408ms - ExprTime: 109.71us - GetResultsTime: 4.532ms - HashTableComputeTime: 50.723ms - HashTableEmplaceTime: 48.134ms - HashTableInputCount: 57.237K (57237) - HashTableIterateTime: 315.928us - HashTableSize: 57.237K (57237) - InsertKeysToColumnTime: 1.526ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 28.228us - ProjectionTime: 0ns - RowsProduced: 150.966K (150966) - SerializeDataTime: 9.523ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.547ms - StreamingAggTime: 8.96ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 41 - BuildOutputBlock: 0ns - CloseTime: 13.131us - ExecTime: 13.866ms - InitProbeSideTime: 2.826ms - JoinFilterTimer: 11.897us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.418us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.917us - ProbeFindNextTime: 0ns - ProbeRows: 150.966K (150966) - ProbeTime: 11.487ms - ProbeWhenBuildSideOutputTime: 269.412us - ProbeWhenProbeSideOutputTime: 3.797ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.270ms - ProjectionTime: 2.158ms - RowsProduced: 150.966K (150966) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 41 - CloseTime: 0ns - ExecTime: 316.131us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 2.56 MB - OpenTime: 738ns - ProjectionTime: 0ns - RowsProduced: 150.966K (150966) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 168.376ms PipelineXTask (index=20):(Active: 135.725ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 135.13ms - CloseTime: 528.308us - GetBlockTime: 91.721ms - OpenTime: 4.664us - PrepareTime: 171.769us - SinkTime: 42.930ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 103.818ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 132.841ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.49 MB - CloseTime: 17.697us - CompressTime: 0ns - ExecTime: 42.997ms - InputRows: 142.782K (142782) - LocalBytesSent: 4.00 MB - LocalSendTime: 186.329us - LocalSentRows: 59.35K (59350) - MemoryUsage: - PeakMemoryUsage: 9.94 MB - MergeBlockTime: 0ns - OpenTime: 80.670us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 838.705ms - RowsProduced: 142.782K (142782) - RpcAvgTime: 275.441ms - RpcCount: 21 - RpcMaxTime: 849.982ms - RpcMinTime: 787.438ms - RpcSumTime: 5s784ms - SerializeBatchTime: 17.332ms - SplitBlockDistributeByChannelTime: 15.163ms - SplitBlockHashComputeTime: 7.306ms - UncompressedRowBatchSize: 5.72 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 39 - BuildConvertToPartitionedTime: 0ns - BuildTime: 70.711ms - CloseTime: 483.560us - DeserializeAndMergeTime: 0ns - ExecTime: 78.375ms - ExprTime: 93.543us - GetResultsTime: 6.990ms - HashTableComputeTime: 31.990ms - HashTableEmplaceTime: 29.229ms - HashTableInputCount: 57.258K (57258) - HashTableIterateTime: 504.377us - HashTableSize: 57.258K (57258) - InsertKeysToColumnTime: 2.456ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 30.494us - ProjectionTime: 0ns - RowsProduced: 142.782K (142782) - SerializeDataTime: 40.473ms - SerializeKeyTime: 0ns - SerializeResultTime: 7.13ms - StreamingAggTime: 37.665ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 40 - BuildOutputBlock: 0ns - CloseTime: 18.881us - ExecTime: 13.334ms - InitProbeSideTime: 2.687ms - JoinFilterTimer: 13.172us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 12.218us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 25.20us - ProbeFindNextTime: 0ns - ProbeRows: 142.782K (142782) - ProbeTime: 10.968ms - ProbeWhenBuildSideOutputTime: 256.252us - ProbeWhenProbeSideOutputTime: 3.668ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.48ms - ProjectionTime: 2.178ms - RowsProduced: 142.782K (142782) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 40 - CloseTime: 0ns - ExecTime: 253.348us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 3.52 MB - OpenTime: 1.960us - ProjectionTime: 0ns - RowsProduced: 142.782K (142782) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 213.550ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 25.726ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 25.650ms - CloseTime: 29.824us - GetBlockTime: 24.881ms - OpenTime: 2.443us - PrepareTime: 36.340us - SinkTime: 412.89us - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 19 - NumBlockedTimes: 21 - NumScheduleTimes: 21 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.610ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 32.59ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 381.714us - InputRows: 156.378K (156378) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.317us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 44 - BuildOutputBlock: 0ns - CloseTime: 28.385us - ExecTime: 24.561ms - InitProbeSideTime: 2.771ms - JoinFilterTimer: 6.608us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 10.484us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.398us - ProbeFindNextTime: 0ns - ProbeRows: 156.378K (156378) - ProbeTime: 21.737ms - ProbeWhenBuildSideOutputTime: 510.790us - ProbeWhenProbeSideOutputTime: 4.796ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.430ms - ProjectionTime: 2.644ms - RowsProduced: 156.378K (156378) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 44 - CloseTime: 0ns - ExecTime: 205.540us - GetBlockFailedTime: 19 - MemoryUsage: - PeakMemoryUsage: 1.86 MB - OpenTime: 562ns - ProjectionTime: 0ns - RowsProduced: 156.378K (156378) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 267.806ms PipelineXTask (index=6):(Active: 15.612ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 15.553ms - CloseTime: 7.882us - GetBlockTime: 14.868ms - OpenTime: 2.901us - PrepareTime: 40.862us - SinkTime: 352.939us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.535ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.472ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 327.65us - InputRows: 153.179K (153179) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.122us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 43 - BuildOutputBlock: 0ns - CloseTime: 7.14us - ExecTime: 14.540ms - InitProbeSideTime: 2.979ms - JoinFilterTimer: 6.300us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 12.970us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.390us - ProbeFindNextTime: 0ns - ProbeRows: 153.179K (153179) - ProbeTime: 11.594ms - ProbeWhenBuildSideOutputTime: 417.306us - ProbeWhenProbeSideOutputTime: 3.443ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.541ms - ProjectionTime: 2.779ms - RowsProduced: 153.179K (153179) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 43 - CloseTime: 0ns - ExecTime: 179.497us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 1.64 MB - OpenTime: 591ns - ProjectionTime: 0ns - RowsProduced: 153.179K (153179) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 278.479ms PipelineXTask (index=11):(Active: 17.41ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 16.942ms - CloseTime: 13.19us - GetBlockTime: 16.65ms - OpenTime: 2.822us - PrepareTime: 73.725us - SinkTime: 507.451us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.955ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.457ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 479.234us - InputRows: 156.212K (156212) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.213us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 10.610us - ExecTime: 15.701ms - InitProbeSideTime: 2.819ms - JoinFilterTimer: 6.599us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 46.714us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.88us - ProbeFindNextTime: 0ns - ProbeRows: 156.212K (156212) - ProbeTime: 12.475ms - ProbeWhenBuildSideOutputTime: 451.219us - ProbeWhenProbeSideOutputTime: 4.73ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.836ms - ProjectionTime: 3.22ms - RowsProduced: 156.212K (156212) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 209.871us - GetBlockFailedTime: 22 - MemoryUsage: - PeakMemoryUsage: 2.02 MB - OpenTime: 475ns - ProjectionTime: 0ns - RowsProduced: 156.212K (156212) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 290.61ms PipelineXTask (index=16):(Active: 15.842ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 15.719ms - CloseTime: 18.486us - GetBlockTime: 14.998ms - OpenTime: 3.400us - PrepareTime: 94.701us - SinkTime: 340.183us - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.768ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.459ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 313.685us - InputRows: 155.027K (155027) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.524us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 15.339us - ExecTime: 14.678ms - InitProbeSideTime: 2.721ms - JoinFilterTimer: 6.432us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 16.462us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.172us - ProbeFindNextTime: 0ns - ProbeRows: 155.027K (155027) - ProbeTime: 11.698ms - ProbeWhenBuildSideOutputTime: 439.630us - ProbeWhenProbeSideOutputTime: 3.834ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.441ms - ProjectionTime: 2.777ms - RowsProduced: 155.027K (155027) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 185.667us - GetBlockFailedTime: 22 - MemoryUsage: - PeakMemoryUsage: 1.70 MB - OpenTime: 593ns - ProjectionTime: 0ns - RowsProduced: 155.027K (155027) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 278.375ms PipelineXTask (index=21):(Active: 26.185ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 26.107ms - CloseTime: 29.414us - GetBlockTime: 25.375ms - OpenTime: 2.621us - PrepareTime: 40.854us - SinkTime: 394.941us - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.402ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.884ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 365.342us - InputRows: 147.776K (147776) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.202us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 42 - BuildOutputBlock: 0ns - CloseTime: 28.41us - ExecTime: 25.60ms - InitProbeSideTime: 2.667ms - JoinFilterTimer: 6.318us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 13.794us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.168us - ProbeFindNextTime: 0ns - ProbeRows: 147.776K (147776) - ProbeTime: 22.45ms - ProbeWhenBuildSideOutputTime: 410.88us - ProbeWhenProbeSideOutputTime: 4.910ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 12.959ms - ProjectionTime: 2.837ms - RowsProduced: 147.776K (147776) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 42 - CloseTime: 0ns - ExecTime: 197.16us - GetBlockFailedTime: 21 - MemoryUsage: - PeakMemoryUsage: 1.73 MB - OpenTime: 604ns - ProjectionTime: 0ns - RowsProduced: 147.776K (147776) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 272.581ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 889.400us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 393.55us - CloseTime: 28.180us - GetBlockTime: 60.309us - OpenTime: 280.26us - PrepareTime: 178.678us - SinkTime: 21.576us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 849.834us - WaitBfTime: 19.494ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.855ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 21.916us - InputRows: 583 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.725us - 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: 29.284us - BlocksProduced: 2 - CloseTime: 25.681us - ExecTime: 93.695ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 376.922us - ProcessConjunctTime: 144.143us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 55.469ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 93.234ms - 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: [35.866ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [55.469ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.275ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.83ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 164ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.258ms - ScannerCtxSchedTime: 55.466ms - ScannerFilterTime: 131.268us - ScannerGetBlockTime: 35.680ms - ScannerInitTime: 73.860us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 1.298us - BlockConditionsFilteredBloomFilterTime: 4.782us - BlockConditionsFilteredDictTime: 191.486us - BlockConditionsFilteredTime: 260.509us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 38.915us - BlockInitSeekCount: 37 - BlockInitSeekTime: 209.497us - BlockInitTime: 561.341us - BlockLoadTime: 25.605ms - BlocksLoad: 152 - CachedPagesNum: 312 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 51.446us - FirstReadTime: 1.141ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.626us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 22.78ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 115.413us - OutputIndexResultColumnTimer: 16.660us - 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: 1.44ms - TotalPagesNum: 312 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 77.846us PipelineXTask (index=7):(Active: 1.514ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 963.752us - CloseTime: 60.413us - GetBlockTime: 316.921us - OpenTime: 348.665us - PrepareTime: 131.457us - SinkTime: 200.538us - GetBlockCounter: 35 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.434ms - WaitBfTime: 18.790ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.138ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 192.839us - InputRows: 128.11K (128110) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.199us - 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: 49.127us - BlocksProduced: 35 - CloseTime: 56.930us - ExecTime: 274.840ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 428.921us - ProcessConjunctTime: 172.372us - 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: 54.330ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 274.47ms - 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: [212.557ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [54.330ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 209.940ms - MemoryUsage: - FreeBlocks: 2.14 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.36ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.931us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 128.533ms - ScannerCtxSchedTime: 54.322ms - ScannerFilterTime: 468.513us - ScannerGetBlockTime: 211.877ms - ScannerInitTime: 108.460us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 1.739us - BlockConditionsFilteredBloomFilterTime: 4.334us - BlockConditionsFilteredDictTime: 90.546us - BlockConditionsFilteredTime: 171.525us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.731us - BlockInitSeekCount: 26 - BlockInitSeekTime: 22.673us - BlockInitTime: 301.460us - BlockLoadTime: 211.568ms - BlocksLoad: 405 - CachedPagesNum: 1.107K (1107) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 111.148us - FirstReadTime: 3.272ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.89us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 199.179ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.487ms - OutputIndexResultColumnTimer: 62.326us - 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.991ms - TotalPagesNum: 1.107K (1107) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 264.322us PipelineXTask (index=12):(Active: 2.530ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.834ms - CloseTime: 27.157us - GetBlockTime: 600.540us - OpenTime: 533.897us - PrepareTime: 122.833us - SinkTime: 510.234us - GetBlockCounter: 75 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.317ms - WaitBfTime: 19.195ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.136ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 490.511us - InputRows: 273.17K (273170) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.197us - 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: 45.826us - BlocksProduced: 75 - CloseTime: 24.737us - ExecTime: 290.442ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 607.509us - ProcessConjunctTime: 223.498us - 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: 59.172ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 289.230ms - 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: [221.106ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [59.172ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 216.416ms - MemoryUsage: - FreeBlocks: 4.97 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 737.989us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.860us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 157.335ms - ScannerCtxSchedTime: 59.160ms - ScannerFilterTime: 531.535us - ScannerGetBlockTime: 220.356ms - ScannerInitTime: 214.100us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 2.87us - BlockConditionsFilteredBloomFilterTime: 5.881us - BlockConditionsFilteredDictTime: 140.26us - BlockConditionsFilteredTime: 239.949us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 58.150us - BlockInitSeekCount: 31 - BlockInitSeekTime: 35.20us - BlockInitTime: 382.125us - BlockLoadTime: 219.562ms - BlocksLoad: 410 - CachedPagesNum: 1.137K (1137) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 123.746us - FirstReadTime: 3.343ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.47us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 201.965ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.409ms - OutputIndexResultColumnTimer: 68.982us - 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.971ms - TotalPagesNum: 1.137K (1137) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 257.419us PipelineXTask (index=17):(Active: 2.341ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 1.746ms - CloseTime: 36.713us - GetBlockTime: 647.618us - OpenTime: 398.75us - PrepareTime: 146.266us - SinkTime: 484.44us - GetBlockCounter: 91 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.275ms - WaitBfTime: 18.897ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.176ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 465.893us - InputRows: 329.927K (329927) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.398us - 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: 42.520us - BlocksProduced: 91 - CloseTime: 33.867us - ExecTime: 296.280ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 484.272us - ProcessConjunctTime: 237.432us - 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: 58.73ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 295.135ms - 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: [225.277ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [58.073ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 221.406ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.747ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.257us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 140.308ms - ScannerCtxSchedTime: 58.61ms - ScannerFilterTime: 476.28us - ScannerGetBlockTime: 224.618ms - ScannerInitTime: 92.878us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 2.213us - BlockConditionsFilteredBloomFilterTime: 4.990us - BlockConditionsFilteredDictTime: 125.742us - BlockConditionsFilteredTime: 213.102us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 49.633us - BlockInitSeekCount: 35 - BlockInitSeekTime: 27.334us - BlockInitTime: 375.775us - BlockLoadTime: 224.991ms - BlocksLoad: 345 - CachedPagesNum: 934 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 96.714us - FirstReadTime: 2.756ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.623us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 207.12ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 6.241ms - OutputIndexResultColumnTimer: 59.138us - 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.563ms - TotalPagesNum: 934 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 177.672us PipelineXTask (index=22):(Active: 1.185ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 561.191us - CloseTime: 52.893us - GetBlockTime: 123.455us - OpenTime: 360.343us - PrepareTime: 200.358us - SinkTime: 42.323us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.121ms - WaitBfTime: 23.403ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.501ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 40.974us - InputRows: 36.782K (36782) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 876ns - 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: 56.891us - BlocksProduced: 10 - CloseTime: 49.603us - ExecTime: 103.34ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 509.928us - ProcessConjunctTime: 228.90us - 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: 48.733ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 102.353ms - 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: [49.684ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [48.733ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 49.314ms - MemoryUsage: - FreeBlocks: 3.03 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.544ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 385ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.786ms - ScannerCtxSchedTime: 48.730ms - ScannerFilterTime: 88.44us - ScannerGetBlockTime: 49.557ms - ScannerInitTime: 52.184us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 706ns - BlockConditionsFilteredBloomFilterTime: 2.26us - BlockConditionsFilteredDictTime: 26.595us - BlockConditionsFilteredTime: 60.876us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 12.9us - BlockInitSeekCount: 8 - BlockInitSeekTime: 14.131us - BlockInitTime: 124.85us - BlockLoadTime: 50.470ms - BlocksLoad: 61 - CachedPagesNum: 146 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 27.326us - FirstReadTime: 711.770us - IOTimer: 0ns - InvertedIndexFilterTime: 2.806us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 46.703ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 968.517us - OutputIndexResultColumnTimer: 15.43us - 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: 1.381ms - TotalPagesNum: 146 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 49.959us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 218.904us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 143.996us - CloseTime: 13.565us - GetBlockTime: 5.475us - OpenTime: 2.394us - PrepareTime: 55.305us - SinkTime: 119.930us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 199.476us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.762ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.410us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.492us - BuildTableInsertTime: 26.748us - BuildTableTime: 32.518us - CloseTime: 0ns - ExecTime: 140.332us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 21.137us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.758us - RuntimeFilterComputeTime: 30.97us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.997us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.781us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 15.981us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 18.323ms PipelineXTask (index=8):(Active: 161.309us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 44.663us - CloseTime: 7.440us - GetBlockTime: 0ns - OpenTime: 1.610us - PrepareTime: 103.837us - SinkTime: 30.395us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 148.205us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.788ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 44.322us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.426us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.443ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.235us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 54.103us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 47.871us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 122.986us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.983us - CloseTime: 5.636us - GetBlockTime: 0ns - OpenTime: 2.569us - PrepareTime: 74.750us - SinkTime: 19.57us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.762us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.83ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.6us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.423us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.429ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.150us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.130us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.267us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 121.153us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.355us - CloseTime: 6.600us - GetBlockTime: 0ns - OpenTime: 1.859us - PrepareTime: 75.664us - SinkTime: 20.220us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.616us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.316ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.606us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.791us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 21.679ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.723us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 46.42us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 40.552us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 155.985us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.897us - CloseTime: 35.336us - GetBlockTime: 0ns - OpenTime: 2.448us - PrepareTime: 75.415us - SinkTime: 22.720us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.671us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 616.228us HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.885us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.402us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 21.823ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.137us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 35.865us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.951us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :4 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=4):(Active: 1.741ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.675ms - CloseTime: 20.6us - GetBlockTime: 70.97us - OpenTime: 1.568us - PrepareTime: 40.880us - SinkTime: 1.583ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.715ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.411ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 2.493us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 331.612us - BuildTableInsertTime: 1.149ms - BuildTableTime: 1.213ms - CloseTime: 0ns - ExecTime: 1.590ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 10.523us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=64): - BlocksProduced: 11 - BytesReceived: 0.00 - CloseTime: 18.343us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 95.59us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.26 MB - MemoryUsage: - Blocks: 1.16 MB - PeakMemoryUsage: 936.00 KB - OpenTime: 10.691us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 14.414ms PipelineXTask (index=9):(Active: 101.604us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.530us - CloseTime: 8.19us - GetBlockTime: 0ns - OpenTime: 2.418us - PrepareTime: 56.905us - SinkTime: 11.320us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.949us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.75ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.923us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.749us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.701ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.149us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.812us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.874us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 83.946us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.24us - CloseTime: 8.983us - GetBlockTime: 0ns - OpenTime: 1.845us - PrepareTime: 42.495us - SinkTime: 11.487us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.396us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.404ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.576us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 6.669us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 18.693ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.387us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.705us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.429us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 66.909us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 19.757us - CloseTime: 4.247us - GetBlockTime: 0ns - OpenTime: 1.444us - PrepareTime: 38.316us - SinkTime: 9.264us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 58.838us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.92ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 17.441us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.434us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 21.941ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.876us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 14.552us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 10.870us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 79.432us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.562us - CloseTime: 9.7us - GetBlockTime: 0ns - OpenTime: 1.697us - PrepareTime: 37.487us - SinkTime: 10.233us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 64.369us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.735ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82a7 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 19.794us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.959us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 20.435ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.45us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.101us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 9.399us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 91.456ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 90.615ms - CloseTime: 626.251us - GetBlockTime: 43.111ms - OpenTime: 8.210us - PrepareTime: 197.927us - SinkTime: 47.219ms - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 87.663ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.663ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.08 MB - CloseTime: 16.781us - CompressTime: 0ns - ExecTime: 47.278ms - InputRows: 179.384K (179384) - LocalBytesSent: 6.94 MB - LocalSendTime: 314.764us - LocalSentRows: 105.012K (105012) - MemoryUsage: - PeakMemoryUsage: 14.28 MB - MergeBlockTime: 0ns - OpenTime: 69.432us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s725ms - RowsProduced: 179.384K (179384) - RpcAvgTime: 1s942ms - RpcCount: 20 - RpcMaxTime: 7s772ms - RpcMinTime: 7s770ms - RpcSumTime: 38s857ms - SerializeBatchTime: 14.411ms - SplitBlockDistributeByChannelTime: 18.986ms - SplitBlockHashComputeTime: 10.818ms - UncompressedRowBatchSize: 5.01 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 50 - BuildConvertToPartitionedTime: 0ns - BuildTime: 23.610ms - CloseTime: 562.504us - DeserializeAndMergeTime: 0ns - ExecTime: 31.464ms - ExprTime: 64.913us - GetResultsTime: 7.84ms - HashTableComputeTime: 16.257ms - HashTableEmplaceTime: 14.260ms - HashTableInputCount: 57.012K (57012) - HashTableIterateTime: 457.344us - HashTableSize: 57.012K (57012) - InsertKeysToColumnTime: 2.524ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 31.482us - ProjectionTime: 0ns - RowsProduced: 179.384K (179384) - SerializeDataTime: 9.553ms - SerializeKeyTime: 0ns - SerializeResultTime: 7.132ms - StreamingAggTime: 6.693ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 51 - BuildOutputBlock: 0ns - CloseTime: 41.232us - ExecTime: 11.962ms - InitProbeSideTime: 2.231ms - JoinFilterTimer: 11.146us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 29.614us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.639us - ProbeFindNextTime: 0ns - ProbeRows: 179.384K (179384) - ProbeTime: 10.286ms - ProbeWhenBuildSideOutputTime: 282.823us - ProbeWhenProbeSideOutputTime: 3.916ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.920ms - ProjectionTime: 1.452ms - RowsProduced: 179.384K (179384) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 51 - CloseTime: 0ns - ExecTime: 203.163us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 5.48 MB - OpenTime: 753ns - ProjectionTime: 0ns - RowsProduced: 179.384K (179384) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s458ms PipelineXTask (index=5):(Active: 87.312ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 85.976ms - CloseTime: 1.19ms - GetBlockTime: 45.709ms - OpenTime: 6.786us - PrepareTime: 302.196us - SinkTime: 40.10ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 85.981ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.981ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.21 MB - CloseTime: 19.350us - CompressTime: 0ns - ExecTime: 40.116ms - InputRows: 184.739K (184739) - LocalBytesSent: 7.18 MB - LocalSendTime: 245.137us - LocalSentRows: 107.694K (107694) - MemoryUsage: - PeakMemoryUsage: 14.56 MB - MergeBlockTime: 0ns - OpenTime: 124.550us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s735ms - RowsProduced: 184.739K (184739) - RpcAvgTime: 1s942ms - RpcCount: 20 - RpcMaxTime: 7s773ms - RpcMinTime: 7s765ms - RpcSumTime: 38s852ms - SerializeBatchTime: 13.960ms - SplitBlockDistributeByChannelTime: 15.677ms - SplitBlockHashComputeTime: 7.766ms - UncompressedRowBatchSize: 5.22 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 49 - BuildConvertToPartitionedTime: 0ns - BuildTime: 27.201ms - CloseTime: 965.439us - DeserializeAndMergeTime: 0ns - ExecTime: 33.438ms - ExprTime: 62.785us - GetResultsTime: 5.84ms - HashTableComputeTime: 18.834ms - HashTableEmplaceTime: 16.711ms - HashTableInputCount: 55.701K (55701) - HashTableIterateTime: 359.270us - HashTableSize: 55.701K (55701) - InsertKeysToColumnTime: 1.698ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 25.606us - ProjectionTime: 0ns - RowsProduced: 184.739K (184739) - SerializeDataTime: 9.439ms - SerializeKeyTime: 0ns - SerializeResultTime: 5.112ms - StreamingAggTime: 7.563ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 27.762us - ExecTime: 12.823ms - InitProbeSideTime: 2.335ms - JoinFilterTimer: 10.48us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 21.265us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.527us - ProbeFindNextTime: 0ns - ProbeRows: 184.739K (184739) - ProbeTime: 11.153ms - ProbeWhenBuildSideOutputTime: 213.871us - ProbeWhenProbeSideOutputTime: 3.974ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.559ms - ProjectionTime: 1.461ms - RowsProduced: 184.739K (184739) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 278.461us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 5.73 MB - OpenTime: 890ns - ProjectionTime: 0ns - RowsProduced: 184.739K (184739) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s456ms PipelineXTask (index=10):(Active: 130.16ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 129.113ms - CloseTime: 634.124us - GetBlockTime: 71.408ms - OpenTime: 5.523us - PrepareTime: 245.672us - SinkTime: 57.315ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 127.104ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.14ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.13 MB - CloseTime: 23.43us - CompressTime: 0ns - ExecTime: 57.414ms - InputRows: 180.434K (180434) - LocalBytesSent: 6.96 MB - LocalSendTime: 417.225us - LocalSentRows: 104.939K (104939) - MemoryUsage: - PeakMemoryUsage: 14.66 MB - MergeBlockTime: 0ns - OpenTime: 111.548us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s687ms - RowsProduced: 180.434K (180434) - RpcAvgTime: 1s936ms - RpcCount: 20 - RpcMaxTime: 7s746ms - RpcMinTime: 7s743ms - RpcSumTime: 38s721ms - SerializeBatchTime: 15.228ms - SplitBlockDistributeByChannelTime: 27.481ms - SplitBlockHashComputeTime: 9.602ms - UncompressedRowBatchSize: 5.10 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 49 - BuildConvertToPartitionedTime: 0ns - BuildTime: 44.586ms - CloseTime: 588.910us - DeserializeAndMergeTime: 0ns - ExecTime: 52.826ms - ExprTime: 136.756us - GetResultsTime: 7.360ms - HashTableComputeTime: 31.354ms - HashTableEmplaceTime: 28.546ms - HashTableInputCount: 54.909K (54909) - HashTableIterateTime: 491.353us - HashTableSize: 54.909K (54909) - InsertKeysToColumnTime: 2.527ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 59.492us - ProjectionTime: 0ns - RowsProduced: 180.434K (180434) - SerializeDataTime: 14.360ms - SerializeKeyTime: 0ns - SerializeResultTime: 7.390ms - StreamingAggTime: 12.11ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 18.299us - ExecTime: 18.593ms - InitProbeSideTime: 3.786ms - JoinFilterTimer: 10.962us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.895us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 38.524us - ProbeFindNextTime: 0ns - ProbeRows: 180.434K (180434) - ProbeTime: 15.534ms - ProbeWhenBuildSideOutputTime: 458.252us - ProbeWhenProbeSideOutputTime: 5.57ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.599ms - ProjectionTime: 2.775ms - RowsProduced: 180.434K (180434) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 305.773us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 11.82 MB - OpenTime: 647ns - ProjectionTime: 0ns - RowsProduced: 180.434K (180434) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s456ms PipelineXTask (index=15):(Active: 105.174ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 104.344ms - CloseTime: 593.975us - GetBlockTime: 62.649ms - OpenTime: 14.581us - PrepareTime: 215.384us - SinkTime: 41.349ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 96.505ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.164ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.92 MB - CloseTime: 13.71us - CompressTime: 0ns - ExecTime: 41.421ms - InputRows: 169.65K (169650) - LocalBytesSent: 6.57 MB - LocalSendTime: 216.531us - LocalSentRows: 99.235K (99235) - MemoryUsage: - PeakMemoryUsage: 13.50 MB - MergeBlockTime: 0ns - OpenTime: 91.555us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s718ms - RowsProduced: 169.65K (169650) - RpcAvgTime: 1s938ms - RpcCount: 20 - RpcMaxTime: 7s756ms - RpcMinTime: 7s754ms - RpcSumTime: 38s777ms - SerializeBatchTime: 12.94ms - SplitBlockDistributeByChannelTime: 19.139ms - SplitBlockHashComputeTime: 6.583ms - UncompressedRowBatchSize: 4.75 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 46 - BuildConvertToPartitionedTime: 0ns - BuildTime: 41.759ms - CloseTime: 559.712us - DeserializeAndMergeTime: 0ns - ExecTime: 47.392ms - ExprTime: 108.62us - GetResultsTime: 4.810ms - HashTableComputeTime: 33.758ms - HashTableEmplaceTime: 31.109ms - HashTableInputCount: 55.643K (55643) - HashTableIterateTime: 378.383us - HashTableSize: 55.643K (55643) - InsertKeysToColumnTime: 1.524ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 63.3us - ProjectionTime: 0ns - RowsProduced: 169.65K (169650) - SerializeDataTime: 8.460ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.835ms - StreamingAggTime: 7.128ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 16.107us - ExecTime: 15.357ms - InitProbeSideTime: 2.910ms - JoinFilterTimer: 8.913us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 18.232us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 24.963us - ProbeFindNextTime: 0ns - ProbeRows: 169.65K (169650) - ProbeTime: 12.732ms - ProbeWhenBuildSideOutputTime: 568.645us - ProbeWhenProbeSideOutputTime: 4.495ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.404ms - ProjectionTime: 2.394ms - RowsProduced: 169.65K (169650) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 273.242us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 8.91 MB - OpenTime: 602ns - ProjectionTime: 0ns - RowsProduced: 169.65K (169650) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s460ms PipelineXTask (index=20):(Active: 113.27ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 112.275ms - CloseTime: 580.651us - GetBlockTime: 63.317ms - OpenTime: 6.243us - PrepareTime: 158.374us - SinkTime: 48.600ms - GetBlockCounter: 63 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 112.386ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.352ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.78 MB - CloseTime: 11.984us - CompressTime: 0ns - ExecTime: 48.652ms - InputRows: 159.892K (159892) - LocalBytesSent: 6.19 MB - LocalSendTime: 275.182us - LocalSentRows: 92.926K (92926) - MemoryUsage: - PeakMemoryUsage: 13.40 MB - MergeBlockTime: 0ns - OpenTime: 69.817us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s705ms - RowsProduced: 159.892K (159892) - RpcAvgTime: 1s935ms - RpcCount: 20 - RpcMaxTime: 7s743ms - RpcMinTime: 7s742ms - RpcSumTime: 38s713ms - SerializeBatchTime: 13.818ms - SplitBlockDistributeByChannelTime: 23.417ms - SplitBlockHashComputeTime: 7.212ms - UncompressedRowBatchSize: 4.54 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 43 - BuildConvertToPartitionedTime: 0ns - BuildTime: 39.221ms - CloseTime: 546.644us - DeserializeAndMergeTime: 0ns - ExecTime: 44.826ms - ExprTime: 126.850us - GetResultsTime: 4.817ms - HashTableComputeTime: 29.330ms - HashTableEmplaceTime: 26.354ms - HashTableInputCount: 55.815K (55815) - HashTableIterateTime: 344.259us - HashTableSize: 55.815K (55815) - InsertKeysToColumnTime: 1.580ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 26.855us - ProjectionTime: 0ns - RowsProduced: 159.892K (159892) - SerializeDataTime: 10.26ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.843ms - StreamingAggTime: 8.770ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 17.399us - ExecTime: 18.458ms - InitProbeSideTime: 3.889ms - JoinFilterTimer: 9.797us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.953us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 27.339us - ProbeFindNextTime: 0ns - ProbeRows: 159.892K (159892) - ProbeTime: 15.725ms - ProbeWhenBuildSideOutputTime: 427.851us - ProbeWhenProbeSideOutputTime: 5.940ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.883ms - ProjectionTime: 2.492ms - RowsProduced: 159.892K (159892) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 297.152us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 10.09 MB - OpenTime: 1.453us - ProjectionTime: 0ns - RowsProduced: 159.892K (159892) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s460ms PipelineXTask (index=25):(Active: 100.525ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 99.715ms - CloseTime: 600.287us - GetBlockTime: 59.190ms - OpenTime: 9.396us - PrepareTime: 194.836us - SinkTime: 40.223ms - GetBlockCounter: 61 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 95.847ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.185ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.75 MB - CloseTime: 41.656us - CompressTime: 0ns - ExecTime: 40.344ms - InputRows: 159.033K (159033) - LocalBytesSent: 6.17 MB - LocalSendTime: 248.474us - LocalSentRows: 92.876K (92876) - MemoryUsage: - PeakMemoryUsage: 12.95 MB - MergeBlockTime: 0ns - OpenTime: 103.592us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s718ms - RowsProduced: 159.033K (159033) - RpcAvgTime: 1s938ms - RpcCount: 20 - RpcMaxTime: 7s755ms - RpcMinTime: 7s753ms - RpcSumTime: 38s772ms - SerializeBatchTime: 11.821ms - SplitBlockDistributeByChannelTime: 18.886ms - SplitBlockHashComputeTime: 6.190ms - UncompressedRowBatchSize: 4.48 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 39.2ms - CloseTime: 480.500us - DeserializeAndMergeTime: 0ns - ExecTime: 44.420ms - ExprTime: 116.451us - GetResultsTime: 4.722ms - HashTableComputeTime: 31.384ms - HashTableEmplaceTime: 28.767ms - HashTableInputCount: 56.459K (56459) - HashTableIterateTime: 325.926us - HashTableSize: 56.459K (56459) - InsertKeysToColumnTime: 1.652ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 32.287us - ProjectionTime: 0ns - RowsProduced: 159.033K (159033) - SerializeDataTime: 7.998ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.748ms - StreamingAggTime: 6.688ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 68.59us - ExecTime: 14.795ms - InitProbeSideTime: 2.946ms - JoinFilterTimer: 8.799us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 17.748us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.347us - ProbeFindNextTime: 0ns - ProbeRows: 159.033K (159033) - ProbeTime: 12.367ms - ProbeWhenBuildSideOutputTime: 390.284us - ProbeWhenProbeSideOutputTime: 4.579ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.87ms - ProjectionTime: 2.170ms - RowsProduced: 159.033K (159033) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 280.410us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 8.75 MB - OpenTime: 658ns - ProjectionTime: 0ns - RowsProduced: 159.033K (159033) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s462ms PipelineXTask (index=30):(Active: 172.27ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 171.237ms - CloseTime: 605.348us - GetBlockTime: 99.417ms - OpenTime: 6.351us - PrepareTime: 172.195us - SinkTime: 71.290ms - GetBlockCounter: 60 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 171.54ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.105ms DATA_STREAM_SINK_OPERATOR (id=69,dst_id=69): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.80 MB - CloseTime: 26.630us - CompressTime: 0ns - ExecTime: 71.313ms - InputRows: 161.336K (161336) - LocalBytesSent: 6.22 MB - LocalSendTime: 584.299us - LocalSentRows: 93.818K (93818) - MemoryUsage: - PeakMemoryUsage: 12.92 MB - MergeBlockTime: 0ns - OpenTime: 67.41us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s636ms - RowsProduced: 161.336K (161336) - RpcAvgTime: 1s925ms - RpcCount: 20 - RpcMaxTime: 7s705ms - RpcMinTime: 7s695ms - RpcSumTime: 38s507ms - SerializeBatchTime: 18.643ms - SplitBlockDistributeByChannelTime: 36.492ms - SplitBlockHashComputeTime: 10.236ms - UncompressedRowBatchSize: 4.55 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=68): - BlocksProduced: 44 - BuildConvertToPartitionedTime: 0ns - BuildTime: 63.53ms - CloseTime: 556.648us - DeserializeAndMergeTime: 0ns - ExecTime: 71.393ms - ExprTime: 290.27us - GetResultsTime: 7.363ms - HashTableComputeTime: 47.949ms - HashTableEmplaceTime: 43.271ms - HashTableInputCount: 56.449K (56449) - HashTableIterateTime: 464.700us - HashTableSize: 56.449K (56449) - InsertKeysToColumnTime: 2.575ms - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.50 MB - PeakMemoryUsage: 11.31 MB - SerializeKeyArena: 9.81 MB - MergeTime: 0ns - OpenTime: 38.242us - ProjectionTime: 0ns - RowsProduced: 161.336K (161336) - SerializeDataTime: 14.823ms - SerializeKeyTime: 0ns - SerializeResultTime: 7.414ms - StreamingAggTime: 13.123ms HASH_JOIN_OPERATOR (id=67): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 17.299us - ExecTime: 27.632ms - InitProbeSideTime: 5.593ms - JoinFilterTimer: 9.411us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 17.81us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 89.786us - ProbeFindNextTime: 0ns - ProbeRows: 161.336K (161336) - ProbeTime: 22.880ms - ProbeWhenBuildSideOutputTime: 480.435us - ProbeWhenProbeSideOutputTime: 8.760ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 5.886ms - ProjectionTime: 4.349ms - RowsProduced: 161.336K (161336) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-7): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 489.187us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 12.43 MB - OpenTime: 734ns - ProjectionTime: 0ns - RowsProduced: 161.336K (161336) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s458ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 36.64ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 35.968ms - CloseTime: 17.236us - GetBlockTime: 35.410ms - OpenTime: 2.532us - PrepareTime: 68.713us - SinkTime: 386.966us - GetBlockCounter: 54 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.585ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.936ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 375.732us - InputRows: 185.381K (185381) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.455us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 52 - BuildOutputBlock: 0ns - CloseTime: 13.741us - ExecTime: 35.49ms - InitProbeSideTime: 3.645ms - JoinFilterTimer: 9.623us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 12.982us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.445us - ProbeFindNextTime: 0ns - ProbeRows: 185.381K (185381) - ProbeTime: 30.921ms - ProbeWhenBuildSideOutputTime: 519.732us - ProbeWhenProbeSideOutputTime: 12.412ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.184ms - ProjectionTime: 3.943ms - RowsProduced: 185.381K (185381) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s290ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 52 - CloseTime: 0ns - ExecTime: 246.872us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 14.86 MB - OpenTime: 570ns - ProjectionTime: 0ns - RowsProduced: 185.381K (185381) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 165.306ms PipelineXTask (index=6):(Active: 27.123ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 27.39ms - CloseTime: 20.332us - GetBlockTime: 26.528ms - OpenTime: 3.968us - PrepareTime: 53.936us - SinkTime: 342.721us - GetBlockCounter: 51 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 27.62ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.380ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 305.610us - InputRows: 174.323K (174323) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.226us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 50 - BuildOutputBlock: 0ns - CloseTime: 17.576us - ExecTime: 26.232ms - InitProbeSideTime: 3.409ms - JoinFilterTimer: 9.983us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 15.773us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.613us - ProbeFindNextTime: 0ns - ProbeRows: 174.323K (174323) - ProbeTime: 22.277ms - ProbeWhenBuildSideOutputTime: 412.944us - ProbeWhenProbeSideOutputTime: 13.473ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.724ms - ProjectionTime: 3.750ms - RowsProduced: 174.323K (174323) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s239ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 50 - CloseTime: 0ns - ExecTime: 219.34us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 14.06 MB - OpenTime: 490ns - ProjectionTime: 0ns - RowsProduced: 174.323K (174323) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 215.306ms PipelineXTask (index=11):(Active: 22.956ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 22.852ms - CloseTime: 25.194us - GetBlockTime: 22.321ms - OpenTime: 3.528us - PrepareTime: 69.67us - SinkTime: 352.746us - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.922ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.876ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 325.26us - InputRows: 169.898K (169898) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.584us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 21.350us - ExecTime: 21.992ms - InitProbeSideTime: 3.176ms - JoinFilterTimer: 8.932us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 22.996us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.412us - ProbeFindNextTime: 0ns - ProbeRows: 169.898K (169898) - ProbeTime: 17.696ms - ProbeWhenBuildSideOutputTime: 542.16us - ProbeWhenProbeSideOutputTime: 9.57ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.730ms - ProjectionTime: 4.96ms - RowsProduced: 169.898K (169898) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s244ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 245.455us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.77 MB - OpenTime: 457ns - ProjectionTime: 0ns - RowsProduced: 169.898K (169898) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 215.296ms PipelineXTask (index=16):(Active: 19.51ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 18.841ms - CloseTime: 34.87us - GetBlockTime: 18.296ms - OpenTime: 4.49us - PrepareTime: 164.109us - SinkTime: 362.181us - GetBlockCounter: 50 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.976ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.29ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 337.529us - InputRows: 168.959K (168959) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.150us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 49 - BuildOutputBlock: 0ns - CloseTime: 28.918us - ExecTime: 18.56ms - InitProbeSideTime: 3.129ms - JoinFilterTimer: 9.339us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 8.570us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.385us - ProbeFindNextTime: 0ns - ProbeRows: 168.959K (168959) - ProbeTime: 14.939ms - ProbeWhenBuildSideOutputTime: 430.377us - ProbeWhenProbeSideOutputTime: 6.312ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.892ms - ProjectionTime: 2.926ms - RowsProduced: 168.959K (168959) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s239ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 49 - CloseTime: 0ns - ExecTime: 288.612us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.70 MB - OpenTime: 82.551us - ProjectionTime: 0ns - RowsProduced: 168.959K (168959) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 216.455ms PipelineXTask (index=21):(Active: 44.15ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 43.934ms - CloseTime: 23.352us - GetBlockTime: 43.508ms - OpenTime: 5.635us - PrepareTime: 47.116us - SinkTime: 316.304us - GetBlockCounter: 48 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.972ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.62ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 297.654us - InputRows: 164.188K (164188) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.41us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 47 - BuildOutputBlock: 0ns - CloseTime: 19.207us - ExecTime: 43.257ms - InitProbeSideTime: 27.527ms - JoinFilterTimer: 5.145us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 17.11us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.962us - ProbeFindNextTime: 0ns - ProbeRows: 164.188K (164188) - ProbeTime: 40.197ms - ProbeWhenBuildSideOutputTime: 359.121us - ProbeWhenProbeSideOutputTime: 8.745ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.710ms - ProjectionTime: 2.941ms - RowsProduced: 164.188K (164188) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s239ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 47 - CloseTime: 0ns - ExecTime: 229.29us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.18 MB - OpenTime: 2.913us - ProjectionTime: 0ns - RowsProduced: 164.188K (164188) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 218.300ms PipelineXTask (index=26):(Active: 23.731ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.657ms - CloseTime: 25.200us - GetBlockTime: 22.941ms - OpenTime: 4.135us - PrepareTime: 39.891us - SinkTime: 491.726us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.661ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.535ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 291.580us - InputRows: 163.013K (163013) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.75us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 22.193us - ExecTime: 22.628ms - InitProbeSideTime: 3.703ms - JoinFilterTimer: 9.736us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 12.102us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.880us - ProbeFindNextTime: 0ns - ProbeRows: 163.013K (163013) - ProbeTime: 18.498ms - ProbeWhenBuildSideOutputTime: 504.453us - ProbeWhenProbeSideOutputTime: 9.488ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.614ms - ProjectionTime: 3.942ms - RowsProduced: 163.013K (163013) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s244ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 222.990us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.02 MB - OpenTime: 471ns - ProjectionTime: 0ns - RowsProduced: 163.013K (163013) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 219.630ms PipelineXTask (index=31):(Active: 25.994ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 25.914ms - CloseTime: 25.529us - GetBlockTime: 25.398ms - OpenTime: 4.492us - PrepareTime: 44.436us - SinkTime: 349.5us - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 22.470ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.220ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-7): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 323.622us - InputRows: 168.706K (168706) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.69us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=66): - BlocksProduced: 46 - BuildOutputBlock: 0ns - CloseTime: 22.800us - ExecTime: 25.153ms - InitProbeSideTime: 3.213ms - JoinFilterTimer: 8.251us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 14.560us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.923us - ProbeFindNextTime: 0ns - ProbeRows: 168.706K (168706) - ProbeTime: 21.911ms - ProbeWhenBuildSideOutputTime: 418.94us - ProbeWhenProbeSideOutputTime: 9.326ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.799ms - ProjectionTime: 3.73ms - RowsProduced: 168.706K (168706) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 1s239ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): - BlocksProduced: 46 - CloseTime: 0ns - ExecTime: 197.290us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 13.20 MB - OpenTime: 2.840us - ProjectionTime: 0ns - RowsProduced: 168.706K (168706) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 215.350ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 892.409us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 353.604us - CloseTime: 19.576us - GetBlockTime: 22.956us - OpenTime: 296.90us - PrepareTime: 213.766us - SinkTime: 14.80us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 863.911us - WaitBfTime: 36.373ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.112ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 14.494us - InputRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.191us - 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: 59.1us - BlocksProduced: 0 - CloseTime: 17.883us - ExecTime: 126.861ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 452.542us - ProcessConjunctTime: 158.671us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 126.117ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 126.368ms - 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.160us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [126.117ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 112.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 224.356us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 103ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 252.679us - ScannerCtxSchedTime: 126.115ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 460ns - ScannerInitTime: 59.322us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 373ns - BlockConditionsFilteredBloomFilterTime: 627ns - BlockConditionsFilteredDictTime: 89.402us - BlockConditionsFilteredTime: 103.577us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 10.204us - BlockInitSeekCount: 9 - BlockInitSeekTime: 5.201us - BlockInitTime: 125.646us - BlockLoadTime: 133.614us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 304ns - IOTimer: 0ns - InvertedIndexFilterTime: 1.269us - 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.285ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 697.344us - CloseTime: 37.46us - GetBlockTime: 137.926us - OpenTime: 375.253us - PrepareTime: 165.999us - SinkTime: 129.171us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.233ms - WaitBfTime: 41.692ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.563ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 125.540us - InputRows: 25.619K (25619) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.181us - 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: 44.187us - BlocksProduced: 8 - CloseTime: 34.277us - ExecTime: 399.569ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 478.412us - ProcessConjunctTime: 229.480us - 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: 154.357ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 398.923ms - 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: [240.195ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [154.357ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 238.472ms - MemoryUsage: - FreeBlocks: 672.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 746.311us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 525ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 75.915ms - ScannerCtxSchedTime: 154.348ms - ScannerFilterTime: 379.948us - ScannerGetBlockTime: 239.642ms - ScannerInitTime: 77.210us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 1.195us - BlockConditionsFilteredBloomFilterTime: 2.413us - BlockConditionsFilteredDictTime: 65.510us - BlockConditionsFilteredTime: 109.845us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 22.609us - BlockInitSeekCount: 17 - BlockInitSeekTime: 14.990us - BlockInitTime: 177.327us - BlockLoadTime: 239.440ms - BlocksLoad: 367 - CachedPagesNum: 1.008K (1008) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 83.129us - FirstReadTime: 2.594ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.614us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 232.393ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 669.10us - OutputIndexResultColumnTimer: 48.918us - 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.899ms - TotalPagesNum: 1.008K (1008) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 163.975us PipelineXTask (index=12):(Active: 1.896ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.356ms - CloseTime: 52.924us - GetBlockTime: 396.867us - OpenTime: 314.603us - PrepareTime: 160.582us - SinkTime: 524.1us - GetBlockCounter: 46 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.802ms - WaitBfTime: 45.156ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.471ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 512.323us - InputRows: 167.427K (167427) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.452us - 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: 32.684us - BlocksProduced: 46 - CloseTime: 50.547us - ExecTime: 406.365ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 412.121us - ProcessConjunctTime: 182.463us - 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: 182.918ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 405.523ms - 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: [212.709ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [182.918ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 210.67ms - MemoryUsage: - FreeBlocks: 3.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 899.893us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.278us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 109.243ms - ScannerCtxSchedTime: 182.909ms - ScannerFilterTime: 402.995us - ScannerGetBlockTime: 212.126ms - ScannerInitTime: 73.324us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.682us - BlockConditionsFilteredBloomFilterTime: 4.500us - BlockConditionsFilteredDictTime: 72.484us - BlockConditionsFilteredTime: 136.639us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 37.772us - BlockInitSeekCount: 25 - BlockInitSeekTime: 25.598us - BlockInitTime: 244.775us - BlockLoadTime: 211.800ms - BlocksLoad: 384 - CachedPagesNum: 1.062K (1062) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 124.181us - FirstReadTime: 2.689ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.423us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 190.44ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.700ms - OutputIndexResultColumnTimer: 47.916us - 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: 13.967ms - TotalPagesNum: 1.062K (1062) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 171.543us PipelineXTask (index=17):(Active: 2.434ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.854ms - CloseTime: 40.798us - GetBlockTime: 617.749us - OpenTime: 379.409us - PrepareTime: 149.474us - SinkTime: 727.998us - GetBlockCounter: 113 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.373ms - WaitBfTime: 43.978ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.161ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 710.217us - InputRows: 394.725K (394725) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.248us - 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: 37.476us - BlocksProduced: 113 - CloseTime: 37.923us - ExecTime: 468.554ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 471.494us - ProcessConjunctTime: 211.788us - 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: 149.898ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 467.445ms - 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: [291.565ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [149.898ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 286.880ms - MemoryUsage: - FreeBlocks: 7.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.202ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.731us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 197.639ms - ScannerCtxSchedTime: 149.886ms - ScannerFilterTime: 612.145us - ScannerGetBlockTime: 290.740ms - ScannerInitTime: 100.557us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 1.866us - BlockConditionsFilteredBloomFilterTime: 4.382us - BlockConditionsFilteredDictTime: 113.65us - BlockConditionsFilteredTime: 195.54us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 45.373us - BlockInitSeekCount: 33 - BlockInitSeekTime: 33.206us - BlockInitTime: 343.826us - BlockLoadTime: 289.815ms - BlocksLoad: 382 - CachedPagesNum: 1.044K (1044) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 147.481us - FirstReadTime: 3.288ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.221us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 230.394ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 18.435ms - OutputIndexResultColumnTimer: 66.308us - 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: 33.422ms - TotalPagesNum: 1.044K (1044) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 234.840us PipelineXTask (index=22):(Active: 1.939ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.532ms - CloseTime: 35.551us - GetBlockTime: 504.275us - OpenTime: 236.96us - PrepareTime: 126.596us - SinkTime: 666.994us - GetBlockCounter: 67 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.883ms - WaitBfTime: 43.383ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.605ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 650.131us - InputRows: 249.28K (249280) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 902ns - 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: 37.387us - BlocksProduced: 67 - CloseTime: 33.31us - ExecTime: 411.559ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 313.844us - ProcessConjunctTime: 127.450us - 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: 141.265ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 410.726ms - 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: [232.275ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [141.265ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 229.806ms - MemoryUsage: - FreeBlocks: 5.35 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.28ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.499us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 112.719ms - ScannerCtxSchedTime: 141.256ms - ScannerFilterTime: 364.946us - ScannerGetBlockTime: 231.763ms - ScannerInitTime: 55.370us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.259us - BlockConditionsFilteredBloomFilterTime: 8.271us - BlockConditionsFilteredDictTime: 84.270us - BlockConditionsFilteredTime: 142.45us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.748us - BlockInitSeekCount: 25 - BlockInitSeekTime: 448.624us - BlockInitTime: 688.990us - BlockLoadTime: 231.685ms - BlocksLoad: 260 - CachedPagesNum: 696 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 88.333us - FirstReadTime: 2.254ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.335us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 216.599ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 5.497ms - OutputIndexResultColumnTimer: 40.562us - 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.482ms - TotalPagesNum: 696 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 123.503us PipelineXTask (index=27):(Active: 2.913ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 1.928ms - CloseTime: 33.216us - GetBlockTime: 434.771us - OpenTime: 723.22us - PrepareTime: 211.791us - SinkTime: 653.869us - GetBlockCounter: 96 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.847ms - WaitBfTime: 45.977ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.194ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 638.930us - InputRows: 325.275K (325275) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.676us - 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: 36.516us - BlocksProduced: 96 - CloseTime: 30.253us - ExecTime: 433.991ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 828.426us - ProcessConjunctTime: 249.379us - 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: 199.569ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 432.714ms - 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: [195.681ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [199.569ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 193.184ms - MemoryUsage: - FreeBlocks: 5.64 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.172ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.565us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 124.114ms - ScannerCtxSchedTime: 199.558ms - ScannerFilterTime: 420.836us - ScannerGetBlockTime: 195.89ms - ScannerInitTime: 99.892us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.731us - BlockConditionsFilteredBloomFilterTime: 3.437us - BlockConditionsFilteredDictTime: 78.140us - BlockConditionsFilteredTime: 143.229us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 41.66us - BlockInitSeekCount: 26 - BlockInitSeekTime: 329.694us - BlockInitTime: 560.811us - BlockLoadTime: 195.133ms - BlocksLoad: 291 - CachedPagesNum: 780 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 101.452us - FirstReadTime: 2.388ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.879us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 177.11ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 6.510ms - OutputIndexResultColumnTimer: 47.965us - 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.852ms - TotalPagesNum: 780 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 167.285us PipelineXTask (index=32):(Active: 1.188ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 567.488us - CloseTime: 33.98us - GetBlockTime: 62.633us - OpenTime: 400.313us - PrepareTime: 177.860us - SinkTime: 72.679us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.144ms - WaitBfTime: 42.846ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.821ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 71.464us - InputRows: 32.142K (32142) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.23us - 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: 45.473us - BlocksProduced: 9 - CloseTime: 30.140us - ExecTime: 174.211ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 521.810us - ProcessConjunctTime: 234.738us - 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: 153.480ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 173.597ms - 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: [14.668ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [153.480ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 14.402ms - MemoryUsage: - FreeBlocks: 2.65 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.24ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 318ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.68ms - ScannerCtxSchedTime: 153.478ms - ScannerFilterTime: 63.792us - ScannerGetBlockTime: 14.567ms - ScannerInitTime: 62.440us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 425ns - BlockConditionsFilteredBloomFilterTime: 1.188us - BlockConditionsFilteredDictTime: 30.616us - BlockConditionsFilteredTime: 55.637us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 16.701us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.891us - BlockInitTime: 89.796us - BlockLoadTime: 15.224ms - BlocksLoad: 57 - CachedPagesNum: 134 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 30.945us - FirstReadTime: 539.661us - IOTimer: 0ns - InvertedIndexFilterTime: 1.778us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 12.671ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 678.321us - OutputIndexResultColumnTimer: 10.409us - 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: 806.359us - TotalPagesNum: 134 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 43.556us Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 8.104ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.16ms - CloseTime: 6.64us - GetBlockTime: 5.259us - OpenTime: 1.982us - PrepareTime: 74.988us - SinkTime: 7.992ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 200.226us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.919ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.151us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.940us - BuildTableInsertTime: 7.929ms - BuildTableTime: 7.935ms - CloseTime: 0ns - ExecTime: 8.20ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 28.201us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.474us - RuntimeFilterComputeTime: 17.177us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=62): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 4.367us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 9.814us - ExecTime: 23.946us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.277us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 33.376ms PipelineXTask (index=8):(Active: 119.815us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 32.771us - CloseTime: 4.201us - GetBlockTime: 0ns - OpenTime: 2.400us - PrepareTime: 70.71us - SinkTime: 16.391us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 104.440us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.897ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.239us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.231us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.342ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.804us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.275us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.712us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=13):(Active: 155.451us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.950us - CloseTime: 25.139us - GetBlockTime: 0ns - OpenTime: 1.874us - PrepareTime: 77.305us - SinkTime: 27.758us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.136us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.171ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 42.6us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.613us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.292ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 22.678us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 65.185us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 41.445us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 152.442us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 49.61us - CloseTime: 7.13us - GetBlockTime: 0ns - OpenTime: 1.763us - PrepareTime: 89.570us - SinkTime: 30.31us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 138.103us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.889ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 44.724us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.8us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 43.631ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.419us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 53.903us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 47.726us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 94.540us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.395us - CloseTime: 3.681us - GetBlockTime: 0ns - OpenTime: 1.817us - PrepareTime: 59.13us - SinkTime: 11.32us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.603us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.13ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.869us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.306us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 43.286ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.546us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.452us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 23.211us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=28):(Active: 96.251us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 29.21us - CloseTime: 5.731us - GetBlockTime: 0ns - OpenTime: 2.385us - PrepareTime: 53.668us - SinkTime: 13.167us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.238us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.913ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.386us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.546us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.331ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.275us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.162us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.964us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=33):(Active: 100.897us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.862us - CloseTime: 6.506us - GetBlockTime: 0ns - OpenTime: 1.818us - PrepareTime: 53.316us - SinkTime: 19.198us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 88.511us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.193ms HASH_JOIN_SINK_OPERATOR (id=67): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 38.609us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.654us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 40.308ms EXCHANGE_OPERATOR (id=62): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.502us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.643us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.39us - 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: 86.433ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 86.356ms - CloseTime: 16.1us - GetBlockTime: 135.459us - OpenTime: 2.325us - PrepareTime: 51.606us - SinkTime: 86.108ms - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.821ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.210ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 21.435us - BuildRows: 43.598K (43598) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 82.734ms - BuildTableInsertTime: 3.202ms - BuildTableTime: 3.270ms - CloseTime: 0ns - ExecTime: 86.119ms - InputRows: 43.597K (43597) - MemoryUsage: - BuildBlocks: 549.72 KB - BuildKeyArena: 1.09 MB - HashTable: 426.31 KB - PeakMemoryUsage: 2.04 MB - OpenTime: 20.41us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=64): - BlocksProduced: 22 - BytesReceived: 291.35 KB - CloseTime: 11.611us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 20.846ms - ExecTime: 143.962us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 84.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.413us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s344ms PipelineXTask (index=9):(Active: 137.644us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 51.406us - CloseTime: 6.776us - GetBlockTime: 0ns - OpenTime: 1.800us - PrepareTime: 73.19us - SinkTime: 34.737us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 125.427us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.996ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 47.41us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.730us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s455ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.110us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.399us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.519us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 127.813us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.5us - CloseTime: 14.348us - GetBlockTime: 0ns - OpenTime: 2.309us - PrepareTime: 47.334us - SinkTime: 25.822us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.211us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.479ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.337us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.917us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s455ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 11.330us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.71us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.888us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=19):(Active: 96.798us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.22us - CloseTime: 8.291us - GetBlockTime: 0ns - OpenTime: 2.447us - PrepareTime: 48.489us - SinkTime: 18.24us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 82.973us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.200ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.731us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.133us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s458ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.9us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.824us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.739us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=24):(Active: 129.370us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 40.644us - CloseTime: 22.460us - GetBlockTime: 0ns - OpenTime: 3.61us - PrepareTime: 56.794us - SinkTime: 23.119us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 100.100us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.5ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.201us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.193us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s458ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 20.521us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 33.936us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.576us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 96.426us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.265us - CloseTime: 4.260us - GetBlockTime: 0ns - OpenTime: 2.406us - PrepareTime: 59.47us - SinkTime: 8.70us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.767us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.455ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 16.463us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.472us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s455ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.31us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 37.483us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 33.496us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=34):(Active: 12.169ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 48.601us - CloseTime: 12.74ms - GetBlockTime: 0ns - OpenTime: 2.309us - PrepareTime: 38.919us - SinkTime: 32.87us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 89.124us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.940ms HASH_JOIN_SINK_OPERATOR (id=66): - JoinType: LEFT_OUTER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc82ac - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.761us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.240us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 1s455ms EXCHANGE_OPERATOR (id=64): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.71ms - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 12.85ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.149us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 127: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 3.761ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.439ms - CloseTime: 45.925us - GetBlockTime: 127.157us - OpenTime: 102.367us - PrepareTime: 165.35us - SinkTime: 3.144ms - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 3.703ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.301ms DATA_STREAM_SINK_OPERATOR (id=64,dst_id=64): - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 582.21 KB - CloseTime: 14.601us - CompressTime: 0ns - ExecTime: 3.209ms - InputRows: 43.597K (43597) - LocalBytesSent: 549.72 KB - LocalSendTime: 355.950us - LocalSentRows: 43.597K (43597) - MemoryUsage: - PeakMemoryUsage: 100.00 KB - MergeBlockTime: 158.342us - OpenTime: 57.470us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s439ms - RowsProduced: 43.597K (43597) - RpcAvgTime: 121.976ms - RpcCount: 11 - RpcMaxTime: 1s341ms - RpcMinTime: 1s341ms - RpcSumTime: 1s341ms - SerializeBatchTime: 2.341ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 1.10 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=63. table name = DIM_WORKER): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21815] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 615ns - BlocksProduced: 11 - CloseTime: 27.165us - ExecTime: 14.189ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 165.625us - ProcessConjunctTime: 25.4us - ProjectionTime: 0ns - RowsProduced: 43.597K (43597) - RowsRead: 43.597K (43597) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 12.968ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 13.875ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [WORKER_ID] - PerScannerRunningTime: [460.105us, ] - PerScannerRowsRead: [43.60K, ] - PerScannerWaitTime: [12.968ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 438.474us - MemoryUsage: - FreeBlocks: 724.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 370.721us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.257us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 908.501us - ScannerCtxSchedTime: 12.967ms - ScannerFilterTime: 2.912us - ScannerGetBlockTime: 454.159us - ScannerInitTime: 58.14us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 96ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 774ns - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 252.439us - BlockInitTime: 281.162us - BlockLoadTime: 768.343us - BlocksLoad: 12 - CachedPagesNum: 5 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 11 - FirstReadSeekTime: 5.291us - FirstReadTime: 464.663us - IOTimer: 0ns - InvertedIndexFilterTime: 187ns - 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: 710ns - OutputIndexResultColumnTimer: 614ns - 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.87, port:9060)): PipelineXTask (index=0):(Active: 735.290us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 304.832us - CloseTime: 60.348us - GetBlockTime: 45.885us - OpenTime: 103.774us - PrepareTime: 259.693us - SinkTime: 137.535us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 666.54us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.908ms DATA_STREAM_SINK_OPERATOR (id=62,dst_id=62): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 14.231us - CompressTime: 0ns - ExecTime: 186.510us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 13.468us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 4.300us - OpenTime: 35.287us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 13.683ms - RowsProduced: 80 - RpcAvgTime: 11.325ms - RpcCount: 1 - RpcMaxTime: 11.325ms - RpcMinTime: 11.325ms - RpcSumTime: 11.325ms - SerializeBatchTime: 16.312us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 279ns - BlocksProduced: 1 - CloseTime: 42.27us - ExecTime: 18.278ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 285.630us - ProcessConjunctTime: 38.584us - ProjectionTime: 4.2us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 17.637ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 17.901ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [27.144us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [17.637ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 2.797us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 180.551us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 102ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 258.485us - ScannerCtxSchedTime: 17.634ms - ScannerFilterTime: 866ns - ScannerGetBlockTime: 21.496us - ScannerInitTime: 47.573us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 242ns - BlockConditionsFilteredBloomFilterTime: 1.271us - BlockConditionsFilteredDictTime: 3.439us - BlockConditionsFilteredTime: 13.113us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 4.251us - BlockInitSeekCount: 6 - BlockInitSeekTime: 15.33us - BlockInitTime: 47.337us - BlockLoadTime: 81.348us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 4.214us - FirstReadTime: 6.2us - IOTimer: 0ns - InvertedIndexFilterTime: 1.304us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 5.235us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 3.586us - OutputIndexResultColumnTimer: 147ns - 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: 74ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.652us Fragment 129: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 275.234us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 172.887us - CloseTime: 9.655us - GetBlockTime: 65.806us - OpenTime: 1.539us - PrepareTime: 83.392us - SinkTime: 70.330us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 255.371us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.697ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.34 KB - CloseTime: 8.250us - CompressTime: 0ns - ExecTime: 127.401us - InputRows: 80 - LocalBytesSent: 2.49 KB - LocalSendTime: 18.694us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 4.120us - OpenTime: 49.255us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.938ms - RowsProduced: 80 - RpcAvgTime: 78.606ms - RpcCount: 1 - RpcMaxTime: 78.606ms - RpcMinTime: 78.606ms - RpcSumTime: 78.606ms - SerializeBatchTime: 12.335us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 5.42 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 466ns - DeserializeAndMergeTime: 0ns - ExecTime: 71.631us - GetResultsTime: 21.228us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 882ns - HashTableSize: 80 - InsertKeysToColumnTime: 12.272us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.356us - ProjectionTime: 34.779us - RowsProduced: 80 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s181ms PipelineXTask (index=2):(Active: 431.26us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 136.468us - CloseTime: 16.102us - GetBlockTime: 51.235us - OpenTime: 449ns - PrepareTime: 271.643us - SinkTime: 64.547us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 407.8us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.727ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.44 KB - CloseTime: 11.939us - CompressTime: 0ns - ExecTime: 142.347us - InputRows: 85 - LocalBytesSent: 2.66 KB - LocalSendTime: 23.740us - LocalSentRows: 85 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 2.785us - OpenTime: 66.482us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 81.705ms - RowsProduced: 85 - RpcAvgTime: 78.524ms - RpcCount: 1 - RpcMaxTime: 78.524ms - RpcMinTime: 78.524ms - RpcSumTime: 78.524ms - SerializeBatchTime: 9.269us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 5.76 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 982ns - DeserializeAndMergeTime: 0ns - ExecTime: 59.979us - GetResultsTime: 22.21us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 722ns - HashTableSize: 85 - InsertKeysToColumnTime: 13.100us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.131us - ProjectionTime: 24.211us - RowsProduced: 85 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s181ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 412.615us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 334.250us - CloseTime: 8.997us - GetBlockTime: 85.700us - OpenTime: 3.298us - PrepareTime: 60.331us - SinkTime: 162.794us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 384.97us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.53ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 856ns - DeserializeAndMergeTime: 40.886us - ExecTime: 187.11us - ExprTime: 0ns - HashTableComputeTime: 79.548us - HashTableEmplaceTime: 46.203us - HashTableInputCount: 113 - InputRows: 113 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 142.882us - OpenTime: 26.239us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 22 - BytesReceived: 5.50 KB - CloseTime: 6.89us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 131.862us - ExecTime: 93.198us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.50 KB - MemoryUsage: - Blocks: 1.44 KB - PeakMemoryUsage: 1.44 KB - OpenTime: 17.788us - ProjectionTime: 0ns - RowsProduced: 113 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s180ms PipelineXTask (index=3):(Active: 408.319us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 314.6us - CloseTime: 5.425us - GetBlockTime: 67.468us - OpenTime: 3.922us - PrepareTime: 78.508us - SinkTime: 173.791us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 382.738us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.809ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 754ns - DeserializeAndMergeTime: 43.13us - ExecTime: 209.435us - ExprTime: 0ns - HashTableComputeTime: 95.494us - HashTableEmplaceTime: 67.968us - HashTableInputCount: 114 - InputRows: 114 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 163.851us - OpenTime: 37.441us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 22 - BytesReceived: 5.80 KB - CloseTime: 3.947us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 163.816us - ExecTime: 80.903us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.50 KB - MemoryUsage: - Blocks: 3.50 KB - PeakMemoryUsage: 768.00 B - OpenTime: 14.506us - ProjectionTime: 0ns - RowsProduced: 114 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s180ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 240.491us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 129.458us - CloseTime: 13.297us - GetBlockTime: 54.551us - OpenTime: 1.734us - PrepareTime: 90.30us - SinkTime: 52.982us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 218.921us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.368ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.42 KB - CloseTime: 10.557us - CompressTime: 0ns - ExecTime: 103.734us - InputRows: 84 - LocalBytesSent: 2.63 KB - LocalSendTime: 10.29us - LocalSentRows: 84 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 4.937us - OpenTime: 40.538us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.196ms - RowsProduced: 84 - RpcAvgTime: 4.27ms - RpcCount: 1 - RpcMaxTime: 4.27ms - RpcMinTime: 4.27ms - RpcSumTime: 4.27ms - SerializeBatchTime: 11.665us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 5.70 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 1.454us - DeserializeAndMergeTime: 0ns - ExecTime: 80.9us - GetResultsTime: 25.182us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.352us - HashTableSize: 84 - InsertKeysToColumnTime: 10.442us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 24.418us - ProjectionTime: 24.14us - RowsProduced: 84 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s249ms PipelineXTask (index=2):(Active: 279.896us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 104.2us - CloseTime: 12.452us - GetBlockTime: 48.943us - OpenTime: 1.582us - PrepareTime: 156.475us - SinkTime: 37.963us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 260.697us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.172ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.11 KB - CloseTime: 10.87us - CompressTime: 0ns - ExecTime: 99.954us - InputRows: 74 - LocalBytesSent: 2.31 KB - LocalSendTime: 5.698us - LocalSentRows: 74 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 3.663us - OpenTime: 52.49us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.160ms - RowsProduced: 74 - RpcAvgTime: 3.995ms - RpcCount: 1 - RpcMaxTime: 3.995ms - RpcMinTime: 3.995ms - RpcSumTime: 3.995ms - SerializeBatchTime: 7.190us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 5.05 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 729ns - DeserializeAndMergeTime: 0ns - ExecTime: 57.902us - GetResultsTime: 12.828us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 995ns - HashTableSize: 74 - InsertKeysToColumnTime: 6.940us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.586us - ProjectionTime: 32.489us - RowsProduced: 74 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s249ms PipelineXTask (index=4):(Active: 194.784us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 105.25us - CloseTime: 16.794us - GetBlockTime: 43.439us - OpenTime: 615ns - PrepareTime: 67.788us - SinkTime: 49.931us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 172.506us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.92ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.61 KB - CloseTime: 13.127us - CompressTime: 0ns - ExecTime: 98.421us - InputRows: 89 - LocalBytesSent: 2.78 KB - LocalSendTime: 8.562us - LocalSentRows: 89 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 2.353us - OpenTime: 35.712us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.242ms - RowsProduced: 89 - RpcAvgTime: 4.88ms - RpcCount: 1 - RpcMaxTime: 4.88ms - RpcMinTime: 4.88ms - RpcSumTime: 4.88ms - SerializeBatchTime: 11.139us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 6.02 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 968ns - DeserializeAndMergeTime: 0ns - ExecTime: 49.778us - GetResultsTime: 16.104us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 821ns - HashTableSize: 89 - InsertKeysToColumnTime: 7.755us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.919us - ProjectionTime: 21.121us - RowsProduced: 89 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s245ms PipelineXTask (index=6):(Active: 342.720us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 180.394us - CloseTime: 17.308us - GetBlockTime: 59.193us - OpenTime: 913ns - PrepareTime: 139.73us - SinkTime: 107.161us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 318.736us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.201ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.57 KB - CloseTime: 14.503us - CompressTime: 0ns - ExecTime: 164.673us - InputRows: 55 - LocalBytesSent: 1.72 KB - LocalSendTime: 9.125us - LocalSentRows: 55 - MemoryUsage: - PeakMemoryUsage: 2.63 KB - MergeBlockTime: 3.246us - OpenTime: 43.942us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.209ms - RowsProduced: 55 - RpcAvgTime: 4.36ms - RpcCount: 1 - RpcMaxTime: 4.36ms - RpcMinTime: 4.36ms - RpcSumTime: 4.36ms - SerializeBatchTime: 16.369us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.74 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 964ns - DeserializeAndMergeTime: 0ns - ExecTime: 72.237us - GetResultsTime: 24.58us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 840ns - HashTableSize: 55 - InsertKeysToColumnTime: 9.130us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 12.504us - ProjectionTime: 27.750us - RowsProduced: 55 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s248ms PipelineXTask (index=8):(Active: 300.795us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 157.679us - CloseTime: 16.948us - GetBlockTime: 59.965us - OpenTime: 801ns - PrepareTime: 120.551us - SinkTime: 72.955us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 277.655us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.215ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.71 KB - CloseTime: 13.516us - CompressTime: 0ns - ExecTime: 131.650us - InputRows: 91 - LocalBytesSent: 2.84 KB - LocalSendTime: 7.299us - LocalSentRows: 91 - MemoryUsage: - PeakMemoryUsage: 5.13 KB - MergeBlockTime: 4.510us - OpenTime: 45.690us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.219ms - RowsProduced: 91 - RpcAvgTime: 4.53ms - RpcCount: 1 - RpcMaxTime: 4.53ms - RpcMinTime: 4.53ms - RpcSumTime: 4.53ms - SerializeBatchTime: 19.943us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 6.15 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 987ns - DeserializeAndMergeTime: 0ns - ExecTime: 114.659us - GetResultsTime: 23.521us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.649us - HashTableSize: 91 - InsertKeysToColumnTime: 14.901us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 54.314us - ProjectionTime: 30.0us - RowsProduced: 91 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s249ms PipelineXTask (index=10):(Active: 265.314us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 173.957us - CloseTime: 21.565us - GetBlockTime: 94.80us - OpenTime: 481ns - PrepareTime: 65.401us - SinkTime: 65.124us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 237.293us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.269ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.69 KB - CloseTime: 16.629us - CompressTime: 0ns - ExecTime: 118.378us - InputRows: 89 - LocalBytesSent: 2.78 KB - LocalSendTime: 8.737us - LocalSentRows: 89 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 2.926us - OpenTime: 37.4us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.158ms - RowsProduced: 89 - RpcAvgTime: 3.973ms - RpcCount: 1 - RpcMaxTime: 3.973ms - RpcMinTime: 3.973ms - RpcSumTime: 3.973ms - SerializeBatchTime: 16.30us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 6.02 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 1.133us - DeserializeAndMergeTime: 0ns - ExecTime: 100.738us - GetResultsTime: 46.983us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 30.837us - HashTableSize: 89 - InsertKeysToColumnTime: 9.413us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.782us - ProjectionTime: 40.906us - RowsProduced: 89 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s245ms PipelineXTask (index=12):(Active: 253.892us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 150.533us - CloseTime: 23.83us - GetBlockTime: 57.213us - OpenTime: 620ns - PrepareTime: 75.241us - SinkTime: 77.515us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 223.764us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.371ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.09 KB - CloseTime: 20.971us - CompressTime: 0ns - ExecTime: 145.656us - InputRows: 73 - LocalBytesSent: 2.28 KB - LocalSendTime: 9.757us - LocalSentRows: 73 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 3.584us - OpenTime: 47.879us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.227ms - RowsProduced: 73 - RpcAvgTime: 4.78ms - RpcCount: 1 - RpcMaxTime: 4.78ms - RpcMinTime: 4.78ms - RpcSumTime: 4.78ms - SerializeBatchTime: 13.712us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 4.97 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 1.37us - DeserializeAndMergeTime: 0ns - ExecTime: 64.404us - GetResultsTime: 19.384us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.195us - HashTableSize: 73 - InsertKeysToColumnTime: 11.200us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 7.33us - ProjectionTime: 27.873us - RowsProduced: 73 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s249ms PipelineXTask (index=14):(Active: 282.526us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 182.411us - CloseTime: 22.475us - GetBlockTime: 85.845us - OpenTime: 1.243us - PrepareTime: 70.669us - SinkTime: 80.998us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 253.141us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.546ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.90 KB - CloseTime: 17.638us - CompressTime: 0ns - ExecTime: 135.950us - InputRows: 70 - LocalBytesSent: 2.19 KB - LocalSendTime: 12.182us - LocalSentRows: 70 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 6.363us - OpenTime: 37.798us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.281ms - RowsProduced: 70 - RpcAvgTime: 4.128ms - RpcCount: 1 - RpcMaxTime: 4.128ms - RpcMinTime: 4.128ms - RpcSumTime: 4.128ms - SerializeBatchTime: 16.800us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 4.79 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 1.313us - DeserializeAndMergeTime: 0ns - ExecTime: 94.760us - GetResultsTime: 21.462us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.61us - HashTableSize: 70 - InsertKeysToColumnTime: 10.885us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.516us - ProjectionTime: 53.337us - RowsProduced: 70 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s249ms PipelineXTask (index=16):(Active: 154.11us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 79.665us - CloseTime: 10.392us - GetBlockTime: 34.265us - OpenTime: 783ns - PrepareTime: 59.206us - SinkTime: 33.917us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 138.659us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.640ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.94 KB - CloseTime: 8.71us - CompressTime: 0ns - ExecTime: 72.153us - InputRows: 97 - LocalBytesSent: 3.03 KB - LocalSendTime: 4.650us - LocalSentRows: 97 - MemoryUsage: - PeakMemoryUsage: 5.13 KB - MergeBlockTime: 3.205us - OpenTime: 30.378us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.189ms - RowsProduced: 97 - RpcAvgTime: 4.18ms - RpcCount: 1 - RpcMaxTime: 4.18ms - RpcMinTime: 4.18ms - RpcSumTime: 4.18ms - SerializeBatchTime: 7.752us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 6.54 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 1.224us - DeserializeAndMergeTime: 0ns - ExecTime: 41.176us - GetResultsTime: 15.584us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.105us - HashTableSize: 97 - InsertKeysToColumnTime: 8.233us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.186us - ProjectionTime: 15.379us - RowsProduced: 97 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s247ms PipelineXTask (index=18):(Active: 208.535us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 128.39us - CloseTime: 11.574us - GetBlockTime: 62.910us - OpenTime: 416ns - PrepareTime: 63.776us - SinkTime: 51.584us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 190.941us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.386ms DATA_STREAM_SINK_OPERATOR (id=60,dst_id=60): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.17 KB - CloseTime: 9.585us - CompressTime: 0ns - ExecTime: 90.630us - InputRows: 77 - LocalBytesSent: 2.41 KB - LocalSendTime: 7.933us - LocalSentRows: 77 - MemoryUsage: - PeakMemoryUsage: 4.13 KB - MergeBlockTime: 4.477us - OpenTime: 29.715us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 39.143ms - RowsProduced: 77 - RpcAvgTime: 3.997ms - RpcCount: 1 - RpcMaxTime: 3.997ms - RpcMinTime: 3.997ms - RpcSumTime: 3.997ms - SerializeBatchTime: 10.670us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 5.24 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns AGGREGATION_OPERATOR (id=59): - BlocksProduced: 1 - CloseTime: 807ns - DeserializeAndMergeTime: 0ns - ExecTime: 75.23us - GetResultsTime: 33.683us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.592us - HashTableSize: 77 - InsertKeysToColumnTime: 25.894us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.967us - ProjectionTime: 24.172us - RowsProduced: 77 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 17s249ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 429.915us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 333.838us - CloseTime: 5.614us - GetBlockTime: 54.218us - OpenTime: 2.647us - PrepareTime: 82.468us - SinkTime: 207.817us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 406.922us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.881ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 925ns - DeserializeAndMergeTime: 57.404us - ExecTime: 241.962us - ExprTime: 0ns - HashTableComputeTime: 101.223us - HashTableEmplaceTime: 63.454us - HashTableInputCount: 135 - InputRows: 135 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 190.448us - OpenTime: 37.235us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1.60 KB - CloseTime: 3.997us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 27.914us - ExecTime: 76.657us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.19 KB - MemoryUsage: - Blocks: 4.69 KB - PeakMemoryUsage: 4.69 KB - OpenTime: 26.560us - ProjectionTime: 0ns - RowsProduced: 135 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s243ms PipelineXTask (index=3):(Active: 344.29us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 276.349us - CloseTime: 6.609us - GetBlockTime: 59.258us - OpenTime: 2.464us - PrepareTime: 53.876us - SinkTime: 166.280us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 323.403us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.562ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 997ns - DeserializeAndMergeTime: 46.679us - ExecTime: 182.966us - ExprTime: 0ns - HashTableComputeTime: 82.571us - HashTableEmplaceTime: 51.963us - HashTableInputCount: 123 - InputRows: 123 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 151.645us - OpenTime: 19.205us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1.06 KB - CloseTime: 4.560us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 15.823us - ExecTime: 74.996us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.13 KB - MemoryUsage: - Blocks: 7.56 KB - PeakMemoryUsage: 7.56 KB - OpenTime: 18.272us - ProjectionTime: 0ns - RowsProduced: 123 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s238ms PipelineXTask (index=5):(Active: 313.981us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 247.708us - CloseTime: 3.72us - GetBlockTime: 50.281us - OpenTime: 3.542us - PrepareTime: 53.801us - SinkTime: 148.743us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 296.651us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.582ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 570ns - DeserializeAndMergeTime: 36.292us - ExecTime: 169.321us - ExprTime: 0ns - HashTableComputeTime: 83.395us - HashTableEmplaceTime: 58.161us - HashTableInputCount: 136 - InputRows: 136 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 137.30us - OpenTime: 23.380us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 726.00 B - CloseTime: 2.88us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 22.574us - ExecTime: 65.481us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.94 KB - MemoryUsage: - Blocks: 4.19 KB - PeakMemoryUsage: 4.19 KB - OpenTime: 18.834us - ProjectionTime: 0ns - RowsProduced: 136 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s241ms PipelineXTask (index=7):(Active: 380.894us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 304.586us - CloseTime: 8.851us - GetBlockTime: 72.691us - OpenTime: 2.483us - PrepareTime: 60.360us - SinkTime: 153.283us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 336.8us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.332ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 1.412us - DeserializeAndMergeTime: 26.824us - ExecTime: 177.378us - ExprTime: 0ns - HashTableComputeTime: 99.331us - HashTableEmplaceTime: 57.510us - HashTableInputCount: 83 - InputRows: 83 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 140.926us - OpenTime: 24.949us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 776.00 B - CloseTime: 6.73us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 18.902us - ExecTime: 86.694us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 8.56 KB - MemoryUsage: - Blocks: 3.25 KB - PeakMemoryUsage: 3.25 KB - OpenTime: 13.542us - ProjectionTime: 0ns - RowsProduced: 83 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s241ms PipelineXTask (index=9):(Active: 319.892us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 240.352us - CloseTime: 6.258us - GetBlockTime: 34.475us - OpenTime: 1.937us - PrepareTime: 66.537us - SinkTime: 116.36us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 265.582us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.557ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 1.50us - DeserializeAndMergeTime: 42.711us - ExecTime: 131.921us - ExprTime: 0ns - HashTableComputeTime: 51.488us - HashTableEmplaceTime: 31.707us - HashTableInputCount: 134 - InputRows: 134 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 107.996us - OpenTime: 16.449us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1.31 KB - CloseTime: 4.121us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 20.729us - ExecTime: 64.214us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.56 KB - MemoryUsage: - Blocks: 8.63 KB - PeakMemoryUsage: 8.63 KB - OpenTime: 29.239us - ProjectionTime: 0ns - RowsProduced: 134 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s243ms PipelineXTask (index=11):(Active: 372.414us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 317.511us - CloseTime: 4.153us - GetBlockTime: 88.251us - OpenTime: 2.647us - PrepareTime: 44.78us - SinkTime: 185.414us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 356.29us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.978ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 566ns - DeserializeAndMergeTime: 50.599us - ExecTime: 197.606us - ExprTime: 0ns - HashTableComputeTime: 99.126us - HashTableEmplaceTime: 70.431us - HashTableInputCount: 148 - InputRows: 148 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 173.440us - OpenTime: 14.425us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1.25 KB - CloseTime: 3.77us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 28.436us - ExecTime: 98.362us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.81 KB - MemoryUsage: - Blocks: 5.38 KB - PeakMemoryUsage: 5.38 KB - OpenTime: 14.151us - ProjectionTime: 0ns - RowsProduced: 148 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s242ms PipelineXTask (index=13):(Active: 342.530us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 281.346us - CloseTime: 6.898us - GetBlockTime: 52.909us - OpenTime: 3.190us - PrepareTime: 44.854us - SinkTime: 173.689us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 319.430us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.695ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 1.68us - DeserializeAndMergeTime: 52.753us - ExecTime: 195.459us - ExprTime: 0ns - HashTableComputeTime: 77.73us - HashTableEmplaceTime: 49.45us - HashTableInputCount: 125 - InputRows: 125 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 151.205us - OpenTime: 24.305us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1.21 KB - CloseTime: 4.771us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 25.487us - ExecTime: 62.694us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.44 KB - MemoryUsage: - Blocks: 3.50 KB - PeakMemoryUsage: 3.50 KB - OpenTime: 10.372us - ProjectionTime: 0ns - RowsProduced: 125 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s242ms PipelineXTask (index=15):(Active: 299.871us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 216.632us - CloseTime: 21.371us - GetBlockTime: 40.656us - OpenTime: 2.108us - PrepareTime: 55.702us - SinkTime: 138.260us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 268.560us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.419ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 1.536us - DeserializeAndMergeTime: 37.148us - ExecTime: 145.571us - ExprTime: 0ns - HashTableComputeTime: 68.155us - HashTableEmplaceTime: 44.848us - HashTableInputCount: 103 - InputRows: 103 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 121.156us - OpenTime: 14.104us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1024.00 B - CloseTime: 17.950us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.453us - ExecTime: 71.929us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.56 KB - MemoryUsage: - Blocks: 5.69 KB - PeakMemoryUsage: 5.69 KB - OpenTime: 18.892us - ProjectionTime: 0ns - RowsProduced: 103 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s238ms PipelineXTask (index=17):(Active: 322.602us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 250.174us - CloseTime: 3.19us - GetBlockTime: 53.715us - OpenTime: 1.845us - PrepareTime: 62.396us - SinkTime: 160.327us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 309.158us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.148ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 548ns - DeserializeAndMergeTime: 55.669us - ExecTime: 186.74us - ExprTime: 0ns - HashTableComputeTime: 80.88us - HashTableEmplaceTime: 55.523us - HashTableInputCount: 143 - InputRows: 143 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 150.697us - OpenTime: 27.501us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1.47 KB - CloseTime: 1.918us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 26.690us - ExecTime: 65.575us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.06 KB - MemoryUsage: - Blocks: 7.75 KB - PeakMemoryUsage: 7.75 KB - OpenTime: 15.786us - ProjectionTime: 0ns - RowsProduced: 143 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s240ms PipelineXTask (index=19):(Active: 326.442us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 265.25us - CloseTime: 4.708us - GetBlockTime: 45.240us - OpenTime: 2.160us - PrepareTime: 50.150us - SinkTime: 177.480us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 309.778us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.62ms AGGREGATION_SINK_OPERATOR (id=59): - BuildTime: 0ns - CloseTime: 681ns - DeserializeAndMergeTime: 51.647us - ExecTime: 194.25us - ExprTime: 0ns - HashTableComputeTime: 98.968us - HashTableEmplaceTime: 69.65us - HashTableInputCount: 114 - InputRows: 114 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 166.464us - OpenTime: 18.795us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=58): - BlocksProduced: 14 - BytesReceived: 1.05 KB - CloseTime: 3.254us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 30.481us - ExecTime: 58.286us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.38 KB - MemoryUsage: - Blocks: 4.56 KB - PeakMemoryUsage: 4.56 KB - OpenTime: 16.109us - ProjectionTime: 0ns - RowsProduced: 114 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s241ms Fragment 130: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 2.847ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.326ms - CloseTime: 104.494us - GetBlockTime: 1.972ms - OpenTime: 7.781us - PrepareTime: 401.788us - SinkTime: 292.55us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.730ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.52ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.11 KB - CloseTime: 14.893us - CompressTime: 0ns - ExecTime: 386.829us - InputRows: 127 - LocalBytesSent: 866.00 B - LocalSendTime: 31.336us - LocalSentRows: 17 - MemoryUsage: - PeakMemoryUsage: 13.69 KB - MergeBlockTime: 0ns - OpenTime: 80.774us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 82.822ms - RowsProduced: 127 - RpcAvgTime: 78.179ms - RpcCount: 10 - RpcMaxTime: 78.326ms - RpcMinTime: 78.1ms - RpcSumTime: 781.799ms - SerializeBatchTime: 24.591us - SplitBlockDistributeByChannelTime: 37.189us - SplitBlockHashComputeTime: 7.932us - UncompressedRowBatchSize: 5.98 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 129.109us - CloseTime: 18.811us - DeserializeAndMergeTime: 0ns - ExecTime: 302.13us - ExprTime: 5.429us - GetResultsTime: 40.125us - HashTableComputeTime: 69.35us - HashTableEmplaceTime: 47.228us - HashTableInputCount: 139 - HashTableIterateTime: 1.127us - HashTableSize: 127 - InsertKeysToColumnTime: 16.909us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 102.903us - ProjectionTime: 0ns - RowsProduced: 127 - SerializeDataTime: 16.120us - SerializeKeyTime: 0ns - SerializeResultTime: 42.333us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 37.663us - ExecTime: 1.797ms - InitProbeSideTime: 1.10ms - JoinFilterTimer: 527ns - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 31.421us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.555us - ProbeFindNextTime: 0ns - ProbeRows: 33.587K (33587) - ProbeTime: 1.623ms - ProbeWhenBuildSideOutputTime: 25.545us - ProbeWhenProbeSideOutputTime: 14.720us - ProbeWhenProcessHashTableTime: 28.496us - ProbeWhenSearchHashTableTime: 457.304us - ProjectionTime: 80.152us - RowsProduced: 139 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s956ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 29.20us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 178.763us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.28 MB - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 1.28 MB - OpenTime: 102.690us - ProjectionTime: 0ns - RowsProduced: 33.587K (33587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s185ms PipelineXTask (index=2):(Active: 2.268ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.873ms - CloseTime: 76.258us - GetBlockTime: 1.570ms - OpenTime: 10.283us - PrepareTime: 300.943us - SinkTime: 252.586us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.179ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 27.995ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.68 KB - CloseTime: 12.504us - CompressTime: 0ns - ExecTime: 362.448us - InputRows: 101 - LocalBytesSent: 1.01 KB - LocalSendTime: 39.309us - LocalSentRows: 20 - MemoryUsage: - PeakMemoryUsage: 11.00 KB - MergeBlockTime: 0ns - OpenTime: 97.916us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 83.246ms - RowsProduced: 101 - RpcAvgTime: 78.607ms - RpcCount: 10 - RpcMaxTime: 78.631ms - RpcMinTime: 78.587ms - RpcSumTime: 786.78ms - SerializeBatchTime: 23.119us - SplitBlockDistributeByChannelTime: 23.442us - SplitBlockHashComputeTime: 5.878us - UncompressedRowBatchSize: 4.55 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=57): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 87.596us - CloseTime: 30.149us - DeserializeAndMergeTime: 0ns - ExecTime: 196.906us - ExprTime: 4.42us - GetResultsTime: 30.674us - HashTableComputeTime: 48.718us - HashTableEmplaceTime: 34.254us - HashTableInputCount: 113 - HashTableIterateTime: 771ns - HashTableSize: 101 - InsertKeysToColumnTime: 11.86us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 37.787us - ProjectionTime: 0ns - RowsProduced: 101 - SerializeDataTime: 6.921us - SerializeKeyTime: 0ns - SerializeResultTime: 33.51us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 11.325us - ExecTime: 1.392ms - InitProbeSideTime: 793.154us - JoinFilterTimer: 526ns - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 17.409us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.707us - ProbeFindNextTime: 0ns - ProbeRows: 33.924K (33924) - ProbeTime: 1.274ms - ProbeWhenBuildSideOutputTime: 21.67us - ProbeWhenProbeSideOutputTime: 3.799us - ProbeWhenProcessHashTableTime: 8.483us - ProbeWhenSearchHashTableTime: 373.313us - ProjectionTime: 67.8us - RowsProduced: 113 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s956ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 9 - BytesReceived: 0.00 - CloseTime: 16.784us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 106.987us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.33 MB - MemoryUsage: - Blocks: 1.33 MB - PeakMemoryUsage: 1.33 MB - OpenTime: 25.334us - ProjectionTime: 0ns - RowsProduced: 33.924K (33924) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s186ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 531.998us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 351.621us - CloseTime: 17.400us - GetBlockTime: 63.86us - OpenTime: 2.763us - PrepareTime: 153.304us - SinkTime: 221.400us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 497.219us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.557ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.500us - BuildRows: 140 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 52.379us - BuildTableInsertTime: 28.834us - BuildTableTime: 32.794us - CloseTime: 0ns - ExecTime: 278.480us - InputRows: 139 - MemoryUsage: - BuildBlocks: 12.62 KB - BuildKeyArena: 12.00 KB - HashTable: 1.69 KB - PeakMemoryUsage: 22.30 KB - OpenTime: 60.9us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 20.499us - RuntimeFilterComputeTime: 25.644us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 8 - BytesReceived: 6.52 KB - CloseTime: 8.71us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 102.94us - ExecTime: 102.859us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.75 KB - MemoryUsage: - Blocks: 7.75 KB - PeakMemoryUsage: 7.75 KB - OpenTime: 36.407us - ProjectionTime: 0ns - RowsProduced: 139 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s169ms PipelineXTask (index=3):(Active: 451.175us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 298.629us - CloseTime: 5.909us - GetBlockTime: 41.553us - OpenTime: 2.742us - PrepareTime: 138.364us - SinkTime: 205.949us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 432.480us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 715.661us HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.36us - BuildRows: 114 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 73.965us - BuildTableInsertTime: 19.257us - BuildTableTime: 21.182us - CloseTime: 0ns - ExecTime: 224.829us - InputRows: 113 - MemoryUsage: - BuildBlocks: 10.26 KB - BuildKeyArena: 4.00 KB - HashTable: 1.56 KB - PeakMemoryUsage: 11.82 KB - OpenTime: 20.928us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 62.177us - RuntimeFilterComputeTime: 7.266us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 8 - BytesReceived: 5.66 KB - CloseTime: 4.796us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 94.355us - ExecTime: 58.991us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.25 KB - MemoryUsage: - Blocks: 6.25 KB - PeakMemoryUsage: 6.25 KB - OpenTime: 16.220us - ProjectionTime: 0ns - RowsProduced: 113 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s170ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 2.424ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.90ms - CloseTime: 63.812us - GetBlockTime: 1.834ms - OpenTime: 5.446us - PrepareTime: 259.145us - SinkTime: 210.262us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.353ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.27ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.15 KB - CloseTime: 11.81us - CompressTime: 0ns - ExecTime: 360.232us - InputRows: 126 - LocalBytesSent: 5.44 KB - LocalSendTime: 44.298us - LocalSentRows: 106 - MemoryUsage: - PeakMemoryUsage: 13.63 KB - MergeBlockTime: 0ns - OpenTime: 139.383us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.40ms - RowsProduced: 126 - RpcAvgTime: 735.582us - RpcCount: 2 - RpcMaxTime: 784.943us - RpcMinTime: 686.221us - RpcSumTime: 1.471ms - SerializeBatchTime: 7.151us - SplitBlockDistributeByChannelTime: 40.682us - SplitBlockHashComputeTime: 6.440us - UncompressedRowBatchSize: 1.12 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 125.798us - CloseTime: 27.43us - DeserializeAndMergeTime: 0ns - ExecTime: 217.220us - ExprTime: 6.143us - GetResultsTime: 29.953us - HashTableComputeTime: 78.822us - HashTableEmplaceTime: 58.964us - HashTableInputCount: 147 - HashTableIterateTime: 954ns - HashTableSize: 126 - InsertKeysToColumnTime: 9.339us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 22.790us - ProjectionTime: 0ns - RowsProduced: 126 - SerializeDataTime: 14.73us - SerializeKeyTime: 0ns - SerializeResultTime: 31.812us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 15.991us - ExecTime: 1.606ms - InitProbeSideTime: 819.35us - JoinFilterTimer: 854ns - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 16.702us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.129us - ProbeFindNextTime: 0ns - ProbeRows: 33.788K (33788) - ProbeTime: 1.462ms - ProbeWhenBuildSideOutputTime: 39.910us - ProbeWhenProbeSideOutputTime: 3.857us - ProbeWhenProcessHashTableTime: 19.569us - ProbeWhenSearchHashTableTime: 495.191us - ProjectionTime: 84.113us - RowsProduced: 147 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s711ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 16 - BytesReceived: 920.07 KB - CloseTime: 6.81us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 630.553us - ExecTime: 106.383us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 0.00 - OpenTime: 21.890us - ProjectionTime: 0ns - RowsProduced: 33.788K (33788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s453ms PipelineXTask (index=2):(Active: 2.179ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.876ms - CloseTime: 45.83us - GetBlockTime: 1.595ms - OpenTime: 4.249us - PrepareTime: 247.923us - SinkTime: 245.118us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.126ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.188ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.42 KB - CloseTime: 7.942us - CompressTime: 0ns - ExecTime: 330.553us - InputRows: 112 - LocalBytesSent: 4.32 KB - LocalSendTime: 57.24us - LocalSentRows: 86 - MemoryUsage: - PeakMemoryUsage: 11.75 KB - MergeBlockTime: 0ns - OpenTime: 78.250us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 27.478ms - RowsProduced: 112 - RpcAvgTime: 617.678us - RpcCount: 2 - RpcMaxTime: 686.904us - RpcMinTime: 548.453us - RpcSumTime: 1.235ms - SerializeBatchTime: 11.317us - SplitBlockDistributeByChannelTime: 35.314us - SplitBlockHashComputeTime: 7.776us - UncompressedRowBatchSize: 1.40 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 86.993us - CloseTime: 21.198us - DeserializeAndMergeTime: 0ns - ExecTime: 176.922us - ExprTime: 3.962us - GetResultsTime: 21.958us - HashTableComputeTime: 47.492us - HashTableEmplaceTime: 32.241us - HashTableInputCount: 122 - HashTableIterateTime: 632ns - HashTableSize: 112 - InsertKeysToColumnTime: 11.70us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 31.799us - ProjectionTime: 0ns - RowsProduced: 112 - SerializeDataTime: 6.301us - SerializeKeyTime: 0ns - SerializeResultTime: 27.985us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 9.538us - ExecTime: 1.430ms - InitProbeSideTime: 789.402us - JoinFilterTimer: 457ns - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 15.188us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.614us - ProbeFindNextTime: 0ns - ProbeRows: 33.798K (33798) - ProbeTime: 1.306ms - ProbeWhenBuildSideOutputTime: 19.971us - ProbeWhenProbeSideOutputTime: 3.25us - ProbeWhenProcessHashTableTime: 18.748us - ProbeWhenSearchHashTableTime: 408.30us - ProjectionTime: 74.199us - RowsProduced: 122 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s702ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 18 - BytesReceived: 919.97 KB - CloseTime: 3.578us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 535.926us - ExecTime: 79.311us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 0.00 - OpenTime: 22.823us - ProjectionTime: 0ns - RowsProduced: 33.798K (33798) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s462ms PipelineXTask (index=4):(Active: 2.914ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.603ms - CloseTime: 51.300us - GetBlockTime: 2.231ms - OpenTime: 4.14us - PrepareTime: 242.388us - SinkTime: 318.308us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.853ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.348ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 928.00 B - CloseTime: 10.842us - CompressTime: 0ns - ExecTime: 429.828us - InputRows: 118 - LocalBytesSent: 5.11 KB - LocalSendTime: 80.726us - LocalSentRows: 102 - MemoryUsage: - PeakMemoryUsage: 12.19 KB - MergeBlockTime: 0ns - OpenTime: 101.164us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.478ms - RowsProduced: 118 - RpcAvgTime: 1.598ms - RpcCount: 2 - RpcMaxTime: 1.663ms - RpcMinTime: 1.532ms - RpcSumTime: 3.196ms - SerializeBatchTime: 8.330us - SplitBlockDistributeByChannelTime: 42.47us - SplitBlockHashComputeTime: 7.993us - UncompressedRowBatchSize: 896.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 142.883us - CloseTime: 19.770us - DeserializeAndMergeTime: 0ns - ExecTime: 229.616us - ExprTime: 5.914us - GetResultsTime: 33.699us - HashTableComputeTime: 74.539us - HashTableEmplaceTime: 53.850us - HashTableInputCount: 127 - HashTableIterateTime: 1.13us - HashTableSize: 118 - InsertKeysToColumnTime: 13.187us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 20.678us - ProjectionTime: 0ns - RowsProduced: 118 - SerializeDataTime: 12.654us - SerializeKeyTime: 0ns - SerializeResultTime: 36.286us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 11.241us - ExecTime: 1.968ms - InitProbeSideTime: 1.122ms - JoinFilterTimer: 892ns - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 13.962us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.622us - ProbeFindNextTime: 0ns - ProbeRows: 33.75K (33750) - ProbeTime: 1.804ms - ProbeWhenBuildSideOutputTime: 36.218us - ProbeWhenProbeSideOutputTime: 5.208us - ProbeWhenProcessHashTableTime: 29.96us - ProbeWhenSearchHashTableTime: 491.805us - ProjectionTime: 106.504us - RowsProduced: 127 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s756ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 18 - BytesReceived: 918.85 KB - CloseTime: 5.502us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 593.548us - ExecTime: 102.765us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.31 MB - PeakMemoryUsage: 0.00 - OpenTime: 22.454us - ProjectionTime: 0ns - RowsProduced: 33.75K (33750) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s408ms PipelineXTask (index=6):(Active: 3.646ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.368ms - CloseTime: 62.520us - GetBlockTime: 3.63ms - OpenTime: 4.514us - PrepareTime: 205.91us - SinkTime: 253.0us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.514ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.770ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 978.00 B - CloseTime: 11.480us - CompressTime: 0ns - ExecTime: 353.58us - InputRows: 117 - LocalBytesSent: 5.05 KB - LocalSendTime: 72.123us - LocalSentRows: 100 - MemoryUsage: - PeakMemoryUsage: 12.50 KB - MergeBlockTime: 0ns - OpenTime: 89.230us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18.497ms - RowsProduced: 117 - RpcAvgTime: 2.816ms - RpcCount: 2 - RpcMaxTime: 2.894ms - RpcMinTime: 2.738ms - RpcSumTime: 5.633ms - SerializeBatchTime: 7.401us - SplitBlockDistributeByChannelTime: 24.739us - SplitBlockHashComputeTime: 7.251us - UncompressedRowBatchSize: 946.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 251.141us - CloseTime: 24.534us - DeserializeAndMergeTime: 0ns - ExecTime: 352.606us - ExprTime: 19.478us - GetResultsTime: 31.455us - HashTableComputeTime: 80.890us - HashTableEmplaceTime: 58.958us - HashTableInputCount: 129 - HashTableIterateTime: 1.40us - HashTableSize: 117 - InsertKeysToColumnTime: 9.771us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 28.644us - ProjectionTime: 0ns - RowsProduced: 117 - SerializeDataTime: 11.164us - SerializeKeyTime: 0ns - SerializeResultTime: 34.359us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 17.15us - ExecTime: 2.698ms - InitProbeSideTime: 891.154us - JoinFilterTimer: 1.198us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 10.641us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.264us - ProbeFindNextTime: 0ns - ProbeRows: 33.825K (33825) - ProbeTime: 2.527ms - ProbeWhenBuildSideOutputTime: 55.255us - ProbeWhenProbeSideOutputTime: 5.593us - ProbeWhenProcessHashTableTime: 14.621us - ProbeWhenSearchHashTableTime: 1.439ms - ProjectionTime: 107.559us - RowsProduced: 129 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s696ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 18 - BytesReceived: 920.57 KB - CloseTime: 5.958us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 585.158us - ExecTime: 89.16us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.30 MB - PeakMemoryUsage: 0.00 - OpenTime: 12.975us - ProjectionTime: 0ns - RowsProduced: 33.825K (33825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s469ms PipelineXTask (index=8):(Active: 2.97ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.814ms - CloseTime: 90.923us - GetBlockTime: 1.553ms - OpenTime: 3.875us - PrepareTime: 183.621us - SinkTime: 222.193us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.998ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 870.628us DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 778.00 B - CloseTime: 19.207us - CompressTime: 0ns - ExecTime: 297.732us - InputRows: 100 - LocalBytesSent: 4.40 KB - LocalSendTime: 57.800us - LocalSentRows: 87 - MemoryUsage: - PeakMemoryUsage: 11.06 KB - MergeBlockTime: 0ns - OpenTime: 56.869us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.386ms - RowsProduced: 100 - RpcAvgTime: 555.649us - RpcCount: 2 - RpcMaxTime: 579.150us - RpcMinTime: 532.148us - RpcSumTime: 1.111ms - SerializeBatchTime: 6.704us - SplitBlockDistributeByChannelTime: 20.961us - SplitBlockHashComputeTime: 5.659us - UncompressedRowBatchSize: 746.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 72.821us - CloseTime: 25.916us - DeserializeAndMergeTime: 0ns - ExecTime: 171.734us - ExprTime: 3.472us - GetResultsTime: 27.103us - HashTableComputeTime: 40.849us - HashTableEmplaceTime: 28.84us - HashTableInputCount: 111 - HashTableIterateTime: 729ns - HashTableSize: 100 - InsertKeysToColumnTime: 12.738us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 37.831us - ProjectionTime: 0ns - RowsProduced: 100 - SerializeDataTime: 8.939us - SerializeKeyTime: 0ns - SerializeResultTime: 28.882us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 25.829us - ExecTime: 1.413ms - InitProbeSideTime: 806.950us - JoinFilterTimer: 395ns - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 13.931us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.265us - ProbeFindNextTime: 0ns - ProbeRows: 33.716K (33716) - ProbeTime: 1.278ms - ProbeWhenBuildSideOutputTime: 19.189us - ProbeWhenProbeSideOutputTime: 2.481us - ProbeWhenProcessHashTableTime: 18.434us - ProbeWhenSearchHashTableTime: 370.659us - ProjectionTime: 73.916us - RowsProduced: 111 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s702ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 16 - BytesReceived: 918.18 KB - CloseTime: 12.552us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 531.949us - ExecTime: 86.937us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.28 MB - PeakMemoryUsage: 0.00 - OpenTime: 22.841us - ProjectionTime: 0ns - RowsProduced: 33.716K (33716) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s475ms PipelineXTask (index=10):(Active: 2.369ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.83ms - CloseTime: 95.833us - GetBlockTime: 1.828ms - OpenTime: 6.113us - PrepareTime: 178.769us - SinkTime: 217.724us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.187ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.684ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.41 KB - CloseTime: 21.55us - CompressTime: 0ns - ExecTime: 312.436us - InputRows: 141 - LocalBytesSent: 5.83 KB - LocalSendTime: 51.802us - LocalSentRows: 115 - MemoryUsage: - PeakMemoryUsage: 14.75 KB - MergeBlockTime: 0ns - OpenTime: 73.951us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 25.864ms - RowsProduced: 141 - RpcAvgTime: 1.105ms - RpcCount: 2 - RpcMaxTime: 1.158ms - RpcMinTime: 1.52ms - RpcSumTime: 2.210ms - SerializeBatchTime: 9.593us - SplitBlockDistributeByChannelTime: 27.901us - SplitBlockHashComputeTime: 6.103us - UncompressedRowBatchSize: 1.39 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 130.443us - CloseTime: 39.689us - DeserializeAndMergeTime: 0ns - ExecTime: 235.715us - ExprTime: 13.896us - GetResultsTime: 24.328us - HashTableComputeTime: 71.908us - HashTableEmplaceTime: 52.559us - HashTableInputCount: 156 - HashTableIterateTime: 860ns - HashTableSize: 141 - InsertKeysToColumnTime: 10.883us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 32.445us - ProjectionTime: 0ns - RowsProduced: 141 - SerializeDataTime: 7.896us - SerializeKeyTime: 0ns - SerializeResultTime: 25.902us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 18.829us - ExecTime: 1.533ms - InitProbeSideTime: 842.789us - JoinFilterTimer: 503ns - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 13.318us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.205us - ProbeFindNextTime: 0ns - ProbeRows: 33.664K (33664) - ProbeTime: 1.419ms - ProbeWhenBuildSideOutputTime: 27.93us - ProbeWhenProbeSideOutputTime: 3.378us - ProbeWhenProcessHashTableTime: 19.684us - ProbeWhenSearchHashTableTime: 457.3us - ProjectionTime: 60.394us - RowsProduced: 156 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s745ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 16 - BytesReceived: 916.60 KB - CloseTime: 11.162us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 728.824us - ExecTime: 173.471us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 0.00 - OpenTime: 11.769us - ProjectionTime: 0ns - RowsProduced: 33.664K (33664) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s420ms PipelineXTask (index=12):(Active: 2.829ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.511ms - CloseTime: 95.117us - GetBlockTime: 2.213ms - OpenTime: 6.324us - PrepareTime: 209.163us - SinkTime: 240.171us - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.568ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.858ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 962.00 B - CloseTime: 29.729us - CompressTime: 0ns - ExecTime: 339.377us - InputRows: 125 - LocalBytesSent: 5.45 KB - LocalSendTime: 47.417us - LocalSentRows: 108 - MemoryUsage: - PeakMemoryUsage: 13.44 KB - MergeBlockTime: 0ns - OpenTime: 69.956us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.809ms - RowsProduced: 125 - RpcAvgTime: 669.997us - RpcCount: 2 - RpcMaxTime: 700.660us - RpcMinTime: 639.334us - RpcSumTime: 1.339ms - SerializeBatchTime: 5.257us - SplitBlockDistributeByChannelTime: 25.723us - SplitBlockHashComputeTime: 6.169us - UncompressedRowBatchSize: 930.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 118.16us - CloseTime: 33.237us - DeserializeAndMergeTime: 0ns - ExecTime: 238.263us - ExprTime: 6.20us - GetResultsTime: 37.442us - HashTableComputeTime: 73.330us - HashTableEmplaceTime: 56.337us - HashTableInputCount: 136 - HashTableIterateTime: 771ns - HashTableSize: 125 - InsertKeysToColumnTime: 13.251us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 38.724us - ProjectionTime: 0ns - RowsProduced: 125 - SerializeDataTime: 15.661us - SerializeKeyTime: 0ns - SerializeResultTime: 39.78us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 13.68us - ExecTime: 1.812ms - InitProbeSideTime: 1.49ms - JoinFilterTimer: 1.187us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 13.463us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.643us - ProbeFindNextTime: 0ns - ProbeRows: 33.899K (33899) - ProbeTime: 1.671ms - ProbeWhenBuildSideOutputTime: 50.850us - ProbeWhenProbeSideOutputTime: 3.894us - ProbeWhenProcessHashTableTime: 19.460us - ProbeWhenSearchHashTableTime: 440.86us - ProjectionTime: 79.746us - RowsProduced: 136 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s735ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 18 - BytesReceived: 923.33 KB - CloseTime: 11.867us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 665.612us - ExecTime: 270.849us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.831us - ProjectionTime: 0ns - RowsProduced: 33.899K (33899) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s430ms PipelineXTask (index=14):(Active: 3.36ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.649ms - CloseTime: 90.238us - GetBlockTime: 2.336ms - OpenTime: 4.595us - PrepareTime: 286.807us - SinkTime: 263.485us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.937ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.652ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 710.00 B - CloseTime: 15.718us - CompressTime: 0ns - ExecTime: 442.270us - InputRows: 117 - LocalBytesSent: 5.32 KB - LocalSendTime: 55.402us - LocalSentRows: 106 - MemoryUsage: - PeakMemoryUsage: 12.88 KB - MergeBlockTime: 0ns - OpenTime: 163.304us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.544ms - RowsProduced: 117 - RpcAvgTime: 716.997us - RpcCount: 2 - RpcMaxTime: 806.719us - RpcMinTime: 627.275us - RpcSumTime: 1.433ms - SerializeBatchTime: 9.67us - SplitBlockDistributeByChannelTime: 34.73us - SplitBlockHashComputeTime: 7.895us - UncompressedRowBatchSize: 678.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 146.132us - CloseTime: 32.386us - DeserializeAndMergeTime: 0ns - ExecTime: 253.872us - ExprTime: 6.178us - GetResultsTime: 33.145us - HashTableComputeTime: 82.0us - HashTableEmplaceTime: 60.517us - HashTableInputCount: 129 - HashTableIterateTime: 960ns - HashTableSize: 117 - InsertKeysToColumnTime: 12.358us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 29.870us - ProjectionTime: 0ns - RowsProduced: 117 - SerializeDataTime: 12.136us - SerializeKeyTime: 0ns - SerializeResultTime: 35.282us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 19.105us - ExecTime: 2.85ms - InitProbeSideTime: 1.201ms - JoinFilterTimer: 1.12us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 19.99us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.923us - ProbeFindNextTime: 0ns - ProbeRows: 33.999K (33999) - ProbeTime: 1.906ms - ProbeWhenBuildSideOutputTime: 39.185us - ProbeWhenProbeSideOutputTime: 4.531us - ProbeWhenProcessHashTableTime: 19.989us - ProbeWhenSearchHashTableTime: 537.268us - ProjectionTime: 109.803us - RowsProduced: 129 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s727ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 16 - BytesReceived: 925.86 KB - CloseTime: 15.963us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 719.43us - ExecTime: 115.144us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 0.00 - OpenTime: 24.79us - ProjectionTime: 0ns - RowsProduced: 33.999K (33999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s438ms PipelineXTask (index=16):(Active: 2.194ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.892ms - CloseTime: 83.651us - GetBlockTime: 1.672ms - OpenTime: 4.601us - PrepareTime: 207.989us - SinkTime: 178.405us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.102ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.601ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.17 KB - CloseTime: 11.807us - CompressTime: 0ns - ExecTime: 244.23us - InputRows: 141 - LocalBytesSent: 6.09 KB - LocalSendTime: 35.851us - LocalSentRows: 120 - MemoryUsage: - PeakMemoryUsage: 14.81 KB - MergeBlockTime: 0ns - OpenTime: 54.309us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.255ms - RowsProduced: 141 - RpcAvgTime: 889.988us - RpcCount: 2 - RpcMaxTime: 943.802us - RpcMinTime: 836.174us - RpcSumTime: 1.779ms - SerializeBatchTime: 6.649us - SplitBlockDistributeByChannelTime: 23.67us - SplitBlockHashComputeTime: 7.243us - UncompressedRowBatchSize: 1.13 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 94.682us - CloseTime: 37.515us - DeserializeAndMergeTime: 0ns - ExecTime: 187.2us - ExprTime: 3.525us - GetResultsTime: 27.114us - HashTableComputeTime: 55.974us - HashTableEmplaceTime: 41.740us - HashTableInputCount: 158 - HashTableIterateTime: 835ns - HashTableSize: 141 - InsertKeysToColumnTime: 10.433us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 533.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 20.833us - ProjectionTime: 0ns - RowsProduced: 141 - SerializeDataTime: 10.680us - SerializeKeyTime: 0ns - SerializeResultTime: 28.494us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 25.185us - ExecTime: 1.513ms - InitProbeSideTime: 817.655us - JoinFilterTimer: 395ns - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 12.604us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.382us - ProbeFindNextTime: 0ns - ProbeRows: 33.71K (33710) - ProbeTime: 1.392ms - ProbeWhenBuildSideOutputTime: 21.797us - ProbeWhenProbeSideOutputTime: 2.476us - ProbeWhenProcessHashTableTime: 19.634us - ProbeWhenSearchHashTableTime: 464.137us - ProjectionTime: 61.217us - RowsProduced: 158 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s717ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 16 - BytesReceived: 918.00 KB - CloseTime: 4.894us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 560.85us - ExecTime: 110.125us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 0.00 - OpenTime: 50.749us - ProjectionTime: 0ns - RowsProduced: 33.71K (33710) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s449ms PipelineXTask (index=18):(Active: 2.73ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.836ms - CloseTime: 53.837us - GetBlockTime: 1.635ms - OpenTime: 4.740us - PrepareTime: 173.271us - SinkTime: 160.827us - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.10ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.213ms DATA_STREAM_SINK_OPERATOR (id=58,dst_id=58): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.29 KB - CloseTime: 9.513us - CompressTime: 0ns - ExecTime: 228.408us - InputRows: 146 - LocalBytesSent: 6.24 KB - LocalSendTime: 35.774us - LocalSentRows: 123 - MemoryUsage: - PeakMemoryUsage: 14.75 KB - MergeBlockTime: 0ns - OpenTime: 58.457us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.531ms - RowsProduced: 146 - RpcAvgTime: 1.695ms - RpcCount: 2 - RpcMaxTime: 1.708ms - RpcMinTime: 1.683ms - RpcSumTime: 3.391ms - SerializeBatchTime: 9.578us - SplitBlockDistributeByChannelTime: 23.230us - SplitBlockHashComputeTime: 7.342us - UncompressedRowBatchSize: 1.27 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 99.207us - CloseTime: 24.696us - DeserializeAndMergeTime: 0ns - ExecTime: 191.259us - ExprTime: 4.379us - GetResultsTime: 31.546us - HashTableComputeTime: 56.111us - HashTableEmplaceTime: 40.148us - HashTableInputCount: 164 - HashTableIterateTime: 790ns - HashTableSize: 146 - InsertKeysToColumnTime: 11.559us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 5.98 KB - PeakMemoryUsage: 541.98 KB - SerializeKeyArena: 536.00 KB - MergeTime: 0ns - OpenTime: 28.440us - ProjectionTime: 0ns - RowsProduced: 146 - SerializeDataTime: 14.935us - SerializeKeyTime: 0ns - SerializeResultTime: 32.804us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=56): - BlocksProduced: 9 - BuildOutputBlock: 0ns - CloseTime: 11.118us - ExecTime: 1.471ms - InitProbeSideTime: 758.98us - JoinFilterTimer: 542ns - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 11.812us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 892ns - ProbeFindNextTime: 0ns - ProbeRows: 33.598K (33598) - ProbeTime: 1.352ms - ProbeWhenBuildSideOutputTime: 23.816us - ProbeWhenProbeSideOutputTime: 2.314us - ProbeWhenProcessHashTableTime: 20.744us - ProbeWhenSearchHashTableTime: 488.704us - ProjectionTime: 65.496us - RowsProduced: 164 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s683ms EXCHANGE_OPERATOR (id=55): - BlocksProduced: 16 - BytesReceived: 914.98 KB - CloseTime: 5.121us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 656.979us - ExecTime: 58.785us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.29 MB - PeakMemoryUsage: 0.00 - OpenTime: 16.111us - ProjectionTime: 0ns - RowsProduced: 33.598K (33598) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s483ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 316.421us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 247.860us - CloseTime: 7.901us - GetBlockTime: 39.287us - OpenTime: 2.42us - PrepareTime: 54.219us - SinkTime: 166.372us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 297.823us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.372ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.43us - BuildRows: 148 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 49.683us - BuildTableInsertTime: 31.469us - BuildTableTime: 34.673us - CloseTime: 0ns - ExecTime: 183.361us - InputRows: 147 - MemoryUsage: - BuildBlocks: 13.34 KB - BuildKeyArena: 12.00 KB - HashTable: 1.73 KB - PeakMemoryUsage: 23.06 KB - OpenTime: 19.274us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.414us - RuntimeFilterComputeTime: 26.146us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 4.87 KB - CloseTime: 6.104us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 29.638us - ExecTime: 54.793us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.06 KB - MemoryUsage: - Blocks: 9.25 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.825us - ProjectionTime: 0ns - RowsProduced: 147 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s160ms PipelineXTask (index=3):(Active: 250.652us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 176.222us - CloseTime: 6.61us - GetBlockTime: 20.97us - OpenTime: 1.278us - PrepareTime: 63.22us - SinkTime: 127.248us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 235.111us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.588ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.522us - BuildRows: 123 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 37.561us - BuildTableInsertTime: 35.188us - BuildTableTime: 37.38us - CloseTime: 0ns - ExecTime: 157.595us - InputRows: 122 - MemoryUsage: - BuildBlocks: 11.07 KB - BuildKeyArena: 4.00 KB - HashTable: 1.60 KB - PeakMemoryUsage: 12.67 KB - OpenTime: 32.100us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.817us - RuntimeFilterComputeTime: 7.243us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 5.01 KB - CloseTime: 4.963us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 27.786us - ExecTime: 33.173us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.94 KB - MemoryUsage: - Blocks: 9.25 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.348us - ProjectionTime: 0ns - RowsProduced: 122 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s160ms PipelineXTask (index=5):(Active: 306.494us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 228.396us - CloseTime: 6.33us - GetBlockTime: 30.86us - OpenTime: 3.198us - PrepareTime: 55.450us - SinkTime: 139.415us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 286.430us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.305ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.710us - BuildRows: 128 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 41.663us - BuildTableInsertTime: 23.739us - BuildTableTime: 25.404us - CloseTime: 0ns - ExecTime: 155.441us - InputRows: 127 - MemoryUsage: - BuildBlocks: 11.53 KB - BuildKeyArena: 12.00 KB - HashTable: 1.63 KB - PeakMemoryUsage: 21.16 KB - OpenTime: 17.775us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.560us - RuntimeFilterComputeTime: 7.740us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 3.76 KB - CloseTime: 4.888us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 34.66us - ExecTime: 46.759us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.06 KB - MemoryUsage: - Blocks: 7.06 KB - PeakMemoryUsage: 448.00 B - OpenTime: 17.115us - ProjectionTime: 0ns - RowsProduced: 127 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s158ms PipelineXTask (index=7):(Active: 246.235us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 190.353us - CloseTime: 5.216us - GetBlockTime: 27.812us - OpenTime: 1.494us - PrepareTime: 45.537us - SinkTime: 138.545us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 233.820us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.821ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.576us - BuildRows: 130 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 40.109us - BuildTableInsertTime: 19.282us - BuildTableTime: 22.722us - CloseTime: 0ns - ExecTime: 153.174us - InputRows: 129 - MemoryUsage: - BuildBlocks: 11.72 KB - BuildKeyArena: 12.00 KB - HashTable: 1.64 KB - PeakMemoryUsage: 21.35 KB - OpenTime: 15.989us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.313us - RuntimeFilterComputeTime: 8.510us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 4.54 KB - CloseTime: 3.908us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 27.969us - ExecTime: 36.619us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.81 KB - MemoryUsage: - Blocks: 10.81 KB - PeakMemoryUsage: 4.62 KB - OpenTime: 7.742us - ProjectionTime: 0ns - RowsProduced: 129 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s150ms PipelineXTask (index=9):(Active: 323.857us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 242.820us - CloseTime: 8.504us - GetBlockTime: 18.738us - OpenTime: 2.82us - PrepareTime: 66.471us - SinkTime: 192.825us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 306.638us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.986ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.816us - BuildRows: 112 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 25.969us - BuildTableInsertTime: 16.546us - BuildTableTime: 19.678us - CloseTime: 0ns - ExecTime: 225.28us - InputRows: 111 - MemoryUsage: - BuildBlocks: 10.08 KB - BuildKeyArena: 4.00 KB - HashTable: 1.55 KB - PeakMemoryUsage: 11.62 KB - OpenTime: 33.795us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 102.406us - RuntimeFilterComputeTime: 7.134us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 4.09 KB - CloseTime: 6.243us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 35.591us - ExecTime: 36.221us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.69 KB - MemoryUsage: - Blocks: 6.88 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.542us - ProjectionTime: 0ns - RowsProduced: 111 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s158ms PipelineXTask (index=11):(Active: 298.229us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 227.717us - CloseTime: 7.954us - GetBlockTime: 30.813us - OpenTime: 12.409us - PrepareTime: 45.994us - SinkTime: 150.959us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 280.831us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 15.938ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.945us - BuildRows: 157 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 63.926us - BuildTableInsertTime: 13.776us - BuildTableTime: 15.502us - CloseTime: 0ns - ExecTime: 169.507us - InputRows: 156 - MemoryUsage: - BuildBlocks: 14.17 KB - BuildKeyArena: 12.00 KB - HashTable: 1.77 KB - PeakMemoryUsage: 23.93 KB - OpenTime: 20.283us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.222us - RuntimeFilterComputeTime: 8.107us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 5.45 KB - CloseTime: 6.471us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 29.363us - ExecTime: 42.526us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.06 KB - MemoryUsage: - Blocks: 13.06 KB - PeakMemoryUsage: 5.12 KB - OpenTime: 8.785us - ProjectionTime: 0ns - RowsProduced: 156 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s150ms PipelineXTask (index=13):(Active: 245.376us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 182.530us - CloseTime: 6.407us - GetBlockTime: 19.835us - OpenTime: 1.713us - PrepareTime: 50.457us - SinkTime: 136.246us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 230.696us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.80ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.231us - BuildRows: 137 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 36.250us - BuildTableInsertTime: 29.217us - BuildTableTime: 31.529us - CloseTime: 0ns - ExecTime: 152.761us - InputRows: 136 - MemoryUsage: - BuildBlocks: 12.35 KB - BuildKeyArena: 12.00 KB - HashTable: 1.67 KB - PeakMemoryUsage: 22.02 KB - OpenTime: 18.460us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.786us - RuntimeFilterComputeTime: 25.559us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 4.58 KB - CloseTime: 4.702us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 31.822us - ExecTime: 35.633us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 11.06 KB - MemoryUsage: - Blocks: 11.06 KB - PeakMemoryUsage: 4.37 KB - OpenTime: 13.685us - ProjectionTime: 0ns - RowsProduced: 136 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s150ms PipelineXTask (index=15):(Active: 238.188us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 166.58us - CloseTime: 6.520us - GetBlockTime: 22.984us - OpenTime: 1.611us - PrepareTime: 59.569us - SinkTime: 114.877us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 223.13us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.134ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.661us - BuildRows: 130 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 44.160us - BuildTableInsertTime: 19.784us - BuildTableTime: 22.70us - CloseTime: 0ns - ExecTime: 140.187us - InputRows: 129 - MemoryUsage: - BuildBlocks: 11.72 KB - BuildKeyArena: 12.00 KB - HashTable: 1.64 KB - PeakMemoryUsage: 21.35 KB - OpenTime: 26.760us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.946us - RuntimeFilterComputeTime: 5.586us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 4.50 KB - CloseTime: 4.848us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 29.48us - ExecTime: 39.897us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.94 KB - MemoryUsage: - Blocks: 10.94 KB - PeakMemoryUsage: 4.75 KB - OpenTime: 14.278us - ProjectionTime: 0ns - RowsProduced: 129 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s150ms PipelineXTask (index=17):(Active: 249.245us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 174.30us - CloseTime: 5.235us - GetBlockTime: 39.915us - OpenTime: 1.791us - PrepareTime: 64.19us - SinkTime: 107.838us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 235.835us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.267ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 1.638us - BuildRows: 159 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 42.583us - BuildTableInsertTime: 20.515us - BuildTableTime: 21.498us - CloseTime: 0ns - ExecTime: 129.965us - InputRows: 158 - MemoryUsage: - BuildBlocks: 14.35 KB - BuildKeyArena: 12.00 KB - HashTable: 1.78 KB - PeakMemoryUsage: 24.12 KB - OpenTime: 25.958us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.383us - RuntimeFilterComputeTime: 7.739us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 5.09 KB - CloseTime: 4.150us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 29.502us - ExecTime: 56.965us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.00 KB - MemoryUsage: - Blocks: 13.00 KB - PeakMemoryUsage: 5.68 KB - OpenTime: 15.805us - ProjectionTime: 0ns - RowsProduced: 158 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s150ms PipelineXTask (index=19):(Active: 297.163us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 223.388us - CloseTime: 8.661us - GetBlockTime: 37.163us - OpenTime: 2.427us - PrepareTime: 58.591us - SinkTime: 157.377us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 279.521us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.376ms HASH_JOIN_SINK_OPERATOR (id=56): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 2.112us - BuildRows: 165 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 46.897us - BuildTableInsertTime: 40.70us - BuildTableTime: 41.774us - CloseTime: 0ns - ExecTime: 181.603us - InputRows: 164 - MemoryUsage: - BuildBlocks: 14.89 KB - BuildKeyArena: 12.00 KB - HashTable: 1.81 KB - PeakMemoryUsage: 24.70 KB - OpenTime: 25.707us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.525us - RuntimeFilterComputeTime: 7.767us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=53): - BlocksProduced: 7 - BytesReceived: 5.01 KB - CloseTime: 7.345us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 35.688us - ExecTime: 49.305us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 14.25 KB - MemoryUsage: - Blocks: 14.25 KB - PeakMemoryUsage: 6.56 KB - OpenTime: 11.710us - ProjectionTime: 0ns - RowsProduced: 164 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 17s150ms Fragment 131: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 79.731ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 79.118ms - CloseTime: 69.55us - GetBlockTime: 696.251us - OpenTime: 206.750us - PrepareTime: 326.398us - SinkTime: 77.979ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 72.331ms - WaitBfTime: 886.59ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 203.401ms DATA_STREAM_SINK_OPERATOR (id=55,dst_id=55): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 113 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.98 MB - CloseTime: 26.114us - CompressTime: 0ns - ExecTime: 78.61ms - InputRows: 405.258K (405258) - LocalBytesSent: 2.12 MB - LocalSendTime: 128.311us - LocalSentRows: 67.511K (67511) - MemoryUsage: - PeakMemoryUsage: 4.25 MB - MergeBlockTime: 0ns - OpenTime: 90.66us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s532ms - RowsProduced: 405.258K (405258) - RpcAvgTime: 1s224ms - RpcCount: 85 - RpcMaxTime: 10s561ms - RpcMinTime: 10s250ms - RpcSumTime: 1m44s - SerializeBatchTime: 40.183ms - SplitBlockDistributeByChannelTime: 14.198ms - SplitBlockHashComputeTime: 11.738ms - UncompressedRowBatchSize: 10.77 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.792us - BlocksProduced: 100 - CloseTime: 37.976us - ExecTime: 99.465ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 299.919us - ProcessConjunctTime: 32.931us - ProjectionTime: 0ns - RowsProduced: 405.258K (405258) - RowsRead: 405.258K (405258) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 88.10ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 98.467ms - 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: [9.555ms, ] - PerScannerRowsRead: [405.26K, ] - PerScannerWaitTime: [88.010ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 9.266ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 451.397us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 16.849us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 10.671ms - ScannerCtxSchedTime: 88.8ms - ScannerFilterTime: 40.902us - ScannerGetBlockTime: 9.469ms - ScannerInitTime: 131.356us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 319ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.173us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 13.320us - BlockLoadTime: 9.623ms - BlocksLoad: 101 - CachedPagesNum: 186 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 100 - FirstReadSeekTime: 287.411us - FirstReadTime: 9.342ms - IOTimer: 0ns - InvertedIndexFilterTime: 758ns - 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: 13.481us - OutputIndexResultColumnTimer: 10.818us - 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: 1.862ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.677ms - CloseTime: 35.173us - GetBlockTime: 915.445us - OpenTime: 5.3us - PrepareTime: 135.288us - SinkTime: 693.121us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.794ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.957ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.53 KB - CloseTime: 11.368us - CompressTime: 0ns - ExecTime: 784.322us - InputRows: 288 - LocalBytesSent: 4.45 KB - LocalSendTime: 89.929us - LocalSentRows: 49 - MemoryUsage: - PeakMemoryUsage: 40.88 KB - MergeBlockTime: 0ns - OpenTime: 80.896us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 101.157ms - RowsProduced: 288 - RpcAvgTime: 99.161ms - RpcCount: 10 - RpcMaxTime: 99.368ms - RpcMinTime: 98.595ms - RpcSumTime: 991.613ms - SerializeBatchTime: 100.340us - SplitBlockDistributeByChannelTime: 158.267us - SplitBlockHashComputeTime: 18.99us - UncompressedRowBatchSize: 22.81 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 20.716us - ExecTime: 909.579us - InitProbeSideTime: 122.828us - JoinFilterTimer: 557ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 17.688us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.90us - ProbeFindNextTime: 0ns - ProbeRows: 1.99K (1990) - ProbeTime: 811.220us - ProbeWhenBuildSideOutputTime: 279.425us - ProbeWhenProbeSideOutputTime: 13.340us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 346.679us - ProjectionTime: 45.981us - RowsProduced: 288 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s699ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 41.527us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 180.00 KB - OpenTime: 774ns - ProjectionTime: 0ns - RowsProduced: 1.99K (1990) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s195ms PipelineXTask (index=3):(Active: 1.754ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.577ms - CloseTime: 62.135us - GetBlockTime: 1.12ms - OpenTime: 5.580us - PrepareTime: 103.41us - SinkTime: 531.684us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.682ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.695ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 25.74 KB - CloseTime: 32.468us - CompressTime: 0ns - ExecTime: 621.940us - InputRows: 396 - LocalBytesSent: 5.00 KB - LocalSendTime: 12.107us - LocalSentRows: 55 - MemoryUsage: - PeakMemoryUsage: 58.75 KB - MergeBlockTime: 0ns - OpenTime: 58.826us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 101.141ms - RowsProduced: 396 - RpcAvgTime: 98.914ms - RpcCount: 10 - RpcMaxTime: 99.306ms - RpcMinTime: 98.431ms - RpcSumTime: 989.142ms - SerializeBatchTime: 123.82us - SplitBlockDistributeByChannelTime: 107.705us - SplitBlockHashComputeTime: 14.859us - UncompressedRowBatchSize: 32.44 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=52): - BlocksProduced: 2 - BuildOutputBlock: 0ns - CloseTime: 25.449us - ExecTime: 1.29ms - InitProbeSideTime: 169.275us - JoinFilterTimer: 402ns - MemoryUsage: - PeakMemoryUsage: 76.00 KB - ProbeKeyArena: 76.00 KB - OpenTime: 13.784us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 762ns - ProbeFindNextTime: 0ns - ProbeRows: 2.389K (2389) - ProbeTime: 885.593us - ProbeWhenBuildSideOutputTime: 305.409us - ProbeWhenProbeSideOutputTime: 8.59us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 345.241us - ProjectionTime: 94.582us - RowsProduced: 396 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 10s682ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 2 - CloseTime: 0ns - ExecTime: 20.508us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 180.00 KB - OpenTime: 641ns - ProjectionTime: 0ns - RowsProduced: 2.389K (2389) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s195ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 655.818us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 288.862us - CloseTime: 64.146us - GetBlockTime: 83.951us - OpenTime: 136.797us - PrepareTime: 157.439us - SinkTime: 29.228us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 580.37us - WaitBfTime: 886.35ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 172.867ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 28.485us - InputRows: 4.236K (4236) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.218us - 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.671us - BlocksProduced: 2 - CloseTime: 61.116us - ExecTime: 164.954ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 220.429us - ProcessConjunctTime: 55.847us - ProjectionTime: 572.254us - RowsProduced: 4.236K (4236) - RowsRead: 4.236K (4236) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 94.166ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 163.995ms - 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: [49.239ms, ] - PerScannerRowsRead: [4.24K, ] - PerScannerWaitTime: [94.166ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 48.539ms - MemoryUsage: - FreeBlocks: 180.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 11.733ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 293ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.341ms - ScannerCtxSchedTime: 94.163ms - ScannerFilterTime: 145.581us - ScannerGetBlockTime: 48.989ms - ScannerInitTime: 49.457us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 744ns - BlockConditionsFilteredBloomFilterTime: 1.265us - BlockConditionsFilteredDictTime: 6.110us - BlockConditionsFilteredTime: 36.2us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.110us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 51.549us - BlockLoadTime: 60.40ms - BlocksLoad: 217 - CachedPagesNum: 258 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 4.270ms - FirstReadSeekCount: 216 - FirstReadSeekTime: 79.450us - FirstReadTime: 15.384ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.35us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 37.926ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 568.144us - OutputIndexResultColumnTimer: 13.668us - 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: 6.721ms - ShortPredEvalTime: 10.229us - TotalPagesNum: 258 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 808.838us PipelineXTask (index=4):(Active: 597.419us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 227.384us - CloseTime: 88.906us - GetBlockTime: 79.299us - OpenTime: 107.849us - PrepareTime: 163.246us - SinkTime: 14.19us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 496.413us - WaitBfTime: 886.753ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 164.138ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 15.29us - InputRows: 143 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.465us - 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: 5.86us - BlocksProduced: 2 - CloseTime: 85.673us - ExecTime: 154.871ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 176.57us - ProcessConjunctTime: 31.340us - ProjectionTime: 227.160us - RowsProduced: 143 - RowsRead: 143 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 181.576ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 154.280ms - 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: [79.124ms, 61.997ms, ] - PerScannerRowsRead: [105, 38, ] - PerScannerWaitTime: [90.761ms, 90.814ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 140.738ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.508ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 171ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 133.442ms - ScannerCtxSchedTime: 181.572ms - ScannerFilterTime: 57.285us - ScannerGetBlockTime: 141.10ms - ScannerInitTime: 44.386us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 2.570us - BlockConditionsFilteredBloomFilterTime: 3.12us - BlockConditionsFilteredDictTime: 12.872us - BlockConditionsFilteredTime: 79.693us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.891us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 111.620us - BlockLoadTime: 132.253ms - BlocksLoad: 838 - CachedPagesNum: 345 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 19.641ms - FirstReadSeekCount: 836 - FirstReadSeekTime: 220.764us - FirstReadTime: 45.166ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.39us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 57.952ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 4.192ms - OutputIndexResultColumnTimer: 29.837us - 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: 53.579ms - ShortPredEvalTime: 22.975us - TotalPagesNum: 345 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.950ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 170.212ms, % non-child: 0.00%) - CoreChangeTimes: 23 - ExecuteTime: 170.79ms - CloseTime: 34.492us - GetBlockTime: 4.73ms - OpenTime: 2.74us - PrepareTime: 71.844us - SinkTime: 164.180ms - GetBlockCounter: 173 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 165 - NumBlockedTimes: 167 - NumScheduleTimes: 167 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 169.610ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 243.538ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 178.147us - BuildRows: 708.299K (708299) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 94.712ms - BuildTableInsertTime: 46.6ms - BuildTableTime: 46.724ms - CloseTime: 0ns - ExecTime: 164.58ms - InputRows: 708.298K (708298) - MemoryUsage: - BuildBlocks: 56.72 MB - BuildKeyArena: 32.00 MB - HashTable: 6.70 MB - PeakMemoryUsage: 95.42 MB - OpenTime: 18.586us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.757us - RuntimeFilterComputeTime: 21.864ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=50): - BlocksProduced: 301 - BytesReceived: 28.79 MB - CloseTime: 29.683us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 22.12ms - ExecTime: 3.934ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 42.64 MB - MemoryUsage: - Blocks: 2.87 MB - PeakMemoryUsage: 552.00 KB - OpenTime: 19.554us - ProjectionTime: 0ns - RowsProduced: 708.298K (708298) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 11s502ms PipelineXTask (index=5):(Active: 195.943us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 120.827us - CloseTime: 9.48us - GetBlockTime: 0ns - OpenTime: 2.58us - PrepareTime: 59.386us - SinkTime: 67.681us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 180.58us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.280ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc828a - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 86.450us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.626us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11s913ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.367us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.780us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.796us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 1.798ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.589ms - CloseTime: 27.611us - GetBlockTime: 1.109ms - OpenTime: 4.68us - PrepareTime: 170.708us - SinkTime: 439.237us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.762ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 130.748ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.73 KB - CloseTime: 12.640us - CompressTime: 0ns - ExecTime: 559.54us - InputRows: 396 - LocalBytesSent: 30.42 KB - LocalSendTime: 56.439us - LocalSentRows: 335 - MemoryUsage: - PeakMemoryUsage: 55.88 KB - MergeBlockTime: 0ns - OpenTime: 109.918us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 22.523ms - RowsProduced: 396 - RpcAvgTime: 2.185ms - RpcCount: 2 - RpcMaxTime: 2.258ms - RpcMinTime: 2.112ms - RpcSumTime: 4.370ms - SerializeBatchTime: 29.664us - SplitBlockDistributeByChannelTime: 142.564us - SplitBlockHashComputeTime: 25.689us - UncompressedRowBatchSize: 5.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 9 - BuildOutputBlock: 0ns - CloseTime: 10.622us - ExecTime: 1.99ms - InitProbeSideTime: 156.553us - JoinFilterTimer: 862ns - MemoryUsage: - PeakMemoryUsage: 68.00 KB - ProbeKeyArena: 68.00 KB - OpenTime: 18.644us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.592us - ProbeFindNextTime: 0ns - ProbeRows: 3.026K (3026) - ProbeTime: 997.685us - ProbeWhenBuildSideOutputTime: 332.250us - ProbeWhenProbeSideOutputTime: 22.825us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 399.677us - ProjectionTime: 54.752us - RowsProduced: 396 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s723ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 30.454us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 668.00 KB - OpenTime: 878ns - ProjectionTime: 0ns - RowsProduced: 3.026K (3026) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s301ms PipelineXTask (index=3):(Active: 2.696ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 2.567ms - CloseTime: 24.197us - GetBlockTime: 1.791ms - OpenTime: 2.466us - PrepareTime: 98.713us - SinkTime: 725.252us - GetBlockCounter: 11 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 2.664ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.413ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.20 KB - CloseTime: 11.510us - CompressTime: 0ns - ExecTime: 789.469us - InputRows: 503 - LocalBytesSent: 38.41 KB - LocalSendTime: 90.571us - LocalSentRows: 423 - MemoryUsage: - PeakMemoryUsage: 73.75 KB - MergeBlockTime: 0ns - OpenTime: 56.956us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 32.950ms - RowsProduced: 503 - RpcAvgTime: 8.544ms - RpcCount: 2 - RpcMaxTime: 8.800ms - RpcMinTime: 8.287ms - RpcSumTime: 17.88ms - SerializeBatchTime: 49.450us - SplitBlockDistributeByChannelTime: 275.978us - SplitBlockHashComputeTime: 55.276us - UncompressedRowBatchSize: 7.60 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 10 - BuildOutputBlock: 0ns - CloseTime: 10.141us - ExecTime: 1.759ms - InitProbeSideTime: 264.778us - JoinFilterTimer: 1.506us - MemoryUsage: - PeakMemoryUsage: 76.00 KB - ProbeKeyArena: 76.00 KB - OpenTime: 9.982us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 2.400us - ProbeFindNextTime: 0ns - ProbeRows: 3.376K (3376) - ProbeTime: 1.616ms - ProbeWhenBuildSideOutputTime: 447.741us - ProbeWhenProbeSideOutputTime: 47.221us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 696.524us - ProjectionTime: 94.545us - RowsProduced: 503 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s725ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 36.495us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 668.00 KB - OpenTime: 1.446us - ProjectionTime: 0ns - RowsProduced: 3.376K (3376) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s301ms PipelineXTask (index=6):(Active: 951.268us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 782.226us - CloseTime: 46.297us - GetBlockTime: 384.331us - OpenTime: 3.240us - PrepareTime: 114.831us - SinkTime: 362.466us - GetBlockCounter: 5 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 897.800us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.992ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 779.00 B - CloseTime: 18.771us - CompressTime: 0ns - ExecTime: 446.262us - InputRows: 48 - LocalBytesSent: 3.72 KB - LocalSendTime: 81.803us - LocalSentRows: 41 - MemoryUsage: - PeakMemoryUsage: 10.19 KB - MergeBlockTime: 0ns - OpenTime: 66.188us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.330ms - RowsProduced: 48 - RpcAvgTime: 4.40ms - RpcCount: 2 - RpcMaxTime: 4.56ms - RpcMinTime: 4.25ms - RpcSumTime: 8.81ms - SerializeBatchTime: 13.783us - SplitBlockDistributeByChannelTime: 49.823us - SplitBlockHashComputeTime: 10.906us - UncompressedRowBatchSize: 747.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 24.132us - ExecTime: 388.696us - InitProbeSideTime: 63.433us - JoinFilterTimer: 474ns - MemoryUsage: - PeakMemoryUsage: 12.00 KB - ProbeKeyArena: 12.00 KB - OpenTime: 14.989us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 1.641us - ProbeFindNextTime: 0ns - ProbeRows: 469 - ProbeTime: 306.108us - ProbeWhenBuildSideOutputTime: 69.744us - ProbeWhenProbeSideOutputTime: 15.866us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 87.695us - ProjectionTime: 32.193us - RowsProduced: 48 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s694ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 4 - CloseTime: 0ns - ExecTime: 30.202us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 244.00 KB - OpenTime: 672ns - ProjectionTime: 0ns - RowsProduced: 469 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s395ms PipelineXTask (index=9):(Active: 384.152us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 227.910us - CloseTime: 27.771us - GetBlockTime: 12.920us - OpenTime: 3.414us - PrepareTime: 120.668us - SinkTime: 195.357us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 350.274us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.471ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.244us - CompressTime: 0ns - ExecTime: 287.63us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 27.668us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 82.100us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.61ms - RowsProduced: 0 - RpcAvgTime: 4.701ms - RpcCount: 2 - RpcMaxTime: 4.737ms - RpcMinTime: 4.665ms - RpcSumTime: 9.402ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 300ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 11.853us - ExecTime: 39.494us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.329us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 2.488us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.663us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s691ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.668us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 633ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s462ms PipelineXTask (index=12):(Active: 482.126us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 329.64us - CloseTime: 22.157us - GetBlockTime: 34.23us - OpenTime: 3.584us - PrepareTime: 106.653us - SinkTime: 271.975us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 435.874us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.446ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 14.136us - CompressTime: 0ns - ExecTime: 343.687us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 59.70us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 58.15us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.320ms - RowsProduced: 0 - RpcAvgTime: 2.967ms - RpcCount: 2 - RpcMaxTime: 3.12ms - RpcMinTime: 2.923ms - RpcSumTime: 5.935ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 315ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.705us - ExecTime: 52.457us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 16.720us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 15.895us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 13.370us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s698ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.386us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 967ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s462ms PipelineXTask (index=15):(Active: 561.626us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 391.488us - CloseTime: 33.118us - GetBlockTime: 32.815us - OpenTime: 6.907us - PrepareTime: 124.597us - SinkTime: 321.554us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 519.601us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.646ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 20.840us - CompressTime: 0ns - ExecTime: 400.773us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 61.252us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 58.619us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.553ms - RowsProduced: 0 - RpcAvgTime: 6.51ms - RpcCount: 2 - RpcMaxTime: 6.114ms - RpcMinTime: 5.987ms - RpcSumTime: 12.102ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 345ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 6.253us - ExecTime: 49.674us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 15.647us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 6.56us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 16.704us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s683ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.953us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 733ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s466ms PipelineXTask (index=18):(Active: 384.630us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 209.949us - CloseTime: 26.483us - GetBlockTime: 16.102us - OpenTime: 3.460us - PrepareTime: 139.747us - SinkTime: 174.975us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 351.604us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.656ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 18.339us - CompressTime: 0ns - ExecTime: 272.478us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.301us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 79.430us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.302ms - RowsProduced: 0 - RpcAvgTime: 4.829ms - RpcCount: 2 - RpcMaxTime: 4.857ms - RpcMinTime: 4.800ms - RpcSumTime: 9.658ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 417ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.513us - ExecTime: 44.201us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 27.660us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.991us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 6.624us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s687ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.353us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 750ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s464ms PipelineXTask (index=21):(Active: 359.574us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 226.457us - CloseTime: 18.313us - GetBlockTime: 16.701us - OpenTime: 3.853us - PrepareTime: 105.401us - SinkTime: 186.691us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 333.607us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.761ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 12.543us - CompressTime: 0ns - ExecTime: 259.462us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 37.812us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 60.342us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.521ms - RowsProduced: 0 - RpcAvgTime: 5.29ms - RpcCount: 2 - RpcMaxTime: 5.63ms - RpcMinTime: 4.995ms - RpcSumTime: 10.58ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 237ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.653us - ExecTime: 28.836us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 12.589us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 3.600us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 7.701us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s688ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.631us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 630ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s466ms PipelineXTask (index=24):(Active: 494.608us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 350.668us - CloseTime: 16.758us - GetBlockTime: 25.393us - OpenTime: 4.204us - PrepareTime: 118.179us - SinkTime: 301.674us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 470.285us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.166ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 10.877us - CompressTime: 0ns - ExecTime: 383.987us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 74.351us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 71.846us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.931ms - RowsProduced: 0 - RpcAvgTime: 2.582ms - RpcCount: 2 - RpcMaxTime: 2.651ms - RpcMinTime: 2.514ms - RpcSumTime: 5.165ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 315ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.692us - ExecTime: 41.687us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 14.727us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.445us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 12.921us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s699ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 1.549us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 728ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s466ms PipelineXTask (index=27):(Active: 458.281us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 311.742us - CloseTime: 26.520us - GetBlockTime: 26.837us - OpenTime: 3.545us - PrepareTime: 111.287us - SinkTime: 260.987us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 423.763us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.326ms DATA_STREAM_SINK_OPERATOR (id=53,dst_id=53): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 9.739us - CompressTime: 0ns - ExecTime: 329.236us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 60.79us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 58.782us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.363ms - RowsProduced: 0 - RpcAvgTime: 5.882ms - RpcCount: 2 - RpcMaxTime: 5.928ms - RpcMinTime: 5.837ms - RpcSumTime: 11.765ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 247ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 14.832us - ExecTime: 51.922us - InitProbeSideTime: 0ns - JoinFilterTimer: 0ns - MemoryUsage: - PeakMemoryUsage: 0.00 - ProbeKeyArena: 0.00 - OpenTime: 13.10us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 0ns - ProbeFindNextTime: 0ns - ProbeRows: 0 - ProbeTime: 8.128us - ProbeWhenBuildSideOutputTime: 0ns - ProbeWhenProbeSideOutputTime: 0ns - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 0ns - ProjectionTime: 14.353us - RowsProduced: 0 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s683ms LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 0 - CloseTime: 0ns - ExecTime: 2.57us - GetBlockFailedTime: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 640ns - ProjectionTime: 0ns - RowsProduced: 0 - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 1s466ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 594.305us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 245.852us - CloseTime: 98.233us - GetBlockTime: 94.455us - OpenTime: 72.526us - PrepareTime: 171.233us - SinkTime: 54.778us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 486.533us - WaitBfTime: 951.620ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 265.102ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 54.249us - InputRows: 303 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.213us - 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: 3.160us - BlocksProduced: 3 - CloseTime: 96.618us - ExecTime: 183.241ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 168.140us - ProcessConjunctTime: 17.50us - ProjectionTime: 779.205us - RowsProduced: 303 - RowsRead: 303 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 272.236ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 182.56ms - 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: [83.127ms, 313.854ms, 26.961ms, ] - PerScannerRowsRead: [71, 154, 78, ] - PerScannerWaitTime: [87.719ms, 91.790ms, 92.726ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 423.44ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 8.522ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 378ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 216.244ms - ScannerCtxSchedTime: 272.231ms - ScannerFilterTime: 180.989us - ScannerGetBlockTime: 423.631ms - ScannerInitTime: 29.312us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 12.343us - BlockConditionsFilteredBloomFilterTime: 6.793us - BlockConditionsFilteredDictTime: 21.85us - BlockConditionsFilteredTime: 236.67us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 42.586us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 363.399us - BlockLoadTime: 430.540ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 502 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 73.654ms - FirstReadSeekCount: 1.183K (1183) - FirstReadSeekTime: 1.376ms - FirstReadTime: 229.25ms - IOTimer: 0ns - InvertedIndexFilterTime: 14.493us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 110.185ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 7.296ms - OutputIndexResultColumnTimer: 73.179us - 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: 102.903ms - ShortPredEvalTime: 57.79us - TotalPagesNum: 502 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.954ms PipelineXTask (index=4):(Active: 570.985us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 224.702us - CloseTime: 89.464us - GetBlockTime: 93.409us - OpenTime: 67.481us - PrepareTime: 182.528us - SinkTime: 30.67us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 6 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 469.613us - WaitBfTime: 951.665ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 289.902ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 28.771us - InputRows: 273 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.146us - 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: 2.470us - BlocksProduced: 3 - CloseTime: 86.666us - ExecTime: 174.902ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 188.585us - ProcessConjunctTime: 17.194us - ProjectionTime: 598.543us - RowsProduced: 273 - RowsRead: 273 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 286.583ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 173.913ms - 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: [265.887ms, 245.455ms, 12.584ms, ] - PerScannerRowsRead: [42, 192, 39, ] - PerScannerWaitTime: [92.857ms, 93.410ms, 100.315ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 523.158ms - MemoryUsage: - FreeBlocks: 244.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 62.335ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 313ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 191.846ms - ScannerCtxSchedTime: 286.578ms - ScannerFilterTime: 131.113us - ScannerGetBlockTime: 523.672ms - ScannerInitTime: 29.922us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 4.131us - BlockConditionsFilteredBloomFilterTime: 6.208us - BlockConditionsFilteredDictTime: 19.323us - BlockConditionsFilteredTime: 140.41us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 40.193us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 201.898us - BlockLoadTime: 584.635ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 481 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 155.538ms - FirstReadSeekCount: 1.182K (1182) - FirstReadSeekTime: 428.213us - FirstReadTime: 162.241ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.974us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 251.253ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 6.633ms - OutputIndexResultColumnTimer: 57.992us - 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: 213.502ms - ShortPredEvalTime: 60.86us - TotalPagesNum: 481 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.451ms PipelineXTask (index=7):(Active: 700.369us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 239.470us - CloseTime: 93.484us - GetBlockTime: 73.663us - OpenTime: 141.765us - PrepareTime: 217.554us - SinkTime: 5.355us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 598.36us - WaitBfTime: 948.364ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 225.784ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 5.823us - InputRows: 248 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.195us - 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: 13.69us - BlocksProduced: 2 - CloseTime: 89.706us - ExecTime: 130.693ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 302.683us - ProcessConjunctTime: 30.212us - ProjectionTime: 521.619us - RowsProduced: 248 - RowsRead: 248 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 149.989ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 129.683ms - 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: [230.380ms, 51.387ms, ] - PerScannerRowsRead: [154, 94, ] - PerScannerWaitTime: [74.620ms, 75.368ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 279.122ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.747ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 195ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 136.16ms - ScannerCtxSchedTime: 149.986ms - ScannerFilterTime: 135.989us - ScannerGetBlockTime: 281.530ms - ScannerInitTime: 80.575us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 4.71us - BlockConditionsFilteredBloomFilterTime: 7.541us - BlockConditionsFilteredDictTime: 32.134us - BlockConditionsFilteredTime: 161.433us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 32.211us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 234.564us - BlockLoadTime: 283.811ms - BlocksLoad: 863 - CachedPagesNum: 191 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 28.453ms - FirstReadSeekCount: 856 - FirstReadSeekTime: 439.887us - FirstReadTime: 78.911ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.312us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 123.411ms - NumSegmentFiltered: 0 - NumSegmentTotal: 6 - OutputColumnTime: 45.986ms - OutputIndexResultColumnTimer: 40.582us - 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: 114.812ms - ShortPredEvalTime: 31.318us - TotalPagesNum: 191 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.550ms PipelineXTask (index=10):(Active: 580.132us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 235.362us - CloseTime: 84.374us - GetBlockTime: 89.239us - OpenTime: 115.160us - PrepareTime: 137.160us - SinkTime: 9.74us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 485.852us - WaitBfTime: 950.611ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 227.308ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.993us - InputRows: 240 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.66us - 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.612us - BlocksProduced: 2 - CloseTime: 79.974us - ExecTime: 173.747ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 194.170us - ProcessConjunctTime: 29.220us - ProjectionTime: 634.526us - RowsProduced: 240 - RowsRead: 240 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 205.318ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 172.726ms - 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: [266.805ms, 67.792ms, ] - PerScannerRowsRead: [156, 84, ] - PerScannerWaitTime: [102.210ms, 103.108ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 331.356ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.582ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 191ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 148.910ms - ScannerCtxSchedTime: 205.315ms - ScannerFilterTime: 173.584us - ScannerGetBlockTime: 334.313ms - ScannerInitTime: 65.480us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 3.861us - BlockConditionsFilteredBloomFilterTime: 7.399us - BlockConditionsFilteredDictTime: 34.541us - BlockConditionsFilteredTime: 149.969us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.291us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 231.577us - BlockLoadTime: 335.331ms - BlocksLoad: 861 - CachedPagesNum: 187 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 96.159ms - FirstReadSeekCount: 856 - FirstReadSeekTime: 479.119us - FirstReadTime: 52.861ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.42us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 154.523ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 3.181ms - OutputIndexResultColumnTimer: 56.257us - 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: 134.915ms - ShortPredEvalTime: 42.660us - TotalPagesNum: 187 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.375ms PipelineXTask (index=13):(Active: 524.472us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 210.887us - CloseTime: 35.498us - GetBlockTime: 88.380us - OpenTime: 80.1us - PrepareTime: 189.424us - SinkTime: 14.589us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 478.389us - WaitBfTime: 951.719ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 45.321ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 15.382us - InputRows: 562 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.186us - 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: 2.461us - BlocksProduced: 2 - CloseTime: 32.384us - ExecTime: 464.558ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 204.529us - ProcessConjunctTime: 27.569us - ProjectionTime: 924.641us - RowsProduced: 562 - RowsRead: 562 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 100.903ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 463.229ms - 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: [358.404ms, ] - PerScannerRowsRead: [562, ] - PerScannerWaitTime: [100.903ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 357.432ms - MemoryUsage: - FreeBlocks: 124.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.571ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 399ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 89.17ms - ScannerCtxSchedTime: 100.901ms - ScannerFilterTime: 218.362us - ScannerGetBlockTime: 358.35ms - ScannerInitTime: 30.932us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.447us - BlockConditionsFilteredBloomFilterTime: 1.691us - BlockConditionsFilteredDictTime: 7.56us - BlockConditionsFilteredTime: 46.824us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 11.361us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 73.401us - BlockLoadTime: 358.622ms - BlocksLoad: 558 - CachedPagesNum: 384 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 56.466ms - FirstReadSeekCount: 557 - FirstReadSeekTime: 145.493us - FirstReadTime: 190.831ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.340us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 87.825ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.10ms - OutputIndexResultColumnTimer: 43.780us - 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: 44.352ms - ShortPredEvalTime: 32.34us - TotalPagesNum: 384 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.209ms PipelineXTask (index=16):(Active: 423.532us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 176.322us - CloseTime: 43.460us - GetBlockTime: 65.923us - OpenTime: 71.638us - PrepareTime: 126.321us - SinkTime: 15.781us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 372.546us - WaitBfTime: 951.799ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 250.147ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.290us - InputRows: 563 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.5us - 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: 2.463us - BlocksProduced: 2 - CloseTime: 40.525us - ExecTime: 237.743ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 151.266us - ProcessConjunctTime: 20.949us - ProjectionTime: 849.677us - RowsProduced: 563 - RowsRead: 563 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 101.928ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 236.596ms - 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: [118.363ms, ] - PerScannerRowsRead: [563, ] - PerScannerWaitTime: [101.928ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 117.433ms - MemoryUsage: - FreeBlocks: 124.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.83ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 278ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 97.412ms - ScannerCtxSchedTime: 101.925ms - ScannerFilterTime: 210.227us - ScannerGetBlockTime: 118.12ms - ScannerInitTime: 32.888us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 1.379us - BlockConditionsFilteredBloomFilterTime: 1.823us - BlockConditionsFilteredDictTime: 7.20us - BlockConditionsFilteredTime: 50.627us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 9.259us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 74.598us - BlockLoadTime: 118.99ms - BlocksLoad: 558 - CachedPagesNum: 375 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 12.974ms - FirstReadSeekCount: 557 - FirstReadSeekTime: 118.410us - FirstReadTime: 55.171ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.507us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 42.491ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.227ms - OutputIndexResultColumnTimer: 44.67us - 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: 29.478ms - ShortPredEvalTime: 32.502us - TotalPagesNum: 375 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.423ms PipelineXTask (index=19):(Active: 769.899us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 355.809us - CloseTime: 39.426us - GetBlockTime: 110.662us - OpenTime: 193.102us - PrepareTime: 173.466us - SinkTime: 16.562us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 718.419us - WaitBfTime: 951.886ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 280.822ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 19.771us - InputRows: 4.235K (4235) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 5.243us - 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: 2.948us - BlocksProduced: 2 - CloseTime: 36.631us - ExecTime: 178.113ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 299.123us - ProcessConjunctTime: 68.324us - ProjectionTime: 13.687ms - RowsProduced: 4.235K (4235) - RowsRead: 4.235K (4235) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 74.918ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 163.955ms - 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: [64.504ms, ] - PerScannerRowsRead: [4.24K, ] - PerScannerWaitTime: [74.918ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 63.777ms - MemoryUsage: - FreeBlocks: 180.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 863.540us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 319ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 54.595ms - ScannerCtxSchedTime: 74.913ms - ScannerFilterTime: 167.287us - ScannerGetBlockTime: 64.239ms - ScannerInitTime: 91.770us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 799ns - BlockConditionsFilteredBloomFilterTime: 2.456us - BlockConditionsFilteredDictTime: 8.274us - BlockConditionsFilteredTime: 32.694us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.491us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 43.483us - BlockLoadTime: 64.304ms - BlocksLoad: 217 - CachedPagesNum: 255 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 18.185ms - FirstReadSeekCount: 216 - FirstReadSeekTime: 62.909us - FirstReadTime: 11.786ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.357us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 31.294ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 816.228us - OutputIndexResultColumnTimer: 16.941us - 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: 9.373ms - ShortPredEvalTime: 13.897us - TotalPagesNum: 255 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 946.746us PipelineXTask (index=22):(Active: 499.469us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 189.338us - CloseTime: 57.873us - GetBlockTime: 72.271us - OpenTime: 85.764us - PrepareTime: 159.536us - SinkTime: 8.989us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 431.193us - WaitBfTime: 952.918ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 167.611ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 9.566us - InputRows: 141 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.449us - 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: 3.3us - BlocksProduced: 2 - CloseTime: 55.967us - ExecTime: 230.242ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 185.240us - ProcessConjunctTime: 24.588us - ProjectionTime: 477.251us - RowsProduced: 141 - RowsRead: 141 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 169.369ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 229.434ms - 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.931ms, 281.943ms, ] - PerScannerRowsRead: [107, 34, ] - PerScannerWaitTime: [83.260ms, 86.109ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 424.293ms - MemoryUsage: - FreeBlocks: 240.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.671ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 156ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 222.401ms - ScannerCtxSchedTime: 169.366ms - ScannerFilterTime: 103.909us - ScannerGetBlockTime: 424.685ms - ScannerInitTime: 37.627us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 3.269us - BlockConditionsFilteredBloomFilterTime: 4.240us - BlockConditionsFilteredDictTime: 15.619us - BlockConditionsFilteredTime: 122.625us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 31.617us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 182.299us - BlockLoadTime: 429.157ms - BlocksLoad: 838 - CachedPagesNum: 344 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 33.153ms - FirstReadSeekCount: 836 - FirstReadSeekTime: 320.3us - FirstReadTime: 229.832ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.704us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 150.619ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 6.914ms - OutputIndexResultColumnTimer: 65.563us - 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: 144.629ms - ShortPredEvalTime: 55.912us - TotalPagesNum: 344 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 4.52ms PipelineXTask (index=25):(Active: 875.293us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 386.543us - CloseTime: 101.85us - GetBlockTime: 83.361us - OpenTime: 197.959us - PrepareTime: 182.709us - SinkTime: 31.982us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 764.187us - WaitBfTime: 948.803ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 323.206ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 31.816us - 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.609us - BlocksProduced: 3 - CloseTime: 97.696us - ExecTime: 195.448ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 305.371us - ProcessConjunctTime: 63.962us - ProjectionTime: 439.458us - RowsProduced: 149 - RowsRead: 149 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 234.980ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.501ms - 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: [125.129ms, 116.467ms, 112.521ms, ] - PerScannerRowsRead: [56, 67, 26, ] - PerScannerWaitTime: [77.292ms, 78.468ms, 79.219ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 350.178ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 9.901ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 208ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 307.915ms - ScannerCtxSchedTime: 234.975ms - ScannerFilterTime: 100.277us - ScannerGetBlockTime: 353.933ms - ScannerInitTime: 101.467us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 6.366us - BlockConditionsFilteredBloomFilterTime: 9.375us - BlockConditionsFilteredDictTime: 31.175us - BlockConditionsFilteredTime: 214.119us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.183us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 304.234us - BlockLoadTime: 361.956ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 554 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 64.148ms - FirstReadSeekCount: 1.227K (1227) - FirstReadSeekTime: 532.56us - FirstReadTime: 133.995ms - IOTimer: 0ns - InvertedIndexFilterTime: 17.623us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 129.725ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 22.505ms - OutputIndexResultColumnTimer: 94.116us - 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: 122.397ms - ShortPredEvalTime: 81.419us - TotalPagesNum: 554 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 5.673ms PipelineXTask (index=28):(Active: 641.131us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 243.681us - CloseTime: 127.182us - GetBlockTime: 108.559us - OpenTime: 90.587us - PrepareTime: 171.238us - SinkTime: 11.842us - GetBlockCounter: 3 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 501.711us - WaitBfTime: 949.944ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 270.270ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 11.922us - InputRows: 157 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.157us - 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: 5.386us - BlocksProduced: 3 - CloseTime: 125.306us - ExecTime: 180.535ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 166.993us - ProcessConjunctTime: 15.935us - ProjectionTime: 575.480us - RowsProduced: 157 - RowsRead: 157 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 316.468ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 179.528ms - 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: [253.712ms, 231.594ms, 50.219ms, ] - PerScannerRowsRead: [67, 63, 27, ] - PerScannerWaitTime: [103.742ms, 104.051ms, 108.674ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 526.66ms - MemoryUsage: - FreeBlocks: 360.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 21.516ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 408ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 303.810ms - ScannerCtxSchedTime: 316.460ms - ScannerFilterTime: 112.365us - ScannerGetBlockTime: 535.318ms - ScannerInitTime: 52.390us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 3 SegmentIterator: - BitmapIndexFilterTimer: 6.340us - BlockConditionsFilteredBloomFilterTime: 20.481us - BlockConditionsFilteredDictTime: 52.308us - BlockConditionsFilteredTime: 265.791us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 61.711us - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 365.387us - BlockLoadTime: 554.688ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 562 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 96.921ms - FirstReadSeekCount: 1.228K (1228) - FirstReadSeekTime: 606.732us - FirstReadTime: 166.171ms - IOTimer: 0ns - InvertedIndexFilterTime: 22.762us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 193.150ms - NumSegmentFiltered: 0 - NumSegmentTotal: 8 - OutputColumnTime: 11.329ms - OutputIndexResultColumnTimer: 78.318us - 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: 231.301ms - ShortPredEvalTime: 61.233us - TotalPagesNum: 562 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 6.153ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 172.282ms, % non-child: 0.00%) - CoreChangeTimes: 34 - ExecuteTime: 172.179ms - CloseTime: 17.405us - GetBlockTime: 3.618ms - OpenTime: 1.611us - PrepareTime: 55.954us - SinkTime: 167.55ms - GetBlockCounter: 173 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 151 - NumBlockedTimes: 153 - NumScheduleTimes: 153 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 170.416ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 95.75ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 215.480us - BuildRows: 708.299K (708299) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 76.914ms - BuildTableInsertTime: 69.126ms - BuildTableTime: 69.669ms - CloseTime: 0ns - ExecTime: 166.958ms - InputRows: 708.298K (708298) - MemoryUsage: - BuildBlocks: 56.72 MB - BuildKeyArena: 32.00 MB - HashTable: 6.70 MB - PeakMemoryUsage: 95.42 MB - OpenTime: 19.519us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.525us - RuntimeFilterComputeTime: 19.722ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=50): - BlocksProduced: 215 - BytesReceived: 9.60 MB - CloseTime: 13.718us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.652ms - ExecTime: 3.425ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 129.76 MB - MemoryUsage: - Blocks: 3.21 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.243us - ProjectionTime: 0ns - RowsProduced: 708.298K (708298) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s884ms PipelineXTask (index=5):(Active: 138.450us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 59.161us - CloseTime: 9.730us - GetBlockTime: 0ns - OpenTime: 1.248us - PrepareTime: 64.433us - SinkTime: 44.662us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 122.115us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.678ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 60.987us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.682us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s149ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.480us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 36.67us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 28.8us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 142.852us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 64.872us - CloseTime: 5.143us - GetBlockTime: 0ns - OpenTime: 2.371us - PrepareTime: 66.406us - SinkTime: 51.48us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 132.44us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.817ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 70.976us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.359us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s147ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.734us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.842us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.392us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 151.138us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 73.586us - CloseTime: 15.438us - GetBlockTime: 0ns - OpenTime: 2.491us - PrepareTime: 55.524us - SinkTime: 56.699us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 129.691us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.468ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 70.87us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.696us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s151ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 12.214us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 32.62us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.958us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 217.188us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 101.949us - CloseTime: 13.667us - GetBlockTime: 0ns - OpenTime: 1.800us - PrepareTime: 95.832us - SinkTime: 86.901us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 197.224us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.990ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 107.640us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.239us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s147ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.287us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 52.283us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 41.258us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 263.396us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 202.581us - CloseTime: 7.681us - GetBlockTime: 0ns - OpenTime: 1.501us - PrepareTime: 48.121us - SinkTime: 190.458us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.536us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.650ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 205.675us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.572us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s147ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.547us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.44us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.937us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 126.898us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 47.816us - CloseTime: 6.713us - GetBlockTime: 0ns - OpenTime: 2.598us - PrepareTime: 64.968us - SinkTime: 31.692us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.402ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 49.984us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.702us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s147ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.836us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.352us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.769us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=23):(Active: 127.251us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 48.718us - CloseTime: 5.393us - GetBlockTime: 0ns - OpenTime: 1.723us - PrepareTime: 67.250us - SinkTime: 34.710us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 116.126us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.554ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.535us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.961us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s151ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.87us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.888us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.108us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 123.640us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 52.882us - CloseTime: 8.520us - GetBlockTime: 0ns - OpenTime: 1.853us - PrepareTime: 56.688us - SinkTime: 37.754us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 109.406us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.417ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 56.705us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.415us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s147ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.913us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.143us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.561us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=29):(Active: 102.822us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 38.913us - CloseTime: 5.8us - GetBlockTime: 0ns - OpenTime: 1.699us - PrepareTime: 53.841us - SinkTime: 26.480us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 92.883us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.650ms HASH_JOIN_SINK_OPERATOR (id=52): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8280 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.458us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.968us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 17s150ms EXCHANGE_OPERATOR (id=50): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.901us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.488us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.945us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 133: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 284.17ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 283.486ms - CloseTime: 77.128us - GetBlockTime: 241.661ms - OpenTime: 63.874us - PrepareTime: 380.609us - SinkTime: 41.28ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 283.808ms - WaitBfTime: 949.771ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 216.475ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 87 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.10 MB - CloseTime: 17.197us - CompressTime: 0ns - ExecTime: 40.919ms - InputRows: 176.388K (176388) - LocalBytesSent: 14.13 MB - LocalSendTime: 4.83ms - LocalSentRows: 176.388K (176388) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 3.276ms - OpenTime: 43.188us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 795.559ms - RowsProduced: 176.388K (176388) - RpcAvgTime: 23.755ms - RpcCount: 43 - RpcMaxTime: 1s21ms - RpcMinTime: 1s21ms - RpcSumTime: 1s21ms - SerializeBatchTime: 32.38ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 28.64 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 15.435us - ExecTime: 239.439ms - InitProbeSideTime: 53.524ms - JoinFilterTimer: 54.608us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 17.636us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 70.799us - ProbeFindNextTime: 0ns - ProbeRows: 2.082107M (2082107) - ProbeTime: 235.291ms - ProbeWhenBuildSideOutputTime: 12.143ms - ProbeWhenProbeSideOutputTime: 10.993ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 153.767ms - ProjectionTime: 2.665ms - RowsProduced: 176.388K (176388) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s72ms 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: 2.905us - BlocksProduced: 514 - CloseTime: 41.142us - ExecTime: 211.988ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 306.838us - ProcessConjunctTime: 12.841us - ProjectionTime: 0ns - RowsProduced: 2.082107M (2082107) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 88.385ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 209.878ms - 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: [125.961ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [88.385ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 104.85ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.777ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 20.973us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 89.350ms - ScannerCtxSchedTime: 88.375ms - ScannerFilterTime: 20.94ms - ScannerGetBlockTime: 105.655ms - ScannerInitTime: 27.897us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.307us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.738us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 16.904us - BlockInitTime: 127.947us - BlockLoadTime: 106.175ms - BlocksLoad: 516 - CachedPagesNum: 2.109K (2109) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.796ms - FirstReadTime: 104.343ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.903us - 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: 105.170us - OutputIndexResultColumnTimer: 53.211us - 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: 309.970ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 309.402ms - CloseTime: 119.881us - GetBlockTime: 265.19ms - OpenTime: 197.195us - PrepareTime: 230.980us - SinkTime: 43.392ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 308.723ms - WaitBfTime: 948.460ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 232.859ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 87 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.26 MB - CloseTime: 17.867us - CompressTime: 0ns - ExecTime: 43.251ms - InputRows: 177.744K (177744) - LocalBytesSent: 14.23 MB - LocalSendTime: 4.81ms - LocalSentRows: 177.744K (177744) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 3.94ms - OpenTime: 37.340us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 769.86ms - RowsProduced: 177.744K (177744) - RpcAvgTime: 24.407ms - RpcCount: 43 - RpcMaxTime: 1s49ms - RpcMinTime: 1s49ms - RpcSumTime: 1s49ms - SerializeBatchTime: 34.212ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 28.85 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 515 - BuildOutputBlock: 0ns - CloseTime: 17.600us - ExecTime: 262.766ms - InitProbeSideTime: 59.101ms - JoinFilterTimer: 73.940us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 17.728us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 90.19us - ProbeFindNextTime: 0ns - ProbeRows: 2.086985M (2086985) - ProbeTime: 258.378ms - ProbeWhenBuildSideOutputTime: 13.638ms - ProbeWhenProbeSideOutputTime: 12.76ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 168.107ms - ProjectionTime: 2.921ms - RowsProduced: 177.744K (177744) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s60ms 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: 3.322us - BlocksProduced: 515 - CloseTime: 79.584us - ExecTime: 196.98ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 288.76us - ProcessConjunctTime: 70.742us - ProjectionTime: 0ns - RowsProduced: 2.086985M (2086985) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 82.813ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 193.971ms - 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: [101.985ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [82.813ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 69.769ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 14.138ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 22.175us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 97.11ms - ScannerCtxSchedTime: 82.792ms - ScannerFilterTime: 19.963ms - ScannerGetBlockTime: 81.791ms - ScannerInitTime: 95.880us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.187us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.560us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.273us - BlockInitTime: 124.52us - BlockLoadTime: 84.154ms - BlocksLoad: 517 - CachedPagesNum: 2.115K (2115) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.910ms - FirstReadTime: 82.199ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.704us - 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: 115.102us - OutputIndexResultColumnTimer: 60.556us - 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=4):(Active: 325.503ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 325.82ms - CloseTime: 65.885us - GetBlockTime: 273.530ms - OpenTime: 70.763us - PrepareTime: 273.135us - SinkTime: 50.450ms - GetBlockCounter: 516 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 324.323ms - WaitBfTime: 950.768ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 244.893ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 87 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.21 MB - CloseTime: 13.136us - CompressTime: 0ns - ExecTime: 50.280ms - InputRows: 177.263K (177263) - LocalBytesSent: 14.20 MB - LocalSendTime: 5.91ms - LocalSentRows: 177.263K (177263) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 3.358ms - OpenTime: 37.190us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 750.87ms - RowsProduced: 177.263K (177263) - RpcAvgTime: 24.237ms - RpcCount: 43 - RpcMaxTime: 1s42ms - RpcMinTime: 1s42ms - RpcSumTime: 1s42ms - SerializeBatchTime: 39.925ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 28.78 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 515 - BuildOutputBlock: 0ns - CloseTime: 16.111us - ExecTime: 270.973ms - InitProbeSideTime: 61.43ms - JoinFilterTimer: 74.359us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 11.860us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 76.902us - ProbeFindNextTime: 0ns - ProbeRows: 2.08686M (2086860) - ProbeTime: 266.210ms - ProbeWhenBuildSideOutputTime: 14.150ms - ProbeWhenProbeSideOutputTime: 12.7ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 173.103ms - ProjectionTime: 3.97ms - RowsProduced: 177.263K (177263) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s27ms 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: 19.180us - BlocksProduced: 515 - CloseTime: 32.933us - ExecTime: 224.458ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 224.401us - ProcessConjunctTime: 11.93us - ProjectionTime: 0ns - RowsProduced: 2.08686M (2086860) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 114.578ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 222.178ms - 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: [111.279ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [114.578ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 91.176ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.265ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.594us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 91.898ms - ScannerCtxSchedTime: 114.536ms - ScannerFilterTime: 18.375ms - ScannerGetBlockTime: 92.696ms - ScannerInitTime: 23.440us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.702us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.530us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 19.368us - BlockInitTime: 151.605us - BlockLoadTime: 92.738ms - BlocksLoad: 517 - CachedPagesNum: 2.115K (2115) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.123ms - FirstReadTime: 91.22ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.156us - 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: 92.680us - OutputIndexResultColumnTimer: 48.177us - 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.87, port:9060)): PipelineXTask (index=1):(Active: 40.702ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 40.607ms - CloseTime: 11.384us - GetBlockTime: 497.934us - OpenTime: 2.291us - PrepareTime: 71.780us - SinkTime: 39.794ms - GetBlockCounter: 43 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.451ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.475ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 24.88us - BuildRows: 177.503K (177503) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.918ms - BuildTableInsertTime: 20.9ms - BuildTableTime: 20.15ms - CloseTime: 0ns - ExecTime: 39.791ms - InputRows: 177.502K (177502) - MemoryUsage: - BuildBlocks: 8.63 MB - BuildKeyArena: 6.10 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.41 MB - OpenTime: 15.754us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 17.872us - RuntimeFilterComputeTime: 7.684ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 71 - BytesReceived: 3.82 MB - CloseTime: 9.672us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.374ms - ExecTime: 492.560us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.06 MB - MemoryUsage: - Blocks: 1.16 MB - PeakMemoryUsage: 1.16 MB - OpenTime: 21.970us - ProjectionTime: 0ns - RowsProduced: 177.502K (177502) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s313ms PipelineXTask (index=3):(Active: 50.243ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 50.161ms - CloseTime: 14.786us - GetBlockTime: 673.715us - OpenTime: 1.390us - PrepareTime: 56.622us - SinkTime: 49.126ms - GetBlockCounter: 43 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 33.887ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.51ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 29.505us - BuildRows: 178.794K (178794) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 32.638ms - BuildTableInsertTime: 11.902ms - BuildTableTime: 11.908ms - CloseTime: 0ns - ExecTime: 49.114ms - InputRows: 178.793K (178793) - MemoryUsage: - BuildBlocks: 8.70 MB - BuildKeyArena: 6.14 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.52 MB - OpenTime: 15.462us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 15.310us - RuntimeFilterComputeTime: 4.396ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 71 - BytesReceived: 3.84 MB - CloseTime: 10.543us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.986ms - ExecTime: 644.793us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.06 MB - MemoryUsage: - Blocks: 1.41 MB - PeakMemoryUsage: 1.41 MB - OpenTime: 19.109us - ProjectionTime: 0ns - RowsProduced: 178.793K (178793) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s298ms PipelineXTask (index=5):(Active: 39.565ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 39.475ms - CloseTime: 15.257us - GetBlockTime: 545.499us - OpenTime: 1.778us - PrepareTime: 64.710us - SinkTime: 38.610ms - GetBlockCounter: 43 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 37 - NumBlockedTimes: 39 - NumScheduleTimes: 39 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.451ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.979ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.703us - BuildRows: 178.363K (178363) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.623ms - BuildTableInsertTime: 17.297ms - BuildTableTime: 17.303ms - CloseTime: 0ns - ExecTime: 38.612ms - InputRows: 178.362K (178362) - MemoryUsage: - BuildBlocks: 8.67 MB - BuildKeyArena: 6.13 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.48 MB - OpenTime: 27.704us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 16.808us - RuntimeFilterComputeTime: 9.500ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 71 - BytesReceived: 3.84 MB - CloseTime: 11.834us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.142ms - ExecTime: 534.134us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.06 MB - MemoryUsage: - Blocks: 768.00 KB - PeakMemoryUsage: 768.12 KB - OpenTime: 14.411us - ProjectionTime: 0ns - RowsProduced: 178.362K (178362) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s312ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 600.563ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 599.848ms - CloseTime: 95.976us - GetBlockTime: 490.851ms - OpenTime: 346.954us - PrepareTime: 250.811us - SinkTime: 107.120ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 10 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 28 - NumScheduleTimes: 30 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 446.629ms - WaitBfTime: 572.765ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.104ms DATA_STREAM_SINK_OPERATOR (id=50,dst_id=50): - BlocksProduced: 87 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 19.19 MB - CloseTime: 24.958us - CompressTime: 0ns - ExecTime: 106.870ms - InputRows: 176.903K (176903) - LocalBytesSent: 14.17 MB - LocalSendTime: 9.859ms - LocalSentRows: 176.903K (176903) - MemoryUsage: - PeakMemoryUsage: 552.00 KB - MergeBlockTime: 4.667ms - OpenTime: 58.754us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s232ms - RowsProduced: 176.903K (176903) - RpcAvgTime: 376.866ms - RpcCount: 43 - RpcMaxTime: 16s205ms - RpcMinTime: 16s205ms - RpcSumTime: 16s205ms - SerializeBatchTime: 90.77ms - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 28.72 MB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 10s298ms - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=49): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 17.582us - ExecTime: 487.298ms - InitProbeSideTime: 74.718ms - JoinFilterTimer: 92.95us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 15.111us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 174.546us - ProbeFindNextTime: 0ns - ProbeRows: 2.086112M (2086112) - ProbeTime: 480.639ms - ProbeWhenBuildSideOutputTime: 20.407ms - ProbeWhenProbeSideOutputTime: 38.42ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 338.161ms - ProjectionTime: 4.395ms - RowsProduced: 176.903K (176903) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns 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=[wmnH-hBwAA---3cwW26G2Tsxpu7dzSVg : wonH-hBwAAzdqoDJslrs9yjk6hnhQOXg] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 149.67us - BlocksProduced: 514 - CloseTime: 48.383us - ExecTime: 279.541ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 423.500us - ProcessConjunctTime: 48.32us - ProjectionTime: 0ns - RowsProduced: 2.086112M (2086112) - RowsRead: 2.086112M (2086112) - RuntimeFilterInfo: - filter id = 21 filtered: 96 - filter id = 21 input: 207.264K (207264) - ScannerWorkerWaitTime: 114.739ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 276.373ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 20, 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 = 21, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [169.030ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [114.739ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 164.649ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.448ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 31.386us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 150.415ms - ScannerCtxSchedTime: 114.704ms - ScannerFilterTime: 459.235us - ScannerGetBlockTime: 168.304ms - ScannerInitTime: 108.424us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - RuntimeFilterInfo id 21: [type = BF, input = 207264, filtered = 96] - BitmapIndexFilterTimer: 1.664us - BlockConditionsFilteredBloomFilterTime: 2.981us - BlockConditionsFilteredDictTime: 6.183us - BlockConditionsFilteredTime: 316.163us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 282.74us - BlockInitSeekCount: 28 - BlockInitSeekTime: 482.329us - BlockInitTime: 915.726us - BlockLoadTime: 169.205ms - BlocksLoad: 516 - CachedPagesNum: 2.114K (2114) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 815.167us - FirstReadTime: 27.906ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.676us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 100.992ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 33.303ms - OutputIndexResultColumnTimer: 74.117us - RawRowsRead: 2.086208M (2086208) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 26 - RowsShortCircuitPredFiltered: 96 - RowsShortCircuitPredInput: 2.086208M (2086208) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 3.789ms - TotalPagesNum: 2.114K (2114) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 211.508us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 50.110ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 50.11ms - CloseTime: 21.134us - GetBlockTime: 558.235us - OpenTime: 3.59us - PrepareTime: 65.989us - SinkTime: 49.189ms - GetBlockCounter: 43 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 20 - NumBlockedTimes: 22 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.137ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 33.509ms HASH_JOIN_SINK_OPERATOR (id=49): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 31.55us - BuildRows: 178.047K (178047) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 33.529ms - BuildTableInsertTime: 11.683ms - BuildTableTime: 11.687ms - CloseTime: 0ns - ExecTime: 49.159ms - InputRows: 178.046K (178046) - MemoryUsage: - BuildBlocks: 8.66 MB - BuildKeyArena: 6.12 MB - HashTable: 1.68 MB - PeakMemoryUsage: 16.45 MB - OpenTime: 11.649us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 22.443us - RuntimeFilterComputeTime: 3.758ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=47): - BlocksProduced: 55 - BytesReceived: 1.57 MB - CloseTime: 10.103us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.96ms - ExecTime: 543.828us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.72 MB - MemoryUsage: - Blocks: 1.50 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.341us - ProjectionTime: 0ns - RowsProduced: 178.046K (178046) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 502.824ms Fragment 134: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 13.574ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 13.440ms - CloseTime: 29.850us - GetBlockTime: 4.479ms - OpenTime: 5.138us - PrepareTime: 92.161us - SinkTime: 8.828ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 13.522ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.980ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 384.77 KB - CloseTime: 13.384us - CompressTime: 0ns - ExecTime: 8.868ms - InputRows: 49.67K (49670) - LocalBytesSent: 1.81 MB - LocalSendTime: 137.507us - LocalSentRows: 37.239K (37239) - MemoryUsage: - PeakMemoryUsage: 3.19 MB - MergeBlockTime: 0ns - OpenTime: 39.386us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 279.387ms - RowsProduced: 49.67K (49670) - RpcAvgTime: 105.528ms - RpcCount: 3 - RpcMaxTime: 316.584ms - RpcMinTime: 316.584ms - RpcSumTime: 316.584ms - SerializeBatchTime: 1.950ms - SplitBlockDistributeByChannelTime: 3.668ms - SplitBlockHashComputeTime: 2.69ms - UncompressedRowBatchSize: 627.51 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 11.990us - ExecTime: 4.380ms - InitProbeSideTime: 1.72ms - JoinFilterTimer: 3.509us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.665us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.68us - ProbeFindNextTime: 0ns - ProbeRows: 49.67K (49670) - ProbeTime: 3.773ms - ProbeWhenBuildSideOutputTime: 92.437us - ProbeWhenProbeSideOutputTime: 903.698us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.338ms - ProjectionTime: 514.518us - RowsProduced: 49.67K (49670) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 15 - CloseTime: 0ns - ExecTime: 76.104us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 784ns - ProjectionTime: 0ns - RowsProduced: 49.67K (49670) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 143.641ms PipelineXTask (index=3):(Active: 11.279ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 11.133ms - CloseTime: 47.11us - GetBlockTime: 3.762ms - OpenTime: 5.352us - PrepareTime: 87.364us - SinkTime: 7.262ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 11.209ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.667ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 373.13 KB - CloseTime: 11.955us - CompressTime: 0ns - ExecTime: 7.304ms - InputRows: 48.778K (48778) - LocalBytesSent: 1.79 MB - LocalSendTime: 73.703us - LocalSentRows: 36.755K (36755) - MemoryUsage: - PeakMemoryUsage: 3.19 MB - MergeBlockTime: 0ns - OpenTime: 39.877us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 385.795ms - RowsProduced: 48.778K (48778) - RpcAvgTime: 139.518ms - RpcCount: 3 - RpcMaxTime: 418.554ms - RpcMinTime: 418.554ms - RpcSumTime: 418.554ms - SerializeBatchTime: 1.777ms - SplitBlockDistributeByChannelTime: 2.791ms - SplitBlockHashComputeTime: 1.870ms - UncompressedRowBatchSize: 606.97 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 32.352us - ExecTime: 3.696ms - InitProbeSideTime: 933.51us - JoinFilterTimer: 2.34us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.491us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.563us - ProbeFindNextTime: 0ns - ProbeRows: 48.778K (48778) - ProbeTime: 3.207ms - ProbeWhenBuildSideOutputTime: 72.579us - ProbeWhenProbeSideOutputTime: 758.972us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.166ms - ProjectionTime: 403.497us - RowsProduced: 48.778K (48778) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 74.827us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 1000ns - ProjectionTime: 0ns - RowsProduced: 48.778K (48778) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 142.568ms PipelineXTask (index=6):(Active: 44.893ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 44.746ms - CloseTime: 31.650us - GetBlockTime: 21.625ms - OpenTime: 4.412us - PrepareTime: 104.428us - SinkTime: 23.13ms - GetBlockCounter: 18 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.297ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.220ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 322.50 KB - CloseTime: 14.805us - CompressTime: 0ns - ExecTime: 23.72ms - InputRows: 41.667K (41667) - LocalBytesSent: 1.52 MB - LocalSendTime: 64.256us - LocalSentRows: 31.246K (31246) - MemoryUsage: - PeakMemoryUsage: 2.91 MB - MergeBlockTime: 0ns - OpenTime: 52.284us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 379.35ms - RowsProduced: 41.667K (41667) - RpcAvgTime: 140.68ms - RpcCount: 3 - RpcMaxTime: 420.205ms - RpcMinTime: 420.205ms - RpcSumTime: 420.205ms - SerializeBatchTime: 18.38ms - SplitBlockDistributeByChannelTime: 2.547ms - SplitBlockHashComputeTime: 1.596ms - UncompressedRowBatchSize: 526.14 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 11.903us - ExecTime: 21.541ms - InitProbeSideTime: 19.51ms - JoinFilterTimer: 2.250us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.575us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.207us - ProbeFindNextTime: 0ns - ProbeRows: 41.667K (41667) - ProbeTime: 21.131ms - ProbeWhenBuildSideOutputTime: 59.1us - ProbeWhenProbeSideOutputTime: 682.996us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.34ms - ProjectionTime: 343.505us - RowsProduced: 41.667K (41667) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 74.6us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 1024.00 KB - OpenTime: 744ns - ProjectionTime: 0ns - RowsProduced: 41.667K (41667) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 126.363ms PipelineXTask (index=9):(Active: 8.418ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 8.291ms - CloseTime: 34.565us - GetBlockTime: 2.806ms - OpenTime: 4.815us - PrepareTime: 82.651us - SinkTime: 5.375ms - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.346ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.740ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 248.33 KB - CloseTime: 19.412us - CompressTime: 0ns - ExecTime: 5.421ms - InputRows: 32.378K (32378) - LocalBytesSent: 1.19 MB - LocalSendTime: 66.564us - LocalSentRows: 24.378K (24378) - MemoryUsage: - PeakMemoryUsage: 2.16 MB - MergeBlockTime: 0ns - OpenTime: 33.752us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 93.372ms - RowsProduced: 32.378K (32378) - RpcAvgTime: 68.310ms - RpcCount: 2 - RpcMaxTime: 136.621ms - RpcMinTime: 136.621ms - RpcSumTime: 136.621ms - SerializeBatchTime: 1.225ms - SplitBlockDistributeByChannelTime: 2.260ms - SplitBlockHashComputeTime: 1.219ms - UncompressedRowBatchSize: 403.87 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 10.474us - ExecTime: 2.763ms - InitProbeSideTime: 791.984us - JoinFilterTimer: 1.539us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 15.442us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.239us - ProbeFindNextTime: 0ns - ProbeRows: 32.378K (32378) - ProbeTime: 2.370ms - ProbeWhenBuildSideOutputTime: 106.364us - ProbeWhenProbeSideOutputTime: 470.120us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 785.615us - ProjectionTime: 331.745us - RowsProduced: 32.378K (32378) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 38.419us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 767ns - ProjectionTime: 0ns - RowsProduced: 32.378K (32378) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 150.257ms PipelineXTask (index=12):(Active: 20.748ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 20.598ms - CloseTime: 60.820us - GetBlockTime: 5.730ms - OpenTime: 4.191us - PrepareTime: 80.393us - SinkTime: 14.754ms - GetBlockCounter: 15 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.914ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.727ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 280.06 KB - CloseTime: 21.204us - CompressTime: 0ns - ExecTime: 14.797ms - InputRows: 36.568K (36568) - LocalBytesSent: 1.34 MB - LocalSendTime: 62.113us - LocalSentRows: 27.519K (27519) - MemoryUsage: - PeakMemoryUsage: 2.63 MB - MergeBlockTime: 0ns - OpenTime: 31.659us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 346.679ms - RowsProduced: 36.568K (36568) - RpcAvgTime: 124.166ms - RpcCount: 3 - RpcMaxTime: 372.500ms - RpcMinTime: 372.500ms - RpcSumTime: 372.500ms - SerializeBatchTime: 1.433ms - SplitBlockDistributeByChannelTime: 10.895ms - SplitBlockHashComputeTime: 1.600ms - UncompressedRowBatchSize: 456.79 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 33.190us - ExecTime: 5.677ms - InitProbeSideTime: 3.318ms - JoinFilterTimer: 2.21us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 13.155us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.928us - ProbeFindNextTime: 0ns - ProbeRows: 36.568K (36568) - ProbeTime: 5.241ms - ProbeWhenBuildSideOutputTime: 66.251us - ProbeWhenProbeSideOutputTime: 688.814us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 920.919us - ProjectionTime: 348.52us - RowsProduced: 36.568K (36568) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 61.346us - GetBlockFailedTime: 5 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 744ns - ProjectionTime: 0ns - RowsProduced: 36.568K (36568) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 137.898ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 892.509us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 389.368us - CloseTime: 36.980us - GetBlockTime: 31.623us - OpenTime: 307.157us - PrepareTime: 150.258us - SinkTime: 29.877us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 846.350us - WaitBfTime: 3.567ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.82ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 29.842us - InputRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.286us - 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: 25.241us - BlocksProduced: 1 - CloseTime: 34.791us - ExecTime: 42.400ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 399.660us - ProcessConjunctTime: 190.823us - ProjectionTime: 13.183us - RowsProduced: 5 - RowsRead: 5 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 36.673ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 41.920ms - 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: [3.483ms, ] - PerScannerRowsRead: [5, ] - PerScannerWaitTime: [36.673ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.623ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.665ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 46ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.954ms - ScannerCtxSchedTime: 36.672ms - ScannerFilterTime: 5.270us - ScannerGetBlockTime: 3.467ms - ScannerInitTime: 63.721us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 3.166us - BlockConditionsFilteredBloomFilterTime: 7.485us - BlockConditionsFilteredDictTime: 199.529us - BlockConditionsFilteredTime: 310.196us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 74.904us - BlockInitSeekCount: 37 - BlockInitSeekTime: 237.171us - BlockInitTime: 652.49us - BlockLoadTime: 4.684ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 441 - FirstReadSeekTime: 89.782us - FirstReadTime: 2.267ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.999us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 29.58us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 30.223us - OutputIndexResultColumnTimer: 9.217us - 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: 602.815us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 873.804us PipelineXTask (index=4):(Active: 1.64ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 521.343us - CloseTime: 32.922us - GetBlockTime: 137.204us - OpenTime: 284.39us - PrepareTime: 217.395us - SinkTime: 54.104us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.16ms - WaitBfTime: 2.980ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.683ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 51.959us - InputRows: 19.87K (19870) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.262us - 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: 26.994us - BlocksProduced: 8 - CloseTime: 31.804us - ExecTime: 115.358ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 387.921us - ProcessConjunctTime: 179.464us - ProjectionTime: 969.412us - RowsProduced: 19.87K (19870) - RowsRead: 19.87K (19870) - RuntimeFilterInfo: - filter id = -1 filtered: 647.96K (647960) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 48.962ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 113.766ms - 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: [61.102ms, ] - PerScannerRowsRead: [19.87K, ] - PerScannerWaitTime: [48.962ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 58.793ms - MemoryUsage: - FreeBlocks: 756.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 866.684us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 744ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 27.763ms - ScannerCtxSchedTime: 48.956ms - ScannerFilterTime: 303.988us - ScannerGetBlockTime: 60.610ms - ScannerInitTime: 60.704us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 647960] - BitmapIndexFilterTimer: 10.122us - BlockConditionsFilteredBloomFilterTime: 7.707us - BlockConditionsFilteredDictTime: 107.306us - BlockConditionsFilteredTime: 263.98us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 106.788us - BlockInitSeekCount: 26 - BlockInitSeekTime: 28.645us - BlockInitTime: 398.702us - BlockLoadTime: 60.375ms - BlocksLoad: 405 - CachedPagesNum: 1.161K (1161) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 228.45us - FirstReadTime: 7.122ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.458us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 9.59ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 1.50ms - OutputIndexResultColumnTimer: 41.871us - 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.447ms - TotalPagesNum: 1.161K (1161) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 40.212ms PipelineXTask (index=7):(Active: 1.11ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 450.205us - CloseTime: 34.342us - GetBlockTime: 57.134us - OpenTime: 316.183us - PrepareTime: 201.544us - SinkTime: 48.803us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 965.783us - WaitBfTime: 2.638ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.856ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 49.289us - InputRows: 19.524K (19524) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.527us - 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: 32.178us - BlocksProduced: 6 - CloseTime: 33.185us - ExecTime: 105.292ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 400.335us - ProcessConjunctTime: 198.816us - ProjectionTime: 684.35us - RowsProduced: 19.524K (19524) - RowsRead: 19.524K (19524) - RuntimeFilterInfo: - filter id = -1 filtered: 921.114K (921114) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 43.95ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 104.79ms - 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: [36.000ms, ] - PerScannerRowsRead: [19.52K, ] - PerScannerWaitTime: [43.095ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 33.368ms - MemoryUsage: - FreeBlocks: 824.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 859.627us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 304ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.110ms - ScannerCtxSchedTime: 43.93ms - ScannerFilterTime: 216.104us - ScannerGetBlockTime: 35.630ms - ScannerInitTime: 67.407us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921114] - BitmapIndexFilterTimer: 9.160us - BlockConditionsFilteredBloomFilterTime: 5.615us - BlockConditionsFilteredDictTime: 130.538us - BlockConditionsFilteredTime: 272.991us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 100.358us - BlockInitSeekCount: 31 - BlockInitSeekTime: 20.332us - BlockInitTime: 383.717us - BlockLoadTime: 35.616ms - BlocksLoad: 410 - CachedPagesNum: 1.157K (1157) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 199.455us - FirstReadTime: 8.545ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.562us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 20.459ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 808.414us - OutputIndexResultColumnTimer: 25.687us - 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.264ms - TotalPagesNum: 1.157K (1157) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.771ms PipelineXTask (index=10):(Active: 1.293ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 711.971us - CloseTime: 43.0us - GetBlockTime: 249.914us - OpenTime: 274.960us - PrepareTime: 255.647us - SinkTime: 129.115us - GetBlockCounter: 38 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.235ms - WaitBfTime: 7.631ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.394ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 124.19us - InputRows: 141.175K (141175) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.593us - 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: 26.939us - BlocksProduced: 38 - CloseTime: 41.315us - ExecTime: 151.427ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 395.491us - ProcessConjunctTime: 165.487us - ProjectionTime: 1.919ms - RowsProduced: 141.175K (141175) - RowsRead: 141.175K (141175) - RuntimeFilterInfo: - filter id = -1 filtered: 1.037608M (1037608) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 55.458ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 148.752ms - 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: [85.042ms, ] - PerScannerRowsRead: [141.18K, ] - PerScannerWaitTime: [55.458ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 55.420ms - MemoryUsage: - FreeBlocks: 4.45 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.20ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.647us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 45.455ms - ScannerCtxSchedTime: 55.456ms - ScannerFilterTime: 297.864us - ScannerGetBlockTime: 84.589ms - ScannerInitTime: 67.280us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1037608] - BitmapIndexFilterTimer: 3.218us - BlockConditionsFilteredBloomFilterTime: 9.247us - BlockConditionsFilteredDictTime: 126.550us - BlockConditionsFilteredTime: 307.745us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 125.952us - BlockInitSeekCount: 35 - BlockInitSeekTime: 31.179us - BlockInitTime: 474.769us - BlockLoadTime: 84.356ms - BlocksLoad: 345 - CachedPagesNum: 967 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 202.109us - FirstReadTime: 5.898ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.392us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 39.99ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 3.924ms - OutputIndexResultColumnTimer: 39.744us - 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: 30.421ms - TotalPagesNum: 967 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.483ms PipelineXTask (index=13):(Active: 1.282ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 633.75us - CloseTime: 36.16us - GetBlockTime: 69.241us - OpenTime: 450.486us - PrepareTime: 152.353us - SinkTime: 80.278us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.234ms - WaitBfTime: 9.472ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.253ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 79.896us - InputRows: 28.487K (28487) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.414us - 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: 38.653us - BlocksProduced: 8 - CloseTime: 32.760us - ExecTime: 50.855ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 548.619us - ProcessConjunctTime: 321.379us - ProjectionTime: 235.781us - RowsProduced: 28.487K (28487) - RowsRead: 28.487K (28487) - RuntimeFilterInfo: - filter id = -1 filtered: 344.766K (344766) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 44.491ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 49.965ms - 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: [3.947ms, ] - PerScannerRowsRead: [28.49K, ] - PerScannerWaitTime: [44.491ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.822ms - MemoryUsage: - FreeBlocks: 1.71 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 603.301us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 417ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 5.459ms - ScannerCtxSchedTime: 44.490ms - ScannerFilterTime: 27.781us - ScannerGetBlockTime: 3.897ms - ScannerInitTime: 67.989us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 344766] - BitmapIndexFilterTimer: 550ns - BlockConditionsFilteredBloomFilterTime: 1.719us - BlockConditionsFilteredDictTime: 11.805us - BlockConditionsFilteredTime: 41.580us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 19.87us - BlockInitSeekCount: 8 - BlockInitSeekTime: 8.346us - BlockInitTime: 72.192us - BlockLoadTime: 4.270ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 180 - FirstReadSeekTime: 24.41us - FirstReadTime: 718.325us - IOTimer: 0ns - InvertedIndexFilterTime: 2.701us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 1.904ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 401.947us - OutputIndexResultColumnTimer: 2.942us - 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: 619.780us - TotalPagesNum: 169 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 454.883us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 200.235us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 128.217us - CloseTime: 7.719us - GetBlockTime: 3.806us - OpenTime: 1.592us - PrepareTime: 59.59us - SinkTime: 108.510us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 187.916us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.10ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 918ns - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 3.470us - BuildTableInsertTime: 52.558us - BuildTableTime: 55.78us - CloseTime: 0ns - ExecTime: 125.898us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 17.574us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.58us - RuntimeFilterComputeTime: 14.502us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=44): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.582us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 30.739us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 3.25 KB - OpenTime: 20.749us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 2.411ms PipelineXTask (index=5):(Active: 100.432us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 25.944us - CloseTime: 8.29us - GetBlockTime: 0ns - OpenTime: 1.100us - PrepareTime: 61.549us - SinkTime: 15.495us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.422us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.26ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8270 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.186us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.672us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 2.531ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.756us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 28.536us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.202us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 107.496us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.811us - CloseTime: 6.376us - GetBlockTime: 0ns - OpenTime: 1.823us - PrepareTime: 59.341us - SinkTime: 19.629us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 95.634us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 551.24us HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8270 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.533us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.56us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 6.975ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.783us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.347us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.996us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 103.314us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 27.308us - CloseTime: 4.824us - GetBlockTime: 0ns - OpenTime: 1.527us - PrepareTime: 66.44us - SinkTime: 12.268us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 93.133us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 678.612us HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8270 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.201us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 22.146us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 6.902ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.803us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.932us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.484us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 111.326us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 34.141us - CloseTime: 6.332us - GetBlockTime: 0ns - OpenTime: 2.372us - PrepareTime: 64.628us - SinkTime: 17.308us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 98.683us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.128ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8270 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 52.486us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 35.357us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 7.11ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.972us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.297us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.729us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 60.73ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 59.931ms - CloseTime: 27.560us - GetBlockTime: 10.795ms - OpenTime: 5.494us - PrepareTime: 99.659us - SinkTime: 48.943ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 30.116ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 38.488ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.89 MB - CloseTime: 12.254us - CompressTime: 0ns - ExecTime: 48.985ms - InputRows: 82.979K (82979) - LocalBytesSent: 1.01 MB - LocalSendTime: 53.532us - LocalSentRows: 20.806K (20806) - MemoryUsage: - PeakMemoryUsage: 2.66 MB - MergeBlockTime: 0ns - OpenTime: 48.466us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s963ms - RowsProduced: 82.979K (82979) - RpcAvgTime: 1s822ms - RpcCount: 15 - RpcMaxTime: 9s113ms - RpcMinTime: 9s112ms - RpcSumTime: 27s339ms - SerializeBatchTime: 38.676ms - SplitBlockDistributeByChannelTime: 5.376ms - SplitBlockHashComputeTime: 3.193ms - UncompressedRowBatchSize: 3.06 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 13.803us - ExecTime: 10.601ms - InitProbeSideTime: 3.633ms - JoinFilterTimer: 4.163us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 19.140us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.112us - ProbeFindNextTime: 0ns - ProbeRows: 82.979K (82979) - ProbeTime: 9.539ms - ProbeWhenBuildSideOutputTime: 143.274us - ProbeWhenProbeSideOutputTime: 3.1ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.171ms - ProjectionTime: 925.772us - RowsProduced: 82.979K (82979) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 23 - CloseTime: 0ns - ExecTime: 135.895us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 754ns - ProjectionTime: 0ns - RowsProduced: 82.979K (82979) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 290.55ms PipelineXTask (index=3):(Active: 44.61ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 43.785ms - CloseTime: 93.308us - GetBlockTime: 17.448ms - OpenTime: 5.255us - PrepareTime: 169.549us - SinkTime: 26.162ms - GetBlockCounter: 28 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 23.250ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.242ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.71 MB - CloseTime: 19.260us - CompressTime: 0ns - ExecTime: 26.288ms - InputRows: 74.979K (74979) - LocalBytesSent: 934.92 KB - LocalSendTime: 48.215us - LocalSentRows: 18.773K (18773) - MemoryUsage: - PeakMemoryUsage: 2.63 MB - MergeBlockTime: 0ns - OpenTime: 122.627us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s963ms - RowsProduced: 74.979K (74979) - RpcAvgTime: 1s822ms - RpcCount: 15 - RpcMaxTime: 9s112ms - RpcMinTime: 9s111ms - RpcSumTime: 27s335ms - SerializeBatchTime: 8.825ms - SplitBlockDistributeByChannelTime: 13.329ms - SplitBlockHashComputeTime: 2.711ms - UncompressedRowBatchSize: 2.77 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 21 - BuildOutputBlock: 0ns - CloseTime: 67.296us - ExecTime: 17.376ms - InitProbeSideTime: 1.585ms - JoinFilterTimer: 3.927us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.385us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.740us - ProbeFindNextTime: 0ns - ProbeRows: 74.979K (74979) - ProbeTime: 16.358ms - ProbeWhenBuildSideOutputTime: 138.217us - ProbeWhenProbeSideOutputTime: 1.685ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.807ms - ProjectionTime: 856.223us - RowsProduced: 74.979K (74979) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 21 - CloseTime: 0ns - ExecTime: 83.938us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 968.00 KB - OpenTime: 796ns - ProjectionTime: 0ns - RowsProduced: 74.979K (74979) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 319.844ms PipelineXTask (index=6):(Active: 40.943ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 40.811ms - CloseTime: 30.586us - GetBlockTime: 25.575ms - OpenTime: 4.88us - PrepareTime: 90.250us - SinkTime: 15.59ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 21.896ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.801ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.68 MB - CloseTime: 14.607us - CompressTime: 0ns - ExecTime: 15.102ms - InputRows: 73.697K (73697) - LocalBytesSent: 920.37 KB - LocalSendTime: 36.871us - LocalSentRows: 18.481K (18481) - MemoryUsage: - PeakMemoryUsage: 2.47 MB - MergeBlockTime: 0ns - OpenTime: 43.413us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s443ms - RowsProduced: 73.697K (73697) - RpcAvgTime: 2s148ms - RpcCount: 12 - RpcMaxTime: 8s594ms - RpcMinTime: 8s590ms - RpcSumTime: 25s778ms - SerializeBatchTime: 7.482ms - SplitBlockDistributeByChannelTime: 4.13ms - SplitBlockHashComputeTime: 2.425ms - UncompressedRowBatchSize: 2.72 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 13.242us - ExecTime: 25.412ms - InitProbeSideTime: 20.364ms - JoinFilterTimer: 3.524us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.449us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.743us - ProbeFindNextTime: 0ns - ProbeRows: 73.697K (73697) - ProbeTime: 24.569ms - ProbeWhenBuildSideOutputTime: 217.652us - ProbeWhenProbeSideOutputTime: 1.908ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.644ms - ProjectionTime: 748.298us - RowsProduced: 73.697K (73697) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 105.738us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 1.31 MB - OpenTime: 615ns - ProjectionTime: 0ns - RowsProduced: 73.697K (73697) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 319.596ms PipelineXTask (index=9):(Active: 44.923ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 44.776ms - CloseTime: 53.900us - GetBlockTime: 7.749ms - OpenTime: 6.417us - PrepareTime: 80.353us - SinkTime: 36.822ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 27.834ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 23.135ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.70 MB - CloseTime: 10.30us - CompressTime: 0ns - ExecTime: 36.848ms - InputRows: 74.393K (74393) - LocalBytesSent: 927.81 KB - LocalSendTime: 60.677us - LocalSentRows: 18.631K (18631) - MemoryUsage: - PeakMemoryUsage: 2.63 MB - MergeBlockTime: 0ns - OpenTime: 32.942us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s946ms - RowsProduced: 74.393K (74393) - RpcAvgTime: 1s822ms - RpcCount: 15 - RpcMaxTime: 9s112ms - RpcMinTime: 9s107ms - RpcSumTime: 27s330ms - SerializeBatchTime: 26.944ms - SplitBlockDistributeByChannelTime: 5.524ms - SplitBlockHashComputeTime: 2.882ms - UncompressedRowBatchSize: 2.75 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 41.468us - ExecTime: 7.581ms - InitProbeSideTime: 1.662ms - JoinFilterTimer: 4.358us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.875us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 22.706us - ProbeFindNextTime: 0ns - ProbeRows: 74.393K (74393) - ProbeTime: 6.571ms - ProbeWhenBuildSideOutputTime: 219.528us - ProbeWhenProbeSideOutputTime: 2.209ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.906ms - ProjectionTime: 859.340us - RowsProduced: 74.393K (74393) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 124.320us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 824ns - ProjectionTime: 0ns - RowsProduced: 74.393K (74393) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 337.285ms PipelineXTask (index=12):(Active: 26.36ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 25.874ms - CloseTime: 45.330us - GetBlockTime: 7.503ms - OpenTime: 3.28us - PrepareTime: 106.476us - SinkTime: 18.131ms - GetBlockCounter: 30 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 11 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 25.942ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.356ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.56 MB - CloseTime: 19.590us - CompressTime: 0ns - ExecTime: 18.192ms - InputRows: 68.459K (68459) - LocalBytesSent: 856.59 KB - LocalSendTime: 57.16us - LocalSentRows: 17.204K (17204) - MemoryUsage: - PeakMemoryUsage: 2.44 MB - MergeBlockTime: 0ns - OpenTime: 55.922us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s433ms - RowsProduced: 68.459K (68459) - RpcAvgTime: 2s145ms - RpcCount: 12 - RpcMaxTime: 8s587ms - RpcMinTime: 8s571ms - RpcSumTime: 25s743ms - SerializeBatchTime: 8.947ms - SplitBlockDistributeByChannelTime: 5.184ms - SplitBlockHashComputeTime: 2.577ms - UncompressedRowBatchSize: 2.53 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 19.896us - ExecTime: 7.328ms - InitProbeSideTime: 1.678ms - JoinFilterTimer: 14.412us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 16.735us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.379us - ProbeFindNextTime: 0ns - ProbeRows: 68.459K (68459) - ProbeTime: 6.374ms - ProbeWhenBuildSideOutputTime: 196.980us - ProbeWhenProbeSideOutputTime: 2.199ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.750ms - ProjectionTime: 840.984us - RowsProduced: 68.459K (68459) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 125.65us - GetBlockFailedTime: 11 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 776ns - ProjectionTime: 0ns - RowsProduced: 68.459K (68459) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 333.80ms PipelineXTask (index=15):(Active: 37.488ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 37.345ms - CloseTime: 27.411us - GetBlockTime: 6.800ms - OpenTime: 5.600us - PrepareTime: 102.865us - SinkTime: 30.309ms - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.404ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.896ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.55 MB - CloseTime: 10.782us - CompressTime: 0ns - ExecTime: 30.342ms - InputRows: 68.049K (68049) - LocalBytesSent: 849.07 KB - LocalSendTime: 43.597us - LocalSentRows: 17.05K (17050) - MemoryUsage: - PeakMemoryUsage: 2.44 MB - MergeBlockTime: 0ns - OpenTime: 38.453us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s446ms - RowsProduced: 68.049K (68049) - RpcAvgTime: 2s147ms - RpcCount: 12 - RpcMaxTime: 8s594ms - RpcMinTime: 8s587ms - RpcSumTime: 25s775ms - SerializeBatchTime: 20.130ms - SplitBlockDistributeByChannelTime: 6.142ms - SplitBlockHashComputeTime: 2.638ms - UncompressedRowBatchSize: 2.51 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 13.490us - ExecTime: 6.603ms - InitProbeSideTime: 1.404ms - JoinFilterTimer: 3.562us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 23.583us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.465us - ProbeFindNextTime: 0ns - ProbeRows: 68.049K (68049) - ProbeTime: 5.781ms - ProbeWhenBuildSideOutputTime: 177.351us - ProbeWhenProbeSideOutputTime: 1.935ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.741ms - ProjectionTime: 702.561us - RowsProduced: 68.049K (68049) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 141.863us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 814ns - ProjectionTime: 0ns - RowsProduced: 68.049K (68049) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 320.757ms PipelineXTask (index=18):(Active: 35.274ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 35.121ms - CloseTime: 49.272us - GetBlockTime: 6.774ms - OpenTime: 3.317us - PrepareTime: 94.572us - SinkTime: 28.152ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 22.612ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.51ms DATA_STREAM_SINK_OPERATOR (id=47,dst_id=47): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.40 MB - CloseTime: 16.177us - CompressTime: 0ns - ExecTime: 28.195ms - InputRows: 61.086K (61086) - LocalBytesSent: 755.82 KB - LocalSendTime: 37.966us - LocalSentRows: 15.177K (15177) - MemoryUsage: - PeakMemoryUsage: 2.34 MB - MergeBlockTime: 0ns - OpenTime: 43.267us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s637ms - RowsProduced: 61.086K (61086) - RpcAvgTime: 2s179ms - RpcCount: 12 - RpcMaxTime: 8s723ms - RpcMinTime: 8s712ms - RpcSumTime: 26s158ms - SerializeBatchTime: 8.152ms - SplitBlockDistributeByChannelTime: 16.450ms - SplitBlockHashComputeTime: 2.295ms - UncompressedRowBatchSize: 2.26 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=46): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 29.223us - ExecTime: 6.593ms - InitProbeSideTime: 1.562ms - JoinFilterTimer: 4.15us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 14.6us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.95us - ProbeFindNextTime: 0ns - ProbeRows: 61.086K (61086) - ProbeTime: 5.773ms - ProbeWhenBuildSideOutputTime: 110.448us - ProbeWhenProbeSideOutputTime: 2.52ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.542ms - ProjectionTime: 696.641us - RowsProduced: 61.086K (61086) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 18 - CloseTime: 0ns - ExecTime: 128.325us - GetBlockFailedTime: 9 - MemoryUsage: - PeakMemoryUsage: 752.00 KB - OpenTime: 645ns - ProjectionTime: 0ns - RowsProduced: 61.086K (61086) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 327.855ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 58.712ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.283ms - CloseTime: 40.575us - GetBlockTime: 24.271us - OpenTime: 29.222ms - PrepareTime: 155.727us - SinkTime: 7.541us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.268ms - WaitBfTime: 18.463ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.463ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 8.46us - InputRows: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.194us - 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: 44.216us - BlocksProduced: 1 - CloseTime: 38.557us - ExecTime: 182.390ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 29.303ms - ProcessConjunctTime: 351.498us - ProjectionTime: 11.369us - RowsProduced: 4 - RowsRead: 4 - RuntimeFilterInfo: - filter id = -1 filtered: 197.73K (197730) - filter id = -1 input: 197.738K (197738) - ScannerWorkerWaitTime: 148.893ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 153.12ms - 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.699ms, ] - PerScannerRowsRead: [4, ] - PerScannerWaitTime: [148.893ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.632ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.307ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 110ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 4.95ms - ScannerCtxSchedTime: 148.891ms - ScannerFilterTime: 4.253us - ScannerGetBlockTime: 1.682ms - ScannerInitTime: 28.792ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 197738, filtered = 197730] - BitmapIndexFilterTimer: 812ns - BlockConditionsFilteredBloomFilterTime: 1.692us - BlockConditionsFilteredDictTime: 66.954us - BlockConditionsFilteredTime: 113.899us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 35.813us - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.529us - BlockInitTime: 153.956us - BlockLoadTime: 3.761ms - BlocksLoad: 139 - CachedPagesNum: 108 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 414 - FirstReadSeekTime: 60.219us - FirstReadTime: 2.125ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.294us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 47.25us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 33.801us - OutputIndexResultColumnTimer: 9.300us - 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: 332.513us - TotalPagesNum: 108 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 857.920us PipelineXTask (index=4):(Active: 37.14ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 18.483ms - CloseTime: 48.110us - GetBlockTime: 99.240us - OpenTime: 18.337ms - PrepareTime: 136.417us - SinkTime: 16.945us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.212ms - WaitBfTime: 39.669ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.721ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 16.579us - InputRows: 11.788K (11788) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.170us - 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: 45.994us - BlocksProduced: 4 - CloseTime: 42.36us - ExecTime: 275.536ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 18.418ms - ProcessConjunctTime: 291.979us - ProjectionTime: 750.52us - RowsProduced: 11.788K (11788) - RowsRead: 11.788K (11788) - RuntimeFilterInfo: - filter id = -1 filtered: 656.598K (656598) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 185.464ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 256.180ms - 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: [66.146ms, ] - PerScannerRowsRead: [11.79K, ] - PerScannerWaitTime: [185.464ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 43.102ms - MemoryUsage: - FreeBlocks: 532.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.698ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 307ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 23.772ms - ScannerCtxSchedTime: 185.461ms - ScannerFilterTime: 295.392us - ScannerGetBlockTime: 65.694ms - ScannerInitTime: 17.975ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656598] - BitmapIndexFilterTimer: 2.198us - BlockConditionsFilteredBloomFilterTime: 4.949us - BlockConditionsFilteredDictTime: 169.813us - BlockConditionsFilteredTime: 300.215us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 98.816us - BlockInitSeekCount: 17 - BlockInitSeekTime: 22.701us - BlockInitTime: 405.675us - BlockLoadTime: 66.359ms - BlocksLoad: 367 - CachedPagesNum: 1.065K (1065) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 207.620us - FirstReadTime: 6.354ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.67us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 54.445ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 723.42us - OutputIndexResultColumnTimer: 31.667us - 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: 1.60ms - TotalPagesNum: 1.065K (1065) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.459ms PipelineXTask (index=7):(Active: 1.343ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 698.102us - CloseTime: 33.283us - GetBlockTime: 124.490us - OpenTime: 415.617us - PrepareTime: 183.866us - SinkTime: 100.864us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.292ms - WaitBfTime: 39.635ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.417ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 99.397us - InputRows: 43.479K (43479) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.598us - 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: 36.9us - BlocksProduced: 13 - CloseTime: 32.292us - ExecTime: 264.317ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 533.779us - ProcessConjunctTime: 281.70us - ProjectionTime: 691.505us - RowsProduced: 43.479K (43479) - RowsRead: 43.479K (43479) - RuntimeFilterInfo: - filter id = -1 filtered: 914.51K (914510) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 197.968ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 262.892ms - 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: [61.206ms, ] - PerScannerRowsRead: [43.48K, ] - PerScannerWaitTime: [197.968ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 39.493ms - MemoryUsage: - FreeBlocks: 1.54 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 682.763us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 798ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.89ms - ScannerCtxSchedTime: 197.964ms - ScannerFilterTime: 172.837us - ScannerGetBlockTime: 60.914ms - ScannerInitTime: 77.909us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 914510] - BitmapIndexFilterTimer: 2.52us - BlockConditionsFilteredBloomFilterTime: 5.355us - BlockConditionsFilteredDictTime: 70.858us - BlockConditionsFilteredTime: 183.592us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 82.182us - BlockInitSeekCount: 25 - BlockInitSeekTime: 18.805us - BlockInitTime: 281.681us - BlockLoadTime: 60.738ms - BlocksLoad: 384 - CachedPagesNum: 1.101K (1101) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 164.164us - FirstReadTime: 5.687ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.820us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 49.658ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 996.561us - OutputIndexResultColumnTimer: 24.820us - 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.293ms - TotalPagesNum: 1.101K (1101) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.182ms PipelineXTask (index=10):(Active: 1.375ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 852.287us - CloseTime: 69.115us - GetBlockTime: 323.50us - OpenTime: 293.172us - PrepareTime: 151.890us - SinkTime: 167.210us - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.290ms - WaitBfTime: 43.383ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 21.433ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 159.511us - InputRows: 106.535K (106535) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.102us - 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: 30.556us - BlocksProduced: 29 - CloseTime: 65.139us - ExecTime: 291.686ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 393.136us - ProcessConjunctTime: 177.346us - ProjectionTime: 1.777ms - RowsProduced: 106.535K (106535) - RowsRead: 106.535K (106535) - RuntimeFilterInfo: - filter id = -1 filtered: 1.136506M (1136506) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 147.281ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 289.73ms - 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: [134.808ms, ] - PerScannerRowsRead: [106.53K, ] - PerScannerWaitTime: [147.281ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 131.273ms - MemoryUsage: - FreeBlocks: 3.55 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.23ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.599us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 44.153ms - ScannerCtxSchedTime: 147.273ms - ScannerFilterTime: 341.303us - ScannerGetBlockTime: 134.262ms - ScannerInitTime: 67.314us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1136506] - BitmapIndexFilterTimer: 3.88us - BlockConditionsFilteredBloomFilterTime: 8.857us - BlockConditionsFilteredDictTime: 135.568us - BlockConditionsFilteredTime: 318.61us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 132.582us - BlockInitSeekCount: 33 - BlockInitSeekTime: 35.562us - BlockInitTime: 479.828us - BlockLoadTime: 133.875ms - BlocksLoad: 382 - CachedPagesNum: 1.075K (1075) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 262.508us - FirstReadTime: 12.67ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.374us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 110.963ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.921ms - OutputIndexResultColumnTimer: 50.613us - 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.981ms - TotalPagesNum: 1.075K (1075) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 3.150ms PipelineXTask (index=13):(Active: 1.129ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 665.932us - CloseTime: 58.245us - GetBlockTime: 193.883us - OpenTime: 254.534us - PrepareTime: 142.935us - SinkTime: 171.838us - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.60ms - WaitBfTime: 43.673ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.483ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 166.881us - InputRows: 138.361K (138361) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.49us - 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: 22.523us - BlocksProduced: 37 - CloseTime: 55.190us - ExecTime: 233.204ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 328.534us - ProcessConjunctTime: 148.806us - ProjectionTime: 1.144ms - RowsProduced: 138.361K (138361) - RowsRead: 138.361K (138361) - RuntimeFilterInfo: - filter id = -1 filtered: 918.412K (918412) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 198.958ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 231.465ms - 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: [24.554ms, ] - PerScannerRowsRead: [138.36K, ] - PerScannerWaitTime: [198.958ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 23.113ms - MemoryUsage: - FreeBlocks: 4.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 574.688us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.260us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 30.618ms - ScannerCtxSchedTime: 198.955ms - ScannerFilterTime: 147.329us - ScannerGetBlockTime: 24.316ms - ScannerInitTime: 69.164us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 918412] - BitmapIndexFilterTimer: 1.716us - BlockConditionsFilteredBloomFilterTime: 4.505us - BlockConditionsFilteredDictTime: 110.139us - BlockConditionsFilteredTime: 187.74us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 56.196us - BlockInitSeekCount: 25 - BlockInitSeekTime: 295.684us - BlockInitTime: 538.494us - BlockLoadTime: 24.259ms - BlocksLoad: 260 - CachedPagesNum: 746 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 771 - FirstReadSeekTime: 129.444us - FirstReadTime: 3.941ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.453us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 11.11ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.15ms - OutputIndexResultColumnTimer: 29.577us - 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: 4.405ms - TotalPagesNum: 746 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.734ms PipelineXTask (index=16):(Active: 36.457ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 18.403ms - CloseTime: 52.759us - GetBlockTime: 406.176us - OpenTime: 17.719ms - PrepareTime: 270.686us - SinkTime: 188.416us - GetBlockCounter: 49 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.985ms - WaitBfTime: 43.277ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.451ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 181.658us - InputRows: 178.881K (178881) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.87us - 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: 85.817us - BlocksProduced: 49 - CloseTime: 51.24us - ExecTime: 335.134ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 17.932ms - ProcessConjunctTime: 17.520ms - ProjectionTime: 2.262ms - RowsProduced: 178.881K (178881) - RowsRead: 178.881K (178881) - RuntimeFilterInfo: - filter id = -1 filtered: 990.538K (990538) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 190.698ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 314.434ms - 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: [99.449ms, ] - PerScannerRowsRead: [178.88K, ] - PerScannerWaitTime: [190.698ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 97.15ms - MemoryUsage: - FreeBlocks: 5.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.221ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.93us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 49.398ms - ScannerCtxSchedTime: 190.680ms - ScannerFilterTime: 263.417us - ScannerGetBlockTime: 99.3ms - ScannerInitTime: 90.789us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 990538] - BitmapIndexFilterTimer: 2.897us - BlockConditionsFilteredBloomFilterTime: 8.267us - BlockConditionsFilteredDictTime: 112.586us - BlockConditionsFilteredTime: 224.921us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 72.159us - BlockInitSeekCount: 26 - BlockInitSeekTime: 515.964us - BlockInitTime: 857.657us - BlockLoadTime: 99.2ms - BlocksLoad: 291 - CachedPagesNum: 841 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 864 - FirstReadSeekTime: 197.838us - FirstReadTime: 5.556ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.851us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 81.637ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.717ms - OutputIndexResultColumnTimer: 40.177us - 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.594ms - TotalPagesNum: 841 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.499ms PipelineXTask (index=19):(Active: 1.364ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 620.83us - CloseTime: 39.612us - GetBlockTime: 47.662us - OpenTime: 429.629us - PrepareTime: 264.700us - SinkTime: 115.219us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.314ms - WaitBfTime: 43.844ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.888ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 116.506us - InputRows: 24.594K (24594) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.164us - 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: 65.357us - BlocksProduced: 7 - CloseTime: 37.56us - ExecTime: 144.622ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 518.514us - ProcessConjunctTime: 287.678us - ProjectionTime: 304.158us - RowsProduced: 24.594K (24594) - RowsRead: 24.594K (24594) - RuntimeFilterInfo: - filter id = -1 filtered: 333.578K (333578) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 133.324ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 143.707ms - 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: [6.405ms, ] - PerScannerRowsRead: [24.59K, ] - PerScannerWaitTime: [133.324ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.184ms - MemoryUsage: - FreeBlocks: 1.44 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.102ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 332ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 9.478ms - ScannerCtxSchedTime: 133.322ms - ScannerFilterTime: 53.519us - ScannerGetBlockTime: 6.320ms - ScannerInitTime: 57.862us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 333578] - BitmapIndexFilterTimer: 1.135us - BlockConditionsFilteredBloomFilterTime: 2.753us - BlockConditionsFilteredDictTime: 36.659us - BlockConditionsFilteredTime: 73.600us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 25.106us - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.985us - BlockInitTime: 114.448us - BlockLoadTime: 7.118ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 168 - FirstReadSeekTime: 44.962us - FirstReadTime: 1.62ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.691us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.788ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 659.152us - OutputIndexResultColumnTimer: 7.660us - 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: 645.643us - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 646.655us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 28.393ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.292ms - CloseTime: 14.15us - GetBlockTime: 7.412us - OpenTime: 2.380us - PrepareTime: 79.774us - SinkTime: 28.264ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 282.629us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.102ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.661us - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 5.822us - BuildTableInsertTime: 28.126ms - BuildTableTime: 28.133ms - CloseTime: 0ns - ExecTime: 28.287ms - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 23.931us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 34.57us - RuntimeFilterComputeTime: 22.598us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=44): - BlocksProduced: 2 - BytesReceived: 1.21 KB - CloseTime: 10.394us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 16.877us - ExecTime: 48.738us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 31.898us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10.203ms PipelineXTask (index=5):(Active: 120.941us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 51.320us - CloseTime: 5.472us - GetBlockTime: 0ns - OpenTime: 2.463us - PrepareTime: 56.94us - SinkTime: 32.50us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 108.561us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.40ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8275 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 46.64us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.447us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 39.549ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.49us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.483us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.613us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 157.150us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 71.228us - CloseTime: 8.842us - GetBlockTime: 0ns - OpenTime: 2.840us - PrepareTime: 67.747us - SinkTime: 40.292us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 137.580us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.344ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8275 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 60.301us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.495us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 42.210ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.458us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 29.108us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.704us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 109.285us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 40.242us - CloseTime: 8.715us - GetBlockTime: 0ns - OpenTime: 2.275us - PrepareTime: 53.697us - SinkTime: 23.384us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.833us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.249ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8275 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 39.350us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.242us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 43.306ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 6.558us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 24.679us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.297us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 107.955us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.559us - CloseTime: 5.298us - GetBlockTime: 0ns - OpenTime: 2.433us - PrepareTime: 57.603us - SinkTime: 14.272us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 94.707us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.106ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8275 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.698us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.687us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 42.764ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.168us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.155us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.84us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 126.849us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.977us - CloseTime: 7.732us - GetBlockTime: 0ns - OpenTime: 2.230us - PrepareTime: 73.626us - SinkTime: 20.276us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.504us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.437ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8275 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.829us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.9us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 42.592ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.688us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 26.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.365us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 122.443us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 31.466us - CloseTime: 5.484us - GetBlockTime: 0ns - OpenTime: 1.873us - PrepareTime: 78.528us - SinkTime: 15.525us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 110.513us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.488ms HASH_JOIN_SINK_OPERATOR (id=46): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8275 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.923us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.641us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 42.582ms EXCHANGE_OPERATOR (id=44): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.132us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.934us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 27.53us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 135: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 932.713us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 417.8us - CloseTime: 54.135us - GetBlockTime: 28.320us - OpenTime: 238.188us - PrepareTime: 214.439us - SinkTime: 129.185us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 867.976us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.62ms DATA_STREAM_SINK_OPERATOR (id=44,dst_id=44): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.38 KB - CloseTime: 20.581us - CompressTime: 0ns - ExecTime: 187.145us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 27.245us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 3.25 KB - MergeBlockTime: 5.621us - OpenTime: 37.846us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15.49ms - RowsProduced: 109 - RpcAvgTime: 6.110ms - RpcCount: 1 - RpcMaxTime: 6.110ms - RpcMinTime: 6.110ms - RpcSumTime: 6.110ms - SerializeBatchTime: 13.57us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.49 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 542ns - BlocksProduced: 1 - CloseTime: 29.857us - ExecTime: 6.490ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 305.986us - ProcessConjunctTime: 69.350us - ProjectionTime: 6.636us - RowsProduced: 109 - RowsRead: 109 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 5.715ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 6.119ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, USER_NAME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=2, opposite=false - PerScannerRunningTime: [39.441us, ] - PerScannerRowsRead: [109, ] - PerScannerWaitTime: [5.715ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.254us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 298.728us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 107ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 420.751us - ScannerCtxSchedTime: 5.711ms - ScannerFilterTime: 1.549us - ScannerGetBlockTime: 30.210us - ScannerInitTime: 120.355us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 388ns - BlockConditionsFilteredBloomFilterTime: 3.379us - BlockConditionsFilteredDictTime: 8.834us - BlockConditionsFilteredTime: 54.791us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 9.527us - BlockInitSeekCount: 6 - BlockInitSeekTime: 19.262us - BlockInitTime: 106.728us - BlockLoadTime: 168.146us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 6.606us - FirstReadTime: 13.122us - IOTimer: 0ns - InvertedIndexFilterTime: 2.714us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 4.528us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 10.689us - OutputIndexResultColumnTimer: 414ns - 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: 812ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 404ns Fragment 136: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 689.36us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 499.502us - CloseTime: 12.653us - GetBlockTime: 69.959us - OpenTime: 2.538us - PrepareTime: 167.455us - SinkTime: 394.971us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 667.848us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.142ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.09 KB - CloseTime: 9.863us - CompressTime: 0ns - ExecTime: 541.226us - InputRows: 45 - LocalBytesSent: 768.00 B - LocalSendTime: 90.502us - LocalSentRows: 24 - MemoryUsage: - PeakMemoryUsage: 6.44 KB - MergeBlockTime: 0ns - OpenTime: 137.36us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7.209ms - RowsProduced: 45 - RpcAvgTime: 1.676ms - RpcCount: 12 - RpcMaxTime: 1.781ms - RpcMinTime: 1.338ms - RpcSumTime: 20.115ms - SerializeBatchTime: 14.76us - SplitBlockDistributeByChannelTime: 25.809us - SplitBlockHashComputeTime: 4.652us - UncompressedRowBatchSize: 936.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 965ns - DeserializeAndMergeTime: 0ns - ExecTime: 80.738us - GetResultsTime: 36.600us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 934ns - HashTableSize: 45 - InsertKeysToColumnTime: 28.963us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.633us - ProjectionTime: 25.585us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s325ms PipelineXTask (index=2):(Active: 977.167us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 803.54us - CloseTime: 24.580us - GetBlockTime: 53.739us - OpenTime: 3.821us - PrepareTime: 139.745us - SinkTime: 724.807us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 944.560us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.33ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 968.00 B - CloseTime: 21.452us - CompressTime: 0ns - ExecTime: 851.759us - InputRows: 46 - LocalBytesSent: 864.00 B - LocalSendTime: 121.900us - LocalSentRows: 27 - MemoryUsage: - PeakMemoryUsage: 6.00 KB - MergeBlockTime: 0ns - OpenTime: 106.100us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.900ms - RowsProduced: 46 - RpcAvgTime: 2.546ms - RpcCount: 12 - RpcMaxTime: 2.829ms - RpcMinTime: 2.62ms - RpcSumTime: 30.560ms - SerializeBatchTime: 22.458us - SplitBlockDistributeByChannelTime: 19.573us - SplitBlockHashComputeTime: 5.471us - UncompressedRowBatchSize: 824.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 776ns - DeserializeAndMergeTime: 0ns - ExecTime: 63.823us - GetResultsTime: 16.238us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.107us - HashTableSize: 46 - InsertKeysToColumnTime: 9.230us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 10.246us - ProjectionTime: 28.905us - RowsProduced: 46 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s326ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 543.334us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 461.598us - CloseTime: 6.162us - GetBlockTime: 120.476us - OpenTime: 3.637us - PrepareTime: 63.137us - SinkTime: 220.993us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 14 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 504.431us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.355ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 1.291us - DeserializeAndMergeTime: 31.978us - ExecTime: 232.119us - ExprTime: 0ns - HashTableComputeTime: 122.610us - HashTableEmplaceTime: 68.575us - HashTableInputCount: 59 - InputRows: 59 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 193.279us - OpenTime: 19.502us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 22 - BytesReceived: 3.36 KB - CloseTime: 3.687us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 181.891us - ExecTime: 130.479us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.25 KB - MemoryUsage: - Blocks: 768.00 B - PeakMemoryUsage: 768.00 B - OpenTime: 19.365us - ProjectionTime: 0ns - RowsProduced: 59 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s324ms PipelineXTask (index=3):(Active: 533.911us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 462.475us - CloseTime: 5.220us - GetBlockTime: 102.540us - OpenTime: 3.99us - PrepareTime: 56.321us - SinkTime: 243.881us - GetBlockCounter: 12 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 502.424us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.396ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 1.211us - DeserializeAndMergeTime: 50.163us - ExecTime: 256.57us - ExprTime: 0ns - HashTableComputeTime: 129.265us - HashTableEmplaceTime: 99.37us - HashTableInputCount: 56 - InputRows: 56 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 217.620us - OpenTime: 16.88us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 20 - BytesReceived: 2.79 KB - CloseTime: 3.262us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 183.873us - ExecTime: 112.282us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.69 KB - MemoryUsage: - Blocks: 1.56 KB - PeakMemoryUsage: 1.06 KB - OpenTime: 16.327us - ProjectionTime: 0ns - RowsProduced: 56 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s325ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 880.338us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 712.847us - CloseTime: 16.960us - GetBlockTime: 68.835us - OpenTime: 1.517us - PrepareTime: 143.886us - SinkTime: 623.247us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 645.757us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.121ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.12 KB - CloseTime: 12.866us - CompressTime: 0ns - ExecTime: 745.961us - InputRows: 47 - LocalBytesSent: 800.00 B - LocalSendTime: 279.234us - LocalSentRows: 25 - MemoryUsage: - PeakMemoryUsage: 6.78 KB - MergeBlockTime: 0ns - OpenTime: 110.184us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.676ms - RowsProduced: 47 - RpcAvgTime: 1.879ms - RpcCount: 12 - RpcMaxTime: 1.995ms - RpcMinTime: 1.840ms - RpcSumTime: 22.549ms - SerializeBatchTime: 20.309us - SplitBlockDistributeByChannelTime: 20.408us - SplitBlockHashComputeTime: 6.28us - UncompressedRowBatchSize: 968.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.459us - DeserializeAndMergeTime: 0ns - ExecTime: 80.77us - GetResultsTime: 30.729us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 820ns - HashTableSize: 47 - InsertKeysToColumnTime: 17.862us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.6us - ProjectionTime: 27.417us - RowsProduced: 47 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s319ms PipelineXTask (index=2):(Active: 634.520us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 451.571us - CloseTime: 26.890us - GetBlockTime: 66.357us - OpenTime: 2.106us - PrepareTime: 148.664us - SinkTime: 367.212us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 601.53us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.48ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.15 KB - CloseTime: 22.550us - CompressTime: 0ns - ExecTime: 497.74us - InputRows: 45 - LocalBytesSent: 704.00 B - LocalSendTime: 83.116us - LocalSentRows: 22 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 0ns - OpenTime: 107.722us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.780ms - RowsProduced: 45 - RpcAvgTime: 1.942ms - RpcCount: 12 - RpcMaxTime: 1.979ms - RpcMinTime: 1.916ms - RpcSumTime: 23.308ms - SerializeBatchTime: 16.706us - SplitBlockDistributeByChannelTime: 16.322us - SplitBlockHashComputeTime: 13.167us - UncompressedRowBatchSize: 1000.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.103us - DeserializeAndMergeTime: 0ns - ExecTime: 75.565us - GetResultsTime: 29.971us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.211us - HashTableSize: 45 - InsertKeysToColumnTime: 20.721us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.30us - ProjectionTime: 25.915us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s323ms PipelineXTask (index=4):(Active: 577.790us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 433.900us - CloseTime: 14.395us - GetBlockTime: 58.193us - OpenTime: 2.565us - PrepareTime: 122.660us - SinkTime: 356.330us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 557.165us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.84ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.47 KB - CloseTime: 11.954us - CompressTime: 0ns - ExecTime: 463.106us - InputRows: 48 - LocalBytesSent: 512.00 B - LocalSendTime: 63.744us - LocalSentRows: 16 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 0ns - OpenTime: 95.159us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.853ms - RowsProduced: 48 - RpcAvgTime: 1.945ms - RpcCount: 12 - RpcMaxTime: 1.993ms - RpcMinTime: 1.912ms - RpcSumTime: 23.351ms - SerializeBatchTime: 19.812us - SplitBlockDistributeByChannelTime: 17.712us - SplitBlockHashComputeTime: 27.323us - UncompressedRowBatchSize: 1.28 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 741ns - DeserializeAndMergeTime: 0ns - ExecTime: 68.283us - GetResultsTime: 19.814us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 803ns - HashTableSize: 48 - InsertKeysToColumnTime: 12.468us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.852us - ProjectionTime: 25.530us - RowsProduced: 48 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s320ms PipelineXTask (index=6):(Active: 1.223ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.48ms - CloseTime: 27.510us - GetBlockTime: 150.443us - OpenTime: 2.159us - PrepareTime: 140.580us - SinkTime: 879.331us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 936.925us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.874ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.34 KB - CloseTime: 23.423us - CompressTime: 0ns - ExecTime: 1.6ms - InputRows: 45 - LocalBytesSent: 544.00 B - LocalSendTime: 102.648us - LocalSentRows: 17 - MemoryUsage: - PeakMemoryUsage: 6.50 KB - MergeBlockTime: 0ns - OpenTime: 104.770us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.336ms - RowsProduced: 45 - RpcAvgTime: 1.854ms - RpcCount: 12 - RpcMaxTime: 1.943ms - RpcMinTime: 1.797ms - RpcSumTime: 22.259ms - SerializeBatchTime: 40.546us - SplitBlockDistributeByChannelTime: 36.871us - SplitBlockHashComputeTime: 10.580us - UncompressedRowBatchSize: 1.16 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.176us - DeserializeAndMergeTime: 0ns - ExecTime: 160.104us - GetResultsTime: 55.970us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.95us - HashTableSize: 45 - InsertKeysToColumnTime: 33.837us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 9.497us - ProjectionTime: 75.186us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s320ms PipelineXTask (index=8):(Active: 804.197us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 554.274us - CloseTime: 16.991us - GetBlockTime: 109.331us - OpenTime: 1.900us - PrepareTime: 225.969us - SinkTime: 428.50us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 780.13us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.894ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 904.00 B - CloseTime: 13.201us - CompressTime: 0ns - ExecTime: 635.640us - InputRows: 36 - LocalBytesSent: 608.00 B - LocalSendTime: 71.164us - LocalSentRows: 19 - MemoryUsage: - PeakMemoryUsage: 5.97 KB - MergeBlockTime: 0ns - OpenTime: 194.893us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.691ms - RowsProduced: 36 - RpcAvgTime: 1.908ms - RpcCount: 12 - RpcMaxTime: 1.964ms - RpcMinTime: 1.872ms - RpcSumTime: 22.896ms - SerializeBatchTime: 22.202us - SplitBlockDistributeByChannelTime: 22.751us - SplitBlockHashComputeTime: 6.639us - UncompressedRowBatchSize: 760.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.85us - DeserializeAndMergeTime: 0ns - ExecTime: 115.736us - GetResultsTime: 39.430us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 731ns - HashTableSize: 36 - InsertKeysToColumnTime: 28.641us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.980us - ProjectionTime: 55.263us - RowsProduced: 36 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s320ms PipelineXTask (index=10):(Active: 762.233us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 612.698us - CloseTime: 14.467us - GetBlockTime: 61.786us - OpenTime: 2.708us - PrepareTime: 128.235us - SinkTime: 530.932us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 740.557us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.118ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.12 KB - CloseTime: 11.665us - CompressTime: 0ns - ExecTime: 644.247us - InputRows: 52 - LocalBytesSent: 960.00 B - LocalSendTime: 93.476us - LocalSentRows: 30 - MemoryUsage: - PeakMemoryUsage: 7.03 KB - MergeBlockTime: 0ns - OpenTime: 102.405us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.610ms - RowsProduced: 52 - RpcAvgTime: 1.859ms - RpcCount: 12 - RpcMaxTime: 1.921ms - RpcMinTime: 1.803ms - RpcSumTime: 22.315ms - SerializeBatchTime: 27.583us - SplitBlockDistributeByChannelTime: 42.160us - SplitBlockHashComputeTime: 7.118us - UncompressedRowBatchSize: 968.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 1.10us - DeserializeAndMergeTime: 0ns - ExecTime: 67.825us - GetResultsTime: 18.215us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.201us - HashTableSize: 52 - InsertKeysToColumnTime: 11.316us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 6.429us - ProjectionTime: 33.246us - RowsProduced: 52 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s319ms PipelineXTask (index=12):(Active: 420.363us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 271.835us - CloseTime: 13.984us - GetBlockTime: 31.682us - OpenTime: 3.93us - PrepareTime: 127.203us - SinkTime: 226.341us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 401.477us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.131ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.25 KB - CloseTime: 11.330us - CompressTime: 0ns - ExecTime: 330.786us - InputRows: 45 - LocalBytesSent: 640.00 B - LocalSendTime: 36.676us - LocalSentRows: 20 - MemoryUsage: - PeakMemoryUsage: 6.75 KB - MergeBlockTime: 0ns - OpenTime: 93.388us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.679ms - RowsProduced: 45 - RpcAvgTime: 1.872ms - RpcCount: 12 - RpcMaxTime: 1.905ms - RpcMinTime: 1.843ms - RpcSumTime: 22.469ms - SerializeBatchTime: 12.593us - SplitBlockDistributeByChannelTime: 9.444us - SplitBlockHashComputeTime: 4.210us - UncompressedRowBatchSize: 1.06 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 608ns - DeserializeAndMergeTime: 0ns - ExecTime: 37.151us - GetResultsTime: 14.348us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 522ns - HashTableSize: 45 - InsertKeysToColumnTime: 10.137us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.230us - ProjectionTime: 14.315us - RowsProduced: 45 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s323ms PipelineXTask (index=14):(Active: 609.735us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 470.805us - CloseTime: 12.498us - GetBlockTime: 48.700us - OpenTime: 2.69us - PrepareTime: 120.339us - SinkTime: 408.478us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 571.234us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.114ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.05 KB - CloseTime: 10.640us - CompressTime: 0ns - ExecTime: 510.822us - InputRows: 39 - LocalBytesSent: 608.00 B - LocalSendTime: 67.201us - LocalSentRows: 19 - MemoryUsage: - PeakMemoryUsage: 6.59 KB - MergeBlockTime: 0ns - OpenTime: 92.137us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.461ms - RowsProduced: 39 - RpcAvgTime: 1.778ms - RpcCount: 12 - RpcMaxTime: 1.843ms - RpcMinTime: 1.712ms - RpcSumTime: 21.337ms - SerializeBatchTime: 14.861us - SplitBlockDistributeByChannelTime: 19.379us - SplitBlockHashComputeTime: 4.583us - UncompressedRowBatchSize: 904.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 623ns - DeserializeAndMergeTime: 0ns - ExecTime: 57.319us - GetResultsTime: 22.480us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 647ns - HashTableSize: 39 - InsertKeysToColumnTime: 10.737us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 8.541us - ProjectionTime: 20.760us - RowsProduced: 39 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s324ms PipelineXTask (index=16):(Active: 895.790us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 722.44us - CloseTime: 14.690us - GetBlockTime: 47.432us - OpenTime: 2.190us - PrepareTime: 152.474us - SinkTime: 659.268us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 586.258us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.898ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 936.00 B - CloseTime: 12.990us - CompressTime: 0ns - ExecTime: 781.459us - InputRows: 41 - LocalBytesSent: 736.00 B - LocalSendTime: 427.519us - LocalSentRows: 23 - MemoryUsage: - PeakMemoryUsage: 6.63 KB - MergeBlockTime: 0ns - OpenTime: 109.529us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.392ms - RowsProduced: 41 - RpcAvgTime: 1.691ms - RpcCount: 12 - RpcMaxTime: 1.913ms - RpcMinTime: 1.524ms - RpcSumTime: 20.293ms - SerializeBatchTime: 11.873us - SplitBlockDistributeByChannelTime: 17.871us - SplitBlockHashComputeTime: 5.14us - UncompressedRowBatchSize: 792.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 463ns - DeserializeAndMergeTime: 0ns - ExecTime: 52.996us - GetResultsTime: 21.372us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 933ns - HashTableSize: 41 - InsertKeysToColumnTime: 12.711us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 5.731us - ProjectionTime: 18.560us - RowsProduced: 41 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s321ms PipelineXTask (index=18):(Active: 523.125us, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 320.618us - CloseTime: 14.627us - GetBlockTime: 34.478us - OpenTime: 2.112us - PrepareTime: 180.909us - SinkTime: 271.887us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 503.35us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.7ms DATA_STREAM_SINK_OPERATOR (id=42,dst_id=42): - Partitioner: Crc32HashPartitioner(24) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.17 KB - CloseTime: 12.974us - CompressTime: 0ns - ExecTime: 393.631us - InputRows: 53 - LocalBytesSent: 896.00 B - LocalSendTime: 46.642us - LocalSentRows: 28 - MemoryUsage: - PeakMemoryUsage: 7.16 KB - MergeBlockTime: 0ns - OpenTime: 109.77us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.617ms - RowsProduced: 53 - RpcAvgTime: 1.824ms - RpcCount: 12 - RpcMaxTime: 1.851ms - RpcMinTime: 1.793ms - RpcSumTime: 21.894ms - SerializeBatchTime: 14.417us - SplitBlockDistributeByChannelTime: 13.216us - SplitBlockHashComputeTime: 4.266us - UncompressedRowBatchSize: 1.02 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - 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: 456ns - DeserializeAndMergeTime: 0ns - ExecTime: 45.606us - GetResultsTime: 14.955us - HashTableComputeTime: 0ns - HashTableEmplaceTime: 0ns - HashTableInputCount: 0 - HashTableIterateTime: 1.435us - HashTableSize: 53 - InsertKeysToColumnTime: 8.395us - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeTime: 0ns - OpenTime: 11.273us - ProjectionTime: 15.442us - RowsProduced: 53 - SerializeDataTime: 0ns - SerializeResultTime: 0ns - WaitForDependency[AGGREGATION_OPERATOR_DEPENDENCY]Time: 20s324ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 419.477us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 328.517us - CloseTime: 7.345us - GetBlockTime: 100.255us - OpenTime: 2.73us - PrepareTime: 76.769us - SinkTime: 161.437us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 394.538us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.504ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 1.501us - DeserializeAndMergeTime: 31.993us - ExecTime: 177.620us - ExprTime: 0ns - HashTableComputeTime: 65.752us - HashTableEmplaceTime: 40.786us - HashTableInputCount: 58 - InputRows: 58 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 131.83us - OpenTime: 19.728us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 676.00 B - CloseTime: 4.513us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 51.182us - ExecTime: 112.828us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.34 KB - MemoryUsage: - Blocks: 1.75 KB - PeakMemoryUsage: 448.00 B - OpenTime: 16.795us - ProjectionTime: 0ns - RowsProduced: 58 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s318ms PipelineXTask (index=3):(Active: 401.697us, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 331.176us - CloseTime: 13.573us - GetBlockTime: 79.399us - OpenTime: 2.413us - PrepareTime: 49.759us - SinkTime: 160.967us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 364.552us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.552ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 1.467us - DeserializeAndMergeTime: 26.448us - ExecTime: 177.756us - ExprTime: 0ns - HashTableComputeTime: 66.269us - HashTableEmplaceTime: 42.718us - HashTableInputCount: 47 - InputRows: 47 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 127.763us - OpenTime: 19.613us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 626.00 B - CloseTime: 10.248us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 31.109us - ExecTime: 82.921us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.72 KB - MemoryUsage: - Blocks: 1.53 KB - PeakMemoryUsage: 352.00 B - OpenTime: 14.632us - ProjectionTime: 0ns - RowsProduced: 47 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s318ms PipelineXTask (index=5):(Active: 496.130us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 420.185us - CloseTime: 6.878us - GetBlockTime: 103.143us - OpenTime: 3.215us - PrepareTime: 57.989us - SinkTime: 211.302us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 461.991us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.733ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 1.129us - DeserializeAndMergeTime: 36.953us - ExecTime: 229.280us - ExprTime: 0ns - HashTableComputeTime: 91.650us - HashTableEmplaceTime: 51.551us - HashTableInputCount: 60 - InputRows: 60 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 167.613us - OpenTime: 22.900us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 676.00 B - CloseTime: 4.517us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 21.353us - ExecTime: 98.822us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.50 KB - MemoryUsage: - Blocks: 1.81 KB - PeakMemoryUsage: 576.00 B - OpenTime: 18.729us - ProjectionTime: 0ns - RowsProduced: 60 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=7):(Active: 338.447us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 267.521us - CloseTime: 4.384us - GetBlockTime: 79.649us - OpenTime: 2.237us - PrepareTime: 59.712us - SinkTime: 127.358us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 316.287us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.212ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 889ns - DeserializeAndMergeTime: 21.697us - ExecTime: 138.235us - ExprTime: 0ns - HashTableComputeTime: 69.670us - HashTableEmplaceTime: 47.215us - HashTableInputCount: 52 - InputRows: 52 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 113.499us - OpenTime: 13.431us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 576.00 B - CloseTime: 2.878us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 16.598us - ExecTime: 92.623us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.06 KB - MemoryUsage: - Blocks: 1.91 KB - PeakMemoryUsage: 800.00 B - OpenTime: 31.556us - ProjectionTime: 0ns - RowsProduced: 52 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=9):(Active: 377.488us, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 299.159us - CloseTime: 16.885us - GetBlockTime: 56.814us - OpenTime: 1.753us - PrepareTime: 54.487us - SinkTime: 172.879us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 339.895us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.83ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 1.437us - DeserializeAndMergeTime: 20.800us - ExecTime: 195.175us - ExprTime: 0ns - HashTableComputeTime: 94.414us - HashTableEmplaceTime: 62.541us - HashTableInputCount: 41 - InputRows: 41 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 158.632us - OpenTime: 24.516us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 425.00 B - CloseTime: 14.349us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 26.9us - ExecTime: 76.869us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.72 KB - MemoryUsage: - Blocks: 1.06 KB - PeakMemoryUsage: 96.00 B - OpenTime: 14.488us - ProjectionTime: 0ns - RowsProduced: 41 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=11):(Active: 328.657us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 253.809us - CloseTime: 3.285us - GetBlockTime: 53.213us - OpenTime: 2.604us - PrepareTime: 62.369us - SinkTime: 134.572us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 306.716us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.29ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 654ns - DeserializeAndMergeTime: 29.703us - ExecTime: 145.745us - ExprTime: 0ns - HashTableComputeTime: 76.110us - HashTableEmplaceTime: 53.638us - HashTableInputCount: 66 - InputRows: 66 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 122.187us - OpenTime: 14.186us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 926.00 B - CloseTime: 1.943us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 18.3us - ExecTime: 70.120us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.66 KB - MemoryUsage: - Blocks: 2.03 KB - PeakMemoryUsage: 224.00 B - OpenTime: 22.977us - ProjectionTime: 0ns - RowsProduced: 66 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms PipelineXTask (index=13):(Active: 388.134us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 266.711us - CloseTime: 71.453us - GetBlockTime: 56.250us - OpenTime: 3.211us - PrepareTime: 40.610us - SinkTime: 141.228us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 295.874us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.49ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 596ns - DeserializeAndMergeTime: 47.916us - ExecTime: 153.323us - ExprTime: 0ns - HashTableComputeTime: 58.970us - HashTableEmplaceTime: 35.950us - HashTableInputCount: 51 - InputRows: 51 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 128.753us - OpenTime: 14.733us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 676.00 B - CloseTime: 70.34us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 22.467us - ExecTime: 130.359us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.94 KB - MemoryUsage: - Blocks: 1.69 KB - PeakMemoryUsage: 384.00 B - OpenTime: 12.344us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s319ms PipelineXTask (index=15):(Active: 272.92us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 209.961us - CloseTime: 2.899us - GetBlockTime: 42.524us - OpenTime: 1.730us - PrepareTime: 51.320us - SinkTime: 114.58us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 252.193us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.960ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 1.184us - DeserializeAndMergeTime: 22.82us - ExecTime: 125.707us - ExprTime: 0ns - HashTableComputeTime: 61.671us - HashTableEmplaceTime: 42.430us - HashTableInputCount: 51 - InputRows: 51 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 103.700us - OpenTime: 13.245us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 626.00 B - CloseTime: 1.298us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 13.651us - ExecTime: 50.725us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.81 KB - MemoryUsage: - Blocks: 1.19 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.715us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms PipelineXTask (index=17):(Active: 339.198us, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 283.642us - CloseTime: 3.132us - GetBlockTime: 63.971us - OpenTime: 2.638us - PrepareTime: 44.172us - SinkTime: 162.262us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 11 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 317.853us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.280ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 755ns - DeserializeAndMergeTime: 21.907us - ExecTime: 178.603us - ExprTime: 0ns - HashTableComputeTime: 78.945us - HashTableEmplaceTime: 61.962us - HashTableInputCount: 51 - InputRows: 51 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 139.182us - OpenTime: 18.630us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 726.00 B - CloseTime: 1.874us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 26.787us - ExecTime: 71.134us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.81 KB - MemoryUsage: - Blocks: 1.81 KB - PeakMemoryUsage: 576.00 B - OpenTime: 11.624us - ProjectionTime: 0ns - RowsProduced: 51 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s318ms PipelineXTask (index=19):(Active: 338.2us, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 273.12us - CloseTime: 2.63us - GetBlockTime: 44.964us - OpenTime: 1.460us - PrepareTime: 56.564us - SinkTime: 157.915us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 316.340us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.892ms AGGREGATION_SINK_OPERATOR (id=41): - BuildTime: 0ns - CloseTime: 494ns - DeserializeAndMergeTime: 28.164us - ExecTime: 177.339us - ExprTime: 0ns - HashTableComputeTime: 81.201us - HashTableEmplaceTime: 51.869us - HashTableInputCount: 67 - InputRows: 67 - MaxRowSizeInBytes: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 143.647us - OpenTime: 22.618us - PendingFinishDependency: 0ns - SerializeDataTime: 0ns - SerializeKeyTime: 0ns - WaitForDependency[AGGREGATION_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=40): - BlocksProduced: 14 - BytesReceived: 676.00 B - CloseTime: 1.125us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 19.48us - ExecTime: 56.132us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.00 KB - MemoryUsage: - Blocks: 1.50 KB - PeakMemoryUsage: 256.00 B - OpenTime: 17.772us - ProjectionTime: 0ns - RowsProduced: 67 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 20s322ms Fragment 137: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 69.22ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 68.654ms - CloseTime: 112.40us - GetBlockTime: 66.629ms - OpenTime: 9.651us - PrepareTime: 223.811us - SinkTime: 269.141us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 147 - NumBlockedTimes: 149 - NumScheduleTimes: 150 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 68.492ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 82.110ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.04 KB - CloseTime: 20.892us - CompressTime: 0ns - ExecTime: 352.437us - InputRows: 62 - LocalBytesSent: 550.00 B - LocalSendTime: 26.113us - LocalSentRows: 11 - MemoryUsage: - PeakMemoryUsage: 7.94 KB - MergeBlockTime: 0ns - OpenTime: 62.684us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 368.372ms - RowsProduced: 62 - RpcAvgTime: 366.219ms - RpcCount: 10 - RpcMaxTime: 366.335ms - RpcMinTime: 366.29ms - RpcSumTime: 3s662ms - SerializeBatchTime: 16.388us - SplitBlockDistributeByChannelTime: 41.910us - SplitBlockHashComputeTime: 7.813us - UncompressedRowBatchSize: 2.88 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 193.512us - CloseTime: 29.227us - DeserializeAndMergeTime: 0ns - ExecTime: 329.208us - ExprTime: 15.901us - GetResultsTime: 28.279us - HashTableComputeTime: 111.858us - HashTableEmplaceTime: 80.649us - HashTableInputCount: 62 - HashTableIterateTime: 1.145us - HashTableSize: 62 - InsertKeysToColumnTime: 5.598us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 37.876us - ProjectionTime: 0ns - RowsProduced: 62 - SerializeDataTime: 15.827us - SerializeKeyTime: 0ns - SerializeResultTime: 29.931us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 22 - BuildOutputBlock: 0ns - CloseTime: 13.918us - ExecTime: 866.151us - InitProbeSideTime: 62.699us - JoinFilterTimer: 1.722us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.492us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.14us - ProbeFindNextTime: 0ns - ProbeRows: 93 - ProbeTime: 454.34us - ProbeWhenBuildSideOutputTime: 41.181us - ProbeWhenProbeSideOutputTime: 19.843us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 70.960us - ProjectionTime: 320.44us - RowsProduced: 62 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 30 - BuildOutputBlock: 0ns - CloseTime: 30.16us - ExecTime: 62.82ms - InitProbeSideTime: 19.142ms - JoinFilterTimer: 4.138ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 16.534us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 72.459us - ProbeFindNextTime: 0ns - ProbeRows: 712.388K (712388) - ProbeTime: 60.849ms - ProbeWhenBuildSideOutputTime: 5.905ms - ProbeWhenProbeSideOutputTime: 561.176us - ProbeWhenProcessHashTableTime: 791.529us - ProbeWhenSearchHashTableTime: 27.823ms - ProjectionTime: 439.201us - RowsProduced: 93 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s908ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 337 - BytesReceived: 20.62 MB - CloseTime: 10.195us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.161ms - ExecTime: 2.614ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.97 MB - MemoryUsage: - Blocks: 6.41 MB - PeakMemoryUsage: 3.97 MB - OpenTime: 30.122us - ProjectionTime: 0ns - RowsProduced: 712.388K (712388) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s532ms PipelineXTask (index=3):(Active: 80.143ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 79.748ms - CloseTime: 99.30us - GetBlockTime: 77.141ms - OpenTime: 10.253us - PrepareTime: 257.617us - SinkTime: 496.213us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 148 - NumBlockedTimes: 150 - NumScheduleTimes: 151 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 79.621ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.726ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 22 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.79 KB - CloseTime: 18.387us - CompressTime: 0ns - ExecTime: 576.940us - InputRows: 58 - LocalBytesSent: 600.00 B - LocalSendTime: 49.31us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 7.66 KB - MergeBlockTime: 0ns - OpenTime: 63.431us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 369.247ms - RowsProduced: 58 - RpcAvgTime: 367.174ms - RpcCount: 10 - RpcMaxTime: 367.231ms - RpcMinTime: 367.94ms - RpcSumTime: 3s671ms - SerializeBatchTime: 45.210us - SplitBlockDistributeByChannelTime: 46.103us - SplitBlockHashComputeTime: 12.303us - UncompressedRowBatchSize: 2.64 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=39): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 206.595us - CloseTime: 16.564us - DeserializeAndMergeTime: 0ns - ExecTime: 394.284us - ExprTime: 25.111us - GetResultsTime: 63.320us - HashTableComputeTime: 118.110us - HashTableEmplaceTime: 84.425us - HashTableInputCount: 58 - HashTableIterateTime: 6.970us - HashTableSize: 58 - InsertKeysToColumnTime: 14.96us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 45.579us - ProjectionTime: 0ns - RowsProduced: 58 - SerializeDataTime: 25.620us - SerializeKeyTime: 0ns - SerializeResultTime: 66.364us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 12.264us - ExecTime: 938.412us - InitProbeSideTime: 79.596us - JoinFilterTimer: 1.637us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 15.111us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.390us - ProbeFindNextTime: 0ns - ProbeRows: 88 - ProbeTime: 483.167us - ProbeWhenBuildSideOutputTime: 44.243us - ProbeWhenProbeSideOutputTime: 18.547us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 49.291us - ProjectionTime: 351.701us - RowsProduced: 58 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 26.10us - ExecTime: 71.781ms - InitProbeSideTime: 23.21ms - JoinFilterTimer: 5.80ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 27.753us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 92.851us - ProbeFindNextTime: 0ns - ProbeRows: 712.735K (712735) - ProbeTime: 70.211ms - ProbeWhenBuildSideOutputTime: 6.677ms - ProbeWhenProbeSideOutputTime: 690.316us - ProbeWhenProcessHashTableTime: 913.32us - ProbeWhenSearchHashTableTime: 30.721ms - ProjectionTime: 527.838us - RowsProduced: 88 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s977ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 337 - BytesReceived: 20.62 MB - CloseTime: 17.585us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.911ms - ExecTime: 3.35ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.93 MB - MemoryUsage: - Blocks: 6.65 MB - PeakMemoryUsage: 3.93 MB - OpenTime: 12.192us - ProjectionTime: 0ns - RowsProduced: 712.735K (712735) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s521ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 3.421ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 3.296ms - CloseTime: 14.411us - GetBlockTime: 96.475us - OpenTime: 2.763us - PrepareTime: 102.693us - SinkTime: 3.142ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.392ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.694ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.560us - BuildRows: 17.656K (17656) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.208ms - BuildTableInsertTime: 1.143ms - BuildTableTime: 1.162ms - CloseTime: 0ns - ExecTime: 3.181ms - InputRows: 17.655K (17655) - MemoryUsage: - BuildBlocks: 724.13 KB - BuildKeyArena: 556.00 KB - HashTable: 196.97 KB - PeakMemoryUsage: 1.44 MB - OpenTime: 41.918us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.459us - RuntimeFilterComputeTime: 493.353us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 10.920us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 109.672us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 972.00 KB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 240.00 KB - OpenTime: 13.454us - ProjectionTime: 0ns - RowsProduced: 17.655K (17655) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 422.232ms PipelineXTask (index=4):(Active: 4.789ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 4.719ms - CloseTime: 15.262us - GetBlockTime: 74.836us - OpenTime: 2.511us - PrepareTime: 45.914us - SinkTime: 4.569ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.753ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.697ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.568us - BuildRows: 17.504K (17504) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.433ms - BuildTableInsertTime: 1.688ms - BuildTableTime: 1.718ms - CloseTime: 0ns - ExecTime: 4.575ms - InputRows: 17.503K (17503) - MemoryUsage: - BuildBlocks: 717.90 KB - BuildKeyArena: 552.00 KB - HashTable: 196.38 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 15.687us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 334.21us - RuntimeFilterComputeTime: 959.620us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 5 - BytesReceived: 0.00 - CloseTime: 11.561us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 86.943us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1006.00 KB - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 240.00 KB - OpenTime: 8.728us - ProjectionTime: 0ns - RowsProduced: 17.503K (17503) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 424.393ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 4.801ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 4.696ms - CloseTime: 9.23us - GetBlockTime: 177.924us - OpenTime: 3.367us - PrepareTime: 84.713us - SinkTime: 4.403ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.759ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.926ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 8.372us - BuildRows: 25.298K (25298) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.367ms - BuildTableInsertTime: 1.367ms - BuildTableTime: 1.370ms - CloseTime: 0ns - ExecTime: 4.441ms - InputRows: 25.297K (25297) - MemoryUsage: - BuildBlocks: 2.03 MB - BuildKeyArena: 820.00 KB - HashTable: 251.53 KB - PeakMemoryUsage: 3.07 MB - OpenTime: 45.394us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.220us - RuntimeFilterComputeTime: 575.781us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 10 - BytesReceived: 550.08 KB - CloseTime: 6.984us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 476.675us - ExecTime: 193.161us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.43 MB - MemoryUsage: - Blocks: 376.00 KB - PeakMemoryUsage: 376.00 KB - OpenTime: 19.403us - ProjectionTime: 0ns - RowsProduced: 25.297K (25297) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s21ms PipelineXTask (index=5):(Active: 6.453ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 6.389ms - CloseTime: 10.664us - GetBlockTime: 245.500us - OpenTime: 2.790us - PrepareTime: 44.122us - SinkTime: 6.15ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 6.412ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.156ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.33us - BuildRows: 24.888K (24888) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.967ms - BuildTableInsertTime: 1.525ms - BuildTableTime: 1.529ms - CloseTime: 0ns - ExecTime: 6.20ms - InputRows: 24.887K (24887) - MemoryUsage: - BuildBlocks: 1.99 MB - BuildKeyArena: 808.00 KB - HashTable: 249.53 KB - PeakMemoryUsage: 3.02 MB - OpenTime: 12.488us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 92.222us - RuntimeFilterComputeTime: 1.329ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 10 - BytesReceived: 531.62 KB - CloseTime: 8.206us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 382.503us - ExecTime: 259.710us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.43 MB - MemoryUsage: - Blocks: 376.00 KB - PeakMemoryUsage: 376.00 KB - OpenTime: 17.787us - ProjectionTime: 0ns - RowsProduced: 24.887K (24887) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s21ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 728.826ms, % non-child: 0.00%) - CoreChangeTimes: 70 - ExecuteTime: 728.456ms - CloseTime: 54.254us - GetBlockTime: 715.952ms - OpenTime: 5.790us - PrepareTime: 235.557us - SinkTime: 447.834us - GetBlockCounter: 4.618K (4618) - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 465 - NumBlockedTimes: 467 - NumScheduleTimes: 473 - NumYieldTimes: 5 - PendingFinishTimes: 1 - TaskCpuTime: 724.699ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 438.636ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 612.00 B - CloseTime: 9.548us - CompressTime: 0ns - ExecTime: 527.983us - InputRows: 43 - LocalBytesSent: 1.61 KB - LocalSendTime: 146.68us - LocalSentRows: 33 - MemoryUsage: - PeakMemoryUsage: 6.69 KB - MergeBlockTime: 0ns - OpenTime: 71.559us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.909ms - RowsProduced: 43 - RpcAvgTime: 1.413ms - RpcCount: 2 - RpcMaxTime: 2.69ms - RpcMinTime: 757.798us - RpcSumTime: 2.826ms - SerializeBatchTime: 12.13us - SplitBlockDistributeByChannelTime: 32.207us - SplitBlockHashComputeTime: 8.605us - UncompressedRowBatchSize: 580.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 426.410us - CloseTime: 17.509us - DeserializeAndMergeTime: 0ns - ExecTime: 605.20us - ExprTime: 45.812us - GetResultsTime: 43.477us - HashTableComputeTime: 212.483us - HashTableEmplaceTime: 150.284us - HashTableInputCount: 43 - HashTableIterateTime: 1.680us - HashTableSize: 43 - InsertKeysToColumnTime: 10.536us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 49.959us - ProjectionTime: 0ns - RowsProduced: 43 - SerializeDataTime: 18.954us - SerializeKeyTime: 0ns - SerializeResultTime: 46.622us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 31 - BuildOutputBlock: 0ns - CloseTime: 8.823us - ExecTime: 5.933ms - InitProbeSideTime: 117.767us - JoinFilterTimer: 2.513us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.106us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.324us - ProbeFindNextTime: 0ns - ProbeRows: 64 - ProbeTime: 738.215us - ProbeWhenBuildSideOutputTime: 63.733us - ProbeWhenProbeSideOutputTime: 35.550us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 54.906us - ProjectionTime: 4.569ms - RowsProduced: 43 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 45 - BuildOutputBlock: 0ns - CloseTime: 8.293us - ExecTime: 634.640ms - InitProbeSideTime: 341.327ms - JoinFilterTimer: 44.921ms - MemoryUsage: - PeakMemoryUsage: 696.00 KB - ProbeKeyArena: 696.00 KB - OpenTime: 12.376us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 934.512us - ProbeFindNextTime: 0ns - ProbeRows: 31.713017M (31713017) - ProbeTime: 613.298ms - ProbeWhenBuildSideOutputTime: 19.364ms - ProbeWhenProbeSideOutputTime: 7.237ms - ProbeWhenProcessHashTableTime: 779.679us - ProbeWhenSearchHashTableTime: 167.726ms - ProjectionTime: 6.150ms - RowsProduced: 64 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s630ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 5.109K (5109) - BytesReceived: 32.28 MB - CloseTime: 4.981us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 20.450ms - ExecTime: 64.885ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 474.64 MB - MemoryUsage: - Blocks: 114.79 MB - PeakMemoryUsage: 114.55 MB - OpenTime: 26.189us - ProjectionTime: 0ns - RowsProduced: 31.713017M (31713017) - SendersBlockedTotalTimer(*): 8s628ms - WaitForDependencyTime: 0ns - WaitForData0: 10s527ms PipelineXTask (index=3):(Active: 98.756ms, % non-child: 0.00%) - CoreChangeTimes: 77 - ExecuteTime: 98.450ms - CloseTime: 80.311us - GetBlockTime: 96.552ms - OpenTime: 9.48us - PrepareTime: 195.994us - SinkTime: 353.542us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 141 - NumBlockedTimes: 143 - NumScheduleTimes: 144 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 98.348ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.396ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 462.00 B - CloseTime: 15.238us - CompressTime: 0ns - ExecTime: 435.22us - InputRows: 49 - LocalBytesSent: 2.07 KB - LocalSendTime: 105.685us - LocalSentRows: 42 - MemoryUsage: - PeakMemoryUsage: 7.28 KB - MergeBlockTime: 0ns - OpenTime: 66.731us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6.102ms - RowsProduced: 49 - RpcAvgTime: 630.768us - RpcCount: 2 - RpcMaxTime: 724.751us - RpcMinTime: 536.785us - RpcSumTime: 1.261ms - SerializeBatchTime: 11.538us - SplitBlockDistributeByChannelTime: 39.398us - SplitBlockHashComputeTime: 6.396us - UncompressedRowBatchSize: 430.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 261.78us - CloseTime: 14.894us - DeserializeAndMergeTime: 0ns - ExecTime: 385.384us - ExprTime: 32.493us - GetResultsTime: 34.462us - HashTableComputeTime: 113.781us - HashTableEmplaceTime: 72.416us - HashTableInputCount: 50 - HashTableIterateTime: 1.137us - HashTableSize: 49 - InsertKeysToColumnTime: 7.148us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 23.184us - ProjectionTime: 0ns - RowsProduced: 49 - SerializeDataTime: 16.178us - SerializeKeyTime: 0ns - SerializeResultTime: 37.113us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 12.50us - ExecTime: 966.334us - InitProbeSideTime: 63.46us - JoinFilterTimer: 5.854us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 12.996us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.185us - ProbeFindNextTime: 0ns - ProbeRows: 79 - ProbeTime: 475.983us - ProbeWhenBuildSideOutputTime: 48.439us - ProbeWhenProbeSideOutputTime: 21.732us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 61.909us - ProjectionTime: 363.757us - RowsProduced: 50 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 19.156us - ExecTime: 92.562ms - InitProbeSideTime: 23.210ms - JoinFilterTimer: 4.826ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 11.694us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 80.901us - ProbeFindNextTime: 0ns - ProbeRows: 712.157K (712157) - ProbeTime: 91.164ms - ProbeWhenBuildSideOutputTime: 7.526ms - ProbeWhenProbeSideOutputTime: 832.808us - ProbeWhenProcessHashTableTime: 981.802us - ProbeWhenSearchHashTableTime: 51.22ms - ProjectionTime: 549.374us - RowsProduced: 79 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s740ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.41 MB - CloseTime: 11.40us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.323ms - ExecTime: 1.639ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.71 MB - MemoryUsage: - Blocks: 3.84 MB - PeakMemoryUsage: 2.25 MB - OpenTime: 16.706us - ProjectionTime: 0ns - RowsProduced: 712.157K (712157) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s90ms PipelineXTask (index=6):(Active: 103.72ms, % non-child: 0.00%) - CoreChangeTimes: 79 - ExecuteTime: 102.722ms - CloseTime: 85.386us - GetBlockTime: 100.746ms - OpenTime: 8.113us - PrepareTime: 226.524us - SinkTime: 311.758us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 142 - NumBlockedTimes: 144 - NumScheduleTimes: 145 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 102.640ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.58ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 578.00 B - CloseTime: 25.443us - CompressTime: 0ns - ExecTime: 410.183us - InputRows: 55 - LocalBytesSent: 2.26 KB - LocalSendTime: 72.917us - LocalSentRows: 46 - MemoryUsage: - PeakMemoryUsage: 7.34 KB - MergeBlockTime: 0ns - OpenTime: 73.956us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.306ms - RowsProduced: 55 - RpcAvgTime: 607.935us - RpcCount: 2 - RpcMaxTime: 706.551us - RpcMinTime: 509.320us - RpcSumTime: 1.215ms - SerializeBatchTime: 10.936us - SplitBlockDistributeByChannelTime: 34.819us - SplitBlockHashComputeTime: 9.404us - UncompressedRowBatchSize: 546.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 217.594us - CloseTime: 11.487us - DeserializeAndMergeTime: 0ns - ExecTime: 354.185us - ExprTime: 20.754us - GetResultsTime: 56.51us - HashTableComputeTime: 107.623us - HashTableEmplaceTime: 71.773us - HashTableInputCount: 57 - HashTableIterateTime: 985ns - HashTableSize: 55 - InsertKeysToColumnTime: 9.781us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 32.679us - ProjectionTime: 0ns - RowsProduced: 55 - SerializeDataTime: 16.550us - SerializeKeyTime: 0ns - SerializeResultTime: 58.221us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 12.858us - ExecTime: 1.4ms - InitProbeSideTime: 70.197us - JoinFilterTimer: 1.563us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 12.748us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.137us - ProbeFindNextTime: 0ns - ProbeRows: 87 - ProbeTime: 471.539us - ProbeWhenBuildSideOutputTime: 42.550us - ProbeWhenProbeSideOutputTime: 31.17us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 57.784us - ProjectionTime: 398.74us - RowsProduced: 57 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 18.247us - ExecTime: 96.559ms - InitProbeSideTime: 24.534ms - JoinFilterTimer: 5.81ms - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 12.850us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 92.261us - ProbeFindNextTime: 0ns - ProbeRows: 711.28K (711280) - ProbeTime: 95.156ms - ProbeWhenBuildSideOutputTime: 7.510ms - ProbeWhenProbeSideOutputTime: 774.123us - ProbeWhenProcessHashTableTime: 924.810us - ProbeWhenSearchHashTableTime: 53.559ms - ProjectionTime: 560.563us - RowsProduced: 87 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s583ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.42 MB - CloseTime: 9.475us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.684ms - ExecTime: 1.757ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.65 MB - MemoryUsage: - Blocks: 4.17 MB - PeakMemoryUsage: 2.48 MB - OpenTime: 28.961us - ProjectionTime: 0ns - RowsProduced: 711.28K (711280) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s84ms PipelineXTask (index=9):(Active: 105.10ms, % non-child: 0.00%) - CoreChangeTimes: 76 - ExecuteTime: 104.601ms - CloseTime: 116.714us - GetBlockTime: 102.571ms - OpenTime: 6.350us - PrepareTime: 257.368us - SinkTime: 385.730us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 136 - NumBlockedTimes: 138 - NumScheduleTimes: 139 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 104.565ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 201.868ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 662.00 B - CloseTime: 18.347us - CompressTime: 0ns - ExecTime: 468.484us - InputRows: 44 - LocalBytesSent: 1.61 KB - LocalSendTime: 118.273us - LocalSentRows: 33 - MemoryUsage: - PeakMemoryUsage: 6.66 KB - MergeBlockTime: 0ns - OpenTime: 65.147us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.361ms - RowsProduced: 44 - RpcAvgTime: 668.947us - RpcCount: 2 - RpcMaxTime: 733.347us - RpcMinTime: 604.548us - RpcSumTime: 1.337ms - SerializeBatchTime: 11.239us - SplitBlockDistributeByChannelTime: 33.965us - SplitBlockHashComputeTime: 9.688us - UncompressedRowBatchSize: 630.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 276.993us - CloseTime: 12.422us - DeserializeAndMergeTime: 0ns - ExecTime: 425.971us - ExprTime: 24.447us - GetResultsTime: 38.156us - HashTableComputeTime: 163.638us - HashTableEmplaceTime: 121.762us - HashTableInputCount: 44 - HashTableIterateTime: 1.204us - HashTableSize: 44 - InsertKeysToColumnTime: 9.386us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 59.374us - ProjectionTime: 0ns - RowsProduced: 44 - SerializeDataTime: 16.783us - SerializeKeyTime: 0ns - SerializeResultTime: 40.951us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 26.419us - ExecTime: 1.225ms - InitProbeSideTime: 69.864us - JoinFilterTimer: 3.504us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 23.579us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.583us - ProbeFindNextTime: 0ns - ProbeRows: 72 - ProbeTime: 556.734us - ProbeWhenBuildSideOutputTime: 41.75us - ProbeWhenProbeSideOutputTime: 25.977us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 55.820us - ProjectionTime: 486.698us - RowsProduced: 44 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 29 - BuildOutputBlock: 0ns - CloseTime: 22.795us - ExecTime: 98.108ms - InitProbeSideTime: 24.812ms - JoinFilterTimer: 5.209ms - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 7.504us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 73.297us - ProbeFindNextTime: 0ns - ProbeRows: 711.855K (711855) - ProbeTime: 96.627ms - ProbeWhenBuildSideOutputTime: 7.768ms - ProbeWhenProbeSideOutputTime: 798.753us - ProbeWhenProcessHashTableTime: 880.516us - ProbeWhenSearchHashTableTime: 54.196ms - ProjectionTime: 600.865us - RowsProduced: 72 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s583ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.41 MB - CloseTime: 25.916us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.506ms - ExecTime: 1.789ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.59 MB - MemoryUsage: - Blocks: 3.98 MB - PeakMemoryUsage: 2.25 MB - OpenTime: 22.436us - ProjectionTime: 0ns - RowsProduced: 711.855K (711855) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s88ms PipelineXTask (index=12):(Active: 103.804ms, % non-child: 0.00%) - CoreChangeTimes: 70 - ExecuteTime: 103.440ms - CloseTime: 104.766us - GetBlockTime: 101.556ms - OpenTime: 9.136us - PrepareTime: 221.524us - SinkTime: 334.248us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 132 - NumBlockedTimes: 134 - NumScheduleTimes: 135 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 103.383ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 195.809ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 728.00 B - CloseTime: 19.580us - CompressTime: 0ns - ExecTime: 422.191us - InputRows: 74 - LocalBytesSent: 3.06 KB - LocalSendTime: 103.687us - LocalSentRows: 62 - MemoryUsage: - PeakMemoryUsage: 8.88 KB - MergeBlockTime: 0ns - OpenTime: 68.709us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.961ms - RowsProduced: 74 - RpcAvgTime: 591.802us - RpcCount: 2 - RpcMaxTime: 660.469us - RpcMinTime: 523.135us - RpcSumTime: 1.183ms - SerializeBatchTime: 9.1us - SplitBlockDistributeByChannelTime: 34.358us - SplitBlockHashComputeTime: 6.826us - UncompressedRowBatchSize: 696.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 322.142us - CloseTime: 27.752us - DeserializeAndMergeTime: 0ns - ExecTime: 488.467us - ExprTime: 29.653us - GetResultsTime: 56.777us - HashTableComputeTime: 162.219us - HashTableEmplaceTime: 101.667us - HashTableInputCount: 77 - HashTableIterateTime: 908ns - HashTableSize: 74 - InsertKeysToColumnTime: 8.602us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 22.402us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 30.720us - SerializeKeyTime: 0ns - SerializeResultTime: 58.757us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 24 - BuildOutputBlock: 0ns - CloseTime: 12.745us - ExecTime: 1.157ms - InitProbeSideTime: 81.61us - JoinFilterTimer: 1.994us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 16.558us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.53us - ProbeFindNextTime: 0ns - ProbeRows: 109 - ProbeTime: 598.91us - ProbeWhenBuildSideOutputTime: 56.261us - ProbeWhenProbeSideOutputTime: 30.310us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 58.781us - ProjectionTime: 415.570us - RowsProduced: 77 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 24.832us - ExecTime: 97.257ms - InitProbeSideTime: 23.767ms - JoinFilterTimer: 5.93ms - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 12.309us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 78.724us - ProbeFindNextTime: 0ns - ProbeRows: 712.27K (712270) - ProbeTime: 95.916ms - ProbeWhenBuildSideOutputTime: 8.32ms - ProbeWhenProbeSideOutputTime: 786.969us - ProbeWhenProcessHashTableTime: 988.257us - ProbeWhenSearchHashTableTime: 54.441ms - ProjectionTime: 530.106us - RowsProduced: 109 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s616ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.43 MB - CloseTime: 10.164us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.465ms - ExecTime: 1.648ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.20 MB - MemoryUsage: - Blocks: 4.36 MB - PeakMemoryUsage: 2.70 MB - OpenTime: 16.476us - ProjectionTime: 0ns - RowsProduced: 712.27K (712270) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s67ms PipelineXTask (index=15):(Active: 100.317ms, % non-child: 0.00%) - CoreChangeTimes: 72 - ExecuteTime: 99.839ms - CloseTime: 116.537us - GetBlockTime: 97.771ms - OpenTime: 9.637us - PrepareTime: 309.340us - SinkTime: 359.139us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 138 - NumBlockedTimes: 140 - NumScheduleTimes: 141 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 99.862ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.184ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 862.00 B - CloseTime: 32.28us - CompressTime: 0ns - ExecTime: 458.23us - InputRows: 63 - LocalBytesSent: 2.36 KB - LocalSendTime: 75.968us - LocalSentRows: 48 - MemoryUsage: - PeakMemoryUsage: 8.16 KB - MergeBlockTime: 0ns - OpenTime: 67.311us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.202ms - RowsProduced: 63 - RpcAvgTime: 657.560us - RpcCount: 2 - RpcMaxTime: 720.200us - RpcMinTime: 594.921us - RpcSumTime: 1.315ms - SerializeBatchTime: 13.428us - SplitBlockDistributeByChannelTime: 33.826us - SplitBlockHashComputeTime: 8.796us - UncompressedRowBatchSize: 830.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 227.113us - CloseTime: 15.762us - DeserializeAndMergeTime: 0ns - ExecTime: 444.849us - ExprTime: 21.644us - GetResultsTime: 40.256us - HashTableComputeTime: 122.339us - HashTableEmplaceTime: 82.200us - HashTableInputCount: 64 - HashTableIterateTime: 893ns - HashTableSize: 63 - InsertKeysToColumnTime: 10.409us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 128.77us - ProjectionTime: 0ns - RowsProduced: 63 - SerializeDataTime: 19.704us - SerializeKeyTime: 0ns - SerializeResultTime: 42.646us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 16 - BuildOutputBlock: 0ns - CloseTime: 12.904us - ExecTime: 993.494us - InitProbeSideTime: 71.577us - JoinFilterTimer: 1.441us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.957us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.689us - ProbeFindNextTime: 0ns - ProbeRows: 90 - ProbeTime: 488.747us - ProbeWhenBuildSideOutputTime: 42.668us - ProbeWhenProbeSideOutputTime: 20.792us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 50.670us - ProjectionTime: 376.282us - RowsProduced: 64 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 26 - BuildOutputBlock: 0ns - CloseTime: 40.927us - ExecTime: 93.834ms - InitProbeSideTime: 23.506ms - JoinFilterTimer: 5.16ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 8.756us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 66.608us - ProbeFindNextTime: 0ns - ProbeRows: 712.137K (712137) - ProbeTime: 92.438ms - ProbeWhenBuildSideOutputTime: 7.719ms - ProbeWhenProbeSideOutputTime: 791.389us - ProbeWhenProcessHashTableTime: 1.135ms - ProbeWhenSearchHashTableTime: 51.448ms - ProjectionTime: 586.31us - RowsProduced: 90 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s725ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.40 MB - CloseTime: 7.895us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.640ms - ExecTime: 1.623ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.42 MB - MemoryUsage: - Blocks: 4.49 MB - PeakMemoryUsage: 2.77 MB - OpenTime: 20.761us - ProjectionTime: 0ns - RowsProduced: 712.137K (712137) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s94ms PipelineXTask (index=18):(Active: 102.507ms, % non-child: 0.00%) - CoreChangeTimes: 75 - ExecuteTime: 102.95ms - CloseTime: 87.214us - GetBlockTime: 100.65ms - OpenTime: 6.845us - PrepareTime: 285.507us - SinkTime: 411.341us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 141 - NumBlockedTimes: 143 - NumScheduleTimes: 144 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 102.89ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 42.687ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 106.00 B - CloseTime: 19.951us - CompressTime: 0ns - ExecTime: 519.657us - InputRows: 40 - LocalBytesSent: 1.90 KB - LocalSendTime: 119.345us - LocalSentRows: 39 - MemoryUsage: - PeakMemoryUsage: 6.03 KB - MergeBlockTime: 0ns - OpenTime: 89.492us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.645ms - RowsProduced: 40 - RpcAvgTime: 546.647us - RpcCount: 2 - RpcMaxTime: 632.600us - RpcMinTime: 460.694us - RpcSumTime: 1.93ms - SerializeBatchTime: 7.576us - SplitBlockDistributeByChannelTime: 34.411us - SplitBlockHashComputeTime: 9.175us - UncompressedRowBatchSize: 90.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 167.703us - CloseTime: 12.831us - DeserializeAndMergeTime: 0ns - ExecTime: 269.219us - ExprTime: 22.180us - GetResultsTime: 35.809us - HashTableComputeTime: 95.792us - HashTableEmplaceTime: 64.343us - HashTableInputCount: 40 - HashTableIterateTime: 998ns - HashTableSize: 40 - InsertKeysToColumnTime: 11.233us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 25.952us - ProjectionTime: 0ns - RowsProduced: 40 - SerializeDataTime: 15.348us - SerializeKeyTime: 0ns - SerializeResultTime: 38.391us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 12 - BuildOutputBlock: 0ns - CloseTime: 13.427us - ExecTime: 1.40ms - InitProbeSideTime: 74.15us - JoinFilterTimer: 1.823us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.944us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.622us - ProbeFindNextTime: 0ns - ProbeRows: 82 - ProbeTime: 540.752us - ProbeWhenBuildSideOutputTime: 54.2us - ProbeWhenProbeSideOutputTime: 20.553us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 55.395us - ProjectionTime: 368.248us - RowsProduced: 40 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 29 - BuildOutputBlock: 0ns - CloseTime: 19.278us - ExecTime: 96.82ms - InitProbeSideTime: 24.153ms - JoinFilterTimer: 5.198ms - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 15.235us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 79.721us - ProbeFindNextTime: 0ns - ProbeRows: 712.354K (712354) - ProbeTime: 94.664ms - ProbeWhenBuildSideOutputTime: 7.683ms - ProbeWhenProbeSideOutputTime: 771.86us - ProbeWhenProcessHashTableTime: 857.763us - ProbeWhenSearchHashTableTime: 53.197ms - ProjectionTime: 578.66us - RowsProduced: 82 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s741ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.42 MB - CloseTime: 11.841us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.546ms - ExecTime: 1.679ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.57 MB - MemoryUsage: - Blocks: 4.32 MB - PeakMemoryUsage: 2.63 MB - OpenTime: 14.887us - ProjectionTime: 0ns - RowsProduced: 712.354K (712354) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s98ms PipelineXTask (index=21):(Active: 96.964ms, % non-child: 0.00%) - CoreChangeTimes: 86 - ExecuteTime: 96.633ms - CloseTime: 68.678us - GetBlockTime: 94.692ms - OpenTime: 6.310us - PrepareTime: 227.784us - SinkTime: 276.272us - GetBlockCounter: 181 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 142 - NumBlockedTimes: 144 - NumScheduleTimes: 145 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 96.565ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.923ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 462.00 B - CloseTime: 14.641us - CompressTime: 0ns - ExecTime: 352.36us - InputRows: 46 - LocalBytesSent: 1.92 KB - LocalSendTime: 67.911us - LocalSentRows: 39 - MemoryUsage: - PeakMemoryUsage: 6.94 KB - MergeBlockTime: 0ns - OpenTime: 61.446us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.327ms - RowsProduced: 46 - RpcAvgTime: 759.673us - RpcCount: 2 - RpcMaxTime: 825.816us - RpcMinTime: 693.530us - RpcSumTime: 1.519ms - SerializeBatchTime: 8.88us - SplitBlockDistributeByChannelTime: 20.890us - SplitBlockHashComputeTime: 5.225us - UncompressedRowBatchSize: 430.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 244.311us - CloseTime: 11.498us - DeserializeAndMergeTime: 0ns - ExecTime: 345.814us - ExprTime: 23.146us - GetResultsTime: 26.466us - HashTableComputeTime: 128.787us - HashTableEmplaceTime: 74.317us - HashTableInputCount: 47 - HashTableIterateTime: 885ns - HashTableSize: 46 - InsertKeysToColumnTime: 6.84us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 29.141us - ProjectionTime: 0ns - RowsProduced: 46 - SerializeDataTime: 13.150us - SerializeKeyTime: 0ns - SerializeResultTime: 28.428us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 10.725us - ExecTime: 1.95ms - InitProbeSideTime: 84.250us - JoinFilterTimer: 1.817us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 18.405us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.937us - ProbeFindNextTime: 0ns - ProbeRows: 86 - ProbeTime: 499.479us - ProbeWhenBuildSideOutputTime: 36.150us - ProbeWhenProbeSideOutputTime: 21.949us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.156us - ProjectionTime: 455.589us - RowsProduced: 47 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 31 - BuildOutputBlock: 0ns - CloseTime: 13.293us - ExecTime: 90.656ms - InitProbeSideTime: 23.208ms - JoinFilterTimer: 4.924ms - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 11.208us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 84.866us - ProbeFindNextTime: 0ns - ProbeRows: 712.683K (712683) - ProbeTime: 89.304ms - ProbeWhenBuildSideOutputTime: 7.264ms - ProbeWhenProbeSideOutputTime: 772.741us - ProbeWhenProcessHashTableTime: 543.729us - ProbeWhenSearchHashTableTime: 49.806ms - ProjectionTime: 560.601us - RowsProduced: 86 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s689ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 199 - BytesReceived: 2.42 MB - CloseTime: 11.206us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.642ms - ExecTime: 1.538ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.49 MB - MemoryUsage: - Blocks: 4.31 MB - PeakMemoryUsage: 2.67 MB - OpenTime: 10.843us - ProjectionTime: 0ns - RowsProduced: 712.683K (712683) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s185ms PipelineXTask (index=24):(Active: 96.496ms, % non-child: 0.00%) - CoreChangeTimes: 87 - ExecuteTime: 96.141ms - CloseTime: 88.223us - GetBlockTime: 94.389ms - OpenTime: 6.584us - PrepareTime: 225.132us - SinkTime: 285.952us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 132 - NumBlockedTimes: 134 - NumScheduleTimes: 135 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 96.77ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 51.815ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 512.00 B - CloseTime: 19.368us - CompressTime: 0ns - ExecTime: 373.697us - InputRows: 49 - LocalBytesSent: 2.02 KB - LocalSendTime: 93.449us - LocalSentRows: 41 - MemoryUsage: - PeakMemoryUsage: 6.94 KB - MergeBlockTime: 0ns - OpenTime: 75.432us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.315ms - RowsProduced: 49 - RpcAvgTime: 650.523us - RpcCount: 2 - RpcMaxTime: 715.782us - RpcMinTime: 585.265us - RpcSumTime: 1.301ms - SerializeBatchTime: 6.822us - SplitBlockDistributeByChannelTime: 23.924us - SplitBlockHashComputeTime: 5.864us - UncompressedRowBatchSize: 480.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 258.90us - CloseTime: 13.654us - DeserializeAndMergeTime: 0ns - ExecTime: 384.78us - ExprTime: 20.380us - GetResultsTime: 28.475us - HashTableComputeTime: 138.157us - HashTableEmplaceTime: 91.580us - HashTableInputCount: 50 - HashTableIterateTime: 934ns - HashTableSize: 49 - InsertKeysToColumnTime: 7.370us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 1.48 KB - PeakMemoryUsage: 529.48 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 41.749us - ProjectionTime: 0ns - RowsProduced: 49 - SerializeDataTime: 13.580us - SerializeKeyTime: 0ns - SerializeResultTime: 30.186us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 25.912us - ExecTime: 1.46ms - InitProbeSideTime: 73.648us - JoinFilterTimer: 1.926us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 13.542us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.667us - ProbeFindNextTime: 0ns - ProbeRows: 72 - ProbeTime: 530.228us - ProbeWhenBuildSideOutputTime: 58.367us - ProbeWhenProbeSideOutputTime: 22.396us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 43.101us - ProjectionTime: 371.744us - RowsProduced: 50 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 30 - BuildOutputBlock: 0ns - CloseTime: 15.220us - ExecTime: 90.476ms - InitProbeSideTime: 23.122ms - JoinFilterTimer: 4.689ms - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 13.850us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 68.121us - ProbeFindNextTime: 0ns - ProbeRows: 712.115K (712115) - ProbeTime: 89.170ms - ProbeWhenBuildSideOutputTime: 7.797ms - ProbeWhenProbeSideOutputTime: 754.890us - ProbeWhenProcessHashTableTime: 802.878us - ProbeWhenSearchHashTableTime: 49.479ms - ProjectionTime: 528.460us - RowsProduced: 72 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s764ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.40 MB - CloseTime: 6.781us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.349ms - ExecTime: 1.570ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.60 MB - MemoryUsage: - Blocks: 4.45 MB - PeakMemoryUsage: 2.71 MB - OpenTime: 18.806us - ProjectionTime: 0ns - RowsProduced: 712.115K (712115) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s73ms PipelineXTask (index=27):(Active: 104.38ms, % non-child: 0.00%) - CoreChangeTimes: 83 - ExecuteTime: 103.682ms - CloseTime: 93.30us - GetBlockTime: 101.187ms - OpenTime: 6.134us - PrepareTime: 227.816us - SinkTime: 829.534us - GetBlockCounter: 180 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 142 - NumBlockedTimes: 144 - NumScheduleTimes: 145 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 103.146ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 248.202ms DATA_STREAM_SINK_OPERATOR (id=40,dst_id=40): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 712.00 B - CloseTime: 19.765us - CompressTime: 0ns - ExecTime: 916.624us - InputRows: 76 - LocalBytesSent: 3.14 KB - LocalSendTime: 493.309us - LocalSentRows: 64 - MemoryUsage: - PeakMemoryUsage: 8.88 KB - MergeBlockTime: 0ns - OpenTime: 67.700us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9.214ms - RowsProduced: 76 - RpcAvgTime: 570.652us - RpcCount: 2 - RpcMaxTime: 642.213us - RpcMinTime: 499.92us - RpcSumTime: 1.141ms - SerializeBatchTime: 17.626us - SplitBlockDistributeByChannelTime: 35.584us - SplitBlockHashComputeTime: 8.103us - UncompressedRowBatchSize: 680.00 B - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 273.977us - CloseTime: 17.645us - DeserializeAndMergeTime: 0ns - ExecTime: 395.371us - ExprTime: 24.748us - GetResultsTime: 37.505us - HashTableComputeTime: 142.902us - HashTableEmplaceTime: 90.817us - HashTableInputCount: 77 - HashTableIterateTime: 1.89us - HashTableSize: 76 - InsertKeysToColumnTime: 9.915us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 2.98 KB - PeakMemoryUsage: 530.98 KB - SerializeKeyArena: 528.00 KB - MergeTime: 0ns - OpenTime: 21.807us - ProjectionTime: 0ns - RowsProduced: 76 - SerializeDataTime: 20.101us - SerializeKeyTime: 0ns - SerializeResultTime: 39.545us - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=38): - BlocksProduced: 25 - BuildOutputBlock: 0ns - CloseTime: 16.311us - ExecTime: 1.236ms - InitProbeSideTime: 70.17us - JoinFilterTimer: 1.957us - MemoryUsage: - PeakMemoryUsage: 4.00 KB - ProbeKeyArena: 4.00 KB - OpenTime: 14.540us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.302us - ProbeFindNextTime: 0ns - ProbeRows: 109 - ProbeTime: 622.849us - ProbeWhenBuildSideOutputTime: 71.972us - ProbeWhenProbeSideOutputTime: 30.643us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 65.516us - ProjectionTime: 480.480us - RowsProduced: 77 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=37): - BlocksProduced: 30 - BuildOutputBlock: 0ns - CloseTime: 21.698us - ExecTime: 96.847ms - InitProbeSideTime: 24.460ms - JoinFilterTimer: 5.212ms - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 9.885us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 89.23us - ProbeFindNextTime: 0ns - ProbeRows: 713.002K (713002) - ProbeTime: 95.408ms - ProbeWhenBuildSideOutputTime: 7.955ms - ProbeWhenProbeSideOutputTime: 808.825us - ProbeWhenProcessHashTableTime: 1.40ms - ProbeWhenSearchHashTableTime: 53.51ms - ProjectionTime: 605.383us - RowsProduced: 109 - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s533ms EXCHANGE_OPERATOR (id=36): - BlocksProduced: 197 - BytesReceived: 2.41 MB - CloseTime: 8.790us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.540ms - ExecTime: 1.748ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 33.51 MB - MemoryUsage: - Blocks: 3.89 MB - PeakMemoryUsage: 2.20 MB - OpenTime: 59.800us - ProjectionTime: 0ns - RowsProduced: 713.002K (713002) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 3s102ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 3.75ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 3.1ms - CloseTime: 9.81us - GetBlockTime: 100.359us - OpenTime: 2.543us - PrepareTime: 57.259us - SinkTime: 2.816ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.48ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 975.705us HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.0us - BuildRows: 17.536K (17536) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 568.714us - BuildTableInsertTime: 977.35us - BuildTableTime: 996.630us - CloseTime: 0ns - ExecTime: 2.833ms - InputRows: 17.535K (17535) - MemoryUsage: - BuildBlocks: 719.21 KB - BuildKeyArena: 556.00 KB - HashTable: 196.50 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 21.436us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 27.265us - RuntimeFilterComputeTime: 887.670us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 628.19 KB - CloseTime: 7.602us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 299.302us - ExecTime: 112.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.290us - ProjectionTime: 0ns - RowsProduced: 17.535K (17535) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s817ms PipelineXTask (index=4):(Active: 2.900ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 2.833ms - CloseTime: 8.315us - GetBlockTime: 152.553us - OpenTime: 3.20us - PrepareTime: 51.703us - SinkTime: 2.598ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.872ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.585ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.227us - BuildRows: 17.183K (17183) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 796.119us - BuildTableInsertTime: 725.45us - BuildTableTime: 747.536us - CloseTime: 0ns - ExecTime: 2.607ms - InputRows: 17.182K (17182) - MemoryUsage: - BuildBlocks: 704.73 KB - BuildKeyArena: 544.00 KB - HashTable: 195.13 KB - PeakMemoryUsage: 1.41 MB - OpenTime: 14.482us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 26.577us - RuntimeFilterComputeTime: 829.239us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 615.61 KB - CloseTime: 6.929us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 307.893us - ExecTime: 164.645us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 12.631us - ProjectionTime: 0ns - RowsProduced: 17.182K (17182) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s817ms PipelineXTask (index=7):(Active: 2.339ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.260ms - CloseTime: 5.146us - GetBlockTime: 100.707us - OpenTime: 2.255us - PrepareTime: 64.803us - SinkTime: 2.82ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.315ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.880ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.733us - BuildRows: 17.517K (17517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 713.518us - BuildTableInsertTime: 565.815us - BuildTableTime: 579.251us - CloseTime: 0ns - ExecTime: 2.102ms - InputRows: 17.516K (17516) - MemoryUsage: - BuildBlocks: 718.43 KB - BuildKeyArena: 552.00 KB - HashTable: 196.43 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 24.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 32.384us - RuntimeFilterComputeTime: 621.278us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 627.39 KB - CloseTime: 4.116us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 251.908us - ExecTime: 113.517us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.669us - ProjectionTime: 0ns - RowsProduced: 17.516K (17516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s820ms PipelineXTask (index=10):(Active: 3.188ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.102ms - CloseTime: 7.458us - GetBlockTime: 72.973us - OpenTime: 12.385us - PrepareTime: 60.381us - SinkTime: 2.954ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.164ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 974.358us HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.445us - BuildRows: 17.569K (17569) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.3ms - BuildTableInsertTime: 879.139us - BuildTableTime: 901.393us - CloseTime: 0ns - ExecTime: 2.966ms - InputRows: 17.568K (17568) - MemoryUsage: - BuildBlocks: 720.56 KB - BuildKeyArena: 556.00 KB - HashTable: 196.63 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 17.355us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 27.245us - RuntimeFilterComputeTime: 916.266us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 629.15 KB - CloseTime: 5.887us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 315.585us - ExecTime: 87.930us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.339us - ProjectionTime: 0ns - RowsProduced: 17.568K (17568) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s820ms PipelineXTask (index=13):(Active: 2.945ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 2.833ms - CloseTime: 38.282us - GetBlockTime: 100.122us - OpenTime: 2.25us - PrepareTime: 66.419us - SinkTime: 2.662ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.889ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 689.223us HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.38us - BuildRows: 17.413K (17413) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 717.803us - BuildTableInsertTime: 931.190us - BuildTableTime: 951.111us - CloseTime: 0ns - ExecTime: 2.677ms - InputRows: 17.412K (17412) - MemoryUsage: - BuildBlocks: 714.16 KB - BuildKeyArena: 552.00 KB - HashTable: 196.02 KB - PeakMemoryUsage: 1.42 MB - OpenTime: 18.378us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 42.262us - RuntimeFilterComputeTime: 853.217us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 623.69 KB - CloseTime: 19.324us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 298.31us - ExecTime: 147.866us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 19.221us - ProjectionTime: 0ns - RowsProduced: 17.412K (17412) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s815ms PipelineXTask (index=16):(Active: 2.21ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 1.953ms - CloseTime: 6.736us - GetBlockTime: 71.725us - OpenTime: 2.791us - PrepareTime: 54.190us - SinkTime: 1.804ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.999ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.150ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.13us - BuildRows: 17.597K (17597) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 729.951us - BuildTableInsertTime: 438.57us - BuildTableTime: 452.905us - CloseTime: 0ns - ExecTime: 1.815ms - InputRows: 17.596K (17596) - MemoryUsage: - BuildBlocks: 721.71 KB - BuildKeyArena: 556.00 KB - HashTable: 196.74 KB - PeakMemoryUsage: 1.44 MB - OpenTime: 14.17us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 25.226us - RuntimeFilterComputeTime: 492.207us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 630.34 KB - CloseTime: 5.331us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 353.26us - ExecTime: 85.901us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 16.370us - ProjectionTime: 0ns - RowsProduced: 17.596K (17596) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s817ms PipelineXTask (index=19):(Active: 2.10ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 1.932ms - CloseTime: 6.484us - GetBlockTime: 70.988us - OpenTime: 2.584us - PrepareTime: 64.872us - SinkTime: 1.802ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.990ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.367ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.529us - BuildRows: 17.517K (17517) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 697.188us - BuildTableInsertTime: 464.320us - BuildTableTime: 477.954us - CloseTime: 0ns - ExecTime: 1.817ms - InputRows: 17.516K (17516) - MemoryUsage: - BuildBlocks: 718.43 KB - BuildKeyArena: 552.00 KB - HashTable: 196.43 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 18.360us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 35.783us - RuntimeFilterComputeTime: 503.205us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 627.29 KB - CloseTime: 5.12us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 400.952us - ExecTime: 90.964us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 21.953us - ProjectionTime: 0ns - RowsProduced: 17.516K (17516) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s821ms PipelineXTask (index=22):(Active: 2.579ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 2.501ms - CloseTime: 10.677us - GetBlockTime: 84.722us - OpenTime: 1.992us - PrepareTime: 60.484us - SinkTime: 2.355ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.553ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.580ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 3.478us - BuildRows: 17.612K (17612) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 434.139us - BuildTableInsertTime: 806.306us - BuildTableTime: 827.439us - CloseTime: 0ns - ExecTime: 2.367ms - InputRows: 17.611K (17611) - MemoryUsage: - BuildBlocks: 722.33 KB - BuildKeyArena: 556.00 KB - HashTable: 196.80 KB - PeakMemoryUsage: 1.44 MB - OpenTime: 17.135us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 44.211us - RuntimeFilterComputeTime: 904.162us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 630.73 KB - CloseTime: 8.189us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 423.518us - ExecTime: 106.552us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 18.919us - ProjectionTime: 0ns - RowsProduced: 17.611K (17611) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s819ms PipelineXTask (index=25):(Active: 3.630ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.535ms - CloseTime: 13.328us - GetBlockTime: 134.564us - OpenTime: 3.870us - PrepareTime: 70.972us - SinkTime: 3.324ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.598ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.294ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.98us - BuildRows: 17.441K (17441) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.38ms - BuildTableInsertTime: 759.542us - BuildTableTime: 783.155us - CloseTime: 0ns - ExecTime: 3.350ms - InputRows: 17.44K (17440) - MemoryUsage: - BuildBlocks: 715.31 KB - BuildKeyArena: 552.00 KB - HashTable: 196.13 KB - PeakMemoryUsage: 1.43 MB - OpenTime: 31.331us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 423.456us - RuntimeFilterComputeTime: 937.714us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 624.90 KB - CloseTime: 10.313us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 299.92us - ExecTime: 150.849us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.700us - ProjectionTime: 0ns - RowsProduced: 17.44K (17440) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s854ms PipelineXTask (index=28):(Active: 2.58ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 1.980ms - CloseTime: 11.922us - GetBlockTime: 133.899us - OpenTime: 1.536us - PrepareTime: 59.924us - SinkTime: 1.770ms - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 2.26ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.371ms HASH_JOIN_SINK_OPERATOR (id=38): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.878us - BuildRows: 17.374K (17374) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 599.664us - BuildTableInsertTime: 462.112us - BuildTableTime: 476.816us - CloseTime: 0ns - ExecTime: 1.787ms - InputRows: 17.373K (17373) - MemoryUsage: - BuildBlocks: 712.56 KB - BuildKeyArena: 548.00 KB - HashTable: 195.87 KB - PeakMemoryUsage: 1.42 MB - OpenTime: 22.33us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 56.177us - RuntimeFilterComputeTime: 516.747us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=26): - BlocksProduced: 10 - BytesReceived: 622.36 KB - CloseTime: 9.504us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 297.616us - ExecTime: 147.463us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 240.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.996us - ProjectionTime: 0ns - RowsProduced: 17.373K (17373) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s855ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 3.248ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 3.188ms - CloseTime: 12.297us - GetBlockTime: 137.595us - OpenTime: 1.591us - PrepareTime: 41.904us - SinkTime: 2.947ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.217ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.481ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.148us - BuildRows: 25.184K (25184) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.401ms - BuildTableInsertTime: 853.900us - BuildTableTime: 855.945us - CloseTime: 0ns - ExecTime: 2.955ms - InputRows: 25.183K (25183) - MemoryUsage: - BuildBlocks: 2.01 MB - BuildKeyArena: 816.00 KB - HashTable: 250.97 KB - PeakMemoryUsage: 3.05 MB - OpenTime: 14.21us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.357us - RuntimeFilterComputeTime: 619.698us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 827.21 KB - CloseTime: 9.979us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 697.399us - ExecTime: 149.267us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 376.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.782us - ProjectionTime: 0ns - RowsProduced: 25.183K (25183) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s2ms PipelineXTask (index=5):(Active: 4.42ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 3.922ms - CloseTime: 6.822us - GetBlockTime: 173.304us - OpenTime: 1.300us - PrepareTime: 106.15us - SinkTime: 3.667ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.16ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.694ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.100us - BuildRows: 24.742K (24742) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.711ms - BuildTableInsertTime: 1.311ms - BuildTableTime: 1.315ms - CloseTime: 0ns - ExecTime: 3.710ms - InputRows: 24.741K (24741) - MemoryUsage: - BuildBlocks: 1.98 MB - BuildKeyArena: 804.00 KB - HashTable: 248.81 KB - PeakMemoryUsage: 3.01 MB - OpenTime: 47.920us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.350us - RuntimeFilterComputeTime: 574.763us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 822.63 KB - CloseTime: 5.87us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.180ms - ExecTime: 187.896us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 424.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.735us - ProjectionTime: 0ns - RowsProduced: 24.741K (24741) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s1ms PipelineXTask (index=8):(Active: 3.574ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 3.516ms - CloseTime: 6.95us - GetBlockTime: 165.711us - OpenTime: 1.397us - PrepareTime: 46.266us - SinkTime: 3.269ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 3.548ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.217ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.164us - BuildRows: 25.201K (25201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.579ms - BuildTableInsertTime: 881.729us - BuildTableTime: 884.71us - CloseTime: 0ns - ExecTime: 3.276ms - InputRows: 25.2K (25200) - MemoryUsage: - BuildBlocks: 2.02 MB - BuildKeyArena: 820.00 KB - HashTable: 251.06 KB - PeakMemoryUsage: 3.06 MB - OpenTime: 13.965us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.513us - RuntimeFilterComputeTime: 733.708us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 825.31 KB - CloseTime: 4.720us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 642.715us - ExecTime: 176.631us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 424.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.52us - ProjectionTime: 0ns - RowsProduced: 25.2K (25200) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s1ms PipelineXTask (index=11):(Active: 4.422ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.348ms - CloseTime: 7.961us - GetBlockTime: 158.462us - OpenTime: 2.188us - PrepareTime: 55.174us - SinkTime: 4.93ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.387ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 743.19us HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.540us - BuildRows: 24.801K (24801) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.519ms - BuildTableInsertTime: 883.601us - BuildTableTime: 885.532us - CloseTime: 0ns - ExecTime: 4.102ms - InputRows: 24.8K (24800) - MemoryUsage: - BuildBlocks: 1.99 MB - BuildKeyArena: 804.00 KB - HashTable: 249.10 KB - PeakMemoryUsage: 3.01 MB - OpenTime: 15.26us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.685us - RuntimeFilterComputeTime: 612.768us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 828.01 KB - CloseTime: 6.117us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 744.603us - ExecTime: 168.31us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 376.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.130us - ProjectionTime: 0ns - RowsProduced: 24.8K (24800) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s3ms PipelineXTask (index=14):(Active: 4.671ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.593ms - CloseTime: 9.479us - GetBlockTime: 169.521us - OpenTime: 2.197us - PrepareTime: 60.644us - SinkTime: 4.318ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.639ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.93ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 9.446us - BuildRows: 25.284K (25284) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.884ms - BuildTableInsertTime: 1.295ms - BuildTableTime: 1.299ms - CloseTime: 0ns - ExecTime: 4.326ms - InputRows: 25.283K (25283) - MemoryUsage: - BuildBlocks: 2.03 MB - BuildKeyArena: 820.00 KB - HashTable: 251.46 KB - PeakMemoryUsage: 3.07 MB - OpenTime: 14.100us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.100us - RuntimeFilterComputeTime: 1.43ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 835.75 KB - CloseTime: 6.898us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 612.33us - ExecTime: 178.600us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 376.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 13.448us - ProjectionTime: 0ns - RowsProduced: 25.283K (25283) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s4ms PipelineXTask (index=17):(Active: 4.882ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.819ms - CloseTime: 8.723us - GetBlockTime: 128.30us - OpenTime: 1.618us - PrepareTime: 47.164us - SinkTime: 4.600ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.843ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.138ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 4.887us - BuildRows: 25.009K (25009) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.973ms - BuildTableInsertTime: 1.427ms - BuildTableTime: 1.430ms - CloseTime: 0ns - ExecTime: 4.606ms - InputRows: 25.008K (25008) - MemoryUsage: - BuildBlocks: 2.00 MB - BuildKeyArena: 812.00 KB - HashTable: 250.12 KB - PeakMemoryUsage: 3.04 MB - OpenTime: 10.869us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 145.372us - RuntimeFilterComputeTime: 975.909us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 833.69 KB - CloseTime: 6.327us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 812.90us - ExecTime: 138.327us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 376.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.137us - ProjectionTime: 0ns - RowsProduced: 25.008K (25008) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s3ms PipelineXTask (index=20):(Active: 4.245ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.105ms - CloseTime: 25.149us - GetBlockTime: 172.437us - OpenTime: 2.337us - PrepareTime: 105.608us - SinkTime: 3.839ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.197ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.895ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 7.319us - BuildRows: 24.847K (24847) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.827ms - BuildTableInsertTime: 1.109ms - BuildTableTime: 1.114ms - CloseTime: 0ns - ExecTime: 3.899ms - InputRows: 24.846K (24846) - MemoryUsage: - BuildBlocks: 1.99 MB - BuildKeyArena: 808.00 KB - HashTable: 249.33 KB - PeakMemoryUsage: 3.02 MB - OpenTime: 66.922us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.708us - RuntimeFilterComputeTime: 794.944us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 823.87 KB - CloseTime: 22.226us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.91ms - ExecTime: 200.32us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 424.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 17.118us - ProjectionTime: 0ns - RowsProduced: 24.846K (24846) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s0ms PipelineXTask (index=23):(Active: 5.90ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 5.17ms - CloseTime: 21.416us - GetBlockTime: 164.638us - OpenTime: 2.57us - PrepareTime: 44.582us - SinkTime: 4.745ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 5.31ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.984ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.353us - BuildRows: 24.989K (24989) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.400ms - BuildTableInsertTime: 1.166ms - BuildTableTime: 1.169ms - CloseTime: 0ns - ExecTime: 4.755ms - InputRows: 24.988K (24988) - MemoryUsage: - BuildBlocks: 2.00 MB - BuildKeyArena: 812.00 KB - HashTable: 250.02 KB - PeakMemoryUsage: 3.03 MB - OpenTime: 14.965us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.711us - RuntimeFilterComputeTime: 1.110ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 824.13 KB - CloseTime: 19.524us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.192ms - ExecTime: 191.94us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 424.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 15.169us - ProjectionTime: 0ns - RowsProduced: 24.988K (24988) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s3ms PipelineXTask (index=26):(Active: 4.319ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 4.254ms - CloseTime: 8.462us - GetBlockTime: 153.669us - OpenTime: 1.938us - PrepareTime: 49.300us - SinkTime: 4.7ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.282ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.411ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 6.91us - BuildRows: 24.959K (24959) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 1.554ms - BuildTableInsertTime: 1.423ms - BuildTableTime: 1.428ms - CloseTime: 0ns - ExecTime: 4.12ms - InputRows: 24.958K (24958) - MemoryUsage: - BuildBlocks: 2.00 MB - BuildKeyArena: 812.00 KB - HashTable: 249.87 KB - PeakMemoryUsage: 3.03 MB - OpenTime: 10.658us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.938us - RuntimeFilterComputeTime: 917.547us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 815.43 KB - CloseTime: 6.257us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 699.226us - ExecTime: 158.904us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 424.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 9.715us - ProjectionTime: 0ns - RowsProduced: 24.958K (24958) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s3ms PipelineXTask (index=29):(Active: 4.422ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 4.365ms - CloseTime: 9.21us - GetBlockTime: 120.227us - OpenTime: 1.577us - PrepareTime: 42.280us - SinkTime: 4.145ms - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 4.391ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.222ms HASH_JOIN_SINK_OPERATOR (id=37): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 5.54us - BuildRows: 24.768K (24768) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 2.486ms - BuildTableInsertTime: 990.980us - BuildTableTime: 993.516us - CloseTime: 0ns - ExecTime: 4.148ms - InputRows: 24.767K (24767) - MemoryUsage: - BuildBlocks: 1.98 MB - BuildKeyArena: 804.00 KB - HashTable: 248.94 KB - PeakMemoryUsage: 3.01 MB - OpenTime: 8.413us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.629us - RuntimeFilterComputeTime: 597.235us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=34): - BlocksProduced: 11 - BytesReceived: 820.40 KB - CloseTime: 7.9us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 604.569us - ExecTime: 133.49us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.09 MB - MemoryUsage: - Blocks: 376.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.586us - ProjectionTime: 0ns - RowsProduced: 24.767K (24767) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 10s3ms Fragment 138: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 315.798ms, % non-child: 0.00%) - CoreChangeTimes: 403 - ExecuteTime: 315.103ms - CloseTime: 69.647us - GetBlockTime: 5.549ms - OpenTime: 259.432us - PrepareTime: 249.273us - SinkTime: 302.701ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 981 - NumBlockedBySrcTimes: 3 - NumBlockedTimes: 987 - NumScheduleTimes: 988 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 312.164ms - WaitBfTime: 981.246ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 227.15ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 864 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.18 MB - CloseTime: 13.958us - CompressTime: 0ns - ExecTime: 302.430ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 90.43 MB - LocalSendTime: 7.400ms - LocalSentRows: 4.579624M (4579624) - MemoryUsage: - PeakMemoryUsage: 118.77 MB - MergeBlockTime: 0ns - OpenTime: 77.83us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 75.764ms - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 48.114ms - RpcCount: 54 - RpcMaxTime: 1s302ms - RpcMinTime: 1s295ms - RpcSumTime: 2s598ms - SerializeBatchTime: 24.578ms - SplitBlockDistributeByChannelTime: 130.704ms - SplitBlockHashComputeTime: 100.145ms - UncompressedRowBatchSize: 9.00 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s853ms - WaitForLocalExchangeBuffer1: 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: 4.504us - BlocksProduced: 1.183K (1183) - CloseTime: 53.18us - ExecTime: 178.727ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 357.73us - ProcessConjunctTime: 47.131us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 269.372ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 173.132ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [183.066ms, 222.898ms, 90.429ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [86.521ms, 89.693ms, 93.157ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 493.99ms - MemoryUsage: - FreeBlocks: 33.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 14.358ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58.981us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 287.205ms - ScannerCtxSchedTime: 269.352ms - ScannerFilterTime: 700.294us - ScannerGetBlockTime: 495.235ms - ScannerInitTime: 162.122us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 6.85us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 28.330us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 147.321us - BlockLoadTime: 506.769ms - BlocksLoad: 1.186K (1186) - CachedPagesNum: 865 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.366K (2366) - FirstReadSeekTime: 1.448ms - FirstReadTime: 490.796ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.49us - 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: 251.841us - OutputIndexResultColumnTimer: 131.85us - 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: 346.909ms, % non-child: 0.00%) - CoreChangeTimes: 532 - ExecuteTime: 346.443ms - CloseTime: 73.275us - GetBlockTime: 5.681ms - OpenTime: 91.639us - PrepareTime: 175.935us - SinkTime: 334.151ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 1.097K (1097) - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 1.105K (1105) - NumScheduleTimes: 1.106K (1106) - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 307.905ms - WaitBfTime: 982.560ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 248.771ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 864 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.17 MB - CloseTime: 15.606us - CompressTime: 0ns - ExecTime: 333.870ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 90.42 MB - LocalSendTime: 15.972ms - LocalSentRows: 4.579867M (4579867) - MemoryUsage: - PeakMemoryUsage: 118.87 MB - MergeBlockTime: 0ns - OpenTime: 70.913us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 47.936ms - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 23.394ms - RpcCount: 54 - RpcMaxTime: 637.833ms - RpcMinTime: 625.443ms - RpcSumTime: 1s263ms - SerializeBatchTime: 21.864ms - SplitBlockDistributeByChannelTime: 126.0ms - SplitBlockHashComputeTime: 103.110ms - UncompressedRowBatchSize: 8.99 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s853ms - WaitForLocalExchangeBuffer1: 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.940us - BlocksProduced: 1.182K (1182) - CloseTime: 54.817us - ExecTime: 181.296ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 156.936us - ProcessConjunctTime: 13.764us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 379.578ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 175.739ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [148.603ms, 278.601ms, 21.039ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [125.267ms, 126.586ms, 127.725ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 444.749ms - MemoryUsage: - FreeBlocks: 28.92 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.263ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 67.455us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 293.634ms - ScannerCtxSchedTime: 379.555ms - ScannerFilterTime: 858.529us - ScannerGetBlockTime: 446.916ms - ScannerInitTime: 41.572us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 4.121us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 26.553us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 154.390us - BlockLoadTime: 446.267ms - BlocksLoad: 1.185K (1185) - CachedPagesNum: 850 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.364K (2364) - FirstReadSeekTime: 1.5ms - FirstReadTime: 441.22ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.656us - 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: 286.768us - OutputIndexResultColumnTimer: 146.969us - 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: 156.480ms, % non-child: 0.00%) - CoreChangeTimes: 500 - ExecuteTime: 155.951ms - CloseTime: 81.181us - GetBlockTime: 4.134ms - OpenTime: 144.172us - PrepareTime: 168.653us - SinkTime: 146.508ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 1.003K (1003) - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 1.007K (1007) - NumScheduleTimes: 1.008K (1008) - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 154.707ms - WaitBfTime: 981.508ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 302.4ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 496 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.46 MB - CloseTime: 17.542us - CompressTime: 0ns - ExecTime: 146.333ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 51.55 MB - LocalSendTime: 3.796ms - LocalSentRows: 3.428894M (3428894) - MemoryUsage: - PeakMemoryUsage: 57.22 MB - MergeBlockTime: 0ns - OpenTime: 50.14us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 51.625ms - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 24.733ms - RpcCount: 12 - RpcMaxTime: 151.621ms - RpcMinTime: 145.180ms - RpcSumTime: 296.802ms - SerializeBatchTime: 3.719ms - SplitBlockDistributeByChannelTime: 61.911ms - SplitBlockHashComputeTime: 52.124ms - UncompressedRowBatchSize: 1.78 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s841ms - WaitForLocalExchangeBuffer1: 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: 2.98us - BlocksProduced: 856 - CloseTime: 60.513us - ExecTime: 186.878ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 204.481us - ProcessConjunctTime: 18.641us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 184.85ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 182.723ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [145.979ms, 114.961ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [91.106ms, 92.978ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 257.539ms - MemoryUsage: - FreeBlocks: 20.68 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 50.963ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 40.662us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 191.121ms - ScannerCtxSchedTime: 184.68ms - ScannerFilterTime: 583.547us - ScannerGetBlockTime: 260.17ms - ScannerInitTime: 98.917us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 3.388us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 19.389us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 116.314us - BlockLoadTime: 270.637ms - BlocksLoad: 865 - CachedPagesNum: 193 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.714K (1714) - FirstReadSeekTime: 1.445ms - FirstReadTime: 255.755ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.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: 202.743us - OutputIndexResultColumnTimer: 103.681us - 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: 157.653ms, % non-child: 0.00%) - CoreChangeTimes: 479 - ExecuteTime: 157.82ms - CloseTime: 47.255us - GetBlockTime: 4.250ms - OpenTime: 196.968us - PrepareTime: 214.54us - SinkTime: 147.384ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 985 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 989 - NumScheduleTimes: 990 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 155.554ms - WaitBfTime: 1s100ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 408.760ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 496 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.46 MB - CloseTime: 13.576us - CompressTime: 0ns - ExecTime: 147.207ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 51.56 MB - LocalSendTime: 3.944ms - LocalSentRows: 3.429167M (3429167) - MemoryUsage: - PeakMemoryUsage: 57.31 MB - MergeBlockTime: 0ns - OpenTime: 54.469us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.460ms - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 22.58ms - RpcCount: 12 - RpcMaxTime: 139.298ms - RpcMinTime: 125.407ms - RpcSumTime: 264.705ms - SerializeBatchTime: 4.683ms - SplitBlockDistributeByChannelTime: 61.575ms - SplitBlockHashComputeTime: 51.872ms - UncompressedRowBatchSize: 1.76 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s840ms - WaitForLocalExchangeBuffer1: 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.772us - BlocksProduced: 856 - CloseTime: 30.437us - ExecTime: 98.880ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 312.580us - ProcessConjunctTime: 30.538us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 140.734ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 94.544ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [85.078ms, 90.206ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [70.011ms, 70.722ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 172.839ms - MemoryUsage: - FreeBlocks: 20.86 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.105ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 43.938us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 154.265ms - ScannerCtxSchedTime: 140.724ms - ScannerFilterTime: 387.0us - ScannerGetBlockTime: 174.638ms - ScannerInitTime: 132.202us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 3.256us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 17.529us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 105.481us - BlockLoadTime: 174.56ms - BlocksLoad: 863 - CachedPagesNum: 191 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.716K (1716) - FirstReadSeekTime: 978.494us - FirstReadTime: 171.328ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.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: 117.158us - OutputIndexResultColumnTimer: 78.170us - 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: 226.758ms, % non-child: 0.00%) - CoreChangeTimes: 170 - ExecuteTime: 226.277ms - CloseTime: 43.789us - GetBlockTime: 2.449ms - OpenTime: 209.956us - PrepareTime: 172.558us - SinkTime: 220.531ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 423 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 435 - NumScheduleTimes: 436 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 196.625ms - WaitBfTime: 1s75ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 287.226ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 487 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.35 MB - CloseTime: 17.690us - CompressTime: 0ns - ExecTime: 220.436ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 55.02 MB - LocalSendTime: 3.724ms - LocalSentRows: 2.053082M (2053082) - MemoryUsage: - PeakMemoryUsage: 78.09 MB - MergeBlockTime: 0ns - OpenTime: 67.267us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 179.232ms - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 38.702ms - RpcCount: 50 - RpcMaxTime: 969.56ms - RpcMinTime: 966.77ms - RpcSumTime: 1s935ms - SerializeBatchTime: 20.871ms - SplitBlockDistributeByChannelTime: 89.607ms - SplitBlockHashComputeTime: 85.747ms - UncompressedRowBatchSize: 8.48 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s853ms - WaitForLocalExchangeBuffer1: 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: 3.418us - BlocksProduced: 557 - CloseTime: 22.835us - ExecTime: 213.302ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 271.314us - ProcessConjunctTime: 52.513us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 80.884ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 210.717ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [129.959ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [80.884ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 128.268ms - MemoryUsage: - FreeBlocks: 14.67 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 636.323us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.960us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 131.29ms - ScannerCtxSchedTime: 80.875ms - ScannerFilterTime: 329.105us - ScannerGetBlockTime: 129.385ms - ScannerInitTime: 112.986us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 825ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.476us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 20.740us - BlockLoadTime: 128.600ms - BlocksLoad: 558 - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 403.416us - FirstReadTime: 126.362ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.95us - 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: 122.949us - OutputIndexResultColumnTimer: 68.362us - 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: 192.240ms, % non-child: 0.00%) - CoreChangeTimes: 297 - ExecuteTime: 191.882ms - CloseTime: 42.753us - GetBlockTime: 2.478ms - OpenTime: 75.225us - PrepareTime: 171.763us - SinkTime: 185.862ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 581 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 593 - NumScheduleTimes: 594 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 190.440ms - WaitBfTime: 1s100ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 374.922ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 486 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.36 MB - CloseTime: 15.171us - CompressTime: 0ns - ExecTime: 185.742ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 55.01 MB - LocalSendTime: 4.795ms - LocalSentRows: 2.052972M (2052972) - MemoryUsage: - PeakMemoryUsage: 77.31 MB - MergeBlockTime: 0ns - OpenTime: 69.140us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 145.162ms - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 17.663ms - RpcCount: 50 - RpcMaxTime: 443.942ms - RpcMinTime: 439.224ms - RpcSumTime: 883.166ms - SerializeBatchTime: 20.653ms - SplitBlockDistributeByChannelTime: 82.915ms - SplitBlockHashComputeTime: 57.471ms - UncompressedRowBatchSize: 8.49 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s853ms - WaitForLocalExchangeBuffer1: 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.429us - BlocksProduced: 557 - CloseTime: 23.400us - ExecTime: 212.394ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 127.271us - ProcessConjunctTime: 18.50us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 72.403ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 209.931ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [117.408ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [72.403ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 115.937ms - MemoryUsage: - FreeBlocks: 14.61 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.100ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.681us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 120.970ms - ScannerCtxSchedTime: 72.401ms - ScannerFilterTime: 286.444us - ScannerGetBlockTime: 116.913ms - ScannerInitTime: 30.652us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - BitmapIndexFilterTimer: 757ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.111us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 28.170us - BlockLoadTime: 116.726ms - BlocksLoad: 558 - CachedPagesNum: 615 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.114K (1114) - FirstReadSeekTime: 725.144us - FirstReadTime: 114.822ms - IOTimer: 0ns - InvertedIndexFilterTime: 932ns - 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: 98.904us - OutputIndexResultColumnTimer: 52.510us - 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: 158.507ms, % non-child: 0.00%) - CoreChangeTimes: 108 - ExecuteTime: 158.135ms - CloseTime: 36.159us - GetBlockTime: 1.187ms - OpenTime: 123.733us - PrepareTime: 179.565us - SinkTime: 155.457ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 199 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 206 - NumScheduleTimes: 207 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 93.799ms - WaitBfTime: 982.584ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.404ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 198 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.78 MB - CloseTime: 13.188us - CompressTime: 0ns - ExecTime: 155.453ms - InputRows: 876.727K (876727) - LocalBytesSent: 22.61 MB - LocalSendTime: 1.970ms - LocalSentRows: 785.425K (785425) - MemoryUsage: - PeakMemoryUsage: 32.64 MB - MergeBlockTime: 0ns - OpenTime: 58.230us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 62.484ms - RowsProduced: 876.727K (876727) - RpcAvgTime: 77.557ms - RpcCount: 23 - RpcMaxTime: 913.659ms - RpcMinTime: 870.157ms - RpcSumTime: 1s783ms - SerializeBatchTime: 10.36ms - SplitBlockDistributeByChannelTime: 106.512ms - SplitBlockHashComputeTime: 27.560ms - UncompressedRowBatchSize: 3.75 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 11.830us - WaitForLocalExchangeBuffer1: 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: 2.38us - BlocksProduced: 216 - CloseTime: 20.148us - ExecTime: 245.392ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 183.206us - ProcessConjunctTime: 24.382us - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 128.703ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 244.83ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [113.610ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [128.703ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 112.719ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.312ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.762us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 86.742ms - ScannerCtxSchedTime: 128.696ms - ScannerFilterTime: 180.260us - ScannerGetBlockTime: 113.317ms - ScannerInitTime: 66.55us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 606ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.796us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 21.258us - BlockLoadTime: 113.826ms - BlocksLoad: 217 - CachedPagesNum: 260 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 699.50us - FirstReadTime: 112.570ms - 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: 75.225us - OutputIndexResultColumnTimer: 37.674us - 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=7):(Active: 168.559ms, % non-child: 0.00%) - CoreChangeTimes: 469 - ExecuteTime: 168.175ms - CloseTime: 33.604us - GetBlockTime: 3.852ms - OpenTime: 91.422us - PrepareTime: 150.995us - SinkTime: 159.126ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 948 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 953 - NumScheduleTimes: 954 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 166.24ms - WaitBfTime: 1s75ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 377.340ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 508 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.05 MB - CloseTime: 9.925us - CompressTime: 0ns - ExecTime: 158.945ms - InputRows: 3.39021M (3390210) - LocalBytesSent: 52.39 MB - LocalSendTime: 4.775ms - LocalSentRows: 3.330711M (3330711) - MemoryUsage: - PeakMemoryUsage: 60.33 MB - MergeBlockTime: 0ns - OpenTime: 51.651us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.552ms - RowsProduced: 3.39021M (3390210) - RpcAvgTime: 21.565ms - RpcCount: 16 - RpcMaxTime: 175.119ms - RpcMinTime: 169.927ms - RpcSumTime: 345.46ms - SerializeBatchTime: 5.954ms - SplitBlockDistributeByChannelTime: 64.690ms - SplitBlockHashComputeTime: 56.887ms - UncompressedRowBatchSize: 2.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 29.167us - WaitForLocalExchangeBuffer1: 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.896us - BlocksProduced: 836 - CloseTime: 21.664us - ExecTime: 128.524ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 146.346us - ProcessConjunctTime: 19.161us - ProjectionTime: 0ns - RowsProduced: 3.39021M (3390210) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 168.927ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 124.736ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [110.394ms, 131.838ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [84.078ms, 84.848ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 214.161ms - MemoryUsage: - FreeBlocks: 20.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.200ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 43.27us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 176.100ms - ScannerCtxSchedTime: 168.907ms - ScannerFilterTime: 483.684us - ScannerGetBlockTime: 241.488ms - ScannerInitTime: 52.731us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 2.407us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.501us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 61.862us - BlockLoadTime: 214.850ms - BlocksLoad: 838 - CachedPagesNum: 395 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 604.271us - FirstReadTime: 211.702ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.571us - 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: 155.754us - OutputIndexResultColumnTimer: 83.517us - 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=8):(Active: 238.345ms, % non-child: 0.00%) - CoreChangeTimes: 491 - ExecuteTime: 237.894ms - CloseTime: 66.853us - GetBlockTime: 5.780ms - OpenTime: 89.55us - PrepareTime: 162.824us - SinkTime: 225.192ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 1.237K (1237) - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 1.241K (1241) - NumScheduleTimes: 1.242K (1242) - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 235.420ms - WaitBfTime: 1s100ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 428.401ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 747 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.21 MB - CloseTime: 11.933us - CompressTime: 0ns - ExecTime: 224.930ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 77.58 MB - LocalSendTime: 6.206ms - LocalSentRows: 4.883925M (4883925) - MemoryUsage: - PeakMemoryUsage: 90.43 MB - MergeBlockTime: 0ns - OpenTime: 69.251us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 26.951ms - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 21.587ms - RpcCount: 24 - RpcMaxTime: 260.824ms - RpcMinTime: 257.275ms - RpcSumTime: 518.99ms - SerializeBatchTime: 9.689ms - SplitBlockDistributeByChannelTime: 91.539ms - SplitBlockHashComputeTime: 80.517ms - UncompressedRowBatchSize: 3.80 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s853ms - WaitForLocalExchangeBuffer1: 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.355us - BlocksProduced: 1.227K (1227) - CloseTime: 52.113us - ExecTime: 137.976ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 142.559us - ProcessConjunctTime: 8.199us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 234.173ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.320ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [161.350ms, 114.413ms, 119.795ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [74.712ms, 77.372ms, 82.088ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 372.24ms - MemoryUsage: - FreeBlocks: 30.54 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.311ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58.315us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 262.353ms - ScannerCtxSchedTime: 234.161ms - ScannerFilterTime: 669.556us - ScannerGetBlockTime: 394.423ms - ScannerInitTime: 60.84us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 5.336us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 26.696us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 212.107us - BlockLoadTime: 393.767ms - BlocksLoad: 1.232K (1232) - CachedPagesNum: 638 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.454K (2454) - FirstReadSeekTime: 1.926ms - FirstReadTime: 389.149ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.359us - 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: 254.696us - OutputIndexResultColumnTimer: 125.34us - 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=9):(Active: 323.287ms, % non-child: 0.00%) - CoreChangeTimes: 538 - ExecuteTime: 322.707ms - CloseTime: 80.290us - GetBlockTime: 5.588ms - OpenTime: 157.432us - PrepareTime: 207.127us - SinkTime: 310.101ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 1.21K (1210) - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 1.214K (1214) - NumScheduleTimes: 1.216K (1216) - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 248.614ms - WaitBfTime: 981.662ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 374.326ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 748 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.21 MB - CloseTime: 27.553us - CompressTime: 0ns - ExecTime: 309.840ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 77.57 MB - LocalSendTime: 5.399ms - LocalSentRows: 4.883388M (4883388) - MemoryUsage: - PeakMemoryUsage: 89.98 MB - MergeBlockTime: 0ns - OpenTime: 76.165us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.251ms - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 40.473ms - RpcCount: 24 - RpcMaxTime: 506.213ms - RpcMinTime: 465.146ms - RpcSumTime: 971.359ms - SerializeBatchTime: 8.456ms - SplitBlockDistributeByChannelTime: 100.897ms - SplitBlockHashComputeTime: 128.239ms - UncompressedRowBatchSize: 3.81 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8s853ms - WaitForLocalExchangeBuffer1: 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: 1.665us - BlocksProduced: 1.228K (1228) - CloseTime: 48.790us - ExecTime: 133.978ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 232.357us - ProcessConjunctTime: 20.831us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 286.426ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 128.459ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [195.575ms, 108.100ms, 41.214ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [94.268ms, 95.189ms, 96.969ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 339.898ms - MemoryUsage: - FreeBlocks: 24.71 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.846ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 59.992us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 240.966ms - ScannerCtxSchedTime: 286.414ms - ScannerFilterTime: 608.80us - ScannerGetBlockTime: 343.831ms - ScannerInitTime: 109.456us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 4.789us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 26.622us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 150.413us - BlockLoadTime: 342.898ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 645 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.456K (2456) - FirstReadSeekTime: 1.758ms - FirstReadTime: 338.793ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.873us - 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: 245.898us - OutputIndexResultColumnTimer: 115.974us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 133.731ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 133.287ms - CloseTime: 62.683us - GetBlockTime: 1.277ms - OpenTime: 149.799us - PrepareTime: 220.228us - SinkTime: 131.331ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 132.274ms - WaitBfTime: 897.569ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 123.288ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 207 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 16.05 MB - CloseTime: 28.571us - CompressTime: 0ns - ExecTime: 131.349ms - InputRows: 876.719K (876719) - LocalBytesSent: 3.64 MB - LocalSendTime: 216.765us - LocalSentRows: 90.823K (90823) - MemoryUsage: - PeakMemoryUsage: 7.20 MB - MergeBlockTime: 0ns - OpenTime: 61.722us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17s531ms - RowsProduced: 876.719K (876719) - RpcAvgTime: 632.45ms - RpcCount: 175 - RpcMaxTime: 12s609ms - RpcMinTime: 10s873ms - RpcSumTime: 1m50s - SerializeBatchTime: 62.462ms - SplitBlockDistributeByChannelTime: 31.470ms - SplitBlockHashComputeTime: 27.330ms - UncompressedRowBatchSize: 23.40 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 3.937us - BlocksProduced: 216 - CloseTime: 29.755us - ExecTime: 185.676ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 249.203us - ProcessConjunctTime: 34.869us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 88.283ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 184.225ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [94.261ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [88.283ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 93.474ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 804.682us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.927us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 67.323ms - ScannerCtxSchedTime: 88.271ms - ScannerFilterTime: 136.514us - ScannerGetBlockTime: 94.20ms - ScannerInitTime: 68.282us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 346ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.796us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 15.151us - BlockLoadTime: 94.115ms - BlocksLoad: 217 - CachedPagesNum: 261 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 432 - FirstReadSeekTime: 575.624us - FirstReadTime: 93.45ms - IOTimer: 0ns - InvertedIndexFilterTime: 609ns - 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.301us - OutputIndexResultColumnTimer: 33.35us - 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=1):(Active: 333.474ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 333.69ms - CloseTime: 42.984us - GetBlockTime: 11.23ms - OpenTime: 82.914us - PrepareTime: 268.835us - SinkTime: 320.392ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 9 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 249.707ms - WaitBfTime: 897.717ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.1ms DATA_STREAM_SINK_OPERATOR (id=36,dst_id=36): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 516 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 37.92 MB - CloseTime: 8.662us - CompressTime: 0ns - ExecTime: 320.273ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 2.39 MB - LocalSendTime: 156.15us - LocalSentRows: 59.702K (59702) - MemoryUsage: - PeakMemoryUsage: 5.04 MB - MergeBlockTime: 0ns - OpenTime: 142.225us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18s903ms - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 217.270ms - RpcCount: 490 - RpcMaxTime: 13s735ms - RpcMinTime: 10s294ms - RpcSumTime: 1m46s - SerializeBatchTime: 101.681ms - SplitBlockDistributeByChannelTime: 59.659ms - SplitBlockHashComputeTime: 96.100ms - UncompressedRowBatchSize: 55.27 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 2.97us - BlocksProduced: 836 - CloseTime: 31.381us - ExecTime: 163.824ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 148.673us - ProcessConjunctTime: 16.503us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 173.430ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 152.927ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 14, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 1 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 15, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [FRIST_FANS_TIME, UNIONID] - PerScannerRunningTime: [121.651ms, 117.300ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [85.150ms, 88.279ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 236.834ms - MemoryUsage: - FreeBlocks: 20.13 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.93ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44.237us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 166.351ms - ScannerCtxSchedTime: 173.421ms - ScannerFilterTime: 410.224us - ScannerGetBlockTime: 238.256ms - ScannerInitTime: 46.7us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - BitmapIndexFilterTimer: 2.270us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.935us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 59.509us - BlockLoadTime: 237.559ms - BlocksLoad: 838 - CachedPagesNum: 396 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.672K (1672) - FirstReadSeekTime: 831.535us - FirstReadTime: 234.785ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.286us - 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.771us - OutputIndexResultColumnTimer: 88.581us - 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 Fragment 139: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 453.987ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 453.237ms - CloseTime: 60.894us - GetBlockTime: 355.846ms - OpenTime: 402.51us - PrepareTime: 273.582us - SinkTime: 95.64ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 18 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 446.164ms - WaitBfTime: 907.820ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 108.539ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 58 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 8.06 MB - CloseTime: 9.649us - CompressTime: 0ns - ExecTime: 94.900ms - InputRows: 176.903K (176903) - LocalBytesSent: 2.36 MB - LocalSendTime: 171.82us - LocalSentRows: 29.425K (29425) - MemoryUsage: - PeakMemoryUsage: 6.77 MB - MergeBlockTime: 0ns - OpenTime: 57.947us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s549ms - RowsProduced: 176.903K (176903) - RpcAvgTime: 1s980ms - RpcCount: 40 - RpcMaxTime: 7s936ms - RpcMinTime: 7s911ms - RpcSumTime: 1m19s - SerializeBatchTime: 35.759ms - SplitBlockDistributeByChannelTime: 41.105ms - SplitBlockHashComputeTime: 6.845ms - UncompressedRowBatchSize: 11.97 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=33): - BlocksProduced: 514 - BuildOutputBlock: 0ns - CloseTime: 13.792us - ExecTime: 352.247ms - InitProbeSideTime: 66.523ms - JoinFilterTimer: 96.296us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 16.307us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 145.718us - ProbeFindNextTime: 0ns - ProbeRows: 2.086112M (2086112) - ProbeTime: 345.693ms - ProbeWhenBuildSideOutputTime: 21.61ms - ProbeWhenProbeSideOutputTime: 17.278ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 230.761ms - ProjectionTime: 4.394ms - RowsProduced: 176.903K (176903) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns 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: [] - KeyRanges: ScanKeys:ScanKey=[wmnH-hBwAA---3cwW26G2Tsxpu7dzSVg : wonH-hBwAAzdqoDJslrs9yjk6hnhQOXg] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 164.464us - BlocksProduced: 514 - CloseTime: 33.209us - ExecTime: 274.966ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 518.894us - ProcessConjunctTime: 70.846us - ProjectionTime: 0ns - RowsProduced: 2.086112M (2086112) - RowsRead: 2.086112M (2086112) - RuntimeFilterInfo: - filter id = 13 filtered: 96 - filter id = 13 input: 207.264K (207264) - ScannerWorkerWaitTime: 90.785ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 271.876ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, 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 = 13, type = bloomfilter): - Info: [IsPushDown = true, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = false, HasLocalTarget = true] - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 - always_true: 0 - expr_filtered_rows: 0 - expr_input_rows: 0 RuntimeFilter: (id = 16, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - ShortCircuitPredicates: BloomFilterColumnPredicate(VARCHAR), column_id=0, opposite=false - PerScannerRunningTime: [196.568ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [90.785ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 192.91ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.690ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 29.639us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 154.355ms - ScannerCtxSchedTime: 90.754ms - ScannerFilterTime: 569.292us - ScannerGetBlockTime: 195.701ms - ScannerInitTime: 133.269us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - RuntimeFilterInfo id 13: [type = BF, input = 207264, filtered = 96] - BitmapIndexFilterTimer: 2.18us - BlockConditionsFilteredBloomFilterTime: 4.997us - BlockConditionsFilteredDictTime: 1.55us - BlockConditionsFilteredTime: 354.684us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 317.307us - BlockInitSeekCount: 28 - BlockInitSeekTime: 549.792us - BlockInitTime: 1.29ms - BlockLoadTime: 196.756ms - BlocksLoad: 516 - CachedPagesNum: 2.114K (2114) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 514 - FirstReadSeekTime: 728.124us - FirstReadTime: 28.47ms - IOTimer: 0ns - InvertedIndexFilterTime: 9.189us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 84.794ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 75.443ms - OutputIndexResultColumnTimer: 94.620us - RawRowsRead: 2.086208M (2086208) - RowsBitmapIndexFiltered: 0 - RowsBloomFilterFiltered: 0 - RowsConditionsFiltered: 0 - RowsDictFiltered: 0 - RowsInvertedIndexFiltered: 0 - RowsKeyRangeFiltered: 26 - RowsShortCircuitPredFiltered: 96 - RowsShortCircuitPredInput: 2.086208M (2086208) - RowsStatsFiltered: 0 - RowsVectorPredFiltered: 0 - RowsVectorPredInput: 0 - RowsZonemapRuntimePredicateFiltered: 0 - SecondReadTime: 0ns - ShortPredEvalTime: 4.870ms - TotalPagesNum: 2.114K (2114) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 225.4us Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 99.736ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 99.642ms - CloseTime: 27.485us - GetBlockTime: 797.135us - OpenTime: 2.195us - PrepareTime: 58.419us - SinkTime: 98.596ms - GetBlockCounter: 43 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 17 - NumBlockedTimes: 19 - NumScheduleTimes: 19 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 45.639ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.694ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 35.443us - BuildRows: 178.047K (178047) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 49.596ms - BuildTableInsertTime: 43.967ms - BuildTableTime: 43.990ms - CloseTime: 0ns - ExecTime: 98.590ms - InputRows: 178.046K (178046) - MemoryUsage: - BuildBlocks: 11.37 MB - BuildKeyArena: 6.12 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.17 MB - OpenTime: 15.345us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.868us - RuntimeFilterComputeTime: 4.737ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 55 - BytesReceived: 1.88 MB - CloseTime: 12.809us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.551ms - ExecTime: 790.68us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 12.40 MB - MemoryUsage: - Blocks: 2.75 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.229us - ProjectionTime: 0ns - RowsProduced: 178.046K (178046) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 599.14ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 55.418ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 54.832ms - CloseTime: 85.478us - GetBlockTime: 43.291ms - OpenTime: 195.446us - PrepareTime: 293.738us - SinkTime: 10.937ms - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 55.286ms - WaitBfTime: 1s60ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 83.224ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 359.76 KB - CloseTime: 15.494us - CompressTime: 0ns - ExecTime: 10.997ms - InputRows: 40.857K (40857) - LocalBytesSent: 2.72 MB - LocalSendTime: 121.579us - LocalSentRows: 33.926K (33926) - MemoryUsage: - PeakMemoryUsage: 4.36 MB - MergeBlockTime: 0ns - OpenTime: 77.50us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.297ms - RowsProduced: 40.857K (40857) - RpcAvgTime: 20.152ms - RpcCount: 2 - RpcMaxTime: 20.528ms - RpcMinTime: 19.775ms - RpcSumTime: 40.304ms - SerializeBatchTime: 1.269ms - SplitBlockDistributeByChannelTime: 6.833ms - SplitBlockHashComputeTime: 1.206ms - UncompressedRowBatchSize: 576.29 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 83 - BuildOutputBlock: 0ns - CloseTime: 18.189us - ExecTime: 42.514ms - InitProbeSideTime: 8.623ms - JoinFilterTimer: 10.133us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 16.901us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.974us - ProbeFindNextTime: 0ns - ProbeRows: 330.874K (330874) - ProbeTime: 41.486ms - ProbeWhenBuildSideOutputTime: 3.833ms - ProbeWhenProbeSideOutputTime: 2.49ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 25.841ms - ProjectionTime: 693.379us - RowsProduced: 40.857K (40857) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s665ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.421us - BlocksProduced: 83 - CloseTime: 47.746us - ExecTime: 220.982ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 297.994us - ProcessConjunctTime: 53.985us - ProjectionTime: 0ns - RowsProduced: 330.874K (330874) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 85.516ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 219.941ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, 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 = 13, 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) RuntimeFilter: (id = 16, 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: 239 - expr_input_rows: 1.243584M (1243584) RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 5.262869M (5262869) - expr_input_rows: 5.402653M (5402653) VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - PerScannerRunningTime: [144.727ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [85.516ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 59.302ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 969.804us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.321us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 149.837ms - ScannerCtxSchedTime: 85.493ms - ScannerFilterTime: 83.563ms - ScannerGetBlockTime: 60.930ms - ScannerInitTime: 106.443us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.14us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.722us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 14.733us - BlockInitTime: 94.194us - BlockLoadTime: 60.475ms - BlocksLoad: 516 - CachedPagesNum: 2.109K (2109) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 1.77ms - FirstReadTime: 58.633ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.245us - 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: 119.23us - OutputIndexResultColumnTimer: 67.552us - 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: 57.600ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 57.52ms - CloseTime: 116.986us - GetBlockTime: 44.717ms - OpenTime: 74.897us - PrepareTime: 346.986us - SinkTime: 11.843ms - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 57.354ms - WaitBfTime: 1s59ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.417ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 367.25 KB - CloseTime: 15.757us - CompressTime: 0ns - ExecTime: 11.888ms - InputRows: 41.324K (41324) - LocalBytesSent: 2.75 MB - LocalSendTime: 171.362us - LocalSentRows: 34.278K (34278) - MemoryUsage: - PeakMemoryUsage: 4.36 MB - MergeBlockTime: 0ns - OpenTime: 66.138us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 24.482ms - RowsProduced: 41.324K (41324) - RpcAvgTime: 20.880ms - RpcCount: 2 - RpcMaxTime: 21.85ms - RpcMinTime: 20.675ms - RpcSumTime: 41.761ms - SerializeBatchTime: 1.858ms - SplitBlockDistributeByChannelTime: 6.686ms - SplitBlockHashComputeTime: 1.297ms - UncompressedRowBatchSize: 585.84 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 83 - BuildOutputBlock: 0ns - CloseTime: 20.358us - ExecTime: 43.820ms - InitProbeSideTime: 8.948ms - JoinFilterTimer: 11.682us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 14.235us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 40.667us - ProbeFindNextTime: 0ns - ProbeRows: 331.202K (331202) - ProbeTime: 42.745ms - ProbeWhenBuildSideOutputTime: 4.306ms - ProbeWhenProbeSideOutputTime: 2.81ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 26.169ms - ProjectionTime: 731.222us - RowsProduced: 41.324K (41324) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s626ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 3.341us - BlocksProduced: 83 - CloseTime: 75.743us - ExecTime: 222.780ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 264.210us - ProcessConjunctTime: 12.687us - ProjectionTime: 0ns - RowsProduced: 331.202K (331202) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 86.323ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 221.647ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, 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 = 13, 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) RuntimeFilter: (id = 16, 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: 239 - expr_input_rows: 1.243584M (1243584) RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 5.262869M (5262869) - expr_input_rows: 5.402653M (5402653) VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - PerScannerRunningTime: [146.440ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [86.323ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 79.798ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.274ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 4.276us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 130.558ms - ScannerCtxSchedTime: 86.310ms - ScannerFilterTime: 64.825ms - ScannerGetBlockTime: 81.400ms - ScannerInitTime: 33.154us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.227us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.76us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 18.599us - BlockInitTime: 143.607us - BlockLoadTime: 81.336ms - BlocksLoad: 517 - CachedPagesNum: 2.115K (2115) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.126ms - FirstReadTime: 79.704ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.933us - 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: 91.106us - OutputIndexResultColumnTimer: 51.574us - 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=4):(Active: 54.753ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 54.178ms - CloseTime: 101.281us - GetBlockTime: 41.772ms - OpenTime: 168.316us - PrepareTime: 278.49us - SinkTime: 11.852ms - GetBlockCounter: 84 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 16 - NumBlockedTimes: 19 - NumScheduleTimes: 20 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 54.589ms - WaitBfTime: 1s83ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 147.342ms DATA_STREAM_SINK_OPERATOR (id=34,dst_id=34): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 14 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 354.36 KB - CloseTime: 16.668us - CompressTime: 0ns - ExecTime: 11.897ms - InputRows: 40.874K (40874) - LocalBytesSent: 2.73 MB - LocalSendTime: 155.727us - LocalSentRows: 34.092K (34092) - MemoryUsage: - PeakMemoryUsage: 4.36 MB - MergeBlockTime: 0ns - OpenTime: 68.342us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 19.350ms - RowsProduced: 40.874K (40874) - RpcAvgTime: 17.162ms - RpcCount: 2 - RpcMaxTime: 17.371ms - RpcMinTime: 16.953ms - RpcSumTime: 34.324ms - SerializeBatchTime: 1.701ms - SplitBlockDistributeByChannelTime: 7.29ms - SplitBlockHashComputeTime: 1.234ms - UncompressedRowBatchSize: 563.88 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 83 - BuildOutputBlock: 0ns - CloseTime: 29.707us - ExecTime: 40.911ms - InitProbeSideTime: 8.872ms - JoinFilterTimer: 9.541us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 20.870us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.28us - ProbeFindNextTime: 0ns - ProbeRows: 331.053K (331053) - ProbeTime: 39.849ms - ProbeWhenBuildSideOutputTime: 3.911ms - ProbeWhenProbeSideOutputTime: 2.207ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 23.686ms - ProjectionTime: 737.574us - RowsProduced: 40.874K (40874) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 8s599ms 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: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 5.465us - BlocksProduced: 83 - CloseTime: 49.258us - ExecTime: 221.411ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 274.280us - ProcessConjunctTime: 44.183us - ProjectionTime: 0ns - RowsProduced: 331.053K (331053) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 85.573ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 220.303ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 12, 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 = 13, 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) RuntimeFilter: (id = 16, 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: 239 - expr_input_rows: 1.243584M (1243584) RuntimeFilter: (id = 17, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 1 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 262144 - always_true: 0 - expr_filtered_rows: 5.262869M (5262869) - expr_input_rows: 5.402653M (5402653) VScanner: - ReadColumns: [EXTERNAL_USER_ID, UNION_ID] - PerScannerRunningTime: [144.735ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [85.573ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 66.441ms - MemoryUsage: - FreeBlocks: 10.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.442ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.968us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 141.54ms - ScannerCtxSchedTime: 85.557ms - ScannerFilterTime: 76.377ms - ScannerGetBlockTime: 68.115ms - ScannerInitTime: 83.817us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 883ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.342us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 14.731us - BlockInitTime: 94.203us - BlockLoadTime: 68.232ms - BlocksLoad: 517 - CachedPagesNum: 2.115K (2115) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 1.583ms - FirstReadTime: 66.637ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.65us - 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: 104.853us - OutputIndexResultColumnTimer: 59.12us - 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.87, port:9060)): PipelineXTask (index=1):(Active: 27.781ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 27.677ms - CloseTime: 14.627us - GetBlockTime: 701.650us - OpenTime: 2.305us - PrepareTime: 77.712us - SinkTime: 26.616ms - GetBlockCounter: 43 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 36 - NumBlockedTimes: 38 - NumScheduleTimes: 38 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 27.684ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.334ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 25.941us - BuildRows: 177.503K (177503) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.238ms - BuildTableInsertTime: 6.985ms - BuildTableTime: 6.991ms - CloseTime: 0ns - ExecTime: 26.609ms - InputRows: 177.502K (177502) - MemoryUsage: - BuildBlocks: 11.34 MB - BuildKeyArena: 6.10 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.11 MB - OpenTime: 18.224us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.399us - RuntimeFilterComputeTime: 4.184ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 71 - BytesReceived: 4.58 MB - CloseTime: 11.85us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.122ms - ExecTime: 705.719us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.10 MB - MemoryUsage: - Blocks: 1.43 MB - PeakMemoryUsage: 1.43 MB - OpenTime: 30.511us - ProjectionTime: 0ns - RowsProduced: 177.502K (177502) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s789ms PipelineXTask (index=3):(Active: 44.674ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 44.595ms - CloseTime: 15.196us - GetBlockTime: 818.889us - OpenTime: 1.686us - PrepareTime: 53.140us - SinkTime: 43.358ms - GetBlockCounter: 43 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 35.579ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.226ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 28.959us - BuildRows: 178.794K (178794) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 28.648ms - BuildTableInsertTime: 10.282ms - BuildTableTime: 10.296ms - CloseTime: 0ns - ExecTime: 43.343ms - InputRows: 178.793K (178793) - MemoryUsage: - BuildBlocks: 11.42 MB - BuildKeyArena: 6.14 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.25 MB - OpenTime: 17.918us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.234us - RuntimeFilterComputeTime: 4.207ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 71 - BytesReceived: 4.60 MB - CloseTime: 11.666us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 5.85ms - ExecTime: 802.944us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.28 MB - MemoryUsage: - Blocks: 1.43 MB - PeakMemoryUsage: 1.43 MB - OpenTime: 15.242us - ProjectionTime: 0ns - RowsProduced: 178.793K (178793) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s780ms PipelineXTask (index=5):(Active: 36.602ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 36.518ms - CloseTime: 15.195us - GetBlockTime: 874.443us - OpenTime: 1.148us - PrepareTime: 57.278us - SinkTime: 35.252ms - GetBlockCounter: 44 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.491ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.709ms HASH_JOIN_SINK_OPERATOR (id=33): - JoinType: INNER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.230us - BuildRows: 178.363K (178363) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.760ms - BuildTableInsertTime: 10.785ms - BuildTableTime: 10.789ms - CloseTime: 0ns - ExecTime: 35.240ms - InputRows: 178.362K (178362) - MemoryUsage: - BuildBlocks: 11.39 MB - BuildKeyArena: 6.13 MB - HashTable: 1.68 MB - PeakMemoryUsage: 19.20 MB - OpenTime: 13.842us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.203us - RuntimeFilterComputeTime: 4.463ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=31): - BlocksProduced: 73 - BytesReceived: 4.60 MB - CloseTime: 7.633us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.625ms - ExecTime: 850.556us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.10 MB - MemoryUsage: - Blocks: 1.43 MB - PeakMemoryUsage: 1.43 MB - OpenTime: 15.820us - ProjectionTime: 0ns - RowsProduced: 178.362K (178362) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9s778ms Fragment 140: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 16.241ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 16.96ms - CloseTime: 37.743us - GetBlockTime: 5.814ms - OpenTime: 5.92us - PrepareTime: 95.308us - SinkTime: 10.134ms - GetBlockCounter: 21 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 15.708ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 19.66ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 458.87 KB - CloseTime: 11.940us - CompressTime: 0ns - ExecTime: 10.184ms - InputRows: 50.021K (50021) - LocalBytesSent: 2.40 MB - LocalSendTime: 98.168us - LocalSentRows: 37.567K (37567) - MemoryUsage: - PeakMemoryUsage: 4.24 MB - MergeBlockTime: 0ns - OpenTime: 49.833us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 441.90ms - RowsProduced: 50.021K (50021) - RpcAvgTime: 164.506ms - RpcCount: 3 - RpcMaxTime: 493.520ms - RpcMinTime: 493.520ms - RpcSumTime: 493.520ms - SerializeBatchTime: 2.528ms - SplitBlockDistributeByChannelTime: 4.575ms - SplitBlockHashComputeTime: 2.78ms - UncompressedRowBatchSize: 827.76 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 15 - BuildOutputBlock: 0ns - CloseTime: 23.12us - ExecTime: 5.718ms - InitProbeSideTime: 1.88ms - JoinFilterTimer: 2.788us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.666us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.874us - ProbeFindNextTime: 0ns - ProbeRows: 50.021K (50021) - ProbeTime: 5.22ms - ProbeWhenBuildSideOutputTime: 813.203us - ProbeWhenProbeSideOutputTime: 867.964us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.857ms - ProjectionTime: 600.759us - RowsProduced: 50.021K (50021) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 15 - CloseTime: 0ns - ExecTime: 86.364us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 1.09 MB - OpenTime: 834ns - ProjectionTime: 0ns - RowsProduced: 50.021K (50021) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 184.270ms PipelineXTask (index=3):(Active: 35.451ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 35.295ms - CloseTime: 34.589us - GetBlockTime: 4.955ms - OpenTime: 2.272us - PrepareTime: 102.874us - SinkTime: 30.196ms - GetBlockCounter: 20 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.567ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.857ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 434.55 KB - CloseTime: 16.358us - CompressTime: 0ns - ExecTime: 30.246ms - InputRows: 47.441K (47441) - LocalBytesSent: 2.28 MB - LocalSendTime: 117.609us - LocalSentRows: 35.688K (35688) - MemoryUsage: - PeakMemoryUsage: 4.05 MB - MergeBlockTime: 0ns - OpenTime: 43.685us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 406.409ms - RowsProduced: 47.441K (47441) - RpcAvgTime: 153.343ms - RpcCount: 3 - RpcMaxTime: 460.31ms - RpcMinTime: 460.31ms - RpcSumTime: 460.31ms - SerializeBatchTime: 22.963ms - SplitBlockDistributeByChannelTime: 4.449ms - SplitBlockHashComputeTime: 1.841ms - UncompressedRowBatchSize: 781.31 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 14.661us - ExecTime: 4.871ms - InitProbeSideTime: 924.894us - JoinFilterTimer: 2.285us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 12.928us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.64us - ProbeFindNextTime: 0ns - ProbeRows: 47.441K (47441) - ProbeTime: 4.218ms - ProbeWhenBuildSideOutputTime: 799.659us - ProbeWhenProbeSideOutputTime: 962.126us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.174ms - ProjectionTime: 578.455us - RowsProduced: 47.441K (47441) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 61.405us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 703ns - ProjectionTime: 0ns - RowsProduced: 47.441K (47441) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 162.769ms PipelineXTask (index=6):(Active: 28.926ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 28.784ms - CloseTime: 47.684us - GetBlockTime: 19.700ms - OpenTime: 2.671us - PrepareTime: 86.804us - SinkTime: 8.951ms - GetBlockCounter: 19 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 14.116ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.911ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 13 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 408.67 KB - CloseTime: 19.897us - CompressTime: 0ns - ExecTime: 8.998ms - InputRows: 44.484K (44484) - LocalBytesSent: 2.14 MB - LocalSendTime: 80.673us - LocalSentRows: 33.424K (33424) - MemoryUsage: - PeakMemoryUsage: 3.79 MB - MergeBlockTime: 0ns - OpenTime: 36.543us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 466.318ms - RowsProduced: 44.484K (44484) - RpcAvgTime: 172.102ms - RpcCount: 3 - RpcMaxTime: 516.306ms - RpcMinTime: 516.306ms - RpcSumTime: 516.306ms - SerializeBatchTime: 2.160ms - SplitBlockDistributeByChannelTime: 3.991ms - SplitBlockHashComputeTime: 1.835ms - UncompressedRowBatchSize: 735.27 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 13 - BuildOutputBlock: 0ns - CloseTime: 23.554us - ExecTime: 19.638ms - InitProbeSideTime: 921.78us - JoinFilterTimer: 2.461us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 18.348us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.570us - ProbeFindNextTime: 0ns - ProbeRows: 44.484K (44484) - ProbeTime: 18.952ms - ProbeWhenBuildSideOutputTime: 681.55us - ProbeWhenProbeSideOutputTime: 15.883ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.132ms - ProjectionTime: 597.974us - RowsProduced: 44.484K (44484) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 13 - CloseTime: 0ns - ExecTime: 60.454us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 633ns - ProjectionTime: 0ns - RowsProduced: 44.484K (44484) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 180.642ms PipelineXTask (index=9):(Active: 12.324ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 12.174ms - CloseTime: 52.305us - GetBlockTime: 4.240ms - OpenTime: 2.423us - PrepareTime: 90.258us - SinkTime: 7.823ms - GetBlockCounter: 17 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 12.253ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.526ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 10 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 303.46 KB - CloseTime: 22.428us - CompressTime: 0ns - ExecTime: 7.874ms - InputRows: 32.967K (32967) - LocalBytesSent: 1.59 MB - LocalSendTime: 68.454us - LocalSentRows: 24.809K (24809) - MemoryUsage: - PeakMemoryUsage: 2.98 MB - MergeBlockTime: 0ns - OpenTime: 37.957us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 162.0ms - RowsProduced: 32.967K (32967) - RpcAvgTime: 104.635ms - RpcCount: 2 - RpcMaxTime: 209.271ms - RpcMinTime: 209.271ms - RpcSumTime: 209.271ms - SerializeBatchTime: 1.980ms - SplitBlockDistributeByChannelTime: 3.749ms - SplitBlockHashComputeTime: 1.270ms - UncompressedRowBatchSize: 542.33 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 11 - BuildOutputBlock: 0ns - CloseTime: 26.722us - ExecTime: 4.167ms - InitProbeSideTime: 806.930us - JoinFilterTimer: 1.858us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 14.412us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 6.867us - ProbeFindNextTime: 0ns - ProbeRows: 32.967K (32967) - ProbeTime: 3.624ms - ProbeWhenBuildSideOutputTime: 567.903us - ProbeWhenProbeSideOutputTime: 1.108ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 877.196us - ProjectionTime: 459.751us - RowsProduced: 32.967K (32967) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 11 - CloseTime: 0ns - ExecTime: 56.821us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 620ns - ProjectionTime: 0ns - RowsProduced: 32.967K (32967) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 188.925ms PipelineXTask (index=12):(Active: 9.815ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 9.665ms - CloseTime: 36.380us - GetBlockTime: 3.307ms - OpenTime: 2.873us - PrepareTime: 104.979us - SinkTime: 6.259ms - GetBlockCounter: 16 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 9.760ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 17.597ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 314.00 KB - CloseTime: 10.761us - CompressTime: 0ns - ExecTime: 6.328ms - InputRows: 34.148K (34148) - LocalBytesSent: 1.64 MB - LocalSendTime: 65.612us - LocalSentRows: 25.649K (25649) - MemoryUsage: - PeakMemoryUsage: 2.81 MB - MergeBlockTime: 0ns - OpenTime: 66.605us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 163.174ms - RowsProduced: 34.148K (34148) - RpcAvgTime: 99.602ms - RpcCount: 2 - RpcMaxTime: 199.204ms - RpcMinTime: 199.204ms - RpcSumTime: 199.204ms - SerializeBatchTime: 1.414ms - SplitBlockDistributeByChannelTime: 2.820ms - SplitBlockHashComputeTime: 1.294ms - UncompressedRowBatchSize: 564.91 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 10 - BuildOutputBlock: 0ns - CloseTime: 19.873us - ExecTime: 3.255ms - InitProbeSideTime: 729.821us - JoinFilterTimer: 1.843us - MemoryUsage: - PeakMemoryUsage: 168.00 KB - ProbeKeyArena: 168.00 KB - OpenTime: 12.505us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.808us - ProbeFindNextTime: 0ns - ProbeRows: 34.148K (34148) - ProbeTime: 2.774ms - ProbeWhenBuildSideOutputTime: 496.231us - ProbeWhenProbeSideOutputTime: 518.490us - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 799.581us - ProjectionTime: 414.452us - RowsProduced: 34.148K (34148) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 10 - CloseTime: 0ns - ExecTime: 45.590us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 619ns - ProjectionTime: 0ns - RowsProduced: 34.148K (34148) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 191.188ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 1.252ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 566.808us - CloseTime: 37.714us - GetBlockTime: 34.715us - OpenTime: 485.182us - PrepareTime: 140.914us - SinkTime: 23.124us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.204ms - WaitBfTime: 104.824ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.4ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 23.447us - InputRows: 5 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.228us - 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: 51.703us - BlocksProduced: 1 - CloseTime: 35.715us - ExecTime: 10.559ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 568.136us - ProcessConjunctTime: 291.401us - ProjectionTime: 33.933us - RowsProduced: 5 - RowsRead: 5 - RuntimeFilterInfo: - filter id = -1 filtered: 191.49K (191490) - filter id = -1 input: 191.5K (191500) - ScannerWorkerWaitTime: 2.666ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 9.886ms - 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: [4.451ms, ] - PerScannerRowsRead: [5, ] - PerScannerWaitTime: [2.666ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.755ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.577ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 65ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 7.199ms - ScannerCtxSchedTime: 2.664ms - ScannerFilterTime: 6.873us - ScannerGetBlockTime: 4.430ms - ScannerInitTime: 116.110us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 191500, filtered = 191490] - BitmapIndexFilterTimer: 4.634us - BlockConditionsFilteredBloomFilterTime: 12.25us - BlockConditionsFilteredDictTime: 285.427us - BlockConditionsFilteredTime: 453.670us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 109.363us - BlockInitSeekCount: 37 - BlockInitSeekTime: 383.846us - BlockInitTime: 989.320us - BlockLoadTime: 6.292ms - BlocksLoad: 152 - CachedPagesNum: 133 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 441 - FirstReadSeekTime: 121.422us - FirstReadTime: 2.718ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.707us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 44.415us - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 45.112us - OutputIndexResultColumnTimer: 14.462us - 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: 869.985us - TotalPagesNum: 133 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 1.263ms PipelineXTask (index=4):(Active: 1.211ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 681.177us - CloseTime: 53.904us - GetBlockTime: 194.968us - OpenTime: 304.367us - PrepareTime: 148.267us - SinkTime: 100.785us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.100ms - WaitBfTime: 105.349ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.811ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 98.227us - InputRows: 19.87K (19870) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 2.666us - 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: 33.362us - BlocksProduced: 8 - CloseTime: 51.0us - ExecTime: 94.388ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 391.20us - ProcessConjunctTime: 177.60us - ProjectionTime: 834.345us - RowsProduced: 19.87K (19870) - RowsRead: 19.87K (19870) - RuntimeFilterInfo: - filter id = -1 filtered: 647.96K (647960) - filter id = -1 input: 687.7K (687700) - ScannerWorkerWaitTime: 7.394ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 92.880ms - 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: [81.864ms, ] - PerScannerRowsRead: [19.87K, ] - PerScannerWaitTime: [7.394ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 79.805ms - MemoryUsage: - FreeBlocks: 756.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 968.901us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 686ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.601ms - ScannerCtxSchedTime: 7.389ms - ScannerFilterTime: 270.924us - ScannerGetBlockTime: 81.453ms - ScannerInitTime: 65.685us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 687700, filtered = 647960] - BitmapIndexFilterTimer: 2.548us - BlockConditionsFilteredBloomFilterTime: 7.760us - BlockConditionsFilteredDictTime: 90.996us - BlockConditionsFilteredTime: 246.349us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 108.12us - BlockInitSeekCount: 26 - BlockInitSeekTime: 27.231us - BlockInitTime: 393.921us - BlockLoadTime: 81.336ms - BlocksLoad: 405 - CachedPagesNum: 1.161K (1161) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.206K (1206) - FirstReadSeekTime: 199.924us - FirstReadTime: 6.582ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.345us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 46.629ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 931.565us - OutputIndexResultColumnTimer: 39.11us - 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: 23.69ms - TotalPagesNum: 1.161K (1161) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.749ms PipelineXTask (index=7):(Active: 924.301us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 406.836us - CloseTime: 62.416us - GetBlockTime: 90.127us - OpenTime: 264.764us - PrepareTime: 181.842us - SinkTime: 22.949us - GetBlockCounter: 6 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 850.611us - WaitBfTime: 103.178ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.599ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 21.319us - InputRows: 19.524K (19524) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.81us - 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: 29.39us - BlocksProduced: 6 - CloseTime: 59.124us - ExecTime: 54.536ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 394.469us - ProcessConjunctTime: 141.61us - ProjectionTime: 682.870us - RowsProduced: 19.524K (19524) - RowsRead: 19.524K (19524) - RuntimeFilterInfo: - filter id = -1 filtered: 921.114K (921114) - filter id = -1 input: 960.162K (960162) - ScannerWorkerWaitTime: 7.249ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 53.275ms - 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: [43.172ms, ] - PerScannerRowsRead: [19.52K, ] - PerScannerWaitTime: [7.249ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 15.497ms - MemoryUsage: - FreeBlocks: 824.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 556.281us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 349ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 21.2ms - ScannerCtxSchedTime: 7.247ms - ScannerFilterTime: 228.96us - ScannerGetBlockTime: 42.818ms - ScannerInitTime: 78.759us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 960162, filtered = 921114] - BitmapIndexFilterTimer: 2.959us - BlockConditionsFilteredBloomFilterTime: 7.860us - BlockConditionsFilteredDictTime: 118.440us - BlockConditionsFilteredTime: 249.945us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 88.607us - BlockInitSeekCount: 31 - BlockInitSeekTime: 29.523us - BlockInitTime: 384.964us - BlockLoadTime: 17.320ms - BlocksLoad: 410 - CachedPagesNum: 1.157K (1157) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.218K (1218) - FirstReadSeekTime: 169.949us - FirstReadTime: 5.568ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.28us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.18ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 729.859us - OutputIndexResultColumnTimer: 35.820us - 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.358ms - TotalPagesNum: 1.157K (1157) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.563ms PipelineXTask (index=10):(Active: 1.502ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 922.940us - CloseTime: 44.576us - GetBlockTime: 366.247us - OpenTime: 266.80us - PrepareTime: 260.244us - SinkTime: 221.448us - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.441ms - WaitBfTime: 105.622ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.727ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 213.710us - InputRows: 141.175K (141175) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.427us - 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: 25.396us - BlocksProduced: 39 - CloseTime: 40.676us - ExecTime: 108.373ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 467.96us - ProcessConjunctTime: 155.355us - ProjectionTime: 1.895ms - RowsProduced: 141.175K (141175) - RowsRead: 141.175K (141175) - RuntimeFilterInfo: - filter id = -1 filtered: 1.037608M (1037608) - filter id = -1 input: 1.319958M (1319958) - ScannerWorkerWaitTime: 10.37ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 105.573ms - 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: [85.377ms, ] - PerScannerRowsRead: [141.18K, ] - PerScannerWaitTime: [10.037ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 48.778ms - MemoryUsage: - FreeBlocks: 4.45 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 831.718us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.125us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 41.973ms - ScannerCtxSchedTime: 10.34ms - ScannerFilterTime: 291.489us - ScannerGetBlockTime: 84.930ms - ScannerInitTime: 64.114us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1319958, filtered = 1037608] - BitmapIndexFilterTimer: 2.991us - BlockConditionsFilteredBloomFilterTime: 8.680us - BlockConditionsFilteredDictTime: 156.118us - BlockConditionsFilteredTime: 316.43us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 111.360us - BlockInitSeekCount: 35 - BlockInitSeekTime: 27.170us - BlockInitTime: 481.680us - BlockLoadTime: 84.537ms - BlocksLoad: 345 - CachedPagesNum: 967 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.023K (1023) - FirstReadSeekTime: 33.499ms - FirstReadTime: 49.985ms - IOTimer: 0ns - InvertedIndexFilterTime: 12.38us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 15.243ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 11.628ms - OutputIndexResultColumnTimer: 45.497us - 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.218ms - TotalPagesNum: 967 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.808ms PipelineXTask (index=13):(Active: 737.149us, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 331.868us - CloseTime: 26.197us - GetBlockTime: 38.70us - OpenTime: 215.903us - PrepareTime: 155.524us - SinkTime: 60.415us - GetBlockCounter: 8 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 703.610us - WaitBfTime: 103.580ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.635ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 59.988us - InputRows: 28.487K (28487) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.165us - 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: 23.119us - BlocksProduced: 8 - CloseTime: 23.534us - ExecTime: 16.191ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 313.741us - ProcessConjunctTime: 128.147us - ProjectionTime: 404.923us - RowsProduced: 28.487K (28487) - RowsRead: 28.487K (28487) - RuntimeFilterInfo: - filter id = -1 filtered: 344.766K (344766) - filter id = -1 input: 401.74K (401740) - ScannerWorkerWaitTime: 6.896ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 15.403ms - 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: [6.388ms, ] - PerScannerRowsRead: [28.49K, ] - PerScannerWaitTime: [6.896ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 6.184ms - MemoryUsage: - FreeBlocks: 1.71 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 738.714us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 226ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.486ms - ScannerCtxSchedTime: 6.894ms - ScannerFilterTime: 45.486us - ScannerGetBlockTime: 6.299ms - ScannerInitTime: 39.302us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 401740, filtered = 344766] - BitmapIndexFilterTimer: 637ns - BlockConditionsFilteredBloomFilterTime: 1.676us - BlockConditionsFilteredDictTime: 25.730us - BlockConditionsFilteredTime: 57.268us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 22.533us - BlockInitSeekCount: 8 - BlockInitSeekTime: 12.888us - BlockInitTime: 94.722us - BlockLoadTime: 6.740ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 180 - FirstReadSeekTime: 38.928us - FirstReadTime: 1.79ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.996us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.278ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 707.123us - OutputIndexResultColumnTimer: 6.617us - 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: 733.382us - TotalPagesNum: 169 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 656.184us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 209.582us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 118.273us - CloseTime: 12.692us - GetBlockTime: 4.872us - OpenTime: 1.410us - PrepareTime: 73.815us - SinkTime: 99.684us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 191.392us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.860ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 963ns - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.52us - BuildTableInsertTime: 28.263us - BuildTableTime: 32.821us - CloseTime: 0ns - ExecTime: 116.824us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 17.391us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.793us - RuntimeFilterComputeTime: 13.857us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=28): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 10.369us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 31.175us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.25 KB - MemoryUsage: - Blocks: 5.25 KB - PeakMemoryUsage: 3.25 KB - OpenTime: 16.647us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 103.422ms PipelineXTask (index=5):(Active: 116.433us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 34.800us - CloseTime: 9.433us - GetBlockTime: 0ns - OpenTime: 1.480us - PrepareTime: 67.397us - SinkTime: 22.977us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.897us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.500ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc823b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 43.671us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 21.26us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 104.569ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.597us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.291us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.139us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 96.959us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 28.732us - CloseTime: 7.56us - GetBlockTime: 0ns - OpenTime: 1.288us - PrepareTime: 56.401us - SinkTime: 18.598us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 85.659us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.530ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc823b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 35.697us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.220us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 104.556ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.422us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.566us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.384us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 100.198us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 24.935us - CloseTime: 4.896us - GetBlockTime: 0ns - OpenTime: 2.258us - PrepareTime: 63.922us - SinkTime: 12.51us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.795us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.719ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc823b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 31.663us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.809us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 102.383ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.776us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.924us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 19.510us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 84.616us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 22.563us - CloseTime: 4.786us - GetBlockTime: 0ns - OpenTime: 1.284us - PrepareTime: 52.606us - SinkTime: 12.540us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 75.877us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.582ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc823b - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 30.7us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.660us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 104.525ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.825us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.690us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.340us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 83.55ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 82.858ms - CloseTime: 81.156us - GetBlockTime: 47.864ms - OpenTime: 17.379us - PrepareTime: 89.219us - SinkTime: 34.721ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 36.294ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.889ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.26 MB - CloseTime: 20.473us - CompressTime: 0ns - ExecTime: 34.755ms - InputRows: 83.043K (83043) - LocalBytesSent: 1.33 MB - LocalSendTime: 59.576us - LocalSentRows: 20.803K (20803) - MemoryUsage: - PeakMemoryUsage: 3.40 MB - MergeBlockTime: 0ns - OpenTime: 38.440us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s425ms - RowsProduced: 83.043K (83043) - RpcAvgTime: 1s898ms - RpcCount: 15 - RpcMaxTime: 9s496ms - RpcMinTime: 9s491ms - RpcSumTime: 28s481ms - SerializeBatchTime: 21.436ms - SplitBlockDistributeByChannelTime: 8.255ms - SplitBlockHashComputeTime: 3.325ms - UncompressedRowBatchSize: 4.04 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 23 - BuildOutputBlock: 0ns - CloseTime: 24.872us - ExecTime: 47.624ms - InitProbeSideTime: 1.967ms - JoinFilterTimer: 4.942us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.478us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.12us - ProbeFindNextTime: 0ns - ProbeRows: 83.043K (83043) - ProbeTime: 46.327ms - ProbeWhenBuildSideOutputTime: 1.583ms - ProbeWhenProbeSideOutputTime: 17.752ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 24.311ms - ProjectionTime: 1.150ms - RowsProduced: 83.043K (83043) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 23 - CloseTime: 0ns - ExecTime: 181.860us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.09 MB - OpenTime: 787ns - ProjectionTime: 0ns - RowsProduced: 83.043K (83043) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 322.167ms PipelineXTask (index=3):(Active: 59.0ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 58.860ms - CloseTime: 32.63us - GetBlockTime: 12.155ms - OpenTime: 3.728us - PrepareTime: 98.232us - SinkTime: 46.467ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 33.899ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 22.829ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.04 MB - CloseTime: 16.454us - CompressTime: 0ns - ExecTime: 46.508ms - InputRows: 74.97K (74970) - LocalBytesSent: 1.20 MB - LocalSendTime: 65.258us - LocalSentRows: 18.813K (18813) - MemoryUsage: - PeakMemoryUsage: 3.34 MB - MergeBlockTime: 0ns - OpenTime: 44.987us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s429ms - RowsProduced: 74.97K (74970) - RpcAvgTime: 1s899ms - RpcCount: 15 - RpcMaxTime: 9s497ms - RpcMinTime: 9s496ms - RpcSumTime: 28s490ms - SerializeBatchTime: 12.44ms - SplitBlockDistributeByChannelTime: 7.921ms - SplitBlockHashComputeTime: 24.869ms - UncompressedRowBatchSize: 3.65 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 21 - BuildOutputBlock: 0ns - CloseTime: 12.449us - ExecTime: 11.957ms - InitProbeSideTime: 1.774ms - JoinFilterTimer: 4.576us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 22.434us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 17.110us - ProbeFindNextTime: 0ns - ProbeRows: 74.97K (74970) - ProbeTime: 8.7ms - ProbeWhenBuildSideOutputTime: 1.315ms - ProbeWhenProbeSideOutputTime: 2.468ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.868ms - ProjectionTime: 3.817ms - RowsProduced: 74.97K (74970) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 21 - CloseTime: 0ns - ExecTime: 143.255us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 671ns - ProjectionTime: 0ns - RowsProduced: 74.97K (74970) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 336.589ms PipelineXTask (index=6):(Active: 37.918ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 37.762ms - CloseTime: 50.64us - GetBlockTime: 9.353ms - OpenTime: 6.944us - PrepareTime: 87.625us - SinkTime: 28.194ms - GetBlockCounter: 30 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 30.261ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 36.180ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.02 MB - CloseTime: 20.220us - CompressTime: 0ns - ExecTime: 28.234ms - InputRows: 73.798K (73798) - LocalBytesSent: 1.18 MB - LocalSendTime: 44.870us - LocalSentRows: 18.475K (18475) - MemoryUsage: - PeakMemoryUsage: 3.16 MB - MergeBlockTime: 0ns - OpenTime: 36.930us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s624ms - RowsProduced: 73.798K (73798) - RpcAvgTime: 2s179ms - RpcCount: 12 - RpcMaxTime: 8s722ms - RpcMinTime: 8s714ms - RpcSumTime: 26s154ms - SerializeBatchTime: 17.582ms - SplitBlockDistributeByChannelTime: 6.728ms - SplitBlockHashComputeTime: 2.492ms - UncompressedRowBatchSize: 3.59 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 24.483us - ExecTime: 9.147ms - InitProbeSideTime: 1.503ms - JoinFilterTimer: 3.811us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 19.100us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.307us - ProbeFindNextTime: 0ns - ProbeRows: 73.798K (73798) - ProbeTime: 7.813ms - ProbeWhenBuildSideOutputTime: 1.342ms - ProbeWhenProbeSideOutputTime: 2.756ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.668ms - ProjectionTime: 1.197ms - RowsProduced: 73.798K (73798) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 172.820us - GetBlockFailedTime: 10 - MemoryUsage: - PeakMemoryUsage: 896.00 KB - OpenTime: 757ns - ProjectionTime: 0ns - RowsProduced: 73.798K (73798) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 349.667ms PipelineXTask (index=9):(Active: 77.889ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 77.724ms - CloseTime: 39.162us - GetBlockTime: 59.174ms - OpenTime: 5.501us - PrepareTime: 112.735us - SinkTime: 18.382ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 26.447ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.5ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 23 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.01 MB - CloseTime: 19.70us - CompressTime: 0ns - ExecTime: 18.440ms - InputRows: 73.512K (73512) - LocalBytesSent: 1.18 MB - LocalSendTime: 39.149us - LocalSentRows: 18.435K (18435) - MemoryUsage: - PeakMemoryUsage: 3.34 MB - MergeBlockTime: 0ns - OpenTime: 54.880us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s432ms - RowsProduced: 73.512K (73512) - RpcAvgTime: 1s899ms - RpcCount: 15 - RpcMaxTime: 9s498ms - RpcMinTime: 9s496ms - RpcSumTime: 28s491ms - SerializeBatchTime: 9.73ms - SplitBlockDistributeByChannelTime: 5.627ms - SplitBlockHashComputeTime: 2.447ms - UncompressedRowBatchSize: 3.58 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 20 - BuildOutputBlock: 0ns - CloseTime: 15.10us - ExecTime: 59.32ms - InitProbeSideTime: 1.477ms - JoinFilterTimer: 3.997us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.15us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.307us - ProbeFindNextTime: 0ns - ProbeRows: 73.512K (73512) - ProbeTime: 57.845ms - ProbeWhenBuildSideOutputTime: 1.182ms - ProbeWhenProbeSideOutputTime: 1.763ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 52.936ms - ProjectionTime: 1.89ms - RowsProduced: 73.512K (73512) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 20 - CloseTime: 0ns - ExecTime: 103.26us - GetBlockFailedTime: 7 - MemoryUsage: - PeakMemoryUsage: 1.97 MB - OpenTime: 845ns - ProjectionTime: 0ns - RowsProduced: 73.512K (73512) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 324.125ms PipelineXTask (index=12):(Active: 86.984ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 86.850ms - CloseTime: 35.841us - GetBlockTime: 8.994ms - OpenTime: 4.99us - PrepareTime: 85.621us - SinkTime: 77.703ms - GetBlockCounter: 27 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 29.290ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.909ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.96 MB - CloseTime: 13.816us - CompressTime: 0ns - ExecTime: 77.742ms - InputRows: 71.596K (71596) - LocalBytesSent: 1.14 MB - LocalSendTime: 68.65us - LocalSentRows: 17.924K (17924) - MemoryUsage: - PeakMemoryUsage: 3.16 MB - MergeBlockTime: 0ns - OpenTime: 40.742us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s634ms - RowsProduced: 71.596K (71596) - RpcAvgTime: 2s179ms - RpcCount: 12 - RpcMaxTime: 8s724ms - RpcMinTime: 8s711ms - RpcSumTime: 26s155ms - SerializeBatchTime: 10.144ms - SplitBlockDistributeByChannelTime: 63.848ms - SplitBlockHashComputeTime: 2.459ms - UncompressedRowBatchSize: 3.48 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 18.657us - ExecTime: 8.830ms - InitProbeSideTime: 1.800ms - JoinFilterTimer: 3.553us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 16.343us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.954us - ProbeFindNextTime: 0ns - ProbeRows: 71.596K (71596) - ProbeTime: 7.629ms - ProbeWhenBuildSideOutputTime: 1.45ms - ProbeWhenProbeSideOutputTime: 2.600ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.674ms - ProjectionTime: 1.86ms - RowsProduced: 71.596K (71596) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 134.929us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.53 MB - OpenTime: 663ns - ProjectionTime: 0ns - RowsProduced: 71.596K (71596) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 315.535ms PipelineXTask (index=15):(Active: 51.846ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 51.701ms - CloseTime: 35.192us - GetBlockTime: 11.877ms - OpenTime: 4.470us - PrepareTime: 99.935us - SinkTime: 39.657ms - GetBlockCounter: 25 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 8 - NumScheduleTimes: 9 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 22.217ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 24.286ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.90 MB - CloseTime: 15.348us - CompressTime: 0ns - ExecTime: 39.709ms - InputRows: 69.57K (69570) - LocalBytesSent: 1.12 MB - LocalSendTime: 39.409us - LocalSentRows: 17.495K (17495) - MemoryUsage: - PeakMemoryUsage: 3.16 MB - MergeBlockTime: 0ns - OpenTime: 49.361us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s653ms - RowsProduced: 69.57K (69570) - RpcAvgTime: 2s177ms - RpcCount: 12 - RpcMaxTime: 8s712ms - RpcMinTime: 8s711ms - RpcSumTime: 26s135ms - SerializeBatchTime: 31.769ms - SplitBlockDistributeByChannelTime: 4.663ms - SplitBlockHashComputeTime: 2.149ms - UncompressedRowBatchSize: 3.38 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 19 - BuildOutputBlock: 0ns - CloseTime: 16.800us - ExecTime: 11.753ms - InitProbeSideTime: 1.103ms - JoinFilterTimer: 3.31us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.217us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.891us - ProbeFindNextTime: 0ns - ProbeRows: 69.57K (69570) - ProbeTime: 10.844ms - ProbeWhenBuildSideOutputTime: 808.369us - ProbeWhenProbeSideOutputTime: 1.497ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 7.41ms - ProjectionTime: 825.17us - RowsProduced: 69.57K (69570) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 19 - CloseTime: 0ns - ExecTime: 89.751us - GetBlockFailedTime: 6 - MemoryUsage: - PeakMemoryUsage: 1.53 MB - OpenTime: 680ns - ProjectionTime: 0ns - RowsProduced: 69.57K (69570) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 338.874ms PipelineXTask (index=18):(Active: 57.122ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 56.980ms - CloseTime: 52.77us - GetBlockTime: 5.896ms - OpenTime: 5.240us - PrepareTime: 79.484us - SinkTime: 50.906ms - GetBlockCounter: 26 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 20.979ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.0ms DATA_STREAM_SINK_OPERATOR (id=31,dst_id=31): - Partitioner: Crc32HashPartitioner(4) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.57 MB - CloseTime: 20.893us - CompressTime: 0ns - ExecTime: 50.947ms - InputRows: 57.153K (57153) - LocalBytesSent: 927.49 KB - LocalSendTime: 41.343us - LocalSentRows: 14.177K (14177) - MemoryUsage: - PeakMemoryUsage: 2.86 MB - MergeBlockTime: 0ns - OpenTime: 34.386us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s663ms - RowsProduced: 57.153K (57153) - RpcAvgTime: 2s177ms - RpcCount: 12 - RpcMaxTime: 8s709ms - RpcMinTime: 8s708ms - RpcSumTime: 26s126ms - SerializeBatchTime: 43.168ms - SplitBlockDistributeByChannelTime: 4.520ms - SplitBlockHashComputeTime: 2.28ms - UncompressedRowBatchSize: 2.79 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=30): - BlocksProduced: 18 - BuildOutputBlock: 0ns - CloseTime: 26.727us - ExecTime: 5.782ms - InitProbeSideTime: 1.176ms - JoinFilterTimer: 2.877us - MemoryUsage: - PeakMemoryUsage: 156.00 KB - ProbeKeyArena: 156.00 KB - OpenTime: 18.391us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.895us - ProbeFindNextTime: 0ns - ProbeRows: 57.153K (57153) - ProbeTime: 4.850ms - ProbeWhenBuildSideOutputTime: 794.490us - ProbeWhenProbeSideOutputTime: 1.106ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 1.335ms - ProjectionTime: 815.993us - RowsProduced: 57.153K (57153) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-3): - BlocksProduced: 18 - CloseTime: 0ns - ExecTime: 102.629us - GetBlockFailedTime: 8 - MemoryUsage: - PeakMemoryUsage: 1.06 MB - OpenTime: 682ns - ProjectionTime: 0ns - RowsProduced: 57.153K (57153) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 338.24ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 1.255ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 543.509us - CloseTime: 41.736us - GetBlockTime: 28.4us - OpenTime: 477.715us - PrepareTime: 182.228us - SinkTime: 17.510us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.203ms - WaitBfTime: 135.35ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 611.427us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 18.36us - InputRows: 4 - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.332us - 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: 58.60us - BlocksProduced: 1 - CloseTime: 39.259us - ExecTime: 122.192ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 578.472us - ProcessConjunctTime: 277.714us - ProjectionTime: 10.729us - RowsProduced: 4 - RowsRead: 4 - RuntimeFilterInfo: - filter id = -1 filtered: 197.73K (197730) - filter id = -1 input: 197.738K (197738) - ScannerWorkerWaitTime: 117.793ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 121.535ms - 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.564ms, ] - PerScannerRowsRead: [4, ] - PerScannerWaitTime: [117.793ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.514ms - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.97ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 71ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 3.735ms - ScannerCtxSchedTime: 117.791ms - ScannerFilterTime: 3.270us - ScannerGetBlockTime: 1.553ms - ScannerInitTime: 114.192us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 197738, filtered = 197730] - BitmapIndexFilterTimer: 520ns - BlockConditionsFilteredBloomFilterTime: 1.149us - BlockConditionsFilteredDictTime: 49.82us - BlockConditionsFilteredTime: 89.744us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 33.869us - BlockInitSeekCount: 9 - BlockInitSeekTime: 7.625us - BlockInitTime: 118.43us - BlockLoadTime: 3.485ms - BlocksLoad: 139 - CachedPagesNum: 108 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 414 - FirstReadSeekTime: 52.108us - FirstReadTime: 2.189ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.576us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 36.304us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 33.755us - OutputIndexResultColumnTimer: 7.965us - 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: 243.906us - TotalPagesNum: 108 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 706.721us PipelineXTask (index=4):(Active: 924.437us, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 432.343us - CloseTime: 25.629us - GetBlockTime: 38.392us - OpenTime: 320.91us - PrepareTime: 136.951us - SinkTime: 39.270us - GetBlockCounter: 4 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 884.984us - WaitBfTime: 134.502ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.774ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 39.770us - InputRows: 11.788K (11788) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.964us - 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: 33.795us - BlocksProduced: 4 - CloseTime: 23.934us - ExecTime: 214.995ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 403.577us - ProcessConjunctTime: 203.409us - ProjectionTime: 725.776us - RowsProduced: 11.788K (11788) - RowsRead: 11.788K (11788) - RuntimeFilterInfo: - filter id = -1 filtered: 656.598K (656598) - filter id = -1 input: 680.174K (680174) - ScannerWorkerWaitTime: 131.560ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 213.752ms - 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: [78.951ms, ] - PerScannerRowsRead: [11.79K, ] - PerScannerWaitTime: [131.560ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 77.492ms - MemoryUsage: - FreeBlocks: 532.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 893.636us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 125ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 22.98ms - ScannerCtxSchedTime: 131.557ms - ScannerFilterTime: 269.753us - ScannerGetBlockTime: 78.529ms - ScannerInitTime: 65.651us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 680174, filtered = 656598] - BitmapIndexFilterTimer: 1.634us - BlockConditionsFilteredBloomFilterTime: 3.523us - BlockConditionsFilteredDictTime: 79.568us - BlockConditionsFilteredTime: 172.195us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 72.257us - BlockInitSeekCount: 17 - BlockInitSeekTime: 19.883us - BlockInitTime: 256.522us - BlockLoadTime: 78.616ms - BlocksLoad: 367 - CachedPagesNum: 1.065K (1065) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.095K (1095) - FirstReadSeekTime: 194.688us - FirstReadTime: 6.195ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.982us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 6.947ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 751.516us - OutputIndexResultColumnTimer: 34.346us - 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: 1.65ms - TotalPagesNum: 1.065K (1065) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.522ms PipelineXTask (index=7):(Active: 1.210ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 668.177us - CloseTime: 41.474us - GetBlockTime: 157.248us - OpenTime: 339.857us - PrepareTime: 151.635us - SinkTime: 120.703us - GetBlockCounter: 13 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 7 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.154ms - WaitBfTime: 134.856ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.114ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 116.551us - InputRows: 43.479K (43479) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.240us - 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: 30.820us - BlocksProduced: 13 - CloseTime: 38.291us - ExecTime: 195.895ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 435.22us - ProcessConjunctTime: 209.903us - ProjectionTime: 934.827us - RowsProduced: 43.479K (43479) - RowsRead: 43.479K (43479) - RuntimeFilterInfo: - filter id = -1 filtered: 914.51K (914510) - filter id = -1 input: 1.001468M (1001468) - ScannerWorkerWaitTime: 121.754ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.271ms - 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: [66.016ms, ] - PerScannerRowsRead: [43.48K, ] - PerScannerWaitTime: [121.754ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 63.737ms - MemoryUsage: - FreeBlocks: 1.54 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.515ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 765ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 32.488ms - ScannerCtxSchedTime: 121.749ms - ScannerFilterTime: 285.293us - ScannerGetBlockTime: 65.572ms - ScannerInitTime: 80.645us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1001468, filtered = 914510] - BitmapIndexFilterTimer: 2.689us - BlockConditionsFilteredBloomFilterTime: 5.398us - BlockConditionsFilteredDictTime: 143.324us - BlockConditionsFilteredTime: 292.108us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 117.592us - BlockInitSeekCount: 25 - BlockInitSeekTime: 36.327us - BlockInitTime: 426.967us - BlockLoadTime: 66.11ms - BlocksLoad: 384 - CachedPagesNum: 1.101K (1101) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.143K (1143) - FirstReadSeekTime: 226.309us - FirstReadTime: 6.849ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.495us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 11.674ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 10.543ms - OutputIndexResultColumnTimer: 47.82us - 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: 32.741ms - TotalPagesNum: 1.101K (1101) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.756ms PipelineXTask (index=10):(Active: 1.347ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 788.359us - CloseTime: 39.281us - GetBlockTime: 235.21us - OpenTime: 327.289us - PrepareTime: 182.916us - SinkTime: 146.885us - GetBlockCounter: 29 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.288ms - WaitBfTime: 135.595ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.335ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 141.546us - InputRows: 106.535K (106535) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.148us - 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: 29.182us - BlocksProduced: 29 - CloseTime: 37.33us - ExecTime: 193.322ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 456.151us - ProcessConjunctTime: 194.968us - ProjectionTime: 1.375ms - RowsProduced: 106.535K (106535) - RowsRead: 106.535K (106535) - RuntimeFilterInfo: - filter id = -1 filtered: 1.136506M (1136506) - filter id = -1 input: 1.349576M (1349576) - ScannerWorkerWaitTime: 135.213ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 191.172ms - 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: [48.753ms, ] - PerScannerRowsRead: [106.53K, ] - PerScannerWaitTime: [135.213ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 45.286ms - MemoryUsage: - FreeBlocks: 3.55 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 751.944us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.51us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 37.853ms - ScannerCtxSchedTime: 135.206ms - ScannerFilterTime: 263.872us - ScannerGetBlockTime: 48.346ms - ScannerInitTime: 85.534us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1349576, filtered = 1136506] - BitmapIndexFilterTimer: 3.452us - BlockConditionsFilteredBloomFilterTime: 8.710us - BlockConditionsFilteredDictTime: 119.764us - BlockConditionsFilteredTime: 275.571us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 112.300us - BlockInitSeekCount: 33 - BlockInitSeekTime: 40.867us - BlockInitTime: 429.112us - BlockLoadTime: 47.961ms - BlocksLoad: 382 - CachedPagesNum: 1.075K (1075) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.134K (1134) - FirstReadSeekTime: 228.359us - FirstReadTime: 6.219ms - IOTimer: 0ns - InvertedIndexFilterTime: 11.387us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 32.899ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 2.243ms - OutputIndexResultColumnTimer: 32.649us - 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.580ms - TotalPagesNum: 1.075K (1075) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.711ms PipelineXTask (index=13):(Active: 1.471ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 882.886us - CloseTime: 55.877us - GetBlockTime: 231.446us - OpenTime: 376.326us - PrepareTime: 147.250us - SinkTime: 215.28us - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.400ms - WaitBfTime: 135.171ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.834ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 208.229us - InputRows: 138.361K (138361) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.129us - 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: 43.568us - BlocksProduced: 37 - CloseTime: 53.488us - ExecTime: 197.318ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 463.764us - ProcessConjunctTime: 223.824us - ProjectionTime: 1.634ms - RowsProduced: 138.361K (138361) - RowsRead: 138.361K (138361) - RuntimeFilterInfo: - filter id = -1 filtered: 918.412K (918412) - filter id = -1 input: 1.195134M (1195134) - ScannerWorkerWaitTime: 127.120ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 194.913ms - 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: [58.533ms, ] - PerScannerRowsRead: [138.36K, ] - PerScannerWaitTime: [127.120ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 56.631ms - MemoryUsage: - FreeBlocks: 4.66 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.63ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.679us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.325ms - ScannerCtxSchedTime: 127.116ms - ScannerFilterTime: 242.497us - ScannerGetBlockTime: 58.154ms - ScannerInitTime: 88.510us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1195134, filtered = 918412] - BitmapIndexFilterTimer: 2.623us - BlockConditionsFilteredBloomFilterTime: 6.199us - BlockConditionsFilteredDictTime: 131.979us - BlockConditionsFilteredTime: 252.930us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 90.122us - BlockInitSeekCount: 25 - BlockInitSeekTime: 210.252us - BlockInitTime: 550.842us - BlockLoadTime: 58.262ms - BlocksLoad: 260 - CachedPagesNum: 746 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 771 - FirstReadSeekTime: 173.523us - FirstReadTime: 17.394ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.447us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 31.688ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.794ms - OutputIndexResultColumnTimer: 30.602us - 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.798ms - TotalPagesNum: 746 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.182ms PipelineXTask (index=16):(Active: 1.916ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 1.195ms - CloseTime: 41.767us - GetBlockTime: 361.509us - OpenTime: 509.122us - PrepareTime: 158.568us - SinkTime: 240.669us - GetBlockCounter: 49 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 5 - NumBlockedTimes: 8 - NumScheduleTimes: 8 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.856ms - WaitBfTime: 153.139ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 16.130ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 235.703us - InputRows: 178.881K (178881) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.765us - 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: 55.628us - BlocksProduced: 49 - CloseTime: 38.855us - ExecTime: 255.32ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 614.428us - ProcessConjunctTime: 266.486us - ProjectionTime: 2.142ms - RowsProduced: 178.881K (178881) - RowsRead: 178.881K (178881) - RuntimeFilterInfo: - filter id = -1 filtered: 990.538K (990538) - filter id = -1 input: 1.3483M (1348300) - ScannerWorkerWaitTime: 107.484ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 251.850ms - 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.102ms, ] - PerScannerRowsRead: [178.88K, ] - PerScannerWaitTime: [107.484ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 94.397ms - MemoryUsage: - FreeBlocks: 5.32 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 686.146us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 1.708us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 40.772ms - ScannerCtxSchedTime: 107.473ms - ScannerFilterTime: 257.821us - ScannerGetBlockTime: 95.702ms - ScannerInitTime: 152.754us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 5 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1348300, filtered = 990538] - BitmapIndexFilterTimer: 2.98us - BlockConditionsFilteredBloomFilterTime: 5.102us - BlockConditionsFilteredDictTime: 65.589us - BlockConditionsFilteredTime: 174.283us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 83.819us - BlockInitSeekCount: 26 - BlockInitSeekTime: 246.271us - BlockInitTime: 501.409us - BlockLoadTime: 95.468ms - BlocksLoad: 291 - CachedPagesNum: 841 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 864 - FirstReadSeekTime: 166.671us - FirstReadTime: 5.190ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.210us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 69.82ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.483ms - OutputIndexResultColumnTimer: 34.481us - 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: 14.70ms - TotalPagesNum: 841 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.249ms PipelineXTask (index=19):(Active: 1.60ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 526.505us - CloseTime: 42.736us - GetBlockTime: 57.746us - OpenTime: 358.286us - PrepareTime: 124.659us - SinkTime: 85.745us - GetBlockCounter: 7 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 1.8ms - WaitBfTime: 135.92ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.937ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-3): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 85.325us - InputRows: 24.594K (24594) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.16us - 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: 43.455us - BlocksProduced: 7 - CloseTime: 39.673us - ExecTime: 126.481ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 428.472us - ProcessConjunctTime: 186.813us - ProjectionTime: 319.654us - RowsProduced: 24.594K (24594) - RowsRead: 24.594K (24594) - RuntimeFilterInfo: - filter id = -1 filtered: 333.578K (333578) - filter id = -1 input: 382.766K (382766) - ScannerWorkerWaitTime: 118.223ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 125.632ms - 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: [4.734ms, ] - PerScannerRowsRead: [24.59K, ] - PerScannerWaitTime: [118.223ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 4.564ms - MemoryUsage: - FreeBlocks: 1.44 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 449.260us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 205ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 7.373ms - ScannerCtxSchedTime: 118.222ms - ScannerFilterTime: 33.865us - ScannerGetBlockTime: 4.676ms - ScannerInitTime: 93.685us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 382766, filtered = 333578] - BitmapIndexFilterTimer: 435ns - BlockConditionsFilteredBloomFilterTime: 1.56us - BlockConditionsFilteredDictTime: 11.72us - BlockConditionsFilteredTime: 30.846us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 14.793us - BlockInitSeekCount: 9 - BlockInitSeekTime: 6.111us - BlockInitTime: 52.834us - BlockLoadTime: 4.900ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 168 - FirstReadSeekTime: 30.892us - FirstReadTime: 858.693us - IOTimer: 0ns - InvertedIndexFilterTime: 1.25us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.445ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 428.913us - OutputIndexResultColumnTimer: 4.708us - 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: 520.787us - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 462.321us Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 254.255us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 157.242us - CloseTime: 11.598us - GetBlockTime: 7.776us - OpenTime: 2.88us - PrepareTime: 78.400us - SinkTime: 130.719us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 235.799us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.291ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.51us - BuildRows: 110 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.288us - BuildTableInsertTime: 22.597us - BuildTableTime: 27.808us - CloseTime: 0ns - ExecTime: 148.836us - InputRows: 109 - MemoryUsage: - BuildBlocks: 1.65 KB - BuildKeyArena: 4.00 KB - HashTable: 956.00 B - PeakMemoryUsage: 2.58 KB - OpenTime: 18.962us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.816us - RuntimeFilterComputeTime: 20.748us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=28): - BlocksProduced: 2 - BytesReceived: 1.21 KB - CloseTime: 9.111us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.800us - ExecTime: 38.828us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.75 KB - PeakMemoryUsage: 0.00 - OpenTime: 23.253us - ProjectionTime: 0ns - RowsProduced: 109 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 130.31ms PipelineXTask (index=5):(Active: 179.977us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 28.276us - CloseTime: 4.743us - GetBlockTime: 0ns - OpenTime: 2.333us - PrepareTime: 138.316us - SinkTime: 13.257us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 168.846us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.979ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8240 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 99.919us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 86.703us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 133.450ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.610us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.851us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.471us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=8):(Active: 139.416us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 33.829us - CloseTime: 7.321us - GetBlockTime: 0ns - OpenTime: 1.907us - PrepareTime: 91.790us - SinkTime: 19.203us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 126.269us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.324ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8240 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 73.647us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 54.836us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 133.450ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.711us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 20.921us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.452us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=11):(Active: 91.103us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.320us - CloseTime: 5.669us - GetBlockTime: 0ns - OpenTime: 2.276us - PrepareTime: 48.782us - SinkTime: 13.871us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.530us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.953ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8240 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.177us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.495us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 133.437ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.206us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.243us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.153us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 136.0us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 42.465us - CloseTime: 9.806us - GetBlockTime: 0ns - OpenTime: 2.567us - PrepareTime: 75.329us - SinkTime: 24.942us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 119.437us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.506ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8240 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 41.735us - 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: 133.430ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.951us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 23.408us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.677us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=17):(Active: 182.332us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 90.253us - CloseTime: 13.171us - GetBlockTime: 0ns - OpenTime: 2.437us - PrepareTime: 69.777us - SinkTime: 36.191us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 159.824us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.369ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8240 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 54.485us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 18.303us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 133.76ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 10.249us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 42.148us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 31.128us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=20):(Active: 126.707us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 36.701us - CloseTime: 7.280us - GetBlockTime: 0ns - OpenTime: 2.420us - PrepareTime: 73.837us - SinkTime: 19.740us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 112.289us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.887ms HASH_JOIN_SINK_OPERATOR (id=30): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8240 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.921us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.444us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 130.460ms EXCHANGE_OPERATOR (id=28): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.148us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 43.661us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 37.621us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Fragment 141: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 138.466ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 69.199ms - CloseTime: 71.871us - GetBlockTime: 50.78us - OpenTime: 69.37ms - PrepareTime: 150.435us - SinkTime: 93.258us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 567.98us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.39ms DATA_STREAM_SINK_OPERATOR (id=28,dst_id=28): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.38 KB - CloseTime: 23.215us - CompressTime: 0ns - ExecTime: 157.514us - InputRows: 109 - LocalBytesSent: 1.65 KB - LocalSendTime: 12.958us - LocalSentRows: 109 - MemoryUsage: - PeakMemoryUsage: 3.25 KB - MergeBlockTime: 3.830us - OpenTime: 41.281us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 32.762ms - RowsProduced: 109 - RpcAvgTime: 24.606ms - RpcCount: 1 - RpcMaxTime: 24.606ms - RpcMinTime: 24.606ms - RpcSumTime: 24.606ms - SerializeBatchTime: 12.580us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 3.49 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 364ns - BlocksProduced: 1 - CloseTime: 44.799us - ExecTime: 100.943ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 69.97ms - ProcessConjunctTime: 31.738us - ProjectionTime: 9.314us - RowsProduced: 109 - RowsRead: 109 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 31.501ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 31.741ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, USER_NAME] - ShortCircuitPredicates: NullPredicate(not_null), column_id=2, opposite=false - PerScannerRunningTime: [18.019us, ] - PerScannerRowsRead: [109, ] - PerScannerWaitTime: [31.501ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 1.967us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 168.694us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 130ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 243.74us - ScannerCtxSchedTime: 31.500ms - ScannerFilterTime: 860ns - ScannerGetBlockTime: 13.868us - ScannerInitTime: 68.981ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 325ns - BlockConditionsFilteredBloomFilterTime: 1.348us - BlockConditionsFilteredDictTime: 5.216us - BlockConditionsFilteredTime: 21.73us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 6.619us - BlockInitSeekCount: 6 - BlockInitSeekTime: 11.277us - BlockInitTime: 53.593us - BlockLoadTime: 81.406us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 3.380us - FirstReadTime: 7.253us - IOTimer: 0ns - InvertedIndexFilterTime: 3.306us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 2.958us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 2.31us - OutputIndexResultColumnTimer: 149ns - 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: 339ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 159ns Fragment 142: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 165.862ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 165.424ms - CloseTime: 80.358us - GetBlockTime: 1.349ms - OpenTime: 163.321us - PrepareTime: 187.179us - SinkTime: 163.513ms - GetBlockCounter: 99 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 67.885ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.596ms DATA_STREAM_SINK_OPERATOR (id=26,dst_id=26): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 70 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.11 MB - CloseTime: 20.539us - CompressTime: 0ns - ExecTime: 163.531ms - InputRows: 209.907K (209907) - LocalBytesSent: 1.41 MB - LocalSendTime: 250.599us - LocalSentRows: 35.158K (35158) - MemoryUsage: - PeakMemoryUsage: 4.28 MB - MergeBlockTime: 0ns - OpenTime: 59.659us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s453ms - RowsProduced: 209.907K (209907) - RpcAvgTime: 1s899ms - RpcCount: 50 - RpcMaxTime: 9s499ms - RpcMinTime: 9s494ms - RpcSumTime: 1m34s - SerializeBatchTime: 78.524ms - SplitBlockDistributeByChannelTime: 67.816ms - SplitBlockHashComputeTime: 9.391ms - UncompressedRowBatchSize: 7.17 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=25. table name = DIM_OPENID_B): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys: - TabletIds: [22339] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 522ns - BlocksProduced: 99 - CloseTime: 55.730us - ExecTime: 393.668ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 252.343us - ProcessConjunctTime: 43.923us - ProjectionTime: 131.0ms - RowsProduced: 209.907K (209907) - RowsRead: 209.907K (209907) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 3.820ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 261.61ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [UNIONID, SUBSCRIBE_TIME, SUBSCRIBE] - PerScannerRunningTime: [123.589ms, ] - PerScannerRowsRead: [209.91K, ] - PerScannerWaitTime: [3.820ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 123.33ms - MemoryUsage: - FreeBlocks: 10.08 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.391ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 9.701us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 48.350ms - ScannerCtxSchedTime: 3.815ms - ScannerFilterTime: 100.281us - ScannerGetBlockTime: 123.421ms - ScannerInitTime: 80.810us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 723ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.446us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 28.709us - BlockLoadTime: 124.251ms - BlocksLoad: 101 - CachedPagesNum: 262 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 109.34ms - FirstReadSeekCount: 100 - FirstReadSeekTime: 47.252us - FirstReadTime: 3.873ms - IOTimer: 0ns - InvertedIndexFilterTime: 865ns - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 10.262ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 91.210us - OutputIndexResultColumnTimer: 15.568us - 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: 132.220ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 131.338ms - CloseTime: 344.493us - GetBlockTime: 128.381ms - OpenTime: 7.800us - PrepareTime: 520.569us - SinkTime: 2.800ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 131.839ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 122.131ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 615.18 KB - CloseTime: 15.480us - CompressTime: 0ns - ExecTime: 2.860ms - InputRows: 73 - LocalBytesSent: 2.82 MB - LocalSendTime: 82.851us - LocalSentRows: 61 - MemoryUsage: - PeakMemoryUsage: 4.78 MB - MergeBlockTime: 0ns - OpenTime: 45.120us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 32.137ms - RowsProduced: 73 - RpcAvgTime: 7.679ms - RpcCount: 1 - RpcMaxTime: 7.679ms - RpcMinTime: 7.679ms - RpcSumTime: 7.679ms - SerializeBatchTime: 338.634us - SplitBlockDistributeByChannelTime: 1.666ms - SplitBlockHashComputeTime: 7.507us - UncompressedRowBatchSize: 616.23 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 51.716ms - CloseTime: 289.0us - DeserializeAndMergeTime: 0ns - ExecTime: 56.210ms - ExprTime: 193.194us - GetResultsTime: 3.987ms - HashTableComputeTime: 4.555ms - HashTableEmplaceTime: 2.494ms - HashTableInputCount: 106.608K (106608) - HashTableIterateTime: 1.138us - HashTableSize: 73 - InsertKeysToColumnTime: 6.995us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 79.855us - ProjectionTime: 0ns - RowsProduced: 73 - SerializeDataTime: 3.967ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.989ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 27.924us - ExecTime: 69.81ms - InitProbeSideTime: 1.815ms - JoinFilterTimer: 7.154us - MemoryUsage: - PeakMemoryUsage: 420.00 KB - ProbeKeyArena: 420.00 KB - OpenTime: 29.249us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.272us - ProbeFindNextTime: 0ns - ProbeRows: 33.716K (33716) - ProbeTime: 19.657ms - ProbeWhenBuildSideOutputTime: 3.857ms - ProbeWhenProbeSideOutputTime: 683.6us - ProbeWhenProcessHashTableTime: 8.643ms - ProbeWhenSearchHashTableTime: 3.630ms - ProjectionTime: 49.275ms - RowsProduced: 106.608K (106608) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s728ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 7.713us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 153.375us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.89 MB - MemoryUsage: - Blocks: 2.89 MB - PeakMemoryUsage: 2.89 MB - OpenTime: 16.112us - ProjectionTime: 0ns - RowsProduced: 33.716K (33716) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s84ms PipelineXTask (index=2):(Active: 126.694ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 125.810ms - CloseTime: 354.503us - GetBlockTime: 123.204ms - OpenTime: 5.353us - PrepareTime: 517.679us - SinkTime: 2.477ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 126.48ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 120.475ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 6 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 620.44 KB - CloseTime: 19.863us - CompressTime: 0ns - ExecTime: 2.541ms - InputRows: 74 - LocalBytesSent: 2.81 MB - LocalSendTime: 115.377us - LocalSentRows: 62 - MemoryUsage: - PeakMemoryUsage: 4.70 MB - MergeBlockTime: 0ns - OpenTime: 45.737us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.801ms - RowsProduced: 74 - RpcAvgTime: 5.964ms - RpcCount: 1 - RpcMaxTime: 5.964ms - RpcMinTime: 5.964ms - RpcSumTime: 5.964ms - SerializeBatchTime: 414.222us - SplitBlockDistributeByChannelTime: 1.101ms - SplitBlockHashComputeTime: 37.346us - UncompressedRowBatchSize: 621.54 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 50.589ms - CloseTime: 272.883us - DeserializeAndMergeTime: 0ns - ExecTime: 54.198ms - ExprTime: 212.247us - GetResultsTime: 3.137ms - HashTableComputeTime: 4.376ms - HashTableEmplaceTime: 2.415ms - HashTableInputCount: 107.194K (107194) - HashTableIterateTime: 1.180us - HashTableSize: 74 - InsertKeysToColumnTime: 12.978us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 69.843us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 3.101ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.141ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 42.702us - ExecTime: 66.74ms - InitProbeSideTime: 1.518ms - JoinFilterTimer: 7.154us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 21.122us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.352us - ProbeFindNextTime: 0ns - ProbeRows: 33.598K (33598) - ProbeTime: 18.543ms - ProbeWhenBuildSideOutputTime: 3.904ms - ProbeWhenProbeSideOutputTime: 634.455us - ProbeWhenProcessHashTableTime: 8.51ms - ProbeWhenSearchHashTableTime: 3.381ms - ProjectionTime: 47.385ms - RowsProduced: 107.194K (107194) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s730ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 8 - BytesReceived: 0.00 - CloseTime: 9.497us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 186.254us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 2.94 MB - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 2.94 MB - OpenTime: 53.813us - ProjectionTime: 0ns - RowsProduced: 33.598K (33598) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s86ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 26.722ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 26.626ms - CloseTime: 14.933us - GetBlockTime: 1.124ms - OpenTime: 2.53us - PrepareTime: 71.346us - SinkTime: 25.152ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 34 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 26.638ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.344ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.144us - BuildRows: 106.607K (106607) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.532ms - BuildTableInsertTime: 7.81ms - BuildTableTime: 7.86ms - CloseTime: 0ns - ExecTime: 25.168ms - InputRows: 106.606K (106606) - MemoryUsage: - BuildBlocks: 14.38 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.74 MB - OpenTime: 39.675us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.716us - RuntimeFilterComputeTime: 6.329ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 66 - BytesReceived: 6.83 MB - CloseTime: 10.763us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.807ms - ExecTime: 1.114ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.61 MB - MemoryUsage: - Blocks: 1.15 MB - PeakMemoryUsage: 0.00 - OpenTime: 11.313us - ProjectionTime: 0ns - RowsProduced: 106.606K (106606) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s902ms PipelineXTask (index=3):(Active: 30.406ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 30.306ms - CloseTime: 9.666us - GetBlockTime: 1.81ms - OpenTime: 1.774us - PrepareTime: 80.339us - SinkTime: 28.888ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 34 - NumBlockedTimes: 36 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.331ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.177ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.795us - BuildRows: 107.192K (107192) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.863ms - BuildTableInsertTime: 8.453ms - BuildTableTime: 8.457ms - CloseTime: 0ns - ExecTime: 28.896ms - InputRows: 107.191K (107191) - MemoryUsage: - BuildBlocks: 14.46 MB - BuildKeyArena: 3.38 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.84 MB - OpenTime: 26.105us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 154.991us - RuntimeFilterComputeTime: 6.206ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 66 - BytesReceived: 6.86 MB - CloseTime: 6.842us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.322ms - ExecTime: 1.85ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.62 MB - MemoryUsage: - Blocks: 1.36 MB - PeakMemoryUsage: 0.00 - OpenTime: 27.746us - ProjectionTime: 0ns - RowsProduced: 107.191K (107191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s901ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 177.184ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 176.218ms - CloseTime: 551.946us - GetBlockTime: 171.532ms - OpenTime: 5.616us - PrepareTime: 401.57us - SinkTime: 4.547ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 175.524ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.635ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.84 MB - CloseTime: 18.538us - CompressTime: 0ns - ExecTime: 4.600ms - InputRows: 72 - LocalBytesSent: 619.68 KB - LocalSendTime: 18.143us - LocalSentRows: 11 - MemoryUsage: - PeakMemoryUsage: 4.79 MB - MergeBlockTime: 0ns - OpenTime: 35.649us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 154.827ms - RowsProduced: 72 - RpcAvgTime: 145.977ms - RpcCount: 4 - RpcMaxTime: 155.146ms - RpcMinTime: 139.699ms - RpcSumTime: 583.911ms - SerializeBatchTime: 1.864ms - SplitBlockDistributeByChannelTime: 1.166ms - SplitBlockHashComputeTime: 26.189us - UncompressedRowBatchSize: 2.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 71.567ms - CloseTime: 481.379us - DeserializeAndMergeTime: 0ns - ExecTime: 76.203ms - ExprTime: 354.685us - GetResultsTime: 3.874ms - HashTableComputeTime: 4.749ms - HashTableEmplaceTime: 2.571ms - HashTableInputCount: 106.733K (106733) - HashTableIterateTime: 1.684us - HashTableSize: 72 - InsertKeysToColumnTime: 11.389us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 85.124us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 3.842ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.878ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 32.173us - ExecTime: 91.517ms - InitProbeSideTime: 1.675ms - JoinFilterTimer: 5.878us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 19.620us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.273us - ProbeFindNextTime: 0ns - ProbeRows: 33.788K (33788) - ProbeTime: 25.238ms - ProbeWhenBuildSideOutputTime: 4.926ms - ProbeWhenProbeSideOutputTime: 678.647us - ProbeWhenProcessHashTableTime: 11.650ms - ProbeWhenSearchHashTableTime: 4.872ms - ProjectionTime: 66.110ms - RowsProduced: 106.733K (106733) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s57ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 16 - BytesReceived: 1.85 MB - CloseTime: 13.167us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.291ms - ExecTime: 161.941us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.91 MB - PeakMemoryUsage: 0.00 - OpenTime: 15.511us - ProjectionTime: 0ns - RowsProduced: 33.788K (33788) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s870ms PipelineXTask (index=2):(Active: 568.291ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 567.442ms - CloseTime: 426.522us - GetBlockTime: 549.642ms - OpenTime: 7.560us - PrepareTime: 404.199us - SinkTime: 17.317ms - GetBlockCounter: 200 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 10 - NumYieldTimes: 5 - PendingFinishTimes: 1 - TaskCpuTime: 567.632ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 887.511us DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 13.86 MB - CloseTime: 11.193us - CompressTime: 0ns - ExecTime: 17.375ms - InputRows: 74 - LocalBytesSent: 2.79 MB - LocalSendTime: 52.451us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 29.16 MB - MergeBlockTime: 0ns - OpenTime: 49.122us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 117.906ms - RowsProduced: 74 - RpcAvgTime: 72.864ms - RpcCount: 4 - RpcMaxTime: 118.91ms - RpcMinTime: 24.727ms - RpcSumTime: 291.458ms - SerializeBatchTime: 5.991ms - SplitBlockDistributeByChannelTime: 5.286ms - SplitBlockHashComputeTime: 15.827us - UncompressedRowBatchSize: 13.87 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 229.968ms - CloseTime: 363.821us - DeserializeAndMergeTime: 0ns - ExecTime: 245.199ms - ExprTime: 905.340us - GetResultsTime: 14.238ms - HashTableComputeTime: 24.238ms - HashTableEmplaceTime: 13.390ms - HashTableInputCount: 785.077K (785077) - HashTableIterateTime: 2.412us - HashTableSize: 74 - InsertKeysToColumnTime: 23.830us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 72.882us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 14.192ms - SerializeKeyTime: 0ns - SerializeResultTime: 14.241ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 200 - BuildOutputBlock: 0ns - CloseTime: 38.549us - ExecTime: 290.548ms - InitProbeSideTime: 1.822ms - JoinFilterTimer: 27.838us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 22.663us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 5.222us - ProbeFindNextTime: 0ns - ProbeRows: 33.798K (33798) - ProbeTime: 64.394ms - ProbeWhenBuildSideOutputTime: 4.853ms - ProbeWhenProbeSideOutputTime: 684.536us - ProbeWhenProcessHashTableTime: 50.835ms - ProbeWhenSearchHashTableTime: 2.467ms - ProjectionTime: 225.857ms - RowsProduced: 785.077K (785077) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s71ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 18 - BytesReceived: 1.85 MB - CloseTime: 6.717us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.85ms - ExecTime: 149.692us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.93 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.984us - ProjectionTime: 0ns - RowsProduced: 33.798K (33798) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s896ms PipelineXTask (index=4):(Active: 132.429ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 131.696ms - CloseTime: 270.589us - GetBlockTime: 126.966ms - OpenTime: 4.521us - PrepareTime: 450.833us - SinkTime: 4.585ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 129.676ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.360ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.83 MB - CloseTime: 14.496us - CompressTime: 0ns - ExecTime: 4.639ms - InputRows: 74 - LocalBytesSent: 616.17 KB - LocalSendTime: 22.671us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 4.76 MB - MergeBlockTime: 0ns - OpenTime: 41.412us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 23.589ms - RowsProduced: 74 - RpcAvgTime: 15.593ms - RpcCount: 4 - RpcMaxTime: 24.286ms - RpcMinTime: 10.577ms - RpcSumTime: 62.374ms - SerializeBatchTime: 1.212ms - SplitBlockDistributeByChannelTime: 833.307us - SplitBlockHashComputeTime: 13.655us - UncompressedRowBatchSize: 2.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 48.268ms - CloseTime: 221.717us - DeserializeAndMergeTime: 0ns - ExecTime: 51.399ms - ExprTime: 246.901us - GetResultsTime: 2.652ms - HashTableComputeTime: 4.144ms - HashTableEmplaceTime: 2.264ms - HashTableInputCount: 107.594K (107594) - HashTableIterateTime: 1.819us - HashTableSize: 74 - InsertKeysToColumnTime: 8.835us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 77.964us - ProjectionTime: 0ns - RowsProduced: 74 - SerializeDataTime: 2.623ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.655ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 20.415us - ExecTime: 72.324ms - InitProbeSideTime: 1.814ms - JoinFilterTimer: 8.191us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 18.352us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.464us - ProbeFindNextTime: 0ns - ProbeRows: 33.75K (33750) - ProbeTime: 19.832ms - ProbeWhenBuildSideOutputTime: 3.917ms - ProbeWhenProbeSideOutputTime: 762.288us - ProbeWhenProcessHashTableTime: 7.879ms - ProbeWhenSearchHashTableTime: 4.380ms - ProjectionTime: 52.367ms - RowsProduced: 107.594K (107594) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s170ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 18 - BytesReceived: 1.85 MB - CloseTime: 8.780us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.119ms - ExecTime: 162.770us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.97 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.596us - ProjectionTime: 0ns - RowsProduced: 33.75K (33750) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s755ms PipelineXTask (index=6):(Active: 149.139ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 148.319ms - CloseTime: 348.718us - GetBlockTime: 143.834ms - OpenTime: 5.700us - PrepareTime: 459.315us - SinkTime: 4.360ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 148.744ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 686.592us DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.82 MB - CloseTime: 22.936us - CompressTime: 0ns - ExecTime: 4.423ms - InputRows: 72 - LocalBytesSent: 624.33 KB - LocalSendTime: 15.889us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 4.78 MB - MergeBlockTime: 0ns - OpenTime: 41.126us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 60.864ms - RowsProduced: 72 - RpcAvgTime: 52.259ms - RpcCount: 4 - RpcMaxTime: 61.259ms - RpcMinTime: 46.29ms - RpcSumTime: 209.38ms - SerializeBatchTime: 1.808ms - SplitBlockDistributeByChannelTime: 1.63ms - SplitBlockHashComputeTime: 25.367us - UncompressedRowBatchSize: 2.84 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 61.39ms - CloseTime: 289.578us - DeserializeAndMergeTime: 0ns - ExecTime: 64.835ms - ExprTime: 309.6us - GetResultsTime: 3.289ms - HashTableComputeTime: 3.798ms - HashTableEmplaceTime: 1.980ms - HashTableInputCount: 106.656K (106656) - HashTableIterateTime: 1.271us - HashTableSize: 72 - InsertKeysToColumnTime: 13.276us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 75.89us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 3.255ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.293ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 20.928us - ExecTime: 75.685ms - InitProbeSideTime: 1.331ms - JoinFilterTimer: 4.172us - MemoryUsage: - PeakMemoryUsage: 148.00 KB - ProbeKeyArena: 148.00 KB - OpenTime: 22.281us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.75us - ProbeFindNextTime: 0ns - ProbeRows: 33.825K (33825) - ProbeTime: 20.739ms - ProbeWhenBuildSideOutputTime: 3.848ms - ProbeWhenProbeSideOutputTime: 553.874us - ProbeWhenProcessHashTableTime: 10.26ms - ProbeWhenSearchHashTableTime: 3.846ms - ProjectionTime: 54.820ms - RowsProduced: 106.656K (106656) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s998ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 18 - BytesReceived: 1.85 MB - CloseTime: 9.654us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.164ms - ExecTime: 146.818us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.527us - ProjectionTime: 0ns - RowsProduced: 33.825K (33825) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s925ms PipelineXTask (index=8):(Active: 142.31ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 141.256ms - CloseTime: 306.833us - GetBlockTime: 136.411ms - OpenTime: 3.501us - PrepareTime: 459.379us - SinkTime: 4.723ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 141.667ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.189ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.84 MB - CloseTime: 14.180us - CompressTime: 0ns - ExecTime: 4.776ms - InputRows: 73 - LocalBytesSent: 621.48 KB - LocalSendTime: 28.100us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 4.83 MB - MergeBlockTime: 0ns - OpenTime: 41.291us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 42.571ms - RowsProduced: 73 - RpcAvgTime: 33.484ms - RpcCount: 4 - RpcMaxTime: 42.897ms - RpcMinTime: 27.526ms - RpcSumTime: 133.938ms - SerializeBatchTime: 1.587ms - SplitBlockDistributeByChannelTime: 1.32ms - SplitBlockHashComputeTime: 23.285us - UncompressedRowBatchSize: 2.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 57.358ms - CloseTime: 253.52us - DeserializeAndMergeTime: 0ns - ExecTime: 61.3ms - ExprTime: 277.681us - GetResultsTime: 3.176ms - HashTableComputeTime: 3.734ms - HashTableEmplaceTime: 1.988ms - HashTableInputCount: 107.273K (107273) - HashTableIterateTime: 1.141us - HashTableSize: 73 - InsertKeysToColumnTime: 10.420us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 67.408us - ProjectionTime: 0ns - RowsProduced: 73 - SerializeDataTime: 3.148ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.179ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 21.552us - ExecTime: 72.706ms - InitProbeSideTime: 1.380ms - JoinFilterTimer: 3.384us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 22.197us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.582us - ProbeFindNextTime: 0ns - ProbeRows: 33.664K (33664) - ProbeTime: 21.124ms - ProbeWhenBuildSideOutputTime: 3.949ms - ProbeWhenProbeSideOutputTime: 598.962us - ProbeWhenProcessHashTableTime: 10.178ms - ProbeWhenSearchHashTableTime: 4.9ms - ProjectionTime: 51.460ms - RowsProduced: 107.273K (107273) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s140ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 16 - BytesReceived: 1.84 MB - CloseTime: 11.459us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.98ms - ExecTime: 137.44us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 0.00 - OpenTime: 33.542us - ProjectionTime: 0ns - RowsProduced: 33.664K (33664) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s784ms PipelineXTask (index=10):(Active: 181.930ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 181.115ms - CloseTime: 379.50us - GetBlockTime: 177.831ms - OpenTime: 4.407us - PrepareTime: 425.337us - SinkTime: 3.127ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 181.525ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 691.889us DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.83 MB - CloseTime: 16.478us - CompressTime: 0ns - ExecTime: 3.177ms - InputRows: 73 - LocalBytesSent: 617.65 KB - LocalSendTime: 46.857us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 4.75 MB - MergeBlockTime: 0ns - OpenTime: 34.525us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 170.204ms - RowsProduced: 73 - RpcAvgTime: 160.339ms - RpcCount: 4 - RpcMaxTime: 170.0ms - RpcMinTime: 153.687ms - RpcSumTime: 641.357ms - SerializeBatchTime: 1.187ms - SplitBlockDistributeByChannelTime: 785.664us - SplitBlockHashComputeTime: 21.701us - UncompressedRowBatchSize: 2.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 72.106ms - CloseTime: 327.856us - DeserializeAndMergeTime: 0ns - ExecTime: 75.250ms - ExprTime: 387.949us - GetResultsTime: 2.560ms - HashTableComputeTime: 4.857ms - HashTableEmplaceTime: 2.609ms - HashTableInputCount: 107.609K (107609) - HashTableIterateTime: 912ns - HashTableSize: 73 - InsertKeysToColumnTime: 8.882us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 69.581us - ProjectionTime: 0ns - RowsProduced: 73 - SerializeDataTime: 2.537ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.562ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 22.89us - ExecTime: 98.599ms - InitProbeSideTime: 2.188ms - JoinFilterTimer: 5.671us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 22.407us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 7.39us - ProbeFindNextTime: 0ns - ProbeRows: 33.899K (33899) - ProbeTime: 27.247ms - ProbeWhenBuildSideOutputTime: 5.596ms - ProbeWhenProbeSideOutputTime: 838.227us - ProbeWhenProcessHashTableTime: 11.511ms - ProbeWhenSearchHashTableTime: 5.640ms - ProjectionTime: 71.178ms - RowsProduced: 107.609K (107609) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s130ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 18 - BytesReceived: 1.86 MB - CloseTime: 7.199us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.450ms - ExecTime: 199.884us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.93 MB - PeakMemoryUsage: 0.00 - OpenTime: 17.147us - ProjectionTime: 0ns - RowsProduced: 33.899K (33899) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s804ms PipelineXTask (index=12):(Active: 164.769ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 163.799ms - CloseTime: 467.388us - GetBlockTime: 160.296ms - OpenTime: 6.713us - PrepareTime: 489.869us - SinkTime: 3.353ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 164.272ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.505ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.83 MB - CloseTime: 24.135us - CompressTime: 0ns - ExecTime: 3.427ms - InputRows: 72 - LocalBytesSent: 633.16 KB - LocalSendTime: 14.490us - LocalSentRows: 11 - MemoryUsage: - PeakMemoryUsage: 4.81 MB - MergeBlockTime: 0ns - OpenTime: 51.323us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 138.982ms - RowsProduced: 72 - RpcAvgTime: 129.794ms - RpcCount: 4 - RpcMaxTime: 139.249ms - RpcMinTime: 123.288ms - RpcSumTime: 519.179ms - SerializeBatchTime: 1.189ms - SplitBlockDistributeByChannelTime: 911.386us - SplitBlockHashComputeTime: 22.367us - UncompressedRowBatchSize: 2.84 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 65.469ms - CloseTime: 349.451us - DeserializeAndMergeTime: 0ns - ExecTime: 68.861ms - ExprTime: 344.477us - GetResultsTime: 2.793ms - HashTableComputeTime: 4.313ms - HashTableEmplaceTime: 2.306ms - HashTableInputCount: 107.284K (107284) - HashTableIterateTime: 954ns - HashTableSize: 72 - InsertKeysToColumnTime: 8.470us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 67.285us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 2.769ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.796ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 78.587us - ExecTime: 87.702ms - InitProbeSideTime: 1.539ms - JoinFilterTimer: 4.600us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 21.49us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.495us - ProbeFindNextTime: 0ns - ProbeRows: 33.587K (33587) - ProbeTime: 24.817ms - ProbeWhenBuildSideOutputTime: 4.701ms - ProbeWhenProbeSideOutputTime: 685.172us - ProbeWhenProcessHashTableTime: 11.790ms - ProbeWhenSearchHashTableTime: 4.903ms - ProjectionTime: 62.694ms - RowsProduced: 107.284K (107284) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s98ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 16 - BytesReceived: 1.84 MB - CloseTime: 8.370us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.236ms - ExecTime: 143.901us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.91 MB - PeakMemoryUsage: 0.00 - OpenTime: 19.890us - ProjectionTime: 0ns - RowsProduced: 33.587K (33587) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s824ms PipelineXTask (index=14):(Active: 150.168ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 149.319ms - CloseTime: 310.849us - GetBlockTime: 144.719ms - OpenTime: 3.676us - PrepareTime: 528.876us - SinkTime: 4.463ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 149.810ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.268ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.81 MB - CloseTime: 14.738us - CompressTime: 0ns - ExecTime: 4.509ms - InputRows: 72 - LocalBytesSent: 615.79 KB - LocalSendTime: 15.292us - LocalSentRows: 11 - MemoryUsage: - PeakMemoryUsage: 4.76 MB - MergeBlockTime: 0ns - OpenTime: 32.765us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 77.558ms - RowsProduced: 72 - RpcAvgTime: 68.692ms - RpcCount: 4 - RpcMaxTime: 77.812ms - RpcMinTime: 62.371ms - RpcSumTime: 274.770ms - SerializeBatchTime: 1.991ms - SplitBlockDistributeByChannelTime: 1.125ms - SplitBlockHashComputeTime: 23.758us - UncompressedRowBatchSize: 2.82 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 60.599ms - CloseTime: 249.263us - DeserializeAndMergeTime: 0ns - ExecTime: 65.301ms - ExprTime: 287.451us - GetResultsTime: 4.117ms - HashTableComputeTime: 3.784ms - HashTableEmplaceTime: 1.987ms - HashTableInputCount: 106.628K (106628) - HashTableIterateTime: 1.102us - HashTableSize: 72 - InsertKeysToColumnTime: 15.275us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 164.197us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 4.73ms - SerializeKeyTime: 0ns - SerializeResultTime: 4.121ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 34.588us - ExecTime: 76.294ms - InitProbeSideTime: 1.482ms - JoinFilterTimer: 3.732us - MemoryUsage: - PeakMemoryUsage: 396.00 KB - ProbeKeyArena: 396.00 KB - OpenTime: 18.876us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.20us - ProbeFindNextTime: 0ns - ProbeRows: 33.999K (33999) - ProbeTime: 21.572ms - ProbeWhenBuildSideOutputTime: 4.242ms - ProbeWhenProbeSideOutputTime: 578.233us - ProbeWhenProcessHashTableTime: 10.50ms - ProbeWhenSearchHashTableTime: 4.126ms - ProjectionTime: 54.573ms - RowsProduced: 106.628K (106628) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s86ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 16 - BytesReceived: 1.86 MB - CloseTime: 7.742us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.52ms - ExecTime: 108.792us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.302us - ProjectionTime: 0ns - RowsProduced: 33.999K (33999) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s844ms PipelineXTask (index=16):(Active: 158.355ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 157.396ms - CloseTime: 431.376us - GetBlockTime: 153.319ms - OpenTime: 4.304us - PrepareTime: 517.424us - SinkTime: 3.915ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 157.881ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.608ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.87 MB - CloseTime: 15.282us - CompressTime: 0ns - ExecTime: 3.979ms - InputRows: 75 - LocalBytesSent: 623.00 KB - LocalSendTime: 15.341us - LocalSentRows: 12 - MemoryUsage: - PeakMemoryUsage: 4.79 MB - MergeBlockTime: 0ns - OpenTime: 50.299us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 99.390ms - RowsProduced: 75 - RpcAvgTime: 90.480ms - RpcCount: 4 - RpcMaxTime: 99.725ms - RpcMinTime: 84.28ms - RpcSumTime: 361.921ms - SerializeBatchTime: 1.543ms - SplitBlockDistributeByChannelTime: 1.5ms - SplitBlockHashComputeTime: 25.857us - UncompressedRowBatchSize: 2.89 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 63.906ms - CloseTime: 373.256us - DeserializeAndMergeTime: 0ns - ExecTime: 67.624ms - ExprTime: 336.878us - GetResultsTime: 3.50ms - HashTableComputeTime: 3.894ms - HashTableEmplaceTime: 2.62ms - HashTableInputCount: 107.56K (107560) - HashTableIterateTime: 3.440us - HashTableSize: 75 - InsertKeysToColumnTime: 15.614us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 75.727us - ProjectionTime: 0ns - RowsProduced: 75 - SerializeDataTime: 3.12ms - SerializeKeyTime: 0ns - SerializeResultTime: 3.54ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 32 - BuildOutputBlock: 0ns - CloseTime: 28.308us - ExecTime: 82.316ms - InitProbeSideTime: 1.564ms - JoinFilterTimer: 4.402us - MemoryUsage: - PeakMemoryUsage: 408.00 KB - ProbeKeyArena: 408.00 KB - OpenTime: 27.176us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 4.572us - ProbeFindNextTime: 0ns - ProbeRows: 33.71K (33710) - ProbeTime: 23.232ms - ProbeWhenBuildSideOutputTime: 4.368ms - ProbeWhenProbeSideOutputTime: 686.163us - ProbeWhenProcessHashTableTime: 10.965ms - ProbeWhenSearchHashTableTime: 4.396ms - ProjectionTime: 58.924ms - RowsProduced: 107.56K (107560) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 14s66ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 16 - BytesReceived: 1.85 MB - CloseTime: 9.670us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.104ms - ExecTime: 156.462us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 2.94 MB - PeakMemoryUsage: 0.00 - OpenTime: 18.393us - ProjectionTime: 0ns - RowsProduced: 33.71K (33710) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s859ms PipelineXTask (index=18):(Active: 155.723ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 154.663ms - CloseTime: 543.101us - GetBlockTime: 150.825ms - OpenTime: 3.667us - PrepareTime: 507.172us - SinkTime: 3.715ms - GetBlockCounter: 33 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 6 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 155.130ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.280ms DATA_STREAM_SINK_OPERATOR (id=23,dst_id=23): - Partitioner: Crc32HashPartitioner(5) - BlocksProduced: 9 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.84 MB - CloseTime: 23.523us - CompressTime: 0ns - ExecTime: 3.775ms - InputRows: 72 - LocalBytesSent: 613.91 KB - LocalSendTime: 12.507us - LocalSentRows: 11 - MemoryUsage: - PeakMemoryUsage: 4.76 MB - MergeBlockTime: 0ns - OpenTime: 38.209us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 121.980ms - RowsProduced: 72 - RpcAvgTime: 113.70ms - RpcCount: 4 - RpcMaxTime: 122.307ms - RpcMinTime: 106.792ms - RpcSumTime: 452.283ms - SerializeBatchTime: 1.463ms - SplitBlockDistributeByChannelTime: 998.279us - SplitBlockHashComputeTime: 22.848us - UncompressedRowBatchSize: 2.85 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForRpcBufferQueue: 0ns STREAMING_AGGREGATION_OPERATOR (id=22): - BlocksProduced: 1 - BuildConvertToPartitionedTime: 0ns - BuildTime: 62.565ms - CloseTime: 473.947us - DeserializeAndMergeTime: 0ns - ExecTime: 66.311ms - ExprTime: 296.872us - GetResultsTime: 2.927ms - HashTableComputeTime: 4.66ms - HashTableEmplaceTime: 2.209ms - HashTableInputCount: 106.878K (106878) - HashTableIterateTime: 760ns - HashTableSize: 72 - InsertKeysToColumnTime: 11.380us - MaxRowSizeInBytes: 0 - MaxSizeInBlockQueue: 0.00 - MaxSizeOfBlockQueue: 0 - MemoryUsage: - HashTable: 16.28 KB - PeakMemoryUsage: 5.03 MB - SerializeKeyArena: 5.02 MB - MergeTime: 0ns - OpenTime: 157.976us - ProjectionTime: 0ns - RowsProduced: 72 - SerializeDataTime: 2.896ms - SerializeKeyTime: 0ns - SerializeResultTime: 2.931ms - StreamingAggTime: 0ns HASH_JOIN_OPERATOR (id=21): - BlocksProduced: 33 - BuildOutputBlock: 0ns - CloseTime: 28.280us - ExecTime: 81.557ms - InitProbeSideTime: 1.406ms - JoinFilterTimer: 5.115us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 34.861us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 3.848us - ProbeFindNextTime: 0ns - ProbeRows: 33.924K (33924) - ProbeTime: 22.683ms - ProbeWhenBuildSideOutputTime: 4.229ms - ProbeWhenProbeSideOutputTime: 608.93us - ProbeWhenProcessHashTableTime: 10.874ms - ProbeWhenSearchHashTableTime: 4.385ms - ProjectionTime: 58.711ms - RowsProduced: 106.878K (106878) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 13s977ms EXCHANGE_OPERATOR (id=20): - BlocksProduced: 18 - BytesReceived: 1.86 MB - CloseTime: 9.994us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.255ms - ExecTime: 141.933us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 3.03 MB - PeakMemoryUsage: 0.00 - OpenTime: 32.765us - ProjectionTime: 0ns - RowsProduced: 33.924K (33924) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s953ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 27.404ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 27.284ms - CloseTime: 13.534us - GetBlockTime: 1.296ms - OpenTime: 2.280us - PrepareTime: 86.261us - SinkTime: 25.671ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 22 - NumBlockedTimes: 24 - NumScheduleTimes: 24 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 27.316ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.659ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.153us - BuildRows: 106.717K (106717) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 13.612ms - BuildTableInsertTime: 6.28ms - BuildTableTime: 6.32ms - CloseTime: 0ns - ExecTime: 25.687ms - InputRows: 106.716K (106716) - MemoryUsage: - BuildBlocks: 14.39 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.76 MB - OpenTime: 35.801us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.960us - RuntimeFilterComputeTime: 5.825ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.37 MB - CloseTime: 10.167us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.186ms - ExecTime: 1.290ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.20 MB - MemoryUsage: - Blocks: 2.85 MB - PeakMemoryUsage: 1.00 MB - OpenTime: 20.61us - ProjectionTime: 0ns - RowsProduced: 106.716K (106716) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s897ms PipelineXTask (index=3):(Active: 152.389ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 152.271ms - CloseTime: 19.153us - GetBlockTime: 5.127ms - OpenTime: 1.627us - PrepareTime: 85.428us - SinkTime: 146.305ms - GetBlockCounter: 203 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 70 - NumBlockedTimes: 72 - NumScheduleTimes: 72 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 150.237ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 11.100ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 77.320us - BuildRows: 785.078K (785078) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 118.332ms - BuildTableInsertTime: 23.297ms - BuildTableTime: 23.304ms - CloseTime: 0ns - ExecTime: 146.252ms - InputRows: 785.077K (785077) - MemoryUsage: - BuildBlocks: 87.50 MB - BuildKeyArena: 8.00 MB - HashTable: 7.74 MB - PeakMemoryUsage: 103.24 MB - OpenTime: 16.36us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 139.867us - RuntimeFilterComputeTime: 4.62ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 208 - BytesReceived: 1.36 MB - CloseTime: 7.768us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.577ms - ExecTime: 5.54ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 94.71 MB - MemoryUsage: - Blocks: 19.82 MB - PeakMemoryUsage: 16.21 MB - OpenTime: 32.907us - ProjectionTime: 0ns - RowsProduced: 785.077K (785077) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s806ms PipelineXTask (index=5):(Active: 21.982ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 21.878ms - CloseTime: 10.444us - GetBlockTime: 1.250ms - OpenTime: 2.151us - PrepareTime: 83.910us - SinkTime: 20.360ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.909ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.948ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.817us - BuildRows: 107.587K (107587) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.427ms - BuildTableInsertTime: 5.95ms - BuildTableTime: 5.99ms - CloseTime: 0ns - ExecTime: 20.392ms - InputRows: 107.586K (107586) - MemoryUsage: - BuildBlocks: 14.51 MB - BuildKeyArena: 3.39 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.91 MB - OpenTime: 49.148us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.347us - RuntimeFilterComputeTime: 3.648ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.38 MB - CloseTime: 7.548us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.245ms - ExecTime: 1.239ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.19 MB - MemoryUsage: - Blocks: 1.97 MB - PeakMemoryUsage: 1010.00 KB - OpenTime: 13.560us - ProjectionTime: 0ns - RowsProduced: 107.586K (107586) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s901ms PipelineXTask (index=7):(Active: 19.636ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 19.541ms - CloseTime: 15.474us - GetBlockTime: 1.112ms - OpenTime: 806ns - PrepareTime: 72.400us - SinkTime: 18.178ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.570ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.228ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.943us - BuildRows: 106.655K (106655) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.906ms - BuildTableInsertTime: 4.205ms - BuildTableTime: 4.208ms - CloseTime: 0ns - ExecTime: 18.173ms - InputRows: 106.654K (106654) - MemoryUsage: - BuildBlocks: 14.38 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.75 MB - OpenTime: 13.151us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.97us - RuntimeFilterComputeTime: 2.896ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.34 MB - CloseTime: 11.994us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.497ms - ExecTime: 1.113ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 19.13 MB - MemoryUsage: - Blocks: 2.96 MB - PeakMemoryUsage: 1.35 MB - OpenTime: 15.589us - ProjectionTime: 0ns - RowsProduced: 106.654K (106654) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s899ms PipelineXTask (index=9):(Active: 20.979ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 20.904ms - CloseTime: 8.586us - GetBlockTime: 1.125ms - OpenTime: 1.423us - PrepareTime: 57.904us - SinkTime: 19.472ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 24 - NumBlockedTimes: 26 - NumScheduleTimes: 26 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.907ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.374ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.961us - BuildRows: 107.269K (107269) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.361ms - BuildTableInsertTime: 4.359ms - BuildTableTime: 4.364ms - CloseTime: 0ns - ExecTime: 19.477ms - InputRows: 107.268K (107268) - MemoryUsage: - BuildBlocks: 14.47 MB - BuildKeyArena: 3.38 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.86 MB - OpenTime: 24.279us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.756us - RuntimeFilterComputeTime: 2.556ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.36 MB - CloseTime: 6.374us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.415ms - ExecTime: 1.109ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.12 MB - MemoryUsage: - Blocks: 1.97 MB - PeakMemoryUsage: 1010.00 KB - OpenTime: 13.325us - ProjectionTime: 0ns - RowsProduced: 107.268K (107268) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s897ms PipelineXTask (index=11):(Active: 30.670ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 30.559ms - CloseTime: 12.720us - GetBlockTime: 1.209ms - OpenTime: 1.477us - PrepareTime: 89.1us - SinkTime: 28.966ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 30.593ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.649ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 23.425us - BuildRows: 107.608K (107608) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.683ms - BuildTableInsertTime: 9.864ms - BuildTableTime: 9.872ms - CloseTime: 0ns - ExecTime: 28.968ms - InputRows: 107.607K (107607) - MemoryUsage: - BuildBlocks: 14.51 MB - BuildKeyArena: 3.39 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.91 MB - OpenTime: 22.201us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 22.621us - RuntimeFilterComputeTime: 7.132ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.36 MB - CloseTime: 8.737us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.412ms - ExecTime: 1.194ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.54 MB - MemoryUsage: - Blocks: 2.24 MB - PeakMemoryUsage: 1010.00 KB - OpenTime: 10.622us - ProjectionTime: 0ns - RowsProduced: 107.607K (107607) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s901ms PipelineXTask (index=13):(Active: 20.86ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 19.999ms - CloseTime: 9.43us - GetBlockTime: 1.47ms - OpenTime: 1.531us - PrepareTime: 70.433us - SinkTime: 18.667ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.18ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.49ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.813us - BuildRows: 107.278K (107278) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.643ms - BuildTableInsertTime: 4.162ms - BuildTableTime: 4.166ms - CloseTime: 0ns - ExecTime: 18.673ms - InputRows: 107.277K (107277) - MemoryUsage: - BuildBlocks: 14.47 MB - BuildKeyArena: 3.38 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.86 MB - OpenTime: 21.731us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.586us - RuntimeFilterComputeTime: 2.706ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.38 MB - CloseTime: 6.478us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.588ms - ExecTime: 1.37ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 16.75 MB - MemoryUsage: - Blocks: 2.24 MB - PeakMemoryUsage: 1010.00 KB - OpenTime: 17.257us - ProjectionTime: 0ns - RowsProduced: 107.277K (107277) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s897ms PipelineXTask (index=15):(Active: 21.47ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 20.969ms - CloseTime: 11.312us - GetBlockTime: 1.367ms - OpenTime: 1.94us - PrepareTime: 58.458us - SinkTime: 19.291ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 21 - NumBlockedTimes: 23 - NumScheduleTimes: 23 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 20.973ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.738ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 21.426us - BuildRows: 106.627K (106627) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 12.531ms - BuildTableInsertTime: 4.161ms - BuildTableTime: 4.164ms - CloseTime: 0ns - ExecTime: 19.289ms - InputRows: 106.626K (106626) - MemoryUsage: - BuildBlocks: 14.38 MB - BuildKeyArena: 3.36 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.75 MB - OpenTime: 16.306us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.826us - RuntimeFilterComputeTime: 2.380ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.36 MB - CloseTime: 7.958us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.408ms - ExecTime: 1.357ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 18.05 MB - MemoryUsage: - Blocks: 3.34 MB - PeakMemoryUsage: 1.72 MB - OpenTime: 15.977us - ProjectionTime: 0ns - RowsProduced: 106.626K (106626) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s898ms PipelineXTask (index=17):(Active: 21.671ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 21.577ms - CloseTime: 12.12us - GetBlockTime: 1.124ms - OpenTime: 1.924us - PrepareTime: 73.756us - SinkTime: 20.184ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 21.606ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.587ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.835us - BuildRows: 107.561K (107561) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.888ms - BuildTableInsertTime: 4.658ms - BuildTableTime: 4.662ms - CloseTime: 0ns - ExecTime: 20.196ms - InputRows: 107.56K (107560) - MemoryUsage: - BuildBlocks: 14.51 MB - BuildKeyArena: 3.39 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.91 MB - OpenTime: 33.902us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.450us - RuntimeFilterComputeTime: 3.417ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.36 MB - CloseTime: 8.907us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.398ms - ExecTime: 1.115ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.75 MB - MemoryUsage: - Blocks: 1.97 MB - PeakMemoryUsage: 1010.00 KB - OpenTime: 14.17us - ProjectionTime: 0ns - RowsProduced: 107.56K (107560) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s897ms PipelineXTask (index=19):(Active: 19.343ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 19.223ms - CloseTime: 7.171us - GetBlockTime: 1.51ms - OpenTime: 1.966us - PrepareTime: 96.545us - SinkTime: 17.913ms - GetBlockCounter: 37 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 23 - NumBlockedTimes: 25 - NumScheduleTimes: 25 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 19.280ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.730ms HASH_JOIN_SINK_OPERATOR (id=21): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.56us - BuildRows: 106.873K (106873) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.351ms - BuildTableInsertTime: 4.600ms - BuildTableTime: 4.604ms - CloseTime: 0ns - ExecTime: 17.923ms - InputRows: 106.872K (106872) - MemoryUsage: - BuildBlocks: 14.41 MB - BuildKeyArena: 3.37 MB - HashTable: 1.01 MB - PeakMemoryUsage: 18.79 MB - OpenTime: 23.895us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.420us - RuntimeFilterComputeTime: 2.818ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=18): - BlocksProduced: 42 - BytesReceived: 1.39 MB - CloseTime: 5.290us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.74ms - ExecTime: 1.79ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 17.03 MB - MemoryUsage: - Blocks: 3.59 MB - PeakMemoryUsage: 1.61 MB - OpenTime: 48.787us - ProjectionTime: 0ns - RowsProduced: 106.872K (106872) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 19s894ms Fragment 144: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 210.455ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 209.837ms - CloseTime: 120.687us - GetBlockTime: 943.209us - OpenTime: 211.962us - PrepareTime: 271.518us - SinkTime: 208.300ms - GetBlockCounter: 100 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 4 - NumBlockedTimes: 7 - NumScheduleTimes: 9 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 161.109ms - WaitBfTime: 911.632ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.112ms DATA_STREAM_SINK_OPERATOR (id=20,dst_id=20): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 113 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 18.51 MB - CloseTime: 46.233us - CompressTime: 0ns - ExecTime: 208.356ms - InputRows: 405.258K (405258) - LocalBytesSent: 4.62 MB - LocalSendTime: 231.831us - LocalSentRows: 67.314K (67314) - MemoryUsage: - PeakMemoryUsage: 9.58 MB - MergeBlockTime: 0ns - OpenTime: 61.127us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s453ms - RowsProduced: 405.258K (405258) - RpcAvgTime: 1s211ms - RpcCount: 87 - RpcMaxTime: 10s644ms - RpcMinTime: 10s322ms - RpcSumTime: 1m45s - SerializeBatchTime: 111.28ms - SplitBlockDistributeByChannelTime: 51.593ms - SplitBlockHashComputeTime: 21.628ms - UncompressedRowBatchSize: 23.60 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 4.315us - BlocksProduced: 100 - CloseTime: 69.820us - ExecTime: 138.814ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 344.59us - ProcessConjunctTime: 70.615us - ProjectionTime: 0ns - RowsProduced: 405.258K (405258) - RowsRead: 405.258K (405258) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 78.172ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 137.514ms - 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: [21.739ms, ] - PerScannerRowsRead: [405.26K, ] - PerScannerWaitTime: [78.172ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 21.160ms - MemoryUsage: - FreeBlocks: 10.00 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 38.301ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.286us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.444ms - ScannerCtxSchedTime: 78.162ms - ScannerFilterTime: 172.126us - ScannerGetBlockTime: 21.514ms - ScannerInitTime: 107.535us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 4 SegmentIterator: - BitmapIndexFilterTimer: 229ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.329us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 20 - BlockInitSeekTime: 501.924us - BlockInitTime: 539.982us - BlockLoadTime: 59.358ms - BlocksLoad: 101 - CachedPagesNum: 399 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 300 - FirstReadSeekTime: 37.442ms - FirstReadTime: 58.52ms - IOTimer: 0ns - InvertedIndexFilterTime: 480ns - 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.525us - OutputIndexResultColumnTimer: 17.44us - 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: 184.919ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 184.712ms - CloseTime: 51.118us - GetBlockTime: 103.508ms - OpenTime: 6.840us - PrepareTime: 136.572us - SinkTime: 80.159ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 46 - NumBlockedTimes: 48 - NumScheduleTimes: 50 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 183.920ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.114ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 46 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.84 MB - CloseTime: 21.287us - CompressTime: 0ns - ExecTime: 80.123ms - InputRows: 106.993K (106993) - LocalBytesSent: 2.40 MB - LocalSendTime: 157.158us - LocalSentRows: 17.787K (17787) - MemoryUsage: - PeakMemoryUsage: 12.13 MB - MergeBlockTime: 0ns - OpenTime: 64.377us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8.193ms - RowsProduced: 106.993K (106993) - RpcAvgTime: 11.592ms - RpcCount: 30 - RpcMaxTime: 55.891ms - RpcMinTime: 17.84ms - RpcSumTime: 347.778ms - SerializeBatchTime: 20.44ms - SplitBlockDistributeByChannelTime: 42.107ms - SplitBlockHashComputeTime: 4.340ms - UncompressedRowBatchSize: 12.45 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 23.692us - ExecTime: 100.687ms - InitProbeSideTime: 8.793ms - JoinFilterTimer: 23.341us - MemoryUsage: - PeakMemoryUsage: 68.41 KB - ProbeKeyArena: 68.41 KB - OpenTime: 23.416us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 67.116us - ProbeFindNextTime: 0ns - ProbeRows: 624.486K (624486) - ProbeTime: 96.77ms - ProbeWhenBuildSideOutputTime: 55.437ms - ProbeWhenProbeSideOutputTime: 3.3ms - ProbeWhenProcessHashTableTime: 283.427us - ProbeWhenSearchHashTableTime: 23.233ms - ProjectionTime: 3.865ms - RowsProduced: 106.993K (106993) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s205ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 259 - BytesReceived: 6.24 MB - CloseTime: 4.28us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.825ms - ExecTime: 2.351ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.70 MB - MemoryUsage: - Blocks: 15.73 MB - PeakMemoryUsage: 7.70 MB - OpenTime: 20.686us - ProjectionTime: 0ns - RowsProduced: 624.486K (624486) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s332ms PipelineXTask (index=4):(Active: 144.738ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 144.566ms - CloseTime: 37.780us - GetBlockTime: 85.193ms - OpenTime: 6.544us - PrepareTime: 118.153us - SinkTime: 58.358ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 40 - NumBlockedTimes: 42 - NumScheduleTimes: 43 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 144.439ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 29.705ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 46 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.81 MB - CloseTime: 12.630us - CompressTime: 0ns - ExecTime: 58.339ms - InputRows: 106.76K (106760) - LocalBytesSent: 2.41 MB - LocalSendTime: 158.958us - LocalSentRows: 17.884K (17884) - MemoryUsage: - PeakMemoryUsage: 12.41 MB - MergeBlockTime: 0ns - OpenTime: 61.92us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 4.728ms - RowsProduced: 106.76K (106760) - RpcAvgTime: 10.905ms - RpcCount: 30 - RpcMaxTime: 56.188ms - RpcMinTime: 10.662ms - RpcSumTime: 327.176ms - SerializeBatchTime: 15.663ms - SplitBlockDistributeByChannelTime: 28.749ms - SplitBlockHashComputeTime: 3.687ms - UncompressedRowBatchSize: 12.40 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 148 - BuildOutputBlock: 0ns - CloseTime: 13.514us - ExecTime: 82.618ms - InitProbeSideTime: 7.742ms - JoinFilterTimer: 21.853us - MemoryUsage: - PeakMemoryUsage: 68.73 KB - ProbeKeyArena: 68.73 KB - OpenTime: 19.238us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 39.226us - ProbeFindNextTime: 0ns - ProbeRows: 623.647K (623647) - ProbeTime: 78.762ms - ProbeWhenBuildSideOutputTime: 44.499ms - ProbeWhenProbeSideOutputTime: 2.511ms - ProbeWhenProcessHashTableTime: 280.162us - ProbeWhenSearchHashTableTime: 19.301ms - ProjectionTime: 3.233ms - RowsProduced: 106.76K (106760) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s204ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 259 - BytesReceived: 6.24 MB - CloseTime: 8.525us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 4.565ms - ExecTime: 2.258ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 7.61 MB - MemoryUsage: - Blocks: 15.64 MB - PeakMemoryUsage: 7.61 MB - OpenTime: 10.422us - ProjectionTime: 0ns - RowsProduced: 623.647K (623647) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s370ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 264.197ms, % non-child: 0.00%) - CoreChangeTimes: 13 - ExecuteTime: 263.960ms - CloseTime: 39.330us - GetBlockTime: 233.334ms - OpenTime: 7.557us - PrepareTime: 104.1us - SinkTime: 19.754ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 703 - NumBlockedTimes: 705 - NumScheduleTimes: 705 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 262.45ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.383ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 229.11us - BuildRows: 106.994K (106994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 15.672ms - BuildTableInsertTime: 1.274ms - BuildTableTime: 1.277ms - CloseTime: 0ns - ExecTime: 19.207ms - InputRows: 106.993K (106993) - MemoryUsage: - BuildBlocks: 13.51 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.15 MB - OpenTime: 21.444us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.852us - RuntimeFilterComputeTime: 761.234us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 28.47us - ExecTime: 211.222ms - InitProbeSideTime: 38.659ms - JoinFilterTimer: 142.60us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 41.281us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 374.324us - ProbeFindNextTime: 0ns - ProbeRows: 3.295033M (3295033) - ProbeTime: 197.72ms - ProbeWhenBuildSideOutputTime: 34.917ms - ProbeWhenProbeSideOutputTime: 11.862ms - ProbeWhenProcessHashTableTime: 285.924us - ProbeWhenSearchHashTableTime: 87.783ms - ProjectionTime: 10.254ms - RowsProduced: 106.993K (106993) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s889ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 1.489K (1489) - BytesReceived: 73.28 MB - CloseTime: 7.895us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 58.855ms - ExecTime: 19.150ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 23.40 MB - MemoryUsage: - Blocks: 22.44 MB - PeakMemoryUsage: 19.36 MB - OpenTime: 11.121us - ProjectionTime: 0ns - RowsProduced: 3.295033M (3295033) - SendersBlockedTotalTimer(*): 2m34s - WaitForDependencyTime: 0ns - WaitForData0: 3s129ms PipelineXTask (index=5):(Active: 274.655ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 274.405ms - CloseTime: 26.885us - GetBlockTime: 239.739ms - OpenTime: 6.969us - PrepareTime: 129.983us - SinkTime: 24.728ms - GetBlockCounter: 787 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 694 - NumBlockedTimes: 696 - NumScheduleTimes: 696 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 272.737ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.723ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 236.114us - BuildRows: 106.761K (106761) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.236ms - BuildTableInsertTime: 1.571ms - BuildTableTime: 1.573ms - CloseTime: 0ns - ExecTime: 24.205ms - InputRows: 106.76K (106760) - MemoryUsage: - BuildBlocks: 13.48 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.12 MB - OpenTime: 16.305us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 89.132us - RuntimeFilterComputeTime: 798.260us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 19.543us - ExecTime: 217.717ms - InitProbeSideTime: 39.628ms - JoinFilterTimer: 160.442us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 22.421us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 346.128us - ProbeFindNextTime: 0ns - ProbeRows: 3.296297M (3296297) - ProbeTime: 202.875ms - ProbeWhenBuildSideOutputTime: 35.381ms - ProbeWhenProbeSideOutputTime: 12.420ms - ProbeWhenProcessHashTableTime: 289.913us - ProbeWhenSearchHashTableTime: 91.564ms - ProjectionTime: 11.223ms - RowsProduced: 106.76K (106760) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s943ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 1.487K (1487) - BytesReceived: 73.27 MB - CloseTime: 4.611us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 58.118ms - ExecTime: 19.85ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.42 MB - MemoryUsage: - Blocks: 21.79 MB - PeakMemoryUsage: 18.46 MB - OpenTime: 62.597us - ProjectionTime: 0ns - RowsProduced: 3.296297M (3296297) - SendersBlockedTotalTimer(*): 2m33s - WaitForDependencyTime: 0ns - WaitForData0: 3s105ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 29.627ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 29.471ms - CloseTime: 18.720us - GetBlockTime: 22.932ms - OpenTime: 4.800us - PrepareTime: 126.480us - SinkTime: 6.384ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 29.572ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.350ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.911us - BuildRows: 106.994K (106994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.357ms - BuildTableInsertTime: 1.203ms - BuildTableTime: 1.206ms - CloseTime: 0ns - ExecTime: 6.387ms - InputRows: 106.993K (106993) - MemoryUsage: - BuildBlocks: 7.75 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.40 MB - OpenTime: 29.602us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.762us - RuntimeFilterComputeTime: 654.247us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 9.211us - ExecTime: 22.397ms - InitProbeSideTime: 1.923ms - JoinFilterTimer: 19.240us - MemoryUsage: - PeakMemoryUsage: 69.14 KB - ProbeKeyArena: 69.14 KB - OpenTime: 16.62us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.755us - ProbeFindNextTime: 0ns - ProbeRows: 209.241K (209241) - ProbeTime: 21.36ms - ProbeWhenBuildSideOutputTime: 10.39ms - ProbeWhenProbeSideOutputTime: 450.309us - ProbeWhenProcessHashTableTime: 2.141ms - ProbeWhenSearchHashTableTime: 5.374ms - ProjectionTime: 1.152ms - RowsProduced: 106.993K (106993) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s784ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 85 - BytesReceived: 1.06 MB - CloseTime: 6.938us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.216ms - ExecTime: 496.512us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.76 MB - MemoryUsage: - Blocks: 5.13 MB - PeakMemoryUsage: 1.76 MB - OpenTime: 13.698us - ProjectionTime: 0ns - RowsProduced: 209.241K (209241) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s183ms PipelineXTask (index=6):(Active: 51.971ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 51.844ms - CloseTime: 28.27us - GetBlockTime: 36.617ms - OpenTime: 7.707us - PrepareTime: 85.525us - SinkTime: 14.933ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 51.672ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.494ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.306us - BuildRows: 106.761K (106761) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.825ms - BuildTableInsertTime: 2.735ms - BuildTableTime: 2.739ms - CloseTime: 0ns - ExecTime: 14.899ms - InputRows: 106.76K (106760) - MemoryUsage: - BuildBlocks: 7.74 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.38 MB - OpenTime: 23.680us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 85.252us - RuntimeFilterComputeTime: 1.21ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 12.99us - ExecTime: 35.832ms - InitProbeSideTime: 3.328ms - JoinFilterTimer: 12.832us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 17.121us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 20.783us - ProbeFindNextTime: 0ns - ProbeRows: 208.88K (208880) - ProbeTime: 33.668ms - ProbeWhenBuildSideOutputTime: 13.967ms - ProbeWhenProbeSideOutputTime: 635.271us - ProbeWhenProcessHashTableTime: 3.228ms - ProbeWhenSearchHashTableTime: 10.600ms - ProjectionTime: 1.845ms - RowsProduced: 106.76K (106760) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s787ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 85 - BytesReceived: 1.06 MB - CloseTime: 11.191us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 910.125us - ExecTime: 679.542us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 1.63 MB - MemoryUsage: - Blocks: 4.88 MB - PeakMemoryUsage: 1.63 MB - OpenTime: 13.749us - ProjectionTime: 0ns - RowsProduced: 208.88K (208880) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s183ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=3):(Active: 12.426ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 12.239ms - CloseTime: 13.117us - GetBlockTime: 687.698us - OpenTime: 3.200us - PrepareTime: 160.971us - SinkTime: 11.232ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.356ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.818ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.51us - BuildRows: 106.994K (106994) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.823ms - BuildTableInsertTime: 2.492ms - BuildTableTime: 2.496ms - CloseTime: 0ns - ExecTime: 11.242ms - InputRows: 106.993K (106993) - MemoryUsage: - BuildBlocks: 7.24 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.89 MB - OpenTime: 34.836us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.410us - RuntimeFilterComputeTime: 724.976us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 43 - BytesReceived: 1.75 MB - CloseTime: 10.581us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.950ms - ExecTime: 683.246us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.45 MB - MemoryUsage: - Blocks: 880.00 KB - PeakMemoryUsage: 880.00 KB - OpenTime: 13.941us - ProjectionTime: 0ns - RowsProduced: 106.993K (106993) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s980ms PipelineXTask (index=7):(Active: 18.284ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 18.217ms - CloseTime: 10.100us - GetBlockTime: 912.532us - OpenTime: 1.960us - PrepareTime: 45.265us - SinkTime: 16.901ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 18.180ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.104ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 26.641us - BuildRows: 106.761K (106761) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.260ms - BuildTableInsertTime: 3.802ms - BuildTableTime: 3.807ms - CloseTime: 0ns - ExecTime: 16.891ms - InputRows: 106.76K (106760) - MemoryUsage: - BuildBlocks: 7.23 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.87 MB - OpenTime: 11.196us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 91.624us - RuntimeFilterComputeTime: 1.554ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 43 - BytesReceived: 1.72 MB - CloseTime: 7.542us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.810ms - ExecTime: 900.633us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.95 MB - MemoryUsage: - Blocks: 880.00 KB - PeakMemoryUsage: 880.00 KB - OpenTime: 14.612us - ProjectionTime: 0ns - RowsProduced: 106.76K (106760) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s975ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 195.174ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 194.802ms - CloseTime: 48.70us - GetBlockTime: 129.800ms - OpenTime: 19.535us - PrepareTime: 293.382us - SinkTime: 63.764ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 30 - NumBlockedTimes: 32 - NumScheduleTimes: 34 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 192.896ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 68.984ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.37 MB - CloseTime: 19.560us - CompressTime: 0ns - ExecTime: 63.725ms - InputRows: 107.403K (107403) - LocalBytesSent: 12.07 MB - LocalSendTime: 766.925us - LocalSentRows: 89.486K (89486) - MemoryUsage: - PeakMemoryUsage: 19.50 MB - MergeBlockTime: 0ns - OpenTime: 83.242us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 45.913ms - RowsProduced: 107.403K (107403) - RpcAvgTime: 18.198ms - RpcCount: 6 - RpcMaxTime: 62.232ms - RpcMinTime: 46.957ms - RpcSumTime: 109.190ms - SerializeBatchTime: 5.552ms - SplitBlockDistributeByChannelTime: 45.719ms - SplitBlockHashComputeTime: 4.959ms - UncompressedRowBatchSize: 2.50 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 18.38us - ExecTime: 127.91ms - InitProbeSideTime: 13.715ms - JoinFilterTimer: 29.389us - MemoryUsage: - PeakMemoryUsage: 68.48 KB - ProbeKeyArena: 68.48 KB - OpenTime: 16.751us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 73.118us - ProbeFindNextTime: 0ns - ProbeRows: 624.326K (624326) - ProbeTime: 121.417ms - ProbeWhenBuildSideOutputTime: 61.902ms - ProbeWhenProbeSideOutputTime: 3.364ms - ProbeWhenProcessHashTableTime: 526.621us - ProbeWhenSearchHashTableTime: 34.444ms - ProjectionTime: 4.790ms - RowsProduced: 107.403K (107403) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s981ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.08 MB - CloseTime: 6.938us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.450ms - ExecTime: 2.352ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.44 MB - MemoryUsage: - Blocks: 15.74 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 152.151us - ProjectionTime: 0ns - RowsProduced: 624.326K (624326) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s412ms PipelineXTask (index=4):(Active: 258.34ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 257.810ms - CloseTime: 48.635us - GetBlockTime: 167.547ms - OpenTime: 3.998us - PrepareTime: 158.637us - SinkTime: 87.957ms - GetBlockCounter: 499 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 82 - NumBlockedTimes: 85 - NumScheduleTimes: 86 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 257.649ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 107.599ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 204 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.37 MB - CloseTime: 16.930us - CompressTime: 0ns - ExecTime: 87.829ms - InputRows: 785.358K (785358) - LocalBytesSent: 85.13 MB - LocalSendTime: 2.742ms - LocalSentRows: 767.461K (767461) - MemoryUsage: - PeakMemoryUsage: 94.50 MB - MergeBlockTime: 0ns - OpenTime: 69.664us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1.109ms - RowsProduced: 785.358K (785358) - RpcAvgTime: 2.976ms - RpcCount: 6 - RpcMaxTime: 9.323ms - RpcMinTime: 8.535ms - RpcSumTime: 17.859ms - SerializeBatchTime: 3.318ms - SplitBlockDistributeByChannelTime: 63.330ms - SplitBlockHashComputeTime: 10.109ms - UncompressedRowBatchSize: 2.50 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 13.73ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - WaitForLocalExchangeBuffer9: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=17): - BlocksProduced: 496 - BuildOutputBlock: 0ns - CloseTime: 25.364us - ExecTime: 162.936ms - InitProbeSideTime: 29.366ms - JoinFilterTimer: 51.29us - MemoryUsage: - PeakMemoryUsage: 86.58 KB - ProbeKeyArena: 86.58 KB - OpenTime: 20.83us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 68.951us - ProbeFindNextTime: 0ns - ProbeRows: 1.41758M (1417580) - ProbeTime: 149.409ms - ProbeWhenBuildSideOutputTime: 47.392ms - ProbeWhenProbeSideOutputTime: 3.568ms - ProbeWhenProcessHashTableTime: 44.713ms - ProbeWhenSearchHashTableTime: 14.976ms - ProjectionTime: 12.114ms - RowsProduced: 785.358K (785358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 18s66ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 418 - BytesReceived: 4.33 MB - CloseTime: 3.197us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.455ms - ExecTime: 3.840ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 51.31 MB - MemoryUsage: - Blocks: 19.83 MB - PeakMemoryUsage: 19.62 MB - OpenTime: 20.439us - ProjectionTime: 0ns - RowsProduced: 1.41758M (1417580) - SendersBlockedTotalTimer(*): 13s302ms - WaitForDependencyTime: 0ns - WaitForData0: 1s479ms PipelineXTask (index=8):(Active: 173.200ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 172.999ms - CloseTime: 49.388us - GetBlockTime: 114.610ms - OpenTime: 6.383us - PrepareTime: 132.281us - SinkTime: 57.165ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 38 - NumBlockedTimes: 40 - NumScheduleTimes: 41 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 172.976ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 64.284ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.38 MB - CloseTime: 10.672us - CompressTime: 0ns - ExecTime: 57.109ms - InputRows: 106.34K (106340) - LocalBytesSent: 11.92 MB - LocalSendTime: 742.428us - LocalSentRows: 88.396K (88396) - MemoryUsage: - PeakMemoryUsage: 18.92 MB - MergeBlockTime: 0ns - OpenTime: 62.957us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.720ms - RowsProduced: 106.34K (106340) - RpcAvgTime: 18.328ms - RpcCount: 6 - RpcMaxTime: 60.831ms - RpcMinTime: 49.142ms - RpcSumTime: 109.973ms - SerializeBatchTime: 4.367ms - SplitBlockDistributeByChannelTime: 41.148ms - SplitBlockHashComputeTime: 4.866ms - UncompressedRowBatchSize: 2.50 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 28.218us - ExecTime: 112.52ms - InitProbeSideTime: 12.9ms - JoinFilterTimer: 27.997us - MemoryUsage: - PeakMemoryUsage: 68.27 KB - ProbeKeyArena: 68.27 KB - OpenTime: 19.600us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 64.410us - ProbeFindNextTime: 0ns - ProbeRows: 623.298K (623298) - ProbeTime: 107.1ms - ProbeWhenBuildSideOutputTime: 55.418ms - ProbeWhenProbeSideOutputTime: 2.867ms - ProbeWhenProcessHashTableTime: 532.789us - ProbeWhenSearchHashTableTime: 30.626ms - ProjectionTime: 4.154ms - RowsProduced: 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s971ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.08 MB - CloseTime: 7.44us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.487ms - ExecTime: 2.99ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.91 MB - MemoryUsage: - Blocks: 15.64 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 18.416us - ProjectionTime: 0ns - RowsProduced: 623.298K (623298) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s448ms PipelineXTask (index=12):(Active: 126.976ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 126.782ms - CloseTime: 45.939us - GetBlockTime: 81.822ms - OpenTime: 4.592us - PrepareTime: 135.88us - SinkTime: 43.927ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 39 - NumBlockedTimes: 41 - NumScheduleTimes: 42 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 126.434ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 99.662ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.36 MB - CloseTime: 12.159us - CompressTime: 0ns - ExecTime: 43.909ms - InputRows: 107.445K (107445) - LocalBytesSent: 12.10 MB - LocalSendTime: 516.227us - LocalSentRows: 89.721K (89721) - MemoryUsage: - PeakMemoryUsage: 20.26 MB - MergeBlockTime: 0ns - OpenTime: 66.610us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 40.626ms - RowsProduced: 107.445K (107445) - RpcAvgTime: 19.205ms - RpcCount: 6 - RpcMaxTime: 61.516ms - RpcMinTime: 53.718ms - RpcSumTime: 115.235ms - SerializeBatchTime: 3.316ms - SplitBlockDistributeByChannelTime: 32.414ms - SplitBlockHashComputeTime: 3.366ms - UncompressedRowBatchSize: 2.47 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 25.372us - ExecTime: 79.855ms - InitProbeSideTime: 7.736ms - JoinFilterTimer: 20.438us - MemoryUsage: - PeakMemoryUsage: 68.42 KB - ProbeKeyArena: 68.42 KB - OpenTime: 18.426us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 55.38us - ProbeFindNextTime: 0ns - ProbeRows: 623.398K (623398) - ProbeTime: 75.975ms - ProbeWhenBuildSideOutputTime: 42.27ms - ProbeWhenProbeSideOutputTime: 2.385ms - ProbeWhenProcessHashTableTime: 298.979us - ProbeWhenSearchHashTableTime: 19.577ms - ProjectionTime: 3.226ms - RowsProduced: 107.445K (107445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s945ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.08 MB - CloseTime: 5.818us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.440ms - ExecTime: 1.627ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.24 MB - MemoryUsage: - Blocks: 15.63 MB - PeakMemoryUsage: 7.93 MB - OpenTime: 16.556us - ProjectionTime: 0ns - RowsProduced: 623.398K (623398) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s485ms PipelineXTask (index=16):(Active: 152.678ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 152.473ms - CloseTime: 41.621us - GetBlockTime: 97.753ms - OpenTime: 3.110us - PrepareTime: 149.997us - SinkTime: 53.612ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 39 - NumBlockedTimes: 41 - NumScheduleTimes: 42 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 148.420ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 101.512ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.36 MB - CloseTime: 14.305us - CompressTime: 0ns - ExecTime: 53.611ms - InputRows: 106.81K (106810) - LocalBytesSent: 12.02 MB - LocalSendTime: 635.411us - LocalSentRows: 89.128K (89128) - MemoryUsage: - PeakMemoryUsage: 19.00 MB - MergeBlockTime: 0ns - OpenTime: 80.708us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 40.452ms - RowsProduced: 106.81K (106810) - RpcAvgTime: 24.81ms - RpcCount: 6 - RpcMaxTime: 75.363ms - RpcMinTime: 69.125ms - RpcSumTime: 144.489ms - SerializeBatchTime: 4.46ms - SplitBlockDistributeByChannelTime: 40.312ms - SplitBlockHashComputeTime: 3.802ms - UncompressedRowBatchSize: 2.47 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 16.407us - ExecTime: 95.485ms - InitProbeSideTime: 10.297ms - JoinFilterTimer: 20.888us - MemoryUsage: - PeakMemoryUsage: 68.45 KB - ProbeKeyArena: 68.45 KB - OpenTime: 15.727us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 46.50us - ProbeFindNextTime: 0ns - ProbeRows: 622.435K (622435) - ProbeTime: 91.173ms - ProbeWhenBuildSideOutputTime: 47.797ms - ProbeWhenProbeSideOutputTime: 2.601ms - ProbeWhenProcessHashTableTime: 352.691us - ProbeWhenSearchHashTableTime: 25.592ms - ProjectionTime: 3.625ms - RowsProduced: 106.81K (106810) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s948ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.07 MB - CloseTime: 7.36us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.767ms - ExecTime: 1.861ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.62 MB - MemoryUsage: - Blocks: 15.74 MB - PeakMemoryUsage: 8.04 MB - OpenTime: 16.847us - ProjectionTime: 0ns - RowsProduced: 622.435K (622435) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s453ms PipelineXTask (index=20):(Active: 182.931ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 182.726ms - CloseTime: 54.90us - GetBlockTime: 123.206ms - OpenTime: 5.469us - PrepareTime: 127.774us - SinkTime: 58.323ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 37 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 182.214ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 71.974ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.38 MB - CloseTime: 12.458us - CompressTime: 0ns - ExecTime: 58.291ms - InputRows: 107.77K (107770) - LocalBytesSent: 12.11 MB - LocalSendTime: 577.795us - LocalSentRows: 89.831K (89831) - MemoryUsage: - PeakMemoryUsage: 19.38 MB - MergeBlockTime: 0ns - OpenTime: 64.317us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 31.387ms - RowsProduced: 107.77K (107770) - RpcAvgTime: 17.150ms - RpcCount: 6 - RpcMaxTime: 66.797ms - RpcMinTime: 36.106ms - RpcSumTime: 102.904ms - SerializeBatchTime: 3.516ms - SplitBlockDistributeByChannelTime: 43.966ms - SplitBlockHashComputeTime: 4.356ms - UncompressedRowBatchSize: 2.50 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 33.814us - ExecTime: 120.637ms - InitProbeSideTime: 12.526ms - JoinFilterTimer: 28.65us - MemoryUsage: - PeakMemoryUsage: 68.19 KB - ProbeKeyArena: 68.19 KB - OpenTime: 21.932us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 57.262us - ProbeFindNextTime: 0ns - ProbeRows: 623.178K (623178) - ProbeTime: 115.447ms - ProbeWhenBuildSideOutputTime: 61.855ms - ProbeWhenProbeSideOutputTime: 3.25ms - ProbeWhenProcessHashTableTime: 293.322us - ProbeWhenSearchHashTableTime: 32.153ms - ProjectionTime: 4.322ms - RowsProduced: 107.77K (107770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s985ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.08 MB - CloseTime: 5.214us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.534ms - ExecTime: 2.93ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.90 MB - MemoryUsage: - Blocks: 15.34 MB - PeakMemoryUsage: 8.03 MB - OpenTime: 11.89us - ProjectionTime: 0ns - RowsProduced: 623.178K (623178) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s416ms PipelineXTask (index=24):(Active: 140.506ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 140.283ms - CloseTime: 67.270us - GetBlockTime: 91.666ms - OpenTime: 4.640us - PrepareTime: 141.296us - SinkTime: 47.594ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 40 - NumBlockedTimes: 42 - NumScheduleTimes: 43 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 139.263ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 100.424ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.35 MB - CloseTime: 17.683us - CompressTime: 0ns - ExecTime: 47.563ms - InputRows: 106.53K (106530) - LocalBytesSent: 11.99 MB - LocalSendTime: 669.462us - LocalSentRows: 88.906K (88906) - MemoryUsage: - PeakMemoryUsage: 19.33 MB - MergeBlockTime: 0ns - OpenTime: 59.202us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 41.593ms - RowsProduced: 106.53K (106530) - RpcAvgTime: 20.661ms - RpcCount: 6 - RpcMaxTime: 65.349ms - RpcMinTime: 58.617ms - RpcSumTime: 123.967ms - SerializeBatchTime: 3.523ms - SplitBlockDistributeByChannelTime: 34.730ms - SplitBlockHashComputeTime: 3.998ms - UncompressedRowBatchSize: 2.46 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 36.554us - ExecTime: 89.647ms - InitProbeSideTime: 9.600ms - JoinFilterTimer: 19.85us - MemoryUsage: - PeakMemoryUsage: 68.56 KB - ProbeKeyArena: 68.56 KB - OpenTime: 15.817us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 44.909us - ProbeFindNextTime: 0ns - ProbeRows: 624.271K (624271) - ProbeTime: 85.531ms - ProbeWhenBuildSideOutputTime: 46.362ms - ProbeWhenProbeSideOutputTime: 2.416ms - ProbeWhenProcessHashTableTime: 261.371us - ProbeWhenSearchHashTableTime: 22.853ms - ProjectionTime: 3.417ms - RowsProduced: 106.53K (106530) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s954ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.07 MB - CloseTime: 8.906us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.549ms - ExecTime: 1.699ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.70 MB - MemoryUsage: - Blocks: 15.73 MB - PeakMemoryUsage: 8.12 MB - OpenTime: 16.346us - ProjectionTime: 0ns - RowsProduced: 624.271K (624271) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s461ms PipelineXTask (index=28):(Active: 161.468ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 161.281ms - CloseTime: 50.837us - GetBlockTime: 106.173ms - OpenTime: 4.854us - PrepareTime: 122.214us - SinkTime: 53.985ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 32 - NumBlockedTimes: 34 - NumScheduleTimes: 35 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 161.10ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 65.638ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.38 MB - CloseTime: 19.586us - CompressTime: 0ns - ExecTime: 53.940ms - InputRows: 107.657K (107657) - LocalBytesSent: 12.09 MB - LocalSendTime: 619.541us - LocalSentRows: 89.626K (89626) - MemoryUsage: - PeakMemoryUsage: 20.18 MB - MergeBlockTime: 0ns - OpenTime: 63.362us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.540ms - RowsProduced: 107.657K (107657) - RpcAvgTime: 15.644ms - RpcCount: 6 - RpcMaxTime: 51.781ms - RpcMinTime: 42.85ms - RpcSumTime: 93.866ms - SerializeBatchTime: 4.216ms - SplitBlockDistributeByChannelTime: 39.28ms - SplitBlockHashComputeTime: 4.726ms - UncompressedRowBatchSize: 2.52 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.372us - ExecTime: 103.771ms - InitProbeSideTime: 10.623ms - JoinFilterTimer: 26.916us - MemoryUsage: - PeakMemoryUsage: 68.17 KB - ProbeKeyArena: 68.17 KB - OpenTime: 18.237us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 52.441us - ProbeFindNextTime: 0ns - ProbeRows: 623.952K (623952) - ProbeTime: 99.69ms - ProbeWhenBuildSideOutputTime: 52.46ms - ProbeWhenProbeSideOutputTime: 2.866ms - ProbeWhenProcessHashTableTime: 301.16us - ProbeWhenSearchHashTableTime: 28.179ms - ProjectionTime: 3.903ms - RowsProduced: 107.657K (107657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s964ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.08 MB - CloseTime: 6.977us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.503ms - ExecTime: 1.955ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.62 MB - MemoryUsage: - Blocks: 15.83 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 13.498us - ProjectionTime: 0ns - RowsProduced: 623.952K (623952) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s465ms PipelineXTask (index=32):(Active: 147.258ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 147.32ms - CloseTime: 53.33us - GetBlockTime: 97.2ms - OpenTime: 3.943us - PrepareTime: 159.161us - SinkTime: 48.966ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 33 - NumBlockedTimes: 35 - NumScheduleTimes: 36 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 145.881ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 76.441ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.35 MB - CloseTime: 19.857us - CompressTime: 0ns - ExecTime: 48.970ms - InputRows: 107.2K (107200) - LocalBytesSent: 12.07 MB - LocalSendTime: 676.789us - LocalSentRows: 89.528K (89528) - MemoryUsage: - PeakMemoryUsage: 18.86 MB - MergeBlockTime: 0ns - OpenTime: 82.115us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 30.267ms - RowsProduced: 107.2K (107200) - RpcAvgTime: 20.914ms - RpcCount: 6 - RpcMaxTime: 64.894ms - RpcMinTime: 60.590ms - RpcSumTime: 125.485ms - SerializeBatchTime: 3.734ms - SplitBlockDistributeByChannelTime: 35.606ms - SplitBlockHashComputeTime: 3.627ms - UncompressedRowBatchSize: 2.47 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.893us - ExecTime: 94.864ms - InitProbeSideTime: 10.170ms - JoinFilterTimer: 20.359us - MemoryUsage: - PeakMemoryUsage: 68.53 KB - ProbeKeyArena: 68.53 KB - OpenTime: 15.497us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 45.0us - ProbeFindNextTime: 0ns - ProbeRows: 624.939K (624939) - ProbeTime: 90.572ms - ProbeWhenBuildSideOutputTime: 47.493ms - ProbeWhenProbeSideOutputTime: 2.786ms - ProbeWhenProcessHashTableTime: 467.519us - ProbeWhenSearchHashTableTime: 25.308ms - ProjectionTime: 3.590ms - RowsProduced: 107.2K (107200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s983ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.08 MB - CloseTime: 8.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.531ms - ExecTime: 1.779ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.62 MB - MemoryUsage: - Blocks: 15.43 MB - PeakMemoryUsage: 7.84 MB - OpenTime: 30.551us - ProjectionTime: 0ns - RowsProduced: 624.939K (624939) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s450ms PipelineXTask (index=36):(Active: 164.161ms, % non-child: 0.00%) - CoreChangeTimes: 17 - ExecuteTime: 163.957ms - CloseTime: 43.283us - GetBlockTime: 106.829ms - OpenTime: 6.212us - PrepareTime: 145.3us - SinkTime: 56.15ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 163.442ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 73.381ms DATA_STREAM_SINK_OPERATOR (id=18,dst_id=18): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.36 MB - CloseTime: 13.817us - CompressTime: 0ns - ExecTime: 56.13ms - InputRows: 106.774K (106774) - LocalBytesSent: 12.01 MB - LocalSendTime: 670.508us - LocalSentRows: 89.078K (89078) - MemoryUsage: - PeakMemoryUsage: 20.34 MB - MergeBlockTime: 0ns - OpenTime: 91.148us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 47.533ms - RowsProduced: 106.774K (106774) - RpcAvgTime: 23.451ms - RpcCount: 6 - RpcMaxTime: 73.274ms - RpcMinTime: 67.436ms - RpcSumTime: 140.710ms - SerializeBatchTime: 5.3ms - SplitBlockDistributeByChannelTime: 41.24ms - SplitBlockHashComputeTime: 4.31ms - UncompressedRowBatchSize: 2.47 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.667us - ExecTime: 104.467ms - InitProbeSideTime: 10.983ms - JoinFilterTimer: 24.498us - MemoryUsage: - PeakMemoryUsage: 68.52 KB - ProbeKeyArena: 68.52 KB - OpenTime: 17.337us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 55.541us - ProbeFindNextTime: 0ns - ProbeRows: 623.493K (623493) - ProbeTime: 99.704ms - ProbeWhenBuildSideOutputTime: 52.329ms - ProbeWhenProbeSideOutputTime: 3.18ms - ProbeWhenProcessHashTableTime: 290.864us - ProbeWhenSearchHashTableTime: 28.29ms - ProjectionTime: 3.999ms - RowsProduced: 106.774K (106774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 17s987ms EXCHANGE_OPERATOR (id=16): - BlocksProduced: 185 - BytesReceived: 2.09 MB - CloseTime: 6.72us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.588ms - ExecTime: 1.877ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 22.82 MB - MemoryUsage: - Blocks: 15.46 MB - PeakMemoryUsage: 8.13 MB - OpenTime: 10.726us - ProjectionTime: 0ns - RowsProduced: 623.493K (623493) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s431ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 350.329ms, % non-child: 0.00%) - CoreChangeTimes: 106 - ExecuteTime: 350.117ms - CloseTime: 35.888us - GetBlockTime: 322.19ms - OpenTime: 4.880us - PrepareTime: 125.633us - SinkTime: 22.740ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 257 - NumBlockedTimes: 259 - NumScheduleTimes: 259 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 323.34ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 294.838ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 273.492us - BuildRows: 107.404K (107404) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 18.827ms - BuildTableInsertTime: 1.319ms - BuildTableTime: 1.321ms - CloseTime: 0ns - ExecTime: 22.283ms - InputRows: 107.403K (107403) - MemoryUsage: - BuildBlocks: 13.56 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.21 MB - OpenTime: 20.350us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.770us - RuntimeFilterComputeTime: 732.309us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 27.726us - ExecTime: 289.821ms - InitProbeSideTime: 63.428ms - JoinFilterTimer: 108.176us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 28.74us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 263.625us - ProbeFindNextTime: 0ns - ProbeRows: 3.296837M (3296837) - ProbeTime: 274.359ms - ProbeWhenBuildSideOutputTime: 37.847ms - ProbeWhenProbeSideOutputTime: 19.956ms - ProbeWhenProcessHashTableTime: 264.510us - ProbeWhenSearchHashTableTime: 128.802ms - ProjectionTime: 11.798ms - RowsProduced: 107.403K (107403) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s614ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 875 - BytesReceived: 8.84 MB - CloseTime: 5.634us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.310ms - ExecTime: 29.648ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 179.74 MB - MemoryUsage: - Blocks: 19.96 MB - PeakMemoryUsage: 18.19 MB - OpenTime: 27.30us - ProjectionTime: 0ns - RowsProduced: 3.296837M (3296837) - SendersBlockedTotalTimer(*): 17s145ms - WaitForDependencyTime: 0ns - WaitForData0: 3s117ms PipelineXTask (index=5):(Active: 417.22ms, % non-child: 0.00%) - CoreChangeTimes: 106 - ExecuteTime: 416.848ms - CloseTime: 34.844us - GetBlockTime: 323.644ms - OpenTime: 4.929us - PrepareTime: 89.592us - SinkTime: 88.641ms - GetBlockCounter: 951 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 253 - NumBlockedTimes: 255 - NumScheduleTimes: 255 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 414.292ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 263.764ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 272.956us - BuildRows: 785.359K (785359) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 69.593ms - BuildTableInsertTime: 15.365ms - BuildTableTime: 15.369ms - CloseTime: 0ns - ExecTime: 88.78ms - InputRows: 785.358K (785358) - MemoryUsage: - BuildBlocks: 80.80 MB - BuildKeyArena: 11.98 MB - HashTable: 7.74 MB - PeakMemoryUsage: 100.53 MB - OpenTime: 26.292us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 121.817us - RuntimeFilterComputeTime: 1.538ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 949 - BuildOutputBlock: 0ns - CloseTime: 20.997us - ExecTime: 306.93ms - InitProbeSideTime: 84.533ms - JoinFilterTimer: 134.624us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 19.651us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 264.228us - ProbeFindNextTime: 0ns - ProbeRows: 3.295461M (3295461) - ProbeTime: 283.814ms - ProbeWhenBuildSideOutputTime: 61.56ms - ProbeWhenProbeSideOutputTime: 19.280ms - ProbeWhenProcessHashTableTime: 25.736ms - ProbeWhenSearchHashTableTime: 69.11ms - ProjectionTime: 18.498ms - RowsProduced: 785.358K (785358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s866ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 869 - BytesReceived: 8.82 MB - CloseTime: 9.38us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.679ms - ExecTime: 15.26ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 185.06 MB - MemoryUsage: - Blocks: 19.98 MB - PeakMemoryUsage: 18.75 MB - OpenTime: 13.250us - ProjectionTime: 0ns - RowsProduced: 3.295461M (3295461) - SendersBlockedTotalTimer(*): 18s412ms - WaitForDependencyTime: 0ns - WaitForData0: 2s947ms PipelineXTask (index=9):(Active: 328.135ms, % non-child: 0.00%) - CoreChangeTimes: 115 - ExecuteTime: 327.937ms - CloseTime: 40.824us - GetBlockTime: 294.930ms - OpenTime: 4.19us - PrepareTime: 78.270us - SinkTime: 28.460ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 263 - NumBlockedTimes: 265 - NumScheduleTimes: 265 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 308.811ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 170.285ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 494.516us - BuildRows: 106.341K (106341) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 23.335ms - BuildTableInsertTime: 1.861ms - BuildTableTime: 1.864ms - CloseTime: 0ns - ExecTime: 28.34ms - InputRows: 106.34K (106340) - MemoryUsage: - BuildBlocks: 13.43 MB - BuildKeyArena: 1.62 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.06 MB - OpenTime: 19.664us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.94us - RuntimeFilterComputeTime: 1.327ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 28.463us - ExecTime: 275.208ms - InitProbeSideTime: 62.86ms - JoinFilterTimer: 110.535us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 16.734us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 246.905us - ProbeFindNextTime: 0ns - ProbeRows: 3.295492M (3295492) - ProbeTime: 260.860ms - ProbeWhenBuildSideOutputTime: 38.267ms - ProbeWhenProbeSideOutputTime: 18.125ms - ProbeWhenProcessHashTableTime: 655.504us - ProbeWhenSearchHashTableTime: 121.300ms - ProjectionTime: 10.972ms - RowsProduced: 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s747ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 873 - BytesReceived: 8.83 MB - CloseTime: 8.592us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.778ms - ExecTime: 17.512ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 179.40 MB - MemoryUsage: - Blocks: 19.88 MB - PeakMemoryUsage: 18.82 MB - OpenTime: 16.8us - ProjectionTime: 0ns - RowsProduced: 3.295492M (3295492) - SendersBlockedTotalTimer(*): 18s787ms - WaitForDependencyTime: 0ns - WaitForData0: 3s120ms PipelineXTask (index=13):(Active: 336.634ms, % non-child: 0.00%) - CoreChangeTimes: 126 - ExecuteTime: 336.447ms - CloseTime: 44.870us - GetBlockTime: 305.879ms - OpenTime: 3.771us - PrepareTime: 87.573us - SinkTime: 25.421ms - GetBlockCounter: 791 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 283 - NumBlockedTimes: 285 - NumScheduleTimes: 285 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 328.22ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 152.843ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 278.501us - BuildRows: 107.446K (107446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.932ms - BuildTableInsertTime: 2.146ms - BuildTableTime: 2.150ms - CloseTime: 0ns - ExecTime: 24.967ms - InputRows: 107.445K (107445) - MemoryUsage: - BuildBlocks: 13.57 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.22 MB - OpenTime: 18.669us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.326us - RuntimeFilterComputeTime: 1.570ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 790 - BuildOutputBlock: 0ns - CloseTime: 31.21us - ExecTime: 285.795ms - InitProbeSideTime: 54.163ms - JoinFilterTimer: 100.896us - MemoryUsage: - PeakMemoryUsage: 69.03 KB - ProbeKeyArena: 69.03 KB - OpenTime: 18.129us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 271.803us - ProbeFindNextTime: 0ns - ProbeRows: 3.296171M (3296171) - ProbeTime: 270.212ms - ProbeWhenBuildSideOutputTime: 39.306ms - ProbeWhenProbeSideOutputTime: 19.119ms - ProbeWhenProcessHashTableTime: 646.34us - ProbeWhenSearchHashTableTime: 135.761ms - ProjectionTime: 11.829ms - RowsProduced: 107.445K (107445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s755ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 875 - BytesReceived: 8.83 MB - CloseTime: 9.347us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.92ms - ExecTime: 17.632ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 178.00 MB - MemoryUsage: - Blocks: 19.93 MB - PeakMemoryUsage: 18.58 MB - OpenTime: 14.694us - ProjectionTime: 0ns - RowsProduced: 3.296171M (3296171) - SendersBlockedTotalTimer(*): 17s966ms - WaitForDependencyTime: 0ns - WaitForData0: 3s126ms PipelineXTask (index=17):(Active: 367.939ms, % non-child: 0.00%) - CoreChangeTimes: 97 - ExecuteTime: 367.792ms - CloseTime: 29.975us - GetBlockTime: 339.693ms - OpenTime: 3.56us - PrepareTime: 73.941us - SinkTime: 23.734ms - GetBlockCounter: 790 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 231 - NumBlockedTimes: 233 - NumScheduleTimes: 234 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 309.796ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 126.663ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 231.53us - BuildRows: 106.811K (106811) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 19.907ms - BuildTableInsertTime: 1.339ms - BuildTableTime: 1.343ms - CloseTime: 0ns - ExecTime: 23.255ms - InputRows: 106.81K (106810) - MemoryUsage: - BuildBlocks: 13.49 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.13 MB - OpenTime: 16.141us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.749us - RuntimeFilterComputeTime: 727.997us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 21.134us - ExecTime: 304.991ms - InitProbeSideTime: 50.971ms - JoinFilterTimer: 104.947us - MemoryUsage: - PeakMemoryUsage: 69.00 KB - ProbeKeyArena: 69.00 KB - OpenTime: 14.255us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 258.609us - ProbeFindNextTime: 0ns - ProbeRows: 3.29521M (3295210) - ProbeTime: 290.202ms - ProbeWhenBuildSideOutputTime: 37.993ms - ProbeWhenProbeSideOutputTime: 19.37ms - ProbeWhenProcessHashTableTime: 272.29us - ProbeWhenSearchHashTableTime: 136.554ms - ProjectionTime: 11.345ms - RowsProduced: 106.81K (106810) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s764ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 875 - BytesReceived: 8.84 MB - CloseTime: 5.948us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.10ms - ExecTime: 32.442ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 178.70 MB - MemoryUsage: - Blocks: 19.92 MB - PeakMemoryUsage: 18.43 MB - OpenTime: 12.431us - ProjectionTime: 0ns - RowsProduced: 3.29521M (3295210) - SendersBlockedTotalTimer(*): 17s952ms - WaitForDependencyTime: 0ns - WaitForData0: 3s118ms PipelineXTask (index=21):(Active: 342.95ms, % non-child: 0.00%) - CoreChangeTimes: 127 - ExecuteTime: 341.886ms - CloseTime: 81.133us - GetBlockTime: 309.612ms - OpenTime: 5.25us - PrepareTime: 75.100us - SinkTime: 27.752ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 259 - NumBlockedTimes: 261 - NumScheduleTimes: 261 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 320.793ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 240.158ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 209.555us - BuildRows: 107.771K (107771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 21.667ms - BuildTableInsertTime: 2.906ms - BuildTableTime: 2.912ms - CloseTime: 0ns - ExecTime: 27.294ms - InputRows: 107.77K (107770) - MemoryUsage: - BuildBlocks: 13.61 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.27 MB - OpenTime: 21.594us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.94us - RuntimeFilterComputeTime: 1.432ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 786 - BuildOutputBlock: 0ns - CloseTime: 67.785us - ExecTime: 289.30ms - InitProbeSideTime: 66.457ms - JoinFilterTimer: 102.494us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 17.935us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 252.395us - ProbeFindNextTime: 0ns - ProbeRows: 3.295336M (3295336) - ProbeTime: 273.992ms - ProbeWhenBuildSideOutputTime: 37.781ms - ProbeWhenProbeSideOutputTime: 21.119ms - ProbeWhenProcessHashTableTime: 360.287us - ProbeWhenSearchHashTableTime: 127.493ms - ProjectionTime: 11.448ms - RowsProduced: 107.77K (107770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s681ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 872 - BytesReceived: 8.82 MB - CloseTime: 8.610us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.712ms - ExecTime: 18.257ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 180.23 MB - MemoryUsage: - Blocks: 20.39 MB - PeakMemoryUsage: 19.67 MB - OpenTime: 8.969us - ProjectionTime: 0ns - RowsProduced: 3.295336M (3295336) - SendersBlockedTotalTimer(*): 21s865ms - WaitForDependencyTime: 0ns - WaitForData0: 3s117ms PipelineXTask (index=25):(Active: 348.38ms, % non-child: 0.00%) - CoreChangeTimes: 112 - ExecuteTime: 347.885ms - CloseTime: 30.275us - GetBlockTime: 307.758ms - OpenTime: 3.138us - PrepareTime: 77.400us - SinkTime: 35.559ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 258 - NumBlockedTimes: 260 - NumScheduleTimes: 260 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 328.433ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 94.577ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 245.289us - BuildRows: 106.531K (106531) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 31.732ms - BuildTableInsertTime: 1.317ms - BuildTableTime: 1.320ms - CloseTime: 0ns - ExecTime: 35.125ms - InputRows: 106.53K (106530) - MemoryUsage: - BuildBlocks: 13.45 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.09 MB - OpenTime: 15.620us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 7.1us - RuntimeFilterComputeTime: 711.317us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 22.831us - ExecTime: 286.819ms - InitProbeSideTime: 60.392ms - JoinFilterTimer: 114.376us - MemoryUsage: - PeakMemoryUsage: 68.98 KB - ProbeKeyArena: 68.98 KB - OpenTime: 17.675us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 244.804us - ProbeFindNextTime: 0ns - ProbeRows: 3.295972M (3295972) - ProbeTime: 270.930ms - ProbeWhenBuildSideOutputTime: 39.709ms - ProbeWhenProbeSideOutputTime: 19.234ms - ProbeWhenProcessHashTableTime: 290.505us - ProbeWhenSearchHashTableTime: 129.728ms - ProjectionTime: 12.224ms - RowsProduced: 106.53K (106530) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s826ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 874 - BytesReceived: 8.84 MB - CloseTime: 4.701us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 6.801ms - ExecTime: 18.339ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 180.30 MB - MemoryUsage: - Blocks: 20.03 MB - PeakMemoryUsage: 19.26 MB - OpenTime: 12.39us - ProjectionTime: 0ns - RowsProduced: 3.295972M (3295972) - SendersBlockedTotalTimer(*): 20s187ms - WaitForDependencyTime: 0ns - WaitForData0: 3s112ms PipelineXTask (index=29):(Active: 311.200ms, % non-child: 0.00%) - CoreChangeTimes: 113 - ExecuteTime: 311.27ms - CloseTime: 41.360us - GetBlockTime: 284.531ms - OpenTime: 3.927us - PrepareTime: 75.603us - SinkTime: 21.982ms - GetBlockCounter: 788 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 270 - NumBlockedTimes: 272 - NumScheduleTimes: 272 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 303.876ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 169.503ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 178.307us - BuildRows: 107.658K (107658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 16.799ms - BuildTableInsertTime: 2.35ms - BuildTableTime: 2.40ms - CloseTime: 0ns - ExecTime: 21.558ms - InputRows: 107.657K (107657) - MemoryUsage: - BuildBlocks: 13.59 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.25 MB - OpenTime: 16.485us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.215us - RuntimeFilterComputeTime: 1.453ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 787 - BuildOutputBlock: 0ns - CloseTime: 28.760us - ExecTime: 264.902ms - InitProbeSideTime: 51.843ms - JoinFilterTimer: 102.262us - MemoryUsage: - PeakMemoryUsage: 69.09 KB - ProbeKeyArena: 69.09 KB - OpenTime: 17.455us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 231.550us - ProbeFindNextTime: 0ns - ProbeRows: 3.295121M (3295121) - ProbeTime: 250.746ms - ProbeWhenBuildSideOutputTime: 38.164ms - ProbeWhenProbeSideOutputTime: 18.110ms - ProbeWhenProcessHashTableTime: 602.399us - ProbeWhenSearchHashTableTime: 121.749ms - ProjectionTime: 10.858ms - RowsProduced: 107.657K (107657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s746ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 872 - BytesReceived: 8.83 MB - CloseTime: 8.436us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.75ms - ExecTime: 17.354ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 180.14 MB - MemoryUsage: - Blocks: 19.95 MB - PeakMemoryUsage: 18.03 MB - OpenTime: 11.637us - ProjectionTime: 0ns - RowsProduced: 3.295121M (3295121) - SendersBlockedTotalTimer(*): 16s385ms - WaitForDependencyTime: 0ns - WaitForData0: 3s132ms PipelineXTask (index=33):(Active: 381.278ms, % non-child: 0.00%) - CoreChangeTimes: 103 - ExecuteTime: 381.106ms - CloseTime: 41.172us - GetBlockTime: 338.368ms - OpenTime: 3.563us - PrepareTime: 67.88us - SinkTime: 38.118ms - GetBlockCounter: 786 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 239 - NumBlockedTimes: 241 - NumScheduleTimes: 241 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 338.611ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 117.263ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 194.106us - BuildRows: 107.201K (107201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 33.147ms - BuildTableInsertTime: 1.953ms - BuildTableTime: 1.957ms - CloseTime: 0ns - ExecTime: 37.651ms - InputRows: 107.2K (107200) - MemoryUsage: - BuildBlocks: 13.54 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.18 MB - OpenTime: 13.560us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.132us - RuntimeFilterComputeTime: 1.257ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 784 - BuildOutputBlock: 0ns - CloseTime: 30.856us - ExecTime: 308.561ms - InitProbeSideTime: 57.392ms - JoinFilterTimer: 101.887us - MemoryUsage: - PeakMemoryUsage: 69.16 KB - ProbeKeyArena: 69.16 KB - OpenTime: 15.417us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 248.356us - ProbeFindNextTime: 0ns - ProbeRows: 3.295637M (3295637) - ProbeTime: 293.138ms - ProbeWhenBuildSideOutputTime: 43.380ms - ProbeWhenProbeSideOutputTime: 20.20ms - ProbeWhenProcessHashTableTime: 286.582us - ProbeWhenSearchHashTableTime: 133.195ms - ProjectionTime: 11.789ms - RowsProduced: 107.2K (107200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s761ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 870 - BytesReceived: 8.83 MB - CloseTime: 7.186us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.11ms - ExecTime: 27.130ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 184.86 MB - MemoryUsage: - Blocks: 19.94 MB - PeakMemoryUsage: 18.77 MB - OpenTime: 11.921us - ProjectionTime: 0ns - RowsProduced: 3.295637M (3295637) - SendersBlockedTotalTimer(*): 18s806ms - WaitForDependencyTime: 0ns - WaitForData0: 3s118ms PipelineXTask (index=37):(Active: 374.942ms, % non-child: 0.00%) - CoreChangeTimes: 98 - ExecuteTime: 374.748ms - CloseTime: 42.266us - GetBlockTime: 347.683ms - OpenTime: 3.828us - PrepareTime: 90.40us - SinkTime: 22.527ms - GetBlockCounter: 789 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 242 - NumBlockedTimes: 244 - NumScheduleTimes: 244 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 324.111ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 262.796ms HASH_JOIN_SINK_OPERATOR (id=17): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 184.304us - BuildRows: 106.775K (106775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 17.345ms - BuildTableInsertTime: 1.953ms - BuildTableTime: 1.957ms - CloseTime: 0ns - ExecTime: 22.48ms - InputRows: 106.774K (106774) - MemoryUsage: - BuildBlocks: 13.48 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 16.12 MB - OpenTime: 12.650us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.417us - RuntimeFilterComputeTime: 1.501ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=14): - BlocksProduced: 788 - BuildOutputBlock: 0ns - CloseTime: 29.114us - ExecTime: 323.647ms - InitProbeSideTime: 66.176ms - JoinFilterTimer: 105.920us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 10.27us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 302.710us - ProbeFindNextTime: 0ns - ProbeRows: 3.295426M (3295426) - ProbeTime: 308.672ms - ProbeWhenBuildSideOutputTime: 51.189ms - ProbeWhenProbeSideOutputTime: 19.797ms - ProbeWhenProcessHashTableTime: 392.77us - ProbeWhenSearchHashTableTime: 131.109ms - ProjectionTime: 11.295ms - RowsProduced: 106.774K (106774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s629ms EXCHANGE_OPERATOR (id=13): - BlocksProduced: 873 - BytesReceived: 8.82 MB - CloseTime: 9.852us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 7.61ms - ExecTime: 21.655ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 179.97 MB - MemoryUsage: - Blocks: 20.06 MB - PeakMemoryUsage: 18.59 MB - OpenTime: 18.100us - ProjectionTime: 0ns - RowsProduced: 3.295426M (3295426) - SendersBlockedTotalTimer(*): 17s982ms - WaitForDependencyTime: 0ns - WaitForData0: 3s115ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 39.5ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 38.870ms - CloseTime: 33.910us - GetBlockTime: 31.573ms - OpenTime: 3.29us - PrepareTime: 93.10us - SinkTime: 7.131ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 38.945ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 235.578ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.624us - BuildRows: 107.404K (107404) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.217ms - BuildTableInsertTime: 1.816ms - BuildTableTime: 1.819ms - CloseTime: 0ns - ExecTime: 7.123ms - InputRows: 107.403K (107403) - MemoryUsage: - BuildBlocks: 7.78 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.44 MB - OpenTime: 21.670us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 11.721us - RuntimeFilterComputeTime: 946.643us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 21.989us - ExecTime: 31.190ms - InitProbeSideTime: 3.47ms - JoinFilterTimer: 9.100us - MemoryUsage: - PeakMemoryUsage: 68.94 KB - ProbeKeyArena: 68.94 KB - OpenTime: 19.890us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 12.949us - ProbeFindNextTime: 0ns - ProbeRows: 209.101K (209101) - ProbeTime: 29.638ms - ProbeWhenBuildSideOutputTime: 12.928ms - ProbeWhenProbeSideOutputTime: 536.211us - ProbeWhenProcessHashTableTime: 2.694ms - ProbeWhenSearchHashTableTime: 9.234ms - ProjectionTime: 1.297ms - RowsProduced: 107.403K (107403) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s575ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 543.20 KB - CloseTime: 7.833us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 412.113us - ExecTime: 365.311us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.44 MB - MemoryUsage: - Blocks: 5.17 MB - PeakMemoryUsage: 3.44 MB - OpenTime: 18.247us - ProjectionTime: 0ns - RowsProduced: 209.101K (209101) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s179ms PipelineXTask (index=6):(Active: 212.115ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 211.970ms - CloseTime: 29.310us - GetBlockTime: 90.306ms - OpenTime: 5.344us - PrepareTime: 104.218us - SinkTime: 120.972ms - GetBlockCounter: 231 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 210.415ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 58.853ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 82.401us - BuildRows: 785.359K (785359) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 89.585ms - BuildTableInsertTime: 23.368ms - BuildTableTime: 23.375ms - CloseTime: 0ns - ExecTime: 120.772ms - InputRows: 785.358K (785358) - MemoryUsage: - BuildBlocks: 56.92 MB - BuildKeyArena: 11.98 MB - HashTable: 7.74 MB - PeakMemoryUsage: 76.65 MB - OpenTime: 13.460us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 178.961us - RuntimeFilterComputeTime: 7.67ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 231 - BuildOutputBlock: 0ns - CloseTime: 16.653us - ExecTime: 89.616ms - InitProbeSideTime: 4.404ms - JoinFilterTimer: 42.675us - MemoryUsage: - PeakMemoryUsage: 69.13 KB - ProbeKeyArena: 69.13 KB - OpenTime: 40.121us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.695us - ProbeFindNextTime: 0ns - ProbeRows: 208.499K (208499) - ProbeTime: 80.516ms - ProbeWhenBuildSideOutputTime: 20.580ms - ProbeWhenProbeSideOutputTime: 500.273us - ProbeWhenProcessHashTableTime: 42.513ms - ProbeWhenSearchHashTableTime: 7.913ms - ProjectionTime: 8.629ms - RowsProduced: 785.358K (785358) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s811ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 539.20 KB - CloseTime: 7.196us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 444.177us - ExecTime: 398.3us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.19 MB - MemoryUsage: - Blocks: 4.78 MB - PeakMemoryUsage: 3.19 MB - OpenTime: 17.634us - ProjectionTime: 0ns - RowsProduced: 208.499K (208499) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s178ms PipelineXTask (index=10):(Active: 37.419ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 37.265ms - CloseTime: 26.348us - GetBlockTime: 27.988ms - OpenTime: 3.305us - PrepareTime: 118.867us - SinkTime: 9.130ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 37.361ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.580ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.777us - BuildRows: 106.341K (106341) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.545ms - BuildTableInsertTime: 1.753ms - BuildTableTime: 1.756ms - CloseTime: 0ns - ExecTime: 9.157ms - InputRows: 106.34K (106340) - MemoryUsage: - BuildBlocks: 7.71 MB - BuildKeyArena: 1.62 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.34 MB - OpenTime: 57.653us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.284us - RuntimeFilterComputeTime: 673.579us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 64 - BuildOutputBlock: 0ns - CloseTime: 12.694us - ExecTime: 27.618ms - InitProbeSideTime: 2.750ms - JoinFilterTimer: 6.318us - MemoryUsage: - PeakMemoryUsage: 69.31 KB - ProbeKeyArena: 69.31 KB - OpenTime: 12.739us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.595us - ProbeFindNextTime: 0ns - ProbeRows: 208.7K (208700) - ProbeTime: 26.238ms - ProbeWhenBuildSideOutputTime: 11.17ms - ProbeWhenProbeSideOutputTime: 516.682us - ProbeWhenProcessHashTableTime: 2.522ms - ProbeWhenSearchHashTableTime: 8.254ms - ProjectionTime: 1.197ms - RowsProduced: 106.34K (106340) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s780ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 541.76 KB - CloseTime: 9.201us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 409.367us - ExecTime: 341.117us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.45 MB - MemoryUsage: - Blocks: 5.10 MB - PeakMemoryUsage: 3.45 MB - OpenTime: 13.649us - ProjectionTime: 0ns - RowsProduced: 208.7K (208700) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s178ms PipelineXTask (index=14):(Active: 44.651ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 44.474ms - CloseTime: 29.985us - GetBlockTime: 36.360ms - OpenTime: 2.865us - PrepareTime: 139.135us - SinkTime: 7.934ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 41.11ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 41.315ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.129us - BuildRows: 107.446K (107446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.537ms - BuildTableInsertTime: 2.34ms - BuildTableTime: 2.39ms - CloseTime: 0ns - ExecTime: 7.956ms - InputRows: 107.445K (107445) - MemoryUsage: - BuildBlocks: 7.79 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.44 MB - OpenTime: 58.152us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 10.704us - RuntimeFilterComputeTime: 1.172ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 16.235us - ExecTime: 35.911ms - InitProbeSideTime: 4.530ms - JoinFilterTimer: 9.327us - MemoryUsage: - PeakMemoryUsage: 68.92 KB - ProbeKeyArena: 68.92 KB - OpenTime: 19.493us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.747us - ProbeFindNextTime: 0ns - ProbeRows: 209.108K (209108) - ProbeTime: 34.332ms - ProbeWhenBuildSideOutputTime: 12.764ms - ProbeWhenProbeSideOutputTime: 561.832us - ProbeWhenProcessHashTableTime: 2.695ms - ProbeWhenSearchHashTableTime: 12.481ms - ProjectionTime: 1.335ms - RowsProduced: 107.445K (107445) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s770ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 543.84 KB - CloseTime: 9.266us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 457.823us - ExecTime: 414.663us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.41 MB - MemoryUsage: - Blocks: 5.05 MB - PeakMemoryUsage: 3.41 MB - OpenTime: 19.864us - ProjectionTime: 0ns - RowsProduced: 209.108K (209108) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s178ms PipelineXTask (index=18):(Active: 42.979ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 42.812ms - CloseTime: 27.128us - GetBlockTime: 33.979ms - OpenTime: 3.214us - PrepareTime: 132.265us - SinkTime: 8.658ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 42.927ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.21ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 20.68us - BuildRows: 106.811K (106811) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.962ms - BuildTableInsertTime: 2.459ms - BuildTableTime: 2.464ms - CloseTime: 0ns - ExecTime: 8.636ms - InputRows: 106.81K (106810) - MemoryUsage: - BuildBlocks: 7.74 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.38 MB - OpenTime: 13.659us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.680us - RuntimeFilterComputeTime: 1.56ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 64 - BuildOutputBlock: 0ns - CloseTime: 14.843us - ExecTime: 33.574ms - InitProbeSideTime: 3.351ms - JoinFilterTimer: 8.321us - MemoryUsage: - PeakMemoryUsage: 69.06 KB - ProbeKeyArena: 69.06 KB - OpenTime: 13.571us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 10.310us - ProbeFindNextTime: 0ns - ProbeRows: 208.294K (208294) - ProbeTime: 31.937ms - ProbeWhenBuildSideOutputTime: 13.524ms - ProbeWhenProbeSideOutputTime: 627.991us - ProbeWhenProcessHashTableTime: 3.209ms - ProbeWhenSearchHashTableTime: 9.973ms - ProjectionTime: 1.364ms - RowsProduced: 106.81K (106810) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s658ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 541.24 KB - CloseTime: 8.74us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 421.616us - ExecTime: 360.614us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.31 MB - MemoryUsage: - Blocks: 4.95 MB - PeakMemoryUsage: 3.31 MB - OpenTime: 12.252us - ProjectionTime: 0ns - RowsProduced: 208.294K (208294) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s178ms PipelineXTask (index=22):(Active: 39.838ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 39.688ms - CloseTime: 24.748us - GetBlockTime: 31.468ms - OpenTime: 3.700us - PrepareTime: 116.477us - SinkTime: 8.67ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 39.805ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.766ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.568us - BuildRows: 107.771K (107771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.881ms - BuildTableInsertTime: 2.217ms - BuildTableTime: 2.221ms - CloseTime: 0ns - ExecTime: 8.85ms - InputRows: 107.77K (107770) - MemoryUsage: - BuildBlocks: 7.81 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.47 MB - OpenTime: 51.827us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 9.720us - RuntimeFilterComputeTime: 800.894us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 14.900us - ExecTime: 31.48ms - InitProbeSideTime: 2.988ms - JoinFilterTimer: 8.862us - MemoryUsage: - PeakMemoryUsage: 69.00 KB - ProbeKeyArena: 69.00 KB - OpenTime: 13.838us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.964us - ProbeFindNextTime: 0ns - ProbeRows: 209.195K (209195) - ProbeTime: 29.522ms - ProbeWhenBuildSideOutputTime: 12.773ms - ProbeWhenProbeSideOutputTime: 489.218us - ProbeWhenProcessHashTableTime: 3.23ms - ProbeWhenSearchHashTableTime: 8.990ms - ProjectionTime: 1.314ms - RowsProduced: 107.77K (107770) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s780ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 542.88 KB - CloseTime: 6.657us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 456.514us - ExecTime: 380.72us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.38 MB - MemoryUsage: - Blocks: 4.95 MB - PeakMemoryUsage: 3.38 MB - OpenTime: 18.94us - ProjectionTime: 0ns - RowsProduced: 209.195K (209195) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s177ms PipelineXTask (index=26):(Active: 49.950ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 49.801ms - CloseTime: 21.590us - GetBlockTime: 26.549ms - OpenTime: 2.579us - PrepareTime: 120.576us - SinkTime: 23.120ms - GetBlockCounter: 64 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 36.908ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.85ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.763us - BuildRows: 106.531K (106531) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 20.527ms - BuildTableInsertTime: 1.754ms - BuildTableTime: 1.757ms - CloseTime: 0ns - ExecTime: 23.104ms - InputRows: 106.53K (106530) - MemoryUsage: - BuildBlocks: 7.72 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.35 MB - OpenTime: 13.815us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.835us - RuntimeFilterComputeTime: 683.583us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 64 - BuildOutputBlock: 0ns - CloseTime: 11.807us - ExecTime: 26.214ms - InitProbeSideTime: 2.452ms - JoinFilterTimer: 7.311us - MemoryUsage: - PeakMemoryUsage: 68.95 KB - ProbeKeyArena: 68.95 KB - OpenTime: 12.815us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.153us - ProbeFindNextTime: 0ns - ProbeRows: 209.128K (209128) - ProbeTime: 24.895ms - ProbeWhenBuildSideOutputTime: 10.537ms - ProbeWhenProbeSideOutputTime: 488.35us - ProbeWhenProcessHashTableTime: 2.557ms - ProbeWhenSearchHashTableTime: 7.806ms - ProjectionTime: 1.122ms - RowsProduced: 106.53K (106530) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s658ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 544.17 KB - CloseTime: 6.579us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 439.432us - ExecTime: 308.289us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.26 MB - MemoryUsage: - Blocks: 4.92 MB - PeakMemoryUsage: 3.26 MB - OpenTime: 24.514us - ProjectionTime: 0ns - RowsProduced: 209.128K (209128) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s178ms PipelineXTask (index=30):(Active: 36.47ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 35.890ms - CloseTime: 30.474us - GetBlockTime: 27.689ms - OpenTime: 16.798us - PrepareTime: 104.905us - SinkTime: 8.55ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 35.994ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 30.64ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 10.289us - BuildRows: 107.658K (107658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.974ms - BuildTableInsertTime: 2.229ms - BuildTableTime: 2.234ms - CloseTime: 0ns - ExecTime: 8.65ms - InputRows: 107.657K (107657) - MemoryUsage: - BuildBlocks: 7.80 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.46 MB - OpenTime: 42.867us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.324us - RuntimeFilterComputeTime: 700.657us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 16.23us - ExecTime: 27.358ms - InitProbeSideTime: 2.649ms - JoinFilterTimer: 6.602us - MemoryUsage: - PeakMemoryUsage: 69.02 KB - ProbeKeyArena: 69.02 KB - OpenTime: 16.443us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 9.944us - ProbeFindNextTime: 0ns - ProbeRows: 208.464K (208464) - ProbeTime: 26.25ms - ProbeWhenBuildSideOutputTime: 11.99ms - ProbeWhenProbeSideOutputTime: 437.775us - ProbeWhenProcessHashTableTime: 2.545ms - ProbeWhenSearchHashTableTime: 8.292ms - ProjectionTime: 1.132ms - RowsProduced: 107.657K (107657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s781ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 542.16 KB - CloseTime: 9.987us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 395.575us - ExecTime: 316.817us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.31 MB - MemoryUsage: - Blocks: 4.92 MB - PeakMemoryUsage: 3.31 MB - OpenTime: 12.183us - ProjectionTime: 0ns - RowsProduced: 208.464K (208464) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s178ms PipelineXTask (index=34):(Active: 49.274ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 49.77ms - CloseTime: 29.460us - GetBlockTime: 38.743ms - OpenTime: 3.980us - PrepareTime: 158.754us - SinkTime: 10.148ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 49.199ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 31.170ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.651us - BuildRows: 107.201K (107201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.110ms - BuildTableInsertTime: 2.584ms - BuildTableTime: 2.588ms - CloseTime: 0ns - ExecTime: 10.188ms - InputRows: 107.2K (107200) - MemoryUsage: - BuildBlocks: 7.77 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.42 MB - OpenTime: 79.42us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 12.443us - RuntimeFilterComputeTime: 1.252ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 13.883us - ExecTime: 38.316ms - InitProbeSideTime: 3.777ms - JoinFilterTimer: 12.128us - MemoryUsage: - PeakMemoryUsage: 69.19 KB - ProbeKeyArena: 69.19 KB - OpenTime: 12.932us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 13.550us - ProbeFindNextTime: 0ns - ProbeRows: 209.075K (209075) - ProbeTime: 36.465ms - ProbeWhenBuildSideOutputTime: 15.543ms - ProbeWhenProbeSideOutputTime: 667.910us - ProbeWhenProcessHashTableTime: 3.553ms - ProbeWhenSearchHashTableTime: 11.439ms - ProjectionTime: 1.588ms - RowsProduced: 107.2K (107200) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s783ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 542.99 KB - CloseTime: 10.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 452.9us - ExecTime: 369.48us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.20 MB - MemoryUsage: - Blocks: 4.89 MB - PeakMemoryUsage: 3.20 MB - OpenTime: 18.933us - ProjectionTime: 0ns - RowsProduced: 209.075K (209075) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s177ms PipelineXTask (index=38):(Active: 63.298ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 63.102ms - CloseTime: 31.772us - GetBlockTime: 51.977ms - OpenTime: 4.366us - PrepareTime: 152.892us - SinkTime: 10.907ms - GetBlockCounter: 65 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 52.615ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.93ms HASH_JOIN_SINK_OPERATOR (id=14): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.353us - BuildRows: 106.775K (106775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.343ms - BuildTableInsertTime: 2.182ms - BuildTableTime: 2.188ms - CloseTime: 0ns - ExecTime: 10.885ms - InputRows: 106.774K (106774) - MemoryUsage: - BuildBlocks: 7.74 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 10.38 MB - OpenTime: 27.477us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 13.137us - RuntimeFilterComputeTime: 1.132ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=11): - BlocksProduced: 65 - BuildOutputBlock: 0ns - CloseTime: 15.363us - ExecTime: 51.392ms - InitProbeSideTime: 4.422ms - JoinFilterTimer: 10.928us - MemoryUsage: - PeakMemoryUsage: 69.05 KB - ProbeKeyArena: 69.05 KB - OpenTime: 15.622us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 29.340us - ProbeFindNextTime: 0ns - ProbeRows: 208.332K (208332) - ProbeTime: 49.248ms - ProbeWhenBuildSideOutputTime: 14.940ms - ProbeWhenProbeSideOutputTime: 715.627us - ProbeWhenProcessHashTableTime: 3.931ms - ProbeWhenSearchHashTableTime: 23.387ms - ProjectionTime: 1.840ms - RowsProduced: 106.774K (106774) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 15s660ms EXCHANGE_OPERATOR (id=10): - BlocksProduced: 68 - BytesReceived: 542.13 KB - CloseTime: 12.90us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 397.324us - ExecTime: 492.689us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.35 MB - MemoryUsage: - Blocks: 4.96 MB - PeakMemoryUsage: 3.35 MB - OpenTime: 17.367us - ProjectionTime: 0ns - RowsProduced: 208.332K (208332) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 1s176ms Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 8.465ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 8.397ms - CloseTime: 9.372us - GetBlockTime: 710.107us - OpenTime: 1.991us - PrepareTime: 48.776us - SinkTime: 7.345ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 8.387ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.102ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.465us - BuildRows: 107.404K (107404) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.666ms - BuildTableInsertTime: 1.827ms - BuildTableTime: 1.830ms - CloseTime: 0ns - ExecTime: 7.349ms - InputRows: 107.403K (107403) - MemoryUsage: - BuildBlocks: 7.27 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.92 MB - OpenTime: 21.92us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.241us - RuntimeFilterComputeTime: 685.635us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.45 MB - CloseTime: 7.42us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.118ms - ExecTime: 700.135us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.94 MB - MemoryUsage: - Blocks: 1.07 MB - PeakMemoryUsage: 0.00 - OpenTime: 13.558us - ProjectionTime: 0ns - RowsProduced: 107.403K (107403) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s978ms PipelineXTask (index=7):(Active: 122.183ms, % non-child: 0.00%) - CoreChangeTimes: 35 - ExecuteTime: 122.70ms - CloseTime: 13.30us - GetBlockTime: 3.801ms - OpenTime: 1.647us - PrepareTime: 65.471us - SinkTime: 116.803ms - GetBlockCounter: 172 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 140 - NumBlockedTimes: 142 - NumScheduleTimes: 142 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 121.825ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 78.571ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 107.260us - BuildRows: 785.359K (785359) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 85.66ms - BuildTableInsertTime: 22.979ms - BuildTableTime: 22.994ms - CloseTime: 0ns - ExecTime: 116.735ms - InputRows: 785.358K (785358) - MemoryUsage: - BuildBlocks: 53.18 MB - BuildKeyArena: 11.98 MB - HashTable: 7.74 MB - PeakMemoryUsage: 72.91 MB - OpenTime: 28.305us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 125.129us - RuntimeFilterComputeTime: 8.32ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 271 - BytesReceived: 17.23 MB - CloseTime: 10.457us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 16.233ms - ExecTime: 3.650ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 35.38 MB - MemoryUsage: - Blocks: 3.19 MB - PeakMemoryUsage: 0.00 - OpenTime: 15.593us - ProjectionTime: 0ns - RowsProduced: 785.358K (785358) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s819ms PipelineXTask (index=11):(Active: 14.875ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 14.807ms - CloseTime: 8.274us - GetBlockTime: 660.965us - OpenTime: 1.629us - PrepareTime: 49.33us - SinkTime: 13.761ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.788ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.827ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 16.943us - BuildRows: 106.341K (106341) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.49ms - BuildTableInsertTime: 1.726ms - BuildTableTime: 1.730ms - CloseTime: 0ns - ExecTime: 13.754ms - InputRows: 106.34K (106340) - MemoryUsage: - BuildBlocks: 7.20 MB - BuildKeyArena: 1.62 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.83 MB - OpenTime: 12.789us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.21us - RuntimeFilterComputeTime: 800.517us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.43 MB - CloseTime: 6.21us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.397ms - ExecTime: 644.180us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.66 MB - MemoryUsage: - Blocks: 544.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.15us - ProjectionTime: 0ns - RowsProduced: 106.34K (106340) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s970ms PipelineXTask (index=15):(Active: 16.231ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 16.129ms - CloseTime: 9.422us - GetBlockTime: 685.507us - OpenTime: 1.817us - PrepareTime: 81.504us - SinkTime: 15.117ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 16.147ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.871ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 17.493us - BuildRows: 107.446K (107446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 10.801ms - BuildTableInsertTime: 2.799ms - BuildTableTime: 2.805ms - CloseTime: 0ns - ExecTime: 15.120ms - InputRows: 107.445K (107445) - MemoryUsage: - BuildBlocks: 7.27 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.93 MB - OpenTime: 21.338us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 8.390us - RuntimeFilterComputeTime: 1.336ms - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.44 MB - CloseTime: 7.92us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.312ms - ExecTime: 692.283us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.66 MB - MemoryUsage: - Blocks: 544.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 33.60us - ProjectionTime: 0ns - RowsProduced: 107.445K (107445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s971ms PipelineXTask (index=19):(Active: 11.376ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 11.299ms - CloseTime: 8.841us - GetBlockTime: 683.998us - OpenTime: 1.344us - PrepareTime: 59.807us - SinkTime: 10.359ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 25 - NumBlockedTimes: 27 - NumScheduleTimes: 27 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.311ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.61ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.102us - BuildRows: 106.811K (106811) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.319ms - BuildTableInsertTime: 2.56ms - BuildTableTime: 2.59ms - CloseTime: 0ns - ExecTime: 10.371ms - InputRows: 106.81K (106810) - MemoryUsage: - BuildBlocks: 7.23 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.87 MB - OpenTime: 27.724us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.944us - RuntimeFilterComputeTime: 832.745us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.46 MB - CloseTime: 6.807us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.791ms - ExecTime: 675.662us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.86 MB - MemoryUsage: - Blocks: 960.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 10.470us - ProjectionTime: 0ns - RowsProduced: 106.81K (106810) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s975ms PipelineXTask (index=23):(Active: 13.98ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 13.13ms - CloseTime: 12.640us - GetBlockTime: 744.755us - OpenTime: 2.664us - PrepareTime: 61.577us - SinkTime: 11.859ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 12.969ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.749ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 18.590us - BuildRows: 107.771K (107771) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.455ms - BuildTableInsertTime: 1.484ms - BuildTableTime: 1.486ms - CloseTime: 0ns - ExecTime: 11.846ms - InputRows: 107.77K (107770) - MemoryUsage: - BuildBlocks: 7.30 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.96 MB - OpenTime: 9.631us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.237us - RuntimeFilterComputeTime: 728.605us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.45 MB - CloseTime: 8.860us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.87ms - ExecTime: 742.667us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.66 MB - MemoryUsage: - Blocks: 544.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 25.24us - ProjectionTime: 0ns - RowsProduced: 107.77K (107770) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s970ms PipelineXTask (index=27):(Active: 15.646ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 15.565ms - CloseTime: 8.270us - GetBlockTime: 691.292us - OpenTime: 1.438us - PrepareTime: 63.129us - SinkTime: 14.466ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 26 - NumBlockedTimes: 28 - NumScheduleTimes: 28 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 15.547ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.392ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 19.659us - BuildRows: 106.531K (106531) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 11.382ms - BuildTableInsertTime: 2.199ms - BuildTableTime: 2.202ms - CloseTime: 0ns - ExecTime: 14.475ms - InputRows: 106.53K (106530) - MemoryUsage: - BuildBlocks: 7.21 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.85 MB - OpenTime: 27.762us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 6.92us - RuntimeFilterComputeTime: 718.463us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.43 MB - CloseTime: 5.784us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.202ms - ExecTime: 677.914us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.86 MB - MemoryUsage: - Blocks: 1016.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.727us - ProjectionTime: 0ns - RowsProduced: 106.53K (106530) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s971ms PipelineXTask (index=31):(Active: 11.144ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 11.80ms - CloseTime: 7.716us - GetBlockTime: 655.537us - OpenTime: 1.400us - PrepareTime: 46.634us - SinkTime: 10.125ms - GetBlockCounter: 32 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 11.69ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.440ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.484us - BuildRows: 107.658K (107658) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 7.612ms - BuildTableInsertTime: 1.696ms - BuildTableTime: 1.698ms - CloseTime: 0ns - ExecTime: 10.120ms - InputRows: 107.657K (107657) - MemoryUsage: - BuildBlocks: 7.29 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.95 MB - OpenTime: 13.628us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 4.705us - RuntimeFilterComputeTime: 676.781us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 49 - BytesReceived: 2.47 MB - CloseTime: 5.731us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.90ms - ExecTime: 647.963us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.32 MB - MemoryUsage: - Blocks: 576.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.561us - ProjectionTime: 0ns - RowsProduced: 107.657K (107657) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s974ms PipelineXTask (index=35):(Active: 14.181ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 14.108ms - CloseTime: 8.400us - GetBlockTime: 651.407us - OpenTime: 1.767us - PrepareTime: 54.299us - SinkTime: 13.117ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 27 - NumBlockedTimes: 29 - NumScheduleTimes: 29 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 14.93ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.794ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 15.706us - BuildRows: 107.201K (107201) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 9.893ms - BuildTableInsertTime: 2.304ms - BuildTableTime: 2.306ms - CloseTime: 0ns - ExecTime: 13.108ms - InputRows: 107.2K (107200) - MemoryUsage: - BuildBlocks: 7.26 MB - BuildKeyArena: 1.64 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.91 MB - OpenTime: 11.677us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 5.245us - RuntimeFilterComputeTime: 752.318us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.43 MB - CloseTime: 5.947us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 2.296ms - ExecTime: 639.906us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 4.68 MB - MemoryUsage: - Blocks: 788.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.938us - ProjectionTime: 0ns - RowsProduced: 107.2K (107200) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s972ms PipelineXTask (index=39):(Active: 9.861ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 9.786ms - CloseTime: 7.82us - GetBlockTime: 649.314us - OpenTime: 1.474us - PrepareTime: 58.336us - SinkTime: 8.846ms - GetBlockCounter: 31 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 28 - NumBlockedTimes: 30 - NumScheduleTimes: 30 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 9.785ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.388ms HASH_JOIN_SINK_OPERATOR (id=11): - JoinType: RIGHT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 34.619us - BuildRows: 106.775K (106775) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.329ms - BuildTableInsertTime: 1.655ms - BuildTableTime: 1.657ms - CloseTime: 0ns - ExecTime: 8.841ms - InputRows: 106.774K (106774) - MemoryUsage: - BuildBlocks: 7.23 MB - BuildKeyArena: 1.63 MB - HashTable: 1.01 MB - PeakMemoryUsage: 9.87 MB - OpenTime: 14.354us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 3.679us - RuntimeFilterComputeTime: 685.723us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=8): - BlocksProduced: 47 - BytesReceived: 2.44 MB - CloseTime: 5.210us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 1.988ms - ExecTime: 637.117us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 5.03 MB - MemoryUsage: - Blocks: 576.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 21.523us - ProjectionTime: 0ns - RowsProduced: 106.774K (106774) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s976ms Fragment 146: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 199.610ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 199.198ms - CloseTime: 56.574us - GetBlockTime: 2.86ms - OpenTime: 136.307us - PrepareTime: 206.613us - SinkTime: 195.655ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 147.555ms - WaitBfTime: 984.906ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.783ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 491 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.15 MB - CloseTime: 19.206us - CompressTime: 0ns - ExecTime: 195.595ms - InputRows: 2.061039M (2061039) - LocalBytesSent: 45.05 MB - LocalSendTime: 3.710ms - LocalSentRows: 1.749583M (1749583) - MemoryUsage: - PeakMemoryUsage: 85.37 MB - MergeBlockTime: 0ns - OpenTime: 72.77us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 89.812ms - RowsProduced: 2.061039M (2061039) - RpcAvgTime: 55.25ms - RpcCount: 74 - RpcMaxTime: 2s42ms - RpcMinTime: 2s29ms - RpcSumTime: 4s71ms - SerializeBatchTime: 5.418ms - SplitBlockDistributeByChannelTime: 126.472ms - SplitBlockHashComputeTime: 29.50ms - UncompressedRowBatchSize: 8.53 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s973ms - 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.132us - BlocksProduced: 514 - CloseTime: 34.535us - ExecTime: 380.849ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 220.792us - ProcessConjunctTime: 26.148us - ProjectionTime: 0ns - RowsProduced: 2.061039M (2061039) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 109.580ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 378.657ms - 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: 64.25K (64250) - expr_input_rows: 1.243584M (1243584) 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: 63.323K (63323) - expr_input_rows: 621.792K (621792) VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [232.443ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [109.580ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 203.874ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 362.728us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 23.608us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 134.728ms - ScannerCtxSchedTime: 109.571ms - ScannerFilterTime: 8.2ms - ScannerGetBlockTime: 224.227ms - ScannerInitTime: 61.658us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 962ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.714us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 55.411us - BlockLoadTime: 204.107ms - BlocksLoad: 516 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.542K (1542) - FirstReadSeekTime: 363.674us - FirstReadTime: 201.372ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.348us - 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: 144.679us - OutputIndexResultColumnTimer: 66.340us - 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: 196.177ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 195.613ms - CloseTime: 63.810us - GetBlockTime: 2.31ms - OpenTime: 124.417us - PrepareTime: 346.980us - SinkTime: 192.264ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 138.787ms - WaitBfTime: 985.36ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 154.497ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 491 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.15 MB - CloseTime: 15.472us - CompressTime: 0ns - ExecTime: 192.226ms - InputRows: 2.065884M (2065884) - LocalBytesSent: 45.18 MB - LocalSendTime: 4.59ms - LocalSentRows: 1.754472M (1754472) - MemoryUsage: - PeakMemoryUsage: 85.41 MB - MergeBlockTime: 0ns - OpenTime: 94.664us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 96.887ms - RowsProduced: 2.065884M (2065884) - RpcAvgTime: 58.604ms - RpcCount: 74 - RpcMaxTime: 2s172ms - RpcMinTime: 2s164ms - RpcSumTime: 4s336ms - SerializeBatchTime: 5.525ms - SplitBlockDistributeByChannelTime: 136.266ms - SplitBlockHashComputeTime: 29.494ms - UncompressedRowBatchSize: 8.53 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s973ms - 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: 1.703us - BlocksProduced: 515 - CloseTime: 45.490us - ExecTime: 338.77ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 193.19us - ProcessConjunctTime: 14.393us - ProjectionTime: 0ns - RowsProduced: 2.065884M (2065884) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 120.861ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 335.959ms - 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: 64.25K (64250) - expr_input_rows: 1.243584M (1243584) 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: 63.323K (63323) - expr_input_rows: 621.792K (621792) VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [198.210ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [120.861ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 190.81ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 527.290us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.691us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 119.832ms - ScannerCtxSchedTime: 120.853ms - ScannerFilterTime: 6.693ms - ScannerGetBlockTime: 191.305ms - ScannerInitTime: 84.928us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.383us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.916us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 45.336us - BlockLoadTime: 190.576ms - BlocksLoad: 517 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.545K (1545) - FirstReadSeekTime: 329.541us - FirstReadTime: 188.207ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.625us - 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: 125.399us - OutputIndexResultColumnTimer: 54.389us - 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=2):(Active: 167.834ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 167.439ms - CloseTime: 84.668us - GetBlockTime: 2.452ms - OpenTime: 111.368us - PrepareTime: 185.905us - SinkTime: 163.459ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 4 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 153.771ms - WaitBfTime: 985.136ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 138.655ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 491 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.16 MB - CloseTime: 17.288us - CompressTime: 0ns - ExecTime: 163.381ms - InputRows: 2.065846M (2065846) - LocalBytesSent: 45.15 MB - LocalSendTime: 4.37ms - LocalSentRows: 1.753604M (1753604) - MemoryUsage: - PeakMemoryUsage: 85.65 MB - MergeBlockTime: 0ns - OpenTime: 72.39us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 87.527ms - RowsProduced: 2.065846M (2065846) - RpcAvgTime: 76.295ms - RpcCount: 74 - RpcMaxTime: 2s825ms - RpcMinTime: 2s819ms - RpcSumTime: 5s645ms - SerializeBatchTime: 6.391ms - SplitBlockDistributeByChannelTime: 88.636ms - SplitBlockHashComputeTime: 45.642ms - UncompressedRowBatchSize: 8.55 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 17s973ms - 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: 1.865us - BlocksProduced: 515 - CloseTime: 63.816us - ExecTime: 363.276ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 174.884us - ProcessConjunctTime: 28.253us - ProjectionTime: 0ns - RowsProduced: 2.065846M (2065846) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 125.108ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 360.738ms - 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: 64.25K (64250) - expr_input_rows: 1.243584M (1243584) 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: 63.323K (63323) - expr_input_rows: 621.792K (621792) VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [216.438ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [125.108ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 208.523ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 365.500us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 26.897us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 129.839ms - ScannerCtxSchedTime: 125.98ms - ScannerFilterTime: 6.277ms - ScannerGetBlockTime: 209.936ms - ScannerInitTime: 56.48us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.93us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 7.590us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 38.73us - BlockLoadTime: 208.816ms - BlocksLoad: 517 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.545K (1545) - FirstReadSeekTime: 407.598us - FirstReadTime: 206.298ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.375us - 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: 165.173us - OutputIndexResultColumnTimer: 64.438us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 263.302ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 262.885ms - CloseTime: 68.51us - GetBlockTime: 3.672ms - OpenTime: 123.613us - PrepareTime: 214.486us - SinkTime: 257.508ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 224.884ms - WaitBfTime: 914.682ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 115.892ms DATA_STREAM_SINK_OPERATOR (id=16,dst_id=16): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 504 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.02 MB - CloseTime: 15.4us - CompressTime: 0ns - ExecTime: 257.313ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 8.06 MB - LocalSendTime: 1.72ms - LocalSentRows: 313.023K (313023) - MemoryUsage: - PeakMemoryUsage: 17.41 MB - MergeBlockTime: 0ns - OpenTime: 53.360us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 18s252ms - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 335.913ms - RpcCount: 420 - RpcMaxTime: 15s128ms - RpcMinTime: 5s194ms - RpcSumTime: 2m21s - SerializeBatchTime: 101.957ms - SplitBlockDistributeByChannelTime: 76.73ms - SplitBlockHashComputeTime: 49.918ms - UncompressedRowBatchSize: 48.58 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.566us - BlocksProduced: 514 - CloseTime: 48.857us - ExecTime: 275.677ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 210.506us - ProcessConjunctTime: 22.513us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 78.291ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 272.74ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 6, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 7, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [CUS_ID, FIRST_BUY_TIME, SECOND_BUY_TIME] - PerScannerRunningTime: [190.802ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [78.291ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 188.256ms - MemoryUsage: - FreeBlocks: 10.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 316.628us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 29.439us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 142.817ms - ScannerCtxSchedTime: 78.279ms - ScannerFilterTime: 549.233us - ScannerGetBlockTime: 189.977ms - ScannerInitTime: 72.636us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 1.66us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.379us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 0 - BlockInitSeekTime: 0ns - BlockInitTime: 33.769us - BlockLoadTime: 188.534ms - BlocksLoad: 516 - CachedPagesNum: 276 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.542K (1542) - FirstReadSeekTime: 457.248us - FirstReadTime: 185.282ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.175us - 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: 202.962us - OutputIndexResultColumnTimer: 98.306us - 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 Fragment 147: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 155.521ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 155.8ms - CloseTime: 79.992us - GetBlockTime: 1.452ms - OpenTime: 106.392us - PrepareTime: 315.460us - SinkTime: 152.912ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 153.21ms - WaitBfTime: 913.802ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 153.166ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 226 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 23.85 MB - CloseTime: 26.81us - CompressTime: 0ns - ExecTime: 152.936ms - InputRows: 876.719K (876719) - LocalBytesSent: 7.60 MB - LocalSendTime: 458.25us - LocalSentRows: 146.118K (146118) - MemoryUsage: - PeakMemoryUsage: 15.48 MB - MergeBlockTime: 0ns - OpenTime: 69.783us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 17s51ms - RowsProduced: 876.719K (876719) - RpcAvgTime: 410.663ms - RpcCount: 180 - RpcMaxTime: 8s341ms - RpcMinTime: 6s126ms - RpcSumTime: 1m13s - SerializeBatchTime: 74.553ms - SplitBlockDistributeByChannelTime: 56.866ms - SplitBlockHashComputeTime: 10.382ms - UncompressedRowBatchSize: 39.69 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 15s527ms - WaitForLocalExchangeBuffer1: 26.127ms - 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: 4.873us - BlocksProduced: 216 - CloseTime: 50.23us - ExecTime: 207.896ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 193.750us - ProcessConjunctTime: 25.838us - ProjectionTime: 0ns - RowsProduced: 876.719K (876719) - RowsRead: 876.719K (876719) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 80.784ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 206.309ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [112.223ms, ] - PerScannerRowsRead: [876.72K, ] - PerScannerWaitTime: [80.784ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 111.93ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.424ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 11.751us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 103.218ms - ScannerCtxSchedTime: 80.773ms - ScannerFilterTime: 311.46us - ScannerGetBlockTime: 111.791ms - ScannerInitTime: 53.244us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 524ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.203us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 10.69us - BlockInitTime: 60.437us - BlockLoadTime: 112.270ms - BlocksLoad: 217 - CachedPagesNum: 375 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.08K (1080) - FirstReadSeekTime: 877.145us - FirstReadTime: 110.237ms - IOTimer: 0ns - InvertedIndexFilterTime: 755ns - 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: 98.173us - OutputIndexResultColumnTimer: 49.4us - 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=1):(Active: 401.778ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 401.294ms - CloseTime: 141.285us - GetBlockTime: 5.537ms - OpenTime: 177.119us - PrepareTime: 155.897us - SinkTime: 393.781ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 12 - NumScheduleTimes: 15 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 388.344ms - WaitBfTime: 911.355ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 119.218ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 817 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 64.37 MB - CloseTime: 15.763us - CompressTime: 0ns - ExecTime: 393.549ms - InputRows: 3.389621M (3389621) - LocalBytesSent: 21.60 MB - LocalSendTime: 2.147ms - LocalSentRows: 564.92K (564920) - MemoryUsage: - PeakMemoryUsage: 37.57 MB - MergeBlockTime: 0ns - OpenTime: 45.920us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s218ms - RowsProduced: 3.389621M (3389621) - RpcAvgTime: 129.12ms - RpcCount: 673 - RpcMaxTime: 9s865ms - RpcMinTime: 6s607ms - RpcSumTime: 1m26s - SerializeBatchTime: 138.268ms - SplitBlockDistributeByChannelTime: 167.825ms - SplitBlockHashComputeTime: 50.86ms - UncompressedRowBatchSize: 114.43 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 15s527ms - WaitForLocalExchangeBuffer1: 26.127ms - 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: 3.46us - BlocksProduced: 836 - CloseTime: 120.885us - ExecTime: 208.219ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 234.436us - ProcessConjunctTime: 64.220us - ProjectionTime: 0ns - RowsProduced: 3.389621M (3389621) - RowsRead: 3.389621M (3389621) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 153.950ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 202.631ms - WaitForRuntimeFilter: 0ns RuntimeFilter: (id = 4, type = minmax): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: minmax RuntimeFilter: (id = 5, type = bloomfilter): - Info: [IsPushDown = false, RuntimeFilterState = NOT_READY, IgnoredMsg = , HasRemoteTarget = true, HasLocalTarget = false] - UpdateTime: 0 ms - MergeTime: 0 ms - RealRuntimeFilterType: bloomfilter - BloomFilterSize: 16384 VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [221.629ms, 184.445ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [77.152ms, 76.797ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 402.654ms - MemoryUsage: - FreeBlocks: 20.11 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.731ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 41.374us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 339.166ms - ScannerCtxSchedTime: 153.916ms - ScannerFilterTime: 839.151us - ScannerGetBlockTime: 404.848ms - ScannerInitTime: 82.111us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 2.683us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 9.29us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 33.909us - BlockInitTime: 207.581us - BlockLoadTime: 405.769ms - BlocksLoad: 838 - CachedPagesNum: 843 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.18K (4180) - FirstReadSeekTime: 2.82ms - FirstReadTime: 399.827ms - IOTimer: 0ns - InvertedIndexFilterTime: 2.935us - 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: 405.509us - OutputIndexResultColumnTimer: 123.458us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 545.229ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 544.711ms - CloseTime: 159.50us - GetBlockTime: 6.807ms - OpenTime: 127.354us - PrepareTime: 219.705us - SinkTime: 534.434ms - GetBlockCounter: 1.183K (1183) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 14 - NumScheduleTimes: 17 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 510.488ms - WaitBfTime: 982.36ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 192.134ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.146K (1146) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 21.24 MB - CloseTime: 41.204us - CompressTime: 0ns - ExecTime: 534.166ms - InputRows: 4.799089M (4799089) - LocalBytesSent: 170.86 MB - LocalSendTime: 10.847ms - LocalSentRows: 3.999425M (3999425) - MemoryUsage: - PeakMemoryUsage: 254.28 MB - MergeBlockTime: 0ns - OpenTime: 82.522us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s646ms - RowsProduced: 4.799089M (4799089) - RpcAvgTime: 11.784ms - RpcCount: 190 - RpcMaxTime: 1s146ms - RpcMinTime: 1s92ms - RpcSumTime: 2s239ms - SerializeBatchTime: 41.320ms - SplitBlockDistributeByChannelTime: 348.927ms - SplitBlockHashComputeTime: 61.235ms - UncompressedRowBatchSize: 36.02 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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: 2.818us - BlocksProduced: 1.183K (1183) - CloseTime: 113.873us - ExecTime: 208.892ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 204.924us - ProcessConjunctTime: 45.52us - ProjectionTime: 0ns - RowsProduced: 4.799089M (4799089) - RowsRead: 4.799089M (4799089) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 327.956ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 202.176ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [313.662ms, 302.091ms, 208.336ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 604.78K, ] - PerScannerWaitTime: [108.655ms, 108.976ms, 110.324ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 807.942ms - MemoryUsage: - FreeBlocks: 32.70 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.812ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 63.925us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 555.82ms - ScannerCtxSchedTime: 327.920ms - ScannerFilterTime: 12.486ms - ScannerGetBlockTime: 810.954ms - ScannerInitTime: 56.27us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 27 SegmentIterator: - BitmapIndexFilterTimer: 5.281us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 18.146us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 27 - BlockInitSeekTime: 28.869us - BlockInitTime: 250.934us - BlockLoadTime: 810.871ms - 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.730ms - FirstReadTime: 801.439ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.948us - 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: 482.819us - OutputIndexResultColumnTimer: 198.452us - 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: 561.549ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 561.22ms - CloseTime: 133.873us - GetBlockTime: 6.879ms - OpenTime: 127.941us - PrepareTime: 254.497us - SinkTime: 550.644ms - GetBlockCounter: 1.182K (1182) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 12 - NumBlockedTimes: 18 - NumScheduleTimes: 20 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 479.930ms - WaitBfTime: 982.644ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 212.228ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.147K (1147) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 21.25 MB - CloseTime: 11.757us - CompressTime: 0ns - ExecTime: 550.306ms - InputRows: 4.79901M (4799010) - LocalBytesSent: 170.83 MB - LocalSendTime: 10.628ms - LocalSentRows: 3.999233M (3999233) - MemoryUsage: - PeakMemoryUsage: 253.53 MB - MergeBlockTime: 0ns - OpenTime: 68.162us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s610ms - RowsProduced: 4.79901M (4799010) - RpcAvgTime: 12.470ms - RpcCount: 190 - RpcMaxTime: 1s198ms - RpcMinTime: 1s170ms - RpcSumTime: 2s369ms - SerializeBatchTime: 36.816ms - SplitBlockDistributeByChannelTime: 369.706ms - SplitBlockHashComputeTime: 73.403ms - UncompressedRowBatchSize: 36.02 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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.0us - BlocksProduced: 1.182K (1182) - CloseTime: 118.575us - ExecTime: 209.866ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 218.224us - ProcessConjunctTime: 34.88us - ProjectionTime: 0ns - RowsProduced: 4.79901M (4799010) - RowsRead: 4.79901M (4799010) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 413.773ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 203.52ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [272.611ms, 296.562ms, 81.218ms, ] - PerScannerRowsRead: [2.10M, 2.28M, 422.05K, ] - PerScannerWaitTime: [134.888ms, 139.941ms, 138.942ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 633.162ms - MemoryUsage: - FreeBlocks: 29.74 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 173.931ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 63.477us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 542.168ms - ScannerCtxSchedTime: 413.737ms - ScannerFilterTime: 13.653ms - ScannerGetBlockTime: 636.158ms - ScannerInitTime: 55.887us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 27 SegmentIterator: - BitmapIndexFilterTimer: 3.679us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 12.765us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 23 - BlockInitSeekTime: 29.111us - BlockInitTime: 196.51us - BlockLoadTime: 806.172ms - 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.733ms - FirstReadTime: 797.262ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.176us - 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: 547.934us - OutputIndexResultColumnTimer: 177.965us - 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: 382.649ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 382.36ms - CloseTime: 118.431us - GetBlockTime: 5.45ms - OpenTime: 278.141us - PrepareTime: 204.820us - SinkTime: 374.280ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 12 - NumScheduleTimes: 15 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 314.253ms - WaitBfTime: 1s46ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 241.322ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 833 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.31 MB - CloseTime: 18.321us - CompressTime: 0ns - ExecTime: 374.104ms - InputRows: 3.472164M (3472164) - LocalBytesSent: 108.05 MB - LocalSendTime: 10.496ms - LocalSentRows: 2.893436M (2893436) - MemoryUsage: - PeakMemoryUsage: 159.92 MB - MergeBlockTime: 0ns - OpenTime: 64.972us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s240ms - RowsProduced: 3.472164M (3472164) - RpcAvgTime: 15.264ms - RpcCount: 138 - RpcMaxTime: 1s99ms - RpcMinTime: 1s6ms - RpcSumTime: 2s106ms - SerializeBatchTime: 17.337ms - SplitBlockDistributeByChannelTime: 236.912ms - SplitBlockHashComputeTime: 75.63ms - UncompressedRowBatchSize: 22.93 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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: 4.349us - BlocksProduced: 856 - CloseTime: 96.417us - ExecTime: 212.56ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 364.96us - ProcessConjunctTime: 65.288us - ProjectionTime: 0ns - RowsProduced: 3.472164M (3472164) - RowsRead: 3.472164M (3472164) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 189.760ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 206.809ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [205.596ms, 317.599ms, ] - PerScannerRowsRead: [2.10M, 1.38M, ] - PerScannerWaitTime: [95.641ms, 94.118ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 509.785ms - MemoryUsage: - FreeBlocks: 20.48 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.280ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44.562us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 284.452ms - ScannerCtxSchedTime: 189.745ms - ScannerFilterTime: 9.633ms - ScannerGetBlockTime: 513.107ms - ScannerInitTime: 166.233us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 3.199us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.140us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 28 - BlockInitSeekTime: 55.387us - BlockInitTime: 289.551us - BlockLoadTime: 512.490ms - BlocksLoad: 865 - CachedPagesNum: 652 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.285K (4285) - FirstReadSeekTime: 2.428ms - FirstReadTime: 506.269ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.157us - 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: 303.773us - OutputIndexResultColumnTimer: 123.466us - 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: 379.92ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 378.661ms - CloseTime: 79.877us - GetBlockTime: 5.520ms - OpenTime: 168.762us - PrepareTime: 169.981us - SinkTime: 370.416ms - GetBlockCounter: 856 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 15 - NumScheduleTimes: 16 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 328.287ms - WaitBfTime: 1s75ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 235.618ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 832 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.31 MB - CloseTime: 12.867us - CompressTime: 0ns - ExecTime: 370.188ms - InputRows: 3.472126M (3472126) - LocalBytesSent: 108.04 MB - LocalSendTime: 8.14ms - LocalSentRows: 2.893465M (2893465) - MemoryUsage: - PeakMemoryUsage: 160.15 MB - MergeBlockTime: 0ns - OpenTime: 61.781us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s203ms - RowsProduced: 3.472126M (3472126) - RpcAvgTime: 17.145ms - RpcCount: 138 - RpcMaxTime: 1s275ms - RpcMinTime: 1s90ms - RpcSumTime: 2s366ms - SerializeBatchTime: 19.25ms - SplitBlockDistributeByChannelTime: 261.585ms - SplitBlockHashComputeTime: 45.62ms - UncompressedRowBatchSize: 22.93 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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: 2.569us - BlocksProduced: 856 - CloseTime: 63.780us - ExecTime: 233.869ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 218.874us - ProcessConjunctTime: 52.456us - ProjectionTime: 0ns - RowsProduced: 3.472126M (3472126) - RowsRead: 3.472126M (3472126) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 190.27ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 228.349ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [202.097ms, 196.151ms, ] - PerScannerRowsRead: [2.10M, 1.37M, ] - PerScannerWaitTime: [93.710ms, 96.317ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 383.222ms - MemoryUsage: - FreeBlocks: 20.42 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.350ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 45.563us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 336.894ms - ScannerCtxSchedTime: 190.9ms - ScannerFilterTime: 11.112ms - ScannerGetBlockTime: 386.672ms - ScannerInitTime: 76.120us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 3.587us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 15.968us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 29 - BlockInitSeekTime: 41.287us - BlockInitTime: 251.562us - BlockLoadTime: 385.762ms - BlocksLoad: 863 - CachedPagesNum: 646 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.29K (4290) - FirstReadSeekTime: 2.636ms - FirstReadTime: 378.587ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.442us - 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: 414.34us - OutputIndexResultColumnTimer: 144.29us - 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: 344.481ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 343.962ms - CloseTime: 71.143us - GetBlockTime: 2.999ms - OpenTime: 169.123us - PrepareTime: 254.116us - SinkTime: 339.41ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 21 - NumScheduleTimes: 23 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 267.668ms - WaitBfTime: 989.11ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 210.114ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 545 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.68 MB - CloseTime: 13.302us - CompressTime: 0ns - ExecTime: 338.917ms - InputRows: 2.259795M (2259795) - LocalBytesSent: 94.13 MB - LocalSendTime: 5.176ms - LocalSentRows: 1.883127M (1883127) - MemoryUsage: - PeakMemoryUsage: 137.86 MB - MergeBlockTime: 0ns - OpenTime: 86.618us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 712.285ms - RowsProduced: 2.259795M (2259795) - RpcAvgTime: 26.90ms - RpcCount: 92 - RpcMaxTime: 1s214ms - RpcMinTime: 1s185ms - RpcSumTime: 2s400ms - SerializeBatchTime: 37.393ms - SplitBlockDistributeByChannelTime: 224.827ms - SplitBlockHashComputeTime: 46.610ms - UncompressedRowBatchSize: 19.72 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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.475us - BlocksProduced: 557 - CloseTime: 54.624us - ExecTime: 383.573ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 224.301us - ProcessConjunctTime: 54.685us - ProjectionTime: 0ns - RowsProduced: 2.259795M (2259795) - RowsRead: 2.259795M (2259795) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 143.753ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 380.483ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [236.640ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [143.753ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 216.918ms - MemoryUsage: - FreeBlocks: 11.36 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.432ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 29.986us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 214.870ms - ScannerCtxSchedTime: 143.726ms - ScannerFilterTime: 17.954ms - ScannerGetBlockTime: 218.381ms - ScannerInitTime: 84.491us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 1.128us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 4.215us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 15.444us - BlockInitTime: 73.852us - BlockLoadTime: 217.940ms - BlocksLoad: 558 - CachedPagesNum: 901 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.785K (2785) - FirstReadSeekTime: 1.216ms - FirstReadTime: 213.428ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.464us - 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: 208.682us - OutputIndexResultColumnTimer: 87.571us - 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: 277.433ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 277.95ms - CloseTime: 63.935us - GetBlockTime: 2.946ms - OpenTime: 70.601us - PrepareTime: 192.253us - SinkTime: 272.344ms - GetBlockCounter: 557 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 15 - NumBlockedTimes: 21 - NumScheduleTimes: 22 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 266.351ms - WaitBfTime: 989.224ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 184.976ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 544 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 11.67 MB - CloseTime: 12.975us - CompressTime: 0ns - ExecTime: 272.227ms - InputRows: 2.259785M (2259785) - LocalBytesSent: 94.14 MB - LocalSendTime: 5.157ms - LocalSentRows: 1.883158M (1883158) - MemoryUsage: - PeakMemoryUsage: 135.14 MB - MergeBlockTime: 0ns - OpenTime: 68.842us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 788.635ms - RowsProduced: 2.259785M (2259785) - RpcAvgTime: 21.180ms - RpcCount: 91 - RpcMaxTime: 968.525ms - RpcMinTime: 958.913ms - RpcSumTime: 1s927ms - SerializeBatchTime: 30.958ms - SplitBlockDistributeByChannelTime: 173.940ms - SplitBlockHashComputeTime: 37.589ms - UncompressedRowBatchSize: 19.70 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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: 1.634us - BlocksProduced: 557 - CloseTime: 47.852us - ExecTime: 461.450ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 149.456us - ProcessConjunctTime: 16.918us - ProjectionTime: 0ns - RowsProduced: 2.259785M (2259785) - RowsRead: 2.259785M (2259785) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 151.410ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 458.505ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [306.567ms, ] - PerScannerRowsRead: [2.26M, ] - PerScannerWaitTime: [151.410ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 296.580ms - MemoryUsage: - FreeBlocks: 11.12 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.283ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 33.504us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 194.237ms - ScannerCtxSchedTime: 151.393ms - ScannerFilterTime: 8.388ms - ScannerGetBlockTime: 297.900ms - ScannerInitTime: 30.854us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 735ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.814us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.491us - BlockInitTime: 50.144us - BlockLoadTime: 297.471ms - BlocksLoad: 558 - CachedPagesNum: 901 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 2.785K (2785) - FirstReadSeekTime: 1.68ms - FirstReadTime: 293.447ms - IOTimer: 0ns - InvertedIndexFilterTime: 975ns - 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: 241.145us - OutputIndexResultColumnTimer: 77.24us - 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: 147.627ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 144.663ms - CloseTime: 70.348us - GetBlockTime: 1.358ms - OpenTime: 2.735ms - PrepareTime: 147.664us - SinkTime: 139.742ms - GetBlockCounter: 216 - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 127.616ms - WaitBfTime: 1s75ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 264.731ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 218 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.77 MB - CloseTime: 16.748us - CompressTime: 0ns - ExecTime: 139.720ms - InputRows: 876.727K (876727) - LocalBytesSent: 37.94 MB - LocalSendTime: 5.251ms - LocalSentRows: 730.618K (730618) - MemoryUsage: - PeakMemoryUsage: 57.65 MB - MergeBlockTime: 0ns - OpenTime: 51.642us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 219.816ms - RowsProduced: 876.727K (876727) - RpcAvgTime: 24.839ms - RpcCount: 36 - RpcMaxTime: 452.331ms - RpcMinTime: 441.890ms - RpcSumTime: 894.221ms - SerializeBatchTime: 12.985ms - SplitBlockDistributeByChannelTime: 90.839ms - SplitBlockHashComputeTime: 10.752ms - UncompressedRowBatchSize: 7.94 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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.913us - BlocksProduced: 216 - CloseTime: 50.173us - ExecTime: 205.185ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 2.787ms - ProcessConjunctTime: 2.666ms - ProjectionTime: 0ns - RowsProduced: 876.727K (876727) - RowsRead: 876.727K (876727) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 91.560ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 201.77ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [109.659ms, ] - PerScannerRowsRead: [876.73K, ] - PerScannerWaitTime: [91.560ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 105.171ms - MemoryUsage: - FreeBlocks: 10.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.675ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 12.8us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 93.708ms - ScannerCtxSchedTime: 91.555ms - ScannerFilterTime: 3.878ms - ScannerGetBlockTime: 105.673ms - ScannerInitTime: 46.830us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - BitmapIndexFilterTimer: 626ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.946us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 7 - BlockInitSeekTime: 10.407us - BlockInitTime: 59.640us - BlockLoadTime: 106.594ms - BlocksLoad: 217 - CachedPagesNum: 374 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.08K (1080) - FirstReadSeekTime: 936.760us - FirstReadTime: 105.20ms - IOTimer: 0ns - InvertedIndexFilterTime: 847ns - 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: 97.830us - OutputIndexResultColumnTimer: 26.978us - 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=7):(Active: 354.930ms, % non-child: 0.00%) - CoreChangeTimes: 9 - ExecuteTime: 354.487ms - CloseTime: 107.758us - GetBlockTime: 5.396ms - OpenTime: 82.659us - PrepareTime: 243.130us - SinkTime: 346.614ms - GetBlockCounter: 836 - NumBlockedBySinkTimes: 2 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 14 - NumScheduleTimes: 15 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 318.938ms - WaitBfTime: 989.292ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 208.746ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 812 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 12.88 MB - CloseTime: 19.236us - CompressTime: 0ns - ExecTime: 346.447ms - InputRows: 3.39021M (3390210) - LocalBytesSent: 107.95 MB - LocalSendTime: 17.100ms - LocalSentRows: 2.825184M (2825184) - MemoryUsage: - PeakMemoryUsage: 172.91 MB - MergeBlockTime: 0ns - OpenTime: 82.627us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s241ms - RowsProduced: 3.39021M (3390210) - RpcAvgTime: 16.319ms - RpcCount: 135 - RpcMaxTime: 1s101ms - RpcMinTime: 1s101ms - RpcSumTime: 2s203ms - SerializeBatchTime: 18.51ms - SplitBlockDistributeByChannelTime: 217.225ms - SplitBlockHashComputeTime: 44.758ms - UncompressedRowBatchSize: 22.89 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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.533us - BlocksProduced: 836 - CloseTime: 84.400us - ExecTime: 344.654ms - KeyRangesNum: 0 - MaxScannerThreadNum: 2 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 2 - OpenTime: 140.105us - ProcessConjunctTime: 18.746us - ProjectionTime: 0ns - RowsProduced: 3.39021M (3390210) - RowsRead: 3.39021M (3390210) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 288.634ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 339.315ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [265.011ms, 319.880ms, ] - PerScannerRowsRead: [2.10M, 1.29M, ] - PerScannerWaitTime: [146.297ms, 142.337ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 571.436ms - MemoryUsage: - FreeBlocks: 20.02 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.807ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 44.773us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 403.401ms - ScannerCtxSchedTime: 288.603ms - ScannerFilterTime: 10.887ms - ScannerGetBlockTime: 573.595ms - ScannerInitTime: 35.999us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 15 SegmentIterator: - BitmapIndexFilterTimer: 3.212us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 10.893us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 13.681us - BlockInitTime: 162.251us - BlockLoadTime: 573.591ms - BlocksLoad: 838 - CachedPagesNum: 842 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 4.18K (4180) - FirstReadSeekTime: 2.21ms - FirstReadTime: 567.334ms - IOTimer: 0ns - InvertedIndexFilterTime: 3.326us - 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: 358.581us - OutputIndexResultColumnTimer: 143.328us - 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=8):(Active: 531.380ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 530.951ms - CloseTime: 146.598us - GetBlockTime: 7.1ms - OpenTime: 100.297us - PrepareTime: 173.749us - SinkTime: 520.354ms - GetBlockCounter: 1.227K (1227) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 13 - NumScheduleTimes: 16 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 469.388ms - WaitBfTime: 989.373ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 207.694ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.187K (1187) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 20.17 MB - CloseTime: 17.469us - CompressTime: 0ns - ExecTime: 520.56ms - InputRows: 4.97661M (4976610) - LocalBytesSent: 159.32 MB - LocalSendTime: 11.928ms - LocalSentRows: 4.147055M (4147055) - MemoryUsage: - PeakMemoryUsage: 240.60 MB - MergeBlockTime: 0ns - OpenTime: 74.272us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s640ms - RowsProduced: 4.97661M (4976610) - RpcAvgTime: 11.382ms - RpcCount: 198 - RpcMaxTime: 1s128ms - RpcMinTime: 1s125ms - RpcSumTime: 2s253ms - SerializeBatchTime: 45.859ms - SplitBlockDistributeByChannelTime: 323.285ms - SplitBlockHashComputeTime: 64.759ms - UncompressedRowBatchSize: 33.78 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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: 1.21us - BlocksProduced: 1.227K (1227) - CloseTime: 125.95us - ExecTime: 207.980ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 162.842us - ProcessConjunctTime: 23.646us - ProjectionTime: 0ns - RowsProduced: 4.97661M (4976610) - RowsRead: 4.97661M (4976610) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 431.942ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 201.105ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [311.326ms, 264.907ms, 115.757ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 782.31K, ] - PerScannerWaitTime: [144.154ms, 142.935ms, 144.852ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 672.982ms - MemoryUsage: - FreeBlocks: 30.38 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 2.586ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 63.813us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 558.342ms - ScannerCtxSchedTime: 431.913ms - ScannerFilterTime: 13.433ms - ScannerGetBlockTime: 678.5ms - ScannerInitTime: 57.500us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 22 SegmentIterator: - BitmapIndexFilterTimer: 3.518us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 14.768us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 32 - BlockInitSeekTime: 46.499us - BlockInitTime: 239.170us - BlockLoadTime: 676.219ms - 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.337ms - FirstReadTime: 667.853ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.296us - 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: 455.984us - OutputIndexResultColumnTimer: 171.228us - 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=9):(Active: 498.252ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 497.654ms - CloseTime: 192.436us - GetBlockTime: 7.13ms - OpenTime: 185.705us - PrepareTime: 206.643us - SinkTime: 487.196ms - GetBlockCounter: 1.228K (1228) - NumBlockedBySinkTimes: 3 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 14 - NumScheduleTimes: 17 - NumYieldTimes: 2 - PendingFinishTimes: 1 - TaskCpuTime: 436.850ms - WaitBfTime: 980.713ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 248.626ms DATA_STREAM_SINK_OPERATOR (id=13,dst_id=13): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 1.187K (1187) - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 20.17 MB - CloseTime: 13.383us - CompressTime: 0ns - ExecTime: 486.915ms - InputRows: 4.976137M (4976137) - LocalBytesSent: 159.31 MB - LocalSendTime: 11.421ms - LocalSentRows: 4.14666M (4146660) - MemoryUsage: - PeakMemoryUsage: 241.63 MB - MergeBlockTime: 0ns - OpenTime: 75.11us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s638ms - RowsProduced: 4.976137M (4976137) - RpcAvgTime: 13.120ms - RpcCount: 198 - RpcMaxTime: 1s433ms - RpcMinTime: 1s164ms - RpcSumTime: 2s597ms - SerializeBatchTime: 24.754ms - SplitBlockDistributeByChannelTime: 316.74ms - SplitBlockHashComputeTime: 84.615ms - UncompressedRowBatchSize: 33.77 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 8.552ms - WaitForLocalExchangeBuffer1: 219.369ms - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 15s602ms - WaitForLocalExchangeBuffer6: 0ns - WaitForLocalExchangeBuffer7: 0ns - WaitForLocalExchangeBuffer8: 0ns - 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: 2.700us - BlocksProduced: 1.228K (1228) - CloseTime: 175.612us - ExecTime: 241.479ms - KeyRangesNum: 0 - MaxScannerThreadNum: 3 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 3 - OpenTime: 271.656us - ProcessConjunctTime: 33.843us - ProjectionTime: 0ns - RowsProduced: 4.976137M (4976137) - RowsRead: 4.976137M (4976137) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 373.764ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 234.418ms - 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.14528M (4145280) 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.07264M (2072640) VScanner: - ReadColumns: [CUS_ID, FANS_FLAG, GZ_DATE, QXGZ_DATE, UNIONID] - PerScannerRunningTime: [295.750ms, 327.670ms, 203.955ms, ] - PerScannerRowsRead: [2.10M, 2.10M, 781.83K, ] - PerScannerWaitTime: [131.190ms, 121.623ms, 120.951ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 802.284ms - MemoryUsage: - FreeBlocks: 24.99 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 3.328ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 58.42us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 684.597ms - ScannerCtxSchedTime: 373.734ms - ScannerFilterTime: 17.230ms - ScannerGetBlockTime: 809.445ms - ScannerInitTime: 114.171us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 22 SegmentIterator: - BitmapIndexFilterTimer: 5.147us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 25.39us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 70 - BlockInitSeekTime: 92.550us - BlockInitTime: 452.334us - BlockLoadTime: 807.855ms - BlocksLoad: 1.236K (1236) - CachedPagesNum: 1.331K (1331) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 6.14K (6140) - FirstReadSeekTime: 3.717ms - FirstReadTime: 797.158ms - IOTimer: 0ns - InvertedIndexFilterTime: 7.85us - 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: 573.672us - OutputIndexResultColumnTimer: 212.622us - 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.87, port:9060)): PipelineXTask (index=0):(Active: 91.896ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 91.493ms - CloseTime: 54.368us - GetBlockTime: 3.409ms - OpenTime: 86.494us - PrepareTime: 253.530us - SinkTime: 87.506ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 39.545ms - WaitBfTime: 1s49ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 233.699ms DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 206 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.06 MB - CloseTime: 16.958us - CompressTime: 0ns - ExecTime: 87.529ms - InputRows: 835.868K (835868) - LocalBytesSent: 9.30 MB - LocalSendTime: 1.61ms - LocalSentRows: 696.783K (696783) - MemoryUsage: - PeakMemoryUsage: 17.22 MB - MergeBlockTime: 0ns - OpenTime: 67.644us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s691ms - RowsProduced: 835.868K (835868) - RpcAvgTime: 171.509ms - RpcCount: 34 - RpcMaxTime: 2s918ms - RpcMinTime: 2s912ms - RpcSumTime: 5s831ms - SerializeBatchTime: 1.534ms - SplitBlockDistributeByChannelTime: 27.372ms - SplitBlockHashComputeTime: 50.989ms - UncompressedRowBatchSize: 1.98 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 2.811us - BlocksProduced: 206 - CloseTime: 33.672us - ExecTime: 117.644ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 230.240us - ProcessConjunctTime: 23.610us - ProjectionTime: 0ns - RowsProduced: 835.868K (835868) - RowsRead: 835.868K (835868) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 93.514ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 114.32ms - 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: [15.673ms, ] - PerScannerRowsRead: [835.87K, ] - PerScannerWaitTime: [93.514ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 15.148ms - MemoryUsage: - FreeBlocks: 10.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 253.349us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 10.280us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.756ms - ScannerCtxSchedTime: 93.511ms - ScannerFilterTime: 99.282us - ScannerGetBlockTime: 15.496ms - ScannerInitTime: 45.62us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 510ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 2.92us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 10.624us - BlockInitTime: 54.701us - BlockLoadTime: 15.208ms - BlocksLoad: 207 - CachedPagesNum: 107 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 412 - FirstReadSeekTime: 79.994us - FirstReadTime: 14.467ms - IOTimer: 0ns - InvertedIndexFilterTime: 694ns - 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: 45.678us - OutputIndexResultColumnTimer: 27.129us - 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: 51.256ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 50.811ms - CloseTime: 54.567us - GetBlockTime: 1.150ms - OpenTime: 79.995us - PrepareTime: 303.92us - SinkTime: 49.228ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 36.480ms - WaitBfTime: 1s60ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 127.69ms DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 206 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.06 MB - CloseTime: 15.757us - CompressTime: 0ns - ExecTime: 49.252ms - InputRows: 834.234K (834234) - LocalBytesSent: 9.28 MB - LocalSendTime: 734.36us - LocalSentRows: 694.776K (694776) - MemoryUsage: - PeakMemoryUsage: 16.51 MB - MergeBlockTime: 0ns - OpenTime: 57.712us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s812ms - RowsProduced: 834.234K (834234) - RpcAvgTime: 168.974ms - RpcCount: 34 - RpcMaxTime: 2s878ms - RpcMinTime: 2s866ms - RpcSumTime: 5s745ms - SerializeBatchTime: 1.720ms - SplitBlockDistributeByChannelTime: 32.262ms - SplitBlockHashComputeTime: 9.386ms - UncompressedRowBatchSize: 1.98 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 3.188us - BlocksProduced: 206 - CloseTime: 34.728us - ExecTime: 223.473ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 276.864us - ProcessConjunctTime: 24.999us - ProjectionTime: 0ns - RowsProduced: 834.234K (834234) - RowsRead: 834.234K (834234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 90.480ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 222.56ms - 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: [126.933ms, ] - PerScannerRowsRead: [834.23K, ] - PerScannerWaitTime: [90.480ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 126.252ms - MemoryUsage: - FreeBlocks: 10.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 312.481us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 8.693us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.721ms - ScannerCtxSchedTime: 90.476ms - ScannerFilterTime: 149.581us - ScannerGetBlockTime: 126.699ms - ScannerInitTime: 29.910us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 593ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 3.77us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 9 - BlockInitSeekTime: 8.811us - BlockInitTime: 48.885us - BlockLoadTime: 126.371ms - BlocksLoad: 207 - CachedPagesNum: 106 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 412 - FirstReadSeekTime: 63.130ms - FirstReadTime: 125.331ms - IOTimer: 0ns - InvertedIndexFilterTime: 739ns - 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: 54.95us - OutputIndexResultColumnTimer: 30.20us - 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 Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 123.188ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 122.737ms - CloseTime: 123.240us - GetBlockTime: 1.753ms - OpenTime: 93.951us - PrepareTime: 206.812us - SinkTime: 120.380ms - GetBlockCounter: 206 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 7 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 52.760ms - WaitBfTime: 916.697ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 118.826ms DATA_STREAM_SINK_OPERATOR (id=10,dst_id=10): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 214 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.29 MB - CloseTime: 34.97us - CompressTime: 0ns - ExecTime: 120.384ms - InputRows: 835.915K (835915) - LocalBytesSent: 1.86 MB - LocalSendTime: 339.395us - LocalSentRows: 139.578K (139578) - MemoryUsage: - PeakMemoryUsage: 4.48 MB - MergeBlockTime: 0ns - OpenTime: 55.363us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11s721ms - RowsProduced: 835.915K (835915) - RpcAvgTime: 685.789ms - RpcCount: 170 - RpcMaxTime: 11s674ms - RpcMinTime: 11s640ms - RpcSumTime: 1m56s - SerializeBatchTime: 27.917ms - SplitBlockDistributeByChannelTime: 70.19ms - SplitBlockHashComputeTime: 12.607ms - UncompressedRowBatchSize: 9.90 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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.369us - BlocksProduced: 206 - CloseTime: 83.624us - ExecTime: 153.573ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 162.726us - ProcessConjunctTime: 26.278us - ProjectionTime: 0ns - RowsProduced: 835.915K (835915) - RowsRead: 835.915K (835915) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 74.794ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 151.656ms - 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: [40.400ms, ] - PerScannerRowsRead: [835.91K, ] - PerScannerWaitTime: [74.794ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 39.696ms - MemoryUsage: - FreeBlocks: 10.01 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 338.272us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 19.914us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 24.257ms - ScannerCtxSchedTime: 74.789ms - ScannerFilterTime: 130.728us - ScannerGetBlockTime: 40.171ms - ScannerInitTime: 42.755us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - BitmapIndexFilterTimer: 437ns - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 1.809us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 8 - BlockInitSeekTime: 9.820us - BlockInitTime: 46.282us - BlockLoadTime: 39.827ms - BlocksLoad: 207 - CachedPagesNum: 107 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 412 - FirstReadSeekTime: 113.605us - FirstReadTime: 38.878ms - IOTimer: 0ns - InvertedIndexFilterTime: 560ns - 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.467us - OutputIndexResultColumnTimer: 24.677us - 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: 59.769ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 59.532ms - CloseTime: 62.518us - GetBlockTime: 17.605ms - OpenTime: 6.937us - PrepareTime: 153.619us - SinkTime: 40.932ms - GetBlockCounter: 147 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 56 - NumBlockedTimes: 58 - NumScheduleTimes: 59 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 59.552ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.336ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 45 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.62 MB - CloseTime: 20.130us - CompressTime: 0ns - ExecTime: 40.984ms - InputRows: 135.686K (135686) - LocalBytesSent: 1.10 MB - LocalSendTime: 76.446us - LocalSentRows: 16.237K (16237) - MemoryUsage: - PeakMemoryUsage: 6.41 MB - MergeBlockTime: 0ns - OpenTime: 79.276us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s551ms - RowsProduced: 135.686K (135686) - RpcAvgTime: 829.277ms - RpcCount: 31 - RpcMaxTime: 5s659ms - RpcMinTime: 2s59ms - RpcSumTime: 25s707ms - SerializeBatchTime: 16.12ms - SplitBlockDistributeByChannelTime: 17.771ms - SplitBlockHashComputeTime: 2.684ms - UncompressedRowBatchSize: 8.32 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 37.967us - ExecTime: 16.765ms - InitProbeSideTime: 3.105ms - JoinFilterTimer: 13.980us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 25.172us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 39.296us - ProbeFindNextTime: 0ns - ProbeRows: 135.686K (135686) - ProbeTime: 13.607ms - ProbeWhenBuildSideOutputTime: 2.303ms - ProbeWhenProbeSideOutputTime: 2.700ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.198ms - ProjectionTime: 2.747ms - RowsProduced: 135.686K (135686) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 77 - CloseTime: 0ns - ExecTime: 448.235us - GetBlockFailedTime: 57 - MemoryUsage: - PeakMemoryUsage: 1.30 MB - OpenTime: 714ns - ProjectionTime: 0ns - RowsProduced: 135.686K (135686) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 6s493ms PipelineXTask (index=4):(Active: 79.416ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 79.214ms - CloseTime: 73.810us - GetBlockTime: 20.801ms - OpenTime: 3.740us - PrepareTime: 110.897us - SinkTime: 57.605ms - GetBlockCounter: 130 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 45 - NumBlockedTimes: 47 - NumScheduleTimes: 48 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 79.210ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 47.312ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 58 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.83 MB - CloseTime: 31.913us - CompressTime: 0ns - ExecTime: 57.636ms - InputRows: 170.708K (170708) - LocalBytesSent: 1.25 MB - LocalSendTime: 164.635us - LocalSentRows: 18.458K (18458) - MemoryUsage: - PeakMemoryUsage: 7.49 MB - MergeBlockTime: 0ns - OpenTime: 61.677us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s918ms - RowsProduced: 170.708K (170708) - RpcAvgTime: 736.303ms - RpcCount: 42 - RpcMaxTime: 6s1ms - RpcMinTime: 2s765ms - RpcSumTime: 30s924ms - SerializeBatchTime: 28.298ms - SplitBlockDistributeByChannelTime: 19.642ms - SplitBlockHashComputeTime: 3.896ms - UncompressedRowBatchSize: 10.60 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 35.334us - ExecTime: 19.890ms - InitProbeSideTime: 3.802ms - JoinFilterTimer: 15.895us - MemoryUsage: - PeakMemoryUsage: 120.00 KB - ProbeKeyArena: 120.00 KB - OpenTime: 22.711us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 39.965us - ProbeFindNextTime: 0ns - ProbeRows: 170.708K (170708) - ProbeTime: 16.675ms - ProbeWhenBuildSideOutputTime: 3.51ms - ProbeWhenProbeSideOutputTime: 3.182ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.208ms - ProjectionTime: 2.824ms - RowsProduced: 170.708K (170708) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 77 - CloseTime: 0ns - ExecTime: 459.912us - GetBlockFailedTime: 45 - MemoryUsage: - PeakMemoryUsage: 1.95 MB - OpenTime: 576ns - ProjectionTime: 0ns - RowsProduced: 170.708K (170708) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 6s469ms PipelineXTask (index=8):(Active: 68.468ms, % non-child: 0.00%) - CoreChangeTimes: 19 - ExecuteTime: 68.235ms - CloseTime: 95.184us - GetBlockTime: 18.555ms - OpenTime: 3.804us - PrepareTime: 114.270us - SinkTime: 48.895ms - GetBlockCounter: 135 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 48 - NumBlockedTimes: 50 - NumScheduleTimes: 51 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 68.234ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.283ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 47 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.55 MB - CloseTime: 19.797us - CompressTime: 0ns - ExecTime: 48.930ms - InputRows: 161.236K (161236) - LocalBytesSent: 1.05 MB - LocalSendTime: 71.957us - LocalSentRows: 15.477K (15477) - MemoryUsage: - PeakMemoryUsage: 6.81 MB - MergeBlockTime: 0ns - OpenTime: 60.882us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s946ms - RowsProduced: 161.236K (161236) - RpcAvgTime: 754.56ms - RpcCount: 33 - RpcMaxTime: 6s33ms - RpcMinTime: 2s75ms - RpcSumTime: 24s883ms - SerializeBatchTime: 22.511ms - SplitBlockDistributeByChannelTime: 17.959ms - SplitBlockHashComputeTime: 3.534ms - UncompressedRowBatchSize: 10.15 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 69.781us - ExecTime: 17.839ms - InitProbeSideTime: 3.233ms - JoinFilterTimer: 13.63us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 11.391us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 37.128us - ProbeFindNextTime: 0ns - ProbeRows: 161.236K (161236) - ProbeTime: 14.717ms - ProbeWhenBuildSideOutputTime: 2.578ms - ProbeWhenProbeSideOutputTime: 3.48ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.505ms - ProjectionTime: 2.717ms - RowsProduced: 161.236K (161236) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 77 - CloseTime: 0ns - ExecTime: 393.412us - GetBlockFailedTime: 48 - MemoryUsage: - PeakMemoryUsage: 2.27 MB - OpenTime: 641ns - ProjectionTime: 0ns - RowsProduced: 161.236K (161236) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 6s481ms PipelineXTask (index=12):(Active: 70.495ms, % non-child: 0.00%) - CoreChangeTimes: 15 - ExecuteTime: 70.292ms - CloseTime: 72.459us - GetBlockTime: 19.228ms - OpenTime: 6.930us - PrepareTime: 111.691us - SinkTime: 50.253ms - GetBlockCounter: 136 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 48 - NumBlockedTimes: 50 - NumScheduleTimes: 51 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 70.288ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.61ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 47 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.22 MB - CloseTime: 24.231us - CompressTime: 0ns - ExecTime: 50.285ms - InputRows: 152.008K (152008) - LocalBytesSent: 1.07 MB - LocalSendTime: 141.165us - LocalSentRows: 15.789K (15789) - MemoryUsage: - PeakMemoryUsage: 6.52 MB - MergeBlockTime: 0ns - OpenTime: 65.583us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s982ms - RowsProduced: 152.008K (152008) - RpcAvgTime: 755.262ms - RpcCount: 33 - RpcMaxTime: 6s2ms - RpcMinTime: 2s79ms - RpcSumTime: 24s923ms - SerializeBatchTime: 22.691ms - SplitBlockDistributeByChannelTime: 18.652ms - SplitBlockHashComputeTime: 3.288ms - UncompressedRowBatchSize: 9.48 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 41.950us - ExecTime: 18.461ms - InitProbeSideTime: 3.227ms - JoinFilterTimer: 20.891us - MemoryUsage: - PeakMemoryUsage: 96.00 KB - ProbeKeyArena: 96.00 KB - OpenTime: 11.117us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 36.982us - ProbeFindNextTime: 0ns - ProbeRows: 152.008K (152008) - ProbeTime: 15.579ms - ProbeWhenBuildSideOutputTime: 2.923ms - ProbeWhenProbeSideOutputTime: 3.228ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.709ms - ProjectionTime: 2.533ms - RowsProduced: 152.008K (152008) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 77 - CloseTime: 0ns - ExecTime: 405.194us - GetBlockFailedTime: 48 - MemoryUsage: - PeakMemoryUsage: 1.66 MB - OpenTime: 688ns - ProjectionTime: 0ns - RowsProduced: 152.008K (152008) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 6s481ms PipelineXTask (index=16):(Active: 83.741ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 83.521ms - CloseTime: 49.926us - GetBlockTime: 23.243ms - OpenTime: 6.627us - PrepareTime: 148.181us - SinkTime: 59.406ms - GetBlockCounter: 133 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 44 - NumBlockedTimes: 46 - NumScheduleTimes: 47 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 83.534ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.634ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 58 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.34 MB - CloseTime: 19.331us - CompressTime: 0ns - ExecTime: 59.429ms - InputRows: 185.954K (185954) - LocalBytesSent: 1.42 MB - LocalSendTime: 123.309us - LocalSentRows: 20.981K (20981) - MemoryUsage: - PeakMemoryUsage: 8.03 MB - MergeBlockTime: 0ns - OpenTime: 53.117us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 6s8ms - RowsProduced: 185.954K (185954) - RpcAvgTime: 737.590ms - RpcCount: 42 - RpcMaxTime: 6s48ms - RpcMinTime: 2s768ms - RpcSumTime: 30s978ms - SerializeBatchTime: 28.41ms - SplitBlockDistributeByChannelTime: 21.646ms - SplitBlockHashComputeTime: 4.52ms - UncompressedRowBatchSize: 11.49 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 24.421us - ExecTime: 22.360ms - InitProbeSideTime: 3.975ms - JoinFilterTimer: 16.649us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 26.917us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 47.993us - ProbeFindNextTime: 0ns - ProbeRows: 185.954K (185954) - ProbeTime: 18.900ms - ProbeWhenBuildSideOutputTime: 3.526ms - ProbeWhenProbeSideOutputTime: 3.955ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.680ms - ProjectionTime: 3.81ms - RowsProduced: 185.954K (185954) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 77 - CloseTime: 0ns - ExecTime: 454.972us - GetBlockFailedTime: 44 - MemoryUsage: - PeakMemoryUsage: 1.95 MB - OpenTime: 708ns - ProjectionTime: 0ns - RowsProduced: 185.954K (185954) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 6s468ms PipelineXTask (index=20):(Active: 61.194ms, % non-child: 0.00%) - CoreChangeTimes: 12 - ExecuteTime: 60.985ms - CloseTime: 66.258us - GetBlockTime: 16.988ms - OpenTime: 4.213us - PrepareTime: 127.3us - SinkTime: 43.146ms - GetBlockCounter: 129 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 50 - NumBlockedTimes: 52 - NumScheduleTimes: 53 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 60.965ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.859ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.46 MB - CloseTime: 24.898us - CompressTime: 0ns - ExecTime: 43.170ms - InputRows: 130.519K (130519) - LocalBytesSent: 1.01 MB - LocalSendTime: 97.987us - LocalSentRows: 14.924K (14924) - MemoryUsage: - PeakMemoryUsage: 6.75 MB - MergeBlockTime: 0ns - OpenTime: 71.368us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s540ms - RowsProduced: 130.519K (130519) - RpcAvgTime: 847.952ms - RpcCount: 29 - RpcMaxTime: 5s653ms - RpcMinTime: 2s88ms - RpcSumTime: 24s590ms - SerializeBatchTime: 16.933ms - SplitBlockDistributeByChannelTime: 18.182ms - SplitBlockHashComputeTime: 2.652ms - UncompressedRowBatchSize: 8.05 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 36.296us - ExecTime: 16.212ms - InitProbeSideTime: 3.222ms - JoinFilterTimer: 14.55us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 28.892us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.360us - ProbeFindNextTime: 0ns - ProbeRows: 130.519K (130519) - ProbeTime: 13.399ms - ProbeWhenBuildSideOutputTime: 2.531ms - ProbeWhenProbeSideOutputTime: 2.615ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.935ms - ProjectionTime: 2.414ms - RowsProduced: 130.519K (130519) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 77 - CloseTime: 0ns - ExecTime: 408.468us - GetBlockFailedTime: 50 - MemoryUsage: - PeakMemoryUsage: 1.95 MB - OpenTime: 616ns - ProjectionTime: 0ns - RowsProduced: 130.519K (130519) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 6s490ms PipelineXTask (index=24):(Active: 74.571ms, % non-child: 0.00%) - CoreChangeTimes: 18 - ExecuteTime: 74.323ms - CloseTime: 58.701us - GetBlockTime: 20.939ms - OpenTime: 8.694us - PrepareTime: 163.597us - SinkTime: 52.660ms - GetBlockCounter: 130 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 43 - NumBlockedTimes: 45 - NumScheduleTimes: 46 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 74.381ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.530ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 62 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 7.19 MB - CloseTime: 19.190us - CompressTime: 0ns - ExecTime: 52.716ms - InputRows: 209.42K (209420) - LocalBytesSent: 1.53 MB - LocalSendTime: 109.973us - LocalSentRows: 22.641K (22641) - MemoryUsage: - PeakMemoryUsage: 7.75 MB - MergeBlockTime: 0ns - OpenTime: 94.87us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 7s462ms - RowsProduced: 209.42K (209420) - RpcAvgTime: 702.499ms - RpcCount: 46 - RpcMaxTime: 7s408ms - RpcMinTime: 2s764ms - RpcSumTime: 32s314ms - SerializeBatchTime: 24.562ms - SplitBlockDistributeByChannelTime: 19.33ms - SplitBlockHashComputeTime: 3.825ms - UncompressedRowBatchSize: 13.00 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForRpcBufferQueue: 0ns HASH_JOIN_OPERATOR (id=7): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 33.172us - ExecTime: 20.212ms - InitProbeSideTime: 3.630ms - JoinFilterTimer: 13.531us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.306us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 37.99us - ProbeFindNextTime: 0ns - ProbeRows: 209.42K (209420) - ProbeTime: 16.999ms - ProbeWhenBuildSideOutputTime: 2.885ms - ProbeWhenProbeSideOutputTime: 3.778ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.359ms - ProjectionTime: 2.890ms - RowsProduced: 209.42K (209420) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 77 - CloseTime: 0ns - ExecTime: 423.114us - GetBlockFailedTime: 43 - MemoryUsage: - PeakMemoryUsage: 1.30 MB - OpenTime: 643ns - ProjectionTime: 0ns - RowsProduced: 209.42K (209420) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 6s475ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=1):(Active: 111.463ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 111.377ms - CloseTime: 20.148us - GetBlockTime: 110.223ms - OpenTime: 4.536us - PrepareTime: 56.613us - SinkTime: 811.298us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 111.413ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.589ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 756.57us - InputRows: 163.079K (163079) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.161us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 12.601us - ExecTime: 109.124ms - InitProbeSideTime: 10.354ms - JoinFilterTimer: 14.119us - MemoryUsage: - PeakMemoryUsage: 336.00 KB - ProbeKeyArena: 336.00 KB - OpenTime: 15.859us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 18.392us - ProbeFindNextTime: 0ns - ProbeRows: 163.079K (163079) - ProbeTime: 104.956ms - ProbeWhenBuildSideOutputTime: 6.721ms - ProbeWhenProbeSideOutputTime: 4.493ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 80.686ms - ProjectionTime: 3.952ms - RowsProduced: 163.079K (163079) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s258ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 62 - BytesReceived: 2.11 MB - CloseTime: 4.634us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 82.217ms - ExecTime: 977.766us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.96 MB - MemoryUsage: - Blocks: 16.30 MB - PeakMemoryUsage: 9.96 MB - OpenTime: 15.882us - ProjectionTime: 0ns - RowsProduced: 163.079K (163079) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 148.233ms PipelineXTask (index=5):(Active: 87.128ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 87.25ms - CloseTime: 38.560us - GetBlockTime: 86.148ms - OpenTime: 2.760us - PrepareTime: 56.223us - SinkTime: 658.447us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.67ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.19ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 625.544us - InputRows: 163.538K (163538) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.108us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 29.881us - ExecTime: 85.323ms - InitProbeSideTime: 8.218ms - JoinFilterTimer: 25.229us - MemoryUsage: - PeakMemoryUsage: 336.00 KB - ProbeKeyArena: 336.00 KB - OpenTime: 11.250us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.24us - ProbeFindNextTime: 0ns - ProbeRows: 163.538K (163538) - ProbeTime: 81.808ms - ProbeWhenBuildSideOutputTime: 5.705ms - ProbeWhenProbeSideOutputTime: 3.825ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 62.188ms - ProjectionTime: 3.339ms - RowsProduced: 163.538K (163538) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s296ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 62 - BytesReceived: 2.12 MB - CloseTime: 6.173us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.441ms - ExecTime: 752.931us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.84 MB - MemoryUsage: - Blocks: 16.20 MB - PeakMemoryUsage: 9.84 MB - OpenTime: 15.927us - ProjectionTime: 0ns - RowsProduced: 163.538K (163538) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 143.645ms PipelineXTask (index=9):(Active: 80.437ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 80.344ms - CloseTime: 22.315us - GetBlockTime: 79.367ms - OpenTime: 3.457us - PrepareTime: 61.482us - SinkTime: 774.853us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.406ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.634ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 727.143us - InputRows: 163.935K (163935) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.112us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 11.860us - ExecTime: 78.490ms - InitProbeSideTime: 8.221ms - JoinFilterTimer: 10.422us - MemoryUsage: - PeakMemoryUsage: 336.00 KB - ProbeKeyArena: 336.00 KB - OpenTime: 8.505us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 16.336us - ProbeFindNextTime: 0ns - ProbeRows: 163.935K (163935) - ProbeTime: 74.908ms - ProbeWhenBuildSideOutputTime: 5.549ms - ProbeWhenProbeSideOutputTime: 4.254ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 54.926ms - ProjectionTime: 3.437ms - RowsProduced: 163.935K (163935) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s274ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 62 - BytesReceived: 2.12 MB - CloseTime: 7.401us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.177ms - ExecTime: 779.428us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.68 MB - MemoryUsage: - Blocks: 16.29 MB - PeakMemoryUsage: 9.68 MB - OpenTime: 15.198us - ProjectionTime: 0ns - RowsProduced: 163.935K (163935) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 141.989ms PipelineXTask (index=13):(Active: 106.675ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 106.542ms - CloseTime: 36.322us - GetBlockTime: 105.153ms - OpenTime: 7.308us - PrepareTime: 83.753us - SinkTime: 1.86ms - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 105.251ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.258ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.34ms - InputRows: 163.819K (163819) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 3.755us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 21.513us - ExecTime: 104.199ms - InitProbeSideTime: 11.892ms - JoinFilterTimer: 12.163us - MemoryUsage: - PeakMemoryUsage: 312.00 KB - ProbeKeyArena: 312.00 KB - OpenTime: 30.772us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 41.113us - ProbeFindNextTime: 0ns - ProbeRows: 163.819K (163819) - ProbeTime: 100.243ms - ProbeWhenBuildSideOutputTime: 6.552ms - ProbeWhenProbeSideOutputTime: 4.549ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 74.848ms - ProjectionTime: 3.699ms - RowsProduced: 163.819K (163819) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s242ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 62 - BytesReceived: 2.12 MB - CloseTime: 11.126us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.331ms - ExecTime: 856.539us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.09 MB - MemoryUsage: - Blocks: 16.48 MB - PeakMemoryUsage: 10.09 MB - OpenTime: 25.721us - ProjectionTime: 0ns - RowsProduced: 163.819K (163819) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 141.492ms PipelineXTask (index=17):(Active: 90.162ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 90.33ms - CloseTime: 52.447us - GetBlockTime: 88.983ms - OpenTime: 4.170us - PrepareTime: 67.568us - SinkTime: 817.956us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 90.70ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.975ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 778.553us - InputRows: 163.79K (163790) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.181us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 9.452us - ExecTime: 88.34ms - InitProbeSideTime: 8.312ms - JoinFilterTimer: 12.339us - MemoryUsage: - PeakMemoryUsage: 324.00 KB - ProbeKeyArena: 324.00 KB - OpenTime: 11.478us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 14.487us - ProbeFindNextTime: 0ns - ProbeRows: 163.79K (163790) - ProbeTime: 84.381ms - ProbeWhenBuildSideOutputTime: 5.186ms - ProbeWhenProbeSideOutputTime: 3.570ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 65.283ms - ProjectionTime: 3.474ms - RowsProduced: 163.79K (163790) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s292ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 62 - BytesReceived: 2.12 MB - CloseTime: 40.283us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.414ms - ExecTime: 867.243us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.09 MB - MemoryUsage: - Blocks: 16.39 MB - PeakMemoryUsage: 10.09 MB - OpenTime: 12.37us - ProjectionTime: 0ns - RowsProduced: 163.79K (163790) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 142.902ms PipelineXTask (index=21):(Active: 84.93ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 83.898ms - CloseTime: 24.357us - GetBlockTime: 82.852ms - OpenTime: 3.343us - PrepareTime: 161.883us - SinkTime: 801.807us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.47ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.213ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 765.140us - InputRows: 163.643K (163643) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.269us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 12.918us - ExecTime: 81.990ms - InitProbeSideTime: 7.396ms - JoinFilterTimer: 10.450us - MemoryUsage: - PeakMemoryUsage: 336.00 KB - ProbeKeyArena: 336.00 KB - OpenTime: 11.959us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.500us - ProbeFindNextTime: 0ns - ProbeRows: 163.643K (163643) - ProbeTime: 78.656ms - ProbeWhenBuildSideOutputTime: 5.207ms - ProbeWhenProbeSideOutputTime: 3.51ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 61.345ms - ProjectionTime: 3.178ms - RowsProduced: 163.643K (163643) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s323ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 62 - BytesReceived: 2.12 MB - CloseTime: 8.578us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.905ms - ExecTime: 801.80us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 10.00 MB - MemoryUsage: - Blocks: 16.54 MB - PeakMemoryUsage: 10.00 MB - OpenTime: 29.350us - ProjectionTime: 0ns - RowsProduced: 163.643K (163643) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 144.22ms PipelineXTask (index=25):(Active: 84.714ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 84.608ms - CloseTime: 30.755us - GetBlockTime: 83.381ms - OpenTime: 3.493us - PrepareTime: 66.775us - SinkTime: 974.108us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 84.634ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 911.717us LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 923.393us - InputRows: 163.727K (163727) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.85us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 17.773us - ExecTime: 82.485ms - InitProbeSideTime: 7.512ms - JoinFilterTimer: 11.443us - MemoryUsage: - PeakMemoryUsage: 336.00 KB - ProbeKeyArena: 336.00 KB - OpenTime: 11.801us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 15.244us - ProbeFindNextTime: 0ns - ProbeRows: 163.727K (163727) - ProbeTime: 78.544ms - ProbeWhenBuildSideOutputTime: 5.774ms - ProbeWhenProbeSideOutputTime: 3.939ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 59.253ms - ProjectionTime: 3.746ms - RowsProduced: 163.727K (163727) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 6s228ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 62 - BytesReceived: 2.12 MB - CloseTime: 9.812us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.623ms - ExecTime: 785.194us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 9.96 MB - MemoryUsage: - Blocks: 16.70 MB - PeakMemoryUsage: 9.96 MB - OpenTime: 18.318us - ProjectionTime: 0ns - RowsProduced: 163.727K (163727) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 147.324ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=2):(Active: 37.209ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 37.18ms - CloseTime: 13.169us - GetBlockTime: 9.80us - OpenTime: 2.591us - PrepareTime: 169.711us - SinkTime: 36.976ms - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 538.645us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.561ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.955us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 6.983us - BuildTableInsertTime: 25.725ms - BuildTableTime: 25.733ms - CloseTime: 0ns - ExecTime: 37.81ms - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 105.993us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 187.400us - RuntimeFilterComputeTime: 29.264us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=1): - BlocksProduced: 2 - BytesReceived: 944.00 B - CloseTime: 8.804us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.698us - ExecTime: 31.189us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 1.63 KB - PeakMemoryUsage: 0.00 - OpenTime: 14.539us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 12.613ms PipelineXTask (index=6):(Active: 99.38us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.573us - CloseTime: 5.893us - GetBlockTime: 0ns - OpenTime: 1.800us - PrepareTime: 57.659us - SinkTime: 12.358us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 86.138us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.224ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8201 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 29.891us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.670us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 50.63ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.616us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 25.516us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.235us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 91.2us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 24.16us - CloseTime: 3.864us - GetBlockTime: 0ns - OpenTime: 2.357us - PrepareTime: 55.226us - SinkTime: 8.574us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 80.377us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.162ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8201 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 32.683us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 24.84us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 50.196ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 2.593us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 15.256us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 11.915us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 111.694us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 36.796us - CloseTime: 8.143us - GetBlockTime: 0ns - OpenTime: 2.34us - PrepareTime: 59.493us - SinkTime: 19.833us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.720us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.168ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8201 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 45.375us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 25.688us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 51.151ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.743us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 21.750us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 15.384us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 103.911us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 27.661us - CloseTime: 5.786us - GetBlockTime: 0ns - OpenTime: 2.53us - PrepareTime: 62.969us - SinkTime: 11.174us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 91.269us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.111ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8201 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 40.29us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 29.100us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 50.173ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.114us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 13.438us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 8.631us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=22):(Active: 86.148us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.698us - CloseTime: 5.432us - GetBlockTime: 0ns - OpenTime: 1.727us - PrepareTime: 50.414us - SinkTime: 8.636us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 74.572us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.188ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8201 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 24.986us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 16.671us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 50.125ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.253us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 17.813us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.792us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=26):(Active: 115.178us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 45.618us - CloseTime: 7.324us - GetBlockTime: 0ns - OpenTime: 2.40us - PrepareTime: 54.984us - SinkTime: 23.591us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 96.417us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 744.69us HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8201 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 37.264us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.23us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 51.368ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 5.171us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 19.174us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.305us - 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: 174.14ms, % non-child: 0.00%) - CoreChangeTimes: 30 - ExecuteTime: 173.925ms - CloseTime: 16.6us - GetBlockTime: 3.282ms - OpenTime: 2.373us - PrepareTime: 38.688us - SinkTime: 168.882ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 158 - NumBlockedTimes: 160 - NumScheduleTimes: 160 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 151.977ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 255.825ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 178.249us - BuildRows: 694.767K (694767) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 78.316ms - BuildTableInsertTime: 89.182ms - BuildTableTime: 89.755ms - CloseTime: 0ns - ExecTime: 168.769ms - InputRows: 694.766K (694766) - MemoryUsage: - BuildBlocks: 30.48 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.12 MB - OpenTime: 7.229us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 291 - BytesReceived: 15.76 MB - CloseTime: 12.211us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.854ms - ExecTime: 3.15ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.55 MB - MemoryUsage: - Blocks: 928.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.429us - ProjectionTime: 0ns - RowsProduced: 694.766K (694766) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s987ms PipelineXTask (index=7):(Active: 292.447ms, % non-child: 0.00%) - CoreChangeTimes: 32 - ExecuteTime: 292.368ms - CloseTime: 14.698us - GetBlockTime: 100.39ms - OpenTime: 1.974us - PrepareTime: 39.610us - SinkTime: 190.516ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 161 - NumBlockedTimes: 163 - NumScheduleTimes: 164 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 177.967ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 155.766ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 148.518us - BuildRows: 694.446K (694446) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 91.698ms - BuildTableInsertTime: 96.667ms - BuildTableTime: 98.127ms - CloseTime: 0ns - ExecTime: 190.402ms - InputRows: 694.445K (694445) - MemoryUsage: - BuildBlocks: 30.46 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.11 MB - OpenTime: 5.587us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 293 - BytesReceived: 15.76 MB - CloseTime: 11.200us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.708ms - ExecTime: 99.817ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.20 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 0.00 - OpenTime: 12.117us - ProjectionTime: 0ns - RowsProduced: 694.445K (694445) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s993ms PipelineXTask (index=11):(Active: 307.799ms, % non-child: 0.00%) - CoreChangeTimes: 32 - ExecuteTime: 307.626ms - CloseTime: 13.261us - GetBlockTime: 3.501ms - OpenTime: 2.490us - PrepareTime: 121.62us - SinkTime: 302.259ms - GetBlockCounter: 169 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 157 - NumBlockedTimes: 159 - NumScheduleTimes: 160 - NumYieldTimes: 1 - PendingFinishTimes: 0 - TaskCpuTime: 153.124ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 185.585ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 152.402us - BuildRows: 696.523K (696523) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 214.218ms - BuildTableInsertTime: 85.804ms - BuildTableTime: 87.225ms - CloseTime: 0ns - ExecTime: 302.182ms - InputRows: 696.522K (696522) - MemoryUsage: - BuildBlocks: 30.56 MB - BuildKeyArena: 32.00 MB - HashTable: 6.66 MB - PeakMemoryUsage: 69.20 MB - OpenTime: 75.683us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 294 - BytesReceived: 15.79 MB - CloseTime: 9.717us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 13.198ms - ExecTime: 3.271ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.62 MB - MemoryUsage: - Blocks: 2.34 MB - PeakMemoryUsage: 560.00 KB - OpenTime: 18.95us - ProjectionTime: 0ns - RowsProduced: 696.522K (696522) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s925ms PipelineXTask (index=15):(Active: 148.655ms, % non-child: 0.00%) - CoreChangeTimes: 37 - ExecuteTime: 148.565ms - CloseTime: 15.442us - GetBlockTime: 3.487ms - OpenTime: 2.196us - PrepareTime: 34.412us - SinkTime: 143.311ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 160 - NumBlockedTimes: 162 - NumScheduleTimes: 162 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 147.143ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 169.80ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 144.138us - BuildRows: 695.837K (695837) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 77.769ms - BuildTableInsertTime: 64.121ms - BuildTableTime: 64.831ms - CloseTime: 0ns - ExecTime: 143.180ms - InputRows: 695.836K (695836) - MemoryUsage: - BuildBlocks: 30.53 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.17 MB - OpenTime: 5.7us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 291 - BytesReceived: 15.79 MB - CloseTime: 11.482us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.706ms - ExecTime: 3.273ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.02 MB - MemoryUsage: - Blocks: 928.00 KB - PeakMemoryUsage: 0.00 - OpenTime: 11.306us - ProjectionTime: 0ns - RowsProduced: 695.836K (695836) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s70ms PipelineXTask (index=19):(Active: 202.137ms, % non-child: 0.00%) - CoreChangeTimes: 41 - ExecuteTime: 202.50ms - CloseTime: 15.53us - GetBlockTime: 3.208ms - OpenTime: 1.850us - PrepareTime: 30.588us - SinkTime: 197.122ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 162 - NumBlockedTimes: 164 - NumScheduleTimes: 164 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 162.538ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 324.768ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 154.714us - BuildRows: 694.146K (694146) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 110.510ms - BuildTableInsertTime: 84.439ms - BuildTableTime: 85.891ms - CloseTime: 0ns - ExecTime: 197.2ms - InputRows: 694.145K (694145) - MemoryUsage: - BuildBlocks: 30.45 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.09 MB - OpenTime: 5.846us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 290 - BytesReceived: 15.74 MB - CloseTime: 11.282us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 98.403ms - ExecTime: 2.988ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.41 MB - MemoryUsage: - Blocks: 560.00 KB - PeakMemoryUsage: 192.00 KB - OpenTime: 10.478us - ProjectionTime: 0ns - RowsProduced: 694.145K (694145) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s910ms PipelineXTask (index=23):(Active: 137.559ms, % non-child: 0.00%) - CoreChangeTimes: 37 - ExecuteTime: 137.460ms - CloseTime: 18.562us - GetBlockTime: 3.721ms - OpenTime: 2.577us - PrepareTime: 52.478us - SinkTime: 131.933ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 162 - NumBlockedTimes: 164 - NumScheduleTimes: 164 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 137.91ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 241.338ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 166.953us - BuildRows: 694.609K (694609) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 59.477ms - BuildTableInsertTime: 70.577ms - BuildTableTime: 71.765ms - CloseTime: 0ns - ExecTime: 131.826ms - InputRows: 694.608K (694608) - MemoryUsage: - BuildBlocks: 30.47 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.11 MB - OpenTime: 8.578us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 289 - BytesReceived: 15.75 MB - CloseTime: 12.605us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 12.671ms - ExecTime: 3.519ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.36 MB - MemoryUsage: - Blocks: 928.00 KB - PeakMemoryUsage: 192.00 KB - OpenTime: 23.402us - ProjectionTime: 0ns - RowsProduced: 694.608K (694608) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 6s92ms PipelineXTask (index=27):(Active: 169.347ms, % non-child: 0.00%) - CoreChangeTimes: 35 - ExecuteTime: 169.257ms - CloseTime: 16.666us - GetBlockTime: 3.69ms - OpenTime: 1.930us - PrepareTime: 38.887us - SinkTime: 163.806ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 158 - NumBlockedTimes: 160 - NumScheduleTimes: 160 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 123.87ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 299.643ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 150.851us - BuildRows: 695.249K (695249) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 114.592ms - BuildTableInsertTime: 47.811ms - BuildTableTime: 48.503ms - CloseTime: 0ns - ExecTime: 163.693ms - InputRows: 695.248K (695248) - MemoryUsage: - BuildBlocks: 30.50 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.14 MB - OpenTime: 5.870us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 290 - BytesReceived: 15.75 MB - CloseTime: 12.533us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 43.103ms - ExecTime: 2.878ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 13.71 MB - MemoryUsage: - Blocks: 1.44 MB - PeakMemoryUsage: 0.00 - OpenTime: 16.670us - ProjectionTime: 0ns - RowsProduced: 695.248K (695248) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 5s908ms Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 46.646ms, % non-child: 0.00%) - CoreChangeTimes: 16 - ExecuteTime: 46.395ms - CloseTime: 54.213us - GetBlockTime: 16.99ms - OpenTime: 2.913us - PrepareTime: 181.730us - SinkTime: 29.272ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 63 - NumBlockedTimes: 65 - NumScheduleTimes: 66 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 46.433ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.563ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 46 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 762.42 KB - CloseTime: 22.360us - CompressTime: 0ns - ExecTime: 29.348ms - InputRows: 152.657K (152657) - LocalBytesSent: 9.04 MB - LocalSendTime: 769.210us - LocalSentRows: 133.458K (133458) - MemoryUsage: - PeakMemoryUsage: 16.17 MB - MergeBlockTime: 0ns - OpenTime: 121.92us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.169ms - RowsProduced: 152.657K (152657) - RpcAvgTime: 3.943ms - RpcCount: 6 - RpcMaxTime: 12.44ms - RpcMinTime: 11.615ms - RpcSumTime: 23.660ms - SerializeBatchTime: 2.337ms - SplitBlockDistributeByChannelTime: 19.389ms - SplitBlockHashComputeTime: 2.873ms - UncompressedRowBatchSize: 1.34 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 80 - BuildOutputBlock: 0ns - CloseTime: 26.382us - ExecTime: 15.419ms - InitProbeSideTime: 2.908ms - JoinFilterTimer: 13.621us - MemoryUsage: - PeakMemoryUsage: 144.00 KB - ProbeKeyArena: 144.00 KB - OpenTime: 19.408us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 35.395us - ProbeFindNextTime: 0ns - ProbeRows: 152.657K (152657) - ProbeTime: 12.720ms - ProbeWhenBuildSideOutputTime: 2.86ms - ProbeWhenProbeSideOutputTime: 2.492ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.132ms - ProjectionTime: 2.330ms - RowsProduced: 152.657K (152657) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 80 - CloseTime: 0ns - ExecTime: 384.343us - GetBlockFailedTime: 64 - MemoryUsage: - PeakMemoryUsage: 664.00 KB - OpenTime: 940ns - ProjectionTime: 0ns - RowsProduced: 152.657K (152657) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 16s934ms PipelineXTask (index=4):(Active: 62.227ms, % non-child: 0.00%) - CoreChangeTimes: 11 - ExecuteTime: 62.22ms - CloseTime: 39.160us - GetBlockTime: 22.285ms - OpenTime: 3.173us - PrepareTime: 149.5us - SinkTime: 38.708ms - GetBlockCounter: 146 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 60 - NumBlockedTimes: 62 - NumScheduleTimes: 63 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 62.12ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.404ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 52 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 917.93 KB - CloseTime: 13.705us - CompressTime: 0ns - ExecTime: 38.728ms - InputRows: 207.575K (207575) - LocalBytesSent: 12.50 MB - LocalSendTime: 1.14ms - LocalSentRows: 184.585K (184585) - MemoryUsage: - PeakMemoryUsage: 21.34 MB - MergeBlockTime: 0ns - OpenTime: 62.265us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 28.12ms - RowsProduced: 207.575K (207575) - RpcAvgTime: 5.412ms - RpcCount: 6 - RpcMaxTime: 21.937ms - RpcMinTime: 10.540ms - RpcSumTime: 32.477ms - SerializeBatchTime: 3.951ms - SplitBlockDistributeByChannelTime: 24.221ms - SplitBlockHashComputeTime: 4.515ms - UncompressedRowBatchSize: 1.60 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 80 - BuildOutputBlock: 0ns - CloseTime: 20.516us - ExecTime: 21.561ms - InitProbeSideTime: 3.869ms - JoinFilterTimer: 14.972us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.739us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 42.32us - ProbeFindNextTime: 0ns - ProbeRows: 207.575K (207575) - ProbeTime: 18.131ms - ProbeWhenBuildSideOutputTime: 3.281ms - ProbeWhenProbeSideOutputTime: 3.721ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.908ms - ProjectionTime: 3.61ms - RowsProduced: 207.575K (207575) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 80 - CloseTime: 0ns - ExecTime: 382.896us - GetBlockFailedTime: 60 - MemoryUsage: - PeakMemoryUsage: 1.41 MB - OpenTime: 660ns - ProjectionTime: 0ns - RowsProduced: 207.575K (207575) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 16s919ms PipelineXTask (index=8):(Active: 36.72ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 35.911ms - CloseTime: 46.154us - GetBlockTime: 13.492ms - OpenTime: 3.297us - PrepareTime: 98.124us - SinkTime: 21.407ms - GetBlockCounter: 147 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 65 - NumBlockedTimes: 67 - NumScheduleTimes: 68 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 35.761ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 9.141ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 36 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 408.06 KB - CloseTime: 25.315us - CompressTime: 0ns - ExecTime: 21.447ms - InputRows: 108.157K (108157) - LocalBytesSent: 6.64 MB - LocalSendTime: 643.410us - LocalSentRows: 98.013K (98013) - MemoryUsage: - PeakMemoryUsage: 11.76 MB - MergeBlockTime: 0ns - OpenTime: 61.27us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 16.267ms - RowsProduced: 108.157K (108157) - RpcAvgTime: 4.744ms - RpcCount: 4 - RpcMaxTime: 10.824ms - RpcMinTime: 8.153ms - RpcSumTime: 18.977ms - SerializeBatchTime: 1.119ms - SplitBlockDistributeByChannelTime: 14.412ms - SplitBlockHashComputeTime: 2.405ms - UncompressedRowBatchSize: 723.59 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 75 - BuildOutputBlock: 0ns - CloseTime: 17.280us - ExecTime: 12.803ms - InitProbeSideTime: 2.360ms - JoinFilterTimer: 11.936us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 10.994us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.246us - ProbeFindNextTime: 0ns - ProbeRows: 108.157K (108157) - ProbeTime: 10.350ms - ProbeWhenBuildSideOutputTime: 1.813ms - ProbeWhenProbeSideOutputTime: 1.853ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 2.414ms - ProjectionTime: 2.133ms - RowsProduced: 108.157K (108157) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 75 - CloseTime: 0ns - ExecTime: 326.587us - GetBlockFailedTime: 65 - MemoryUsage: - PeakMemoryUsage: 664.00 KB - OpenTime: 626ns - ProjectionTime: 0ns - RowsProduced: 108.157K (108157) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 16s942ms PipelineXTask (index=12):(Active: 50.884ms, % non-child: 0.00%) - CoreChangeTimes: 14 - ExecuteTime: 50.679ms - CloseTime: 64.82us - GetBlockTime: 18.437ms - OpenTime: 3.440us - PrepareTime: 126.621us - SinkTime: 31.235ms - GetBlockCounter: 148 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 63 - NumBlockedTimes: 65 - NumScheduleTimes: 66 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 50.645ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 7.124ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 824.37 KB - CloseTime: 9.153us - CompressTime: 0ns - ExecTime: 31.267ms - InputRows: 200.033K (200033) - LocalBytesSent: 12.14 MB - LocalSendTime: 879.733us - LocalSentRows: 179.351K (179351) - MemoryUsage: - PeakMemoryUsage: 20.26 MB - MergeBlockTime: 0ns - OpenTime: 76.941us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.125ms - RowsProduced: 200.033K (200033) - RpcAvgTime: 5.614ms - RpcCount: 6 - RpcMaxTime: 20.373ms - RpcMinTime: 13.314ms - RpcSumTime: 33.688ms - SerializeBatchTime: 2.569ms - SplitBlockDistributeByChannelTime: 19.905ms - SplitBlockHashComputeTime: 3.812ms - UncompressedRowBatchSize: 1.44 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 75 - BuildOutputBlock: 0ns - CloseTime: 52.108us - ExecTime: 17.776ms - InitProbeSideTime: 3.241ms - JoinFilterTimer: 14.604us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 15.166us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 31.910us - ProbeFindNextTime: 0ns - ProbeRows: 200.033K (200033) - ProbeTime: 14.799ms - ProbeWhenBuildSideOutputTime: 2.574ms - ProbeWhenProbeSideOutputTime: 2.885ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 4.3ms - ProjectionTime: 2.566ms - RowsProduced: 200.033K (200033) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 75 - CloseTime: 0ns - ExecTime: 349.37us - GetBlockFailedTime: 63 - MemoryUsage: - PeakMemoryUsage: 664.00 KB - OpenTime: 687ns - ProjectionTime: 0ns - RowsProduced: 200.033K (200033) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 16s930ms PipelineXTask (index=16):(Active: 45.75ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 44.875ms - CloseTime: 37.13us - GetBlockTime: 17.484ms - OpenTime: 2.881us - PrepareTime: 145.800us - SinkTime: 26.297ms - GetBlockCounter: 149 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 67 - NumBlockedTimes: 69 - NumScheduleTimes: 70 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 44.861ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.357ms DATA_STREAM_SINK_OPERATOR (id=8,dst_id=8): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 38 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 646.93 KB - CloseTime: 12.895us - CompressTime: 0ns - ExecTime: 26.337ms - InputRows: 149.087K (149087) - LocalBytesSent: 9.00 MB - LocalSendTime: 514.648us - LocalSentRows: 132.856K (132856) - MemoryUsage: - PeakMemoryUsage: 14.61 MB - MergeBlockTime: 0ns - OpenTime: 95.104us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 29.251ms - RowsProduced: 149.087K (149087) - RpcAvgTime: 3.219ms - RpcCount: 4 - RpcMaxTime: 7.556ms - RpcMinTime: 5.319ms - RpcSumTime: 12.876ms - SerializeBatchTime: 1.907ms - SplitBlockDistributeByChannelTime: 16.800ms - SplitBlockHashComputeTime: 3.383ms - UncompressedRowBatchSize: 1.13 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 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: 75 - BuildOutputBlock: 0ns - CloseTime: 20.0us - ExecTime: 16.699ms - InitProbeSideTime: 3.77ms - JoinFilterTimer: 16.9us - MemoryUsage: - PeakMemoryUsage: 64.00 KB - ProbeKeyArena: 64.00 KB - OpenTime: 14.768us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 35.504us - ProbeFindNextTime: 0ns - ProbeRows: 149.087K (149087) - ProbeTime: 13.829ms - ProbeWhenBuildSideOutputTime: 2.310ms - ProbeWhenProbeSideOutputTime: 2.585ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 3.574ms - ProjectionTime: 2.464ms - RowsProduced: 149.087K (149087) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 0ns LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-5): - BlocksProduced: 75 - CloseTime: 0ns - ExecTime: 393.106us - GetBlockFailedTime: 67 - MemoryUsage: - PeakMemoryUsage: 664.00 KB - OpenTime: 2.333us - ProjectionTime: 0ns - RowsProduced: 149.087K (149087) - WaitForDependency[LOCAL_EXCHANGE_OPERATOR_DEPENDENCY]Time: 16s936ms Pipeline :1 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=1):(Active: 58.39ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 57.933ms - CloseTime: 39.765us - GetBlockTime: 56.687ms - OpenTime: 3.884us - PrepareTime: 58.221us - SinkTime: 1.44ms - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 57.980ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.791ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.5ms - InputRows: 163.191K (163191) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.238us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 23.614us - ExecTime: 56.5ms - InitProbeSideTime: 6.61ms - JoinFilterTimer: 7.923us - MemoryUsage: - PeakMemoryUsage: 336.00 KB - ProbeKeyArena: 336.00 KB - OpenTime: 12.484us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.892us - ProbeFindNextTime: 0ns - ProbeRows: 163.191K (163191) - ProbeTime: 53.102ms - ProbeWhenBuildSideOutputTime: 3.599ms - ProbeWhenProbeSideOutputTime: 2.287ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 39.734ms - ProjectionTime: 2.749ms - RowsProduced: 163.191K (163191) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s651ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 70 - BytesReceived: 3.30 MB - CloseTime: 12.48us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.332ms - ExecTime: 654.975us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.23 MB - MemoryUsage: - Blocks: 16.29 MB - PeakMemoryUsage: 6.23 MB - OpenTime: 19.263us - ProjectionTime: 0ns - RowsProduced: 163.191K (163191) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 118.370ms PipelineXTask (index=5):(Active: 67.242ms, % non-child: 0.00%) - CoreChangeTimes: 0 - ExecuteTime: 67.147ms - CloseTime: 36.566us - GetBlockTime: 65.906ms - OpenTime: 2.413us - PrepareTime: 52.787us - SinkTime: 988.807us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 67.176ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.546ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 936.472us - InputRows: 163.683K (163683) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.128us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 22.285us - ExecTime: 65.82ms - InitProbeSideTime: 6.661ms - JoinFilterTimer: 10.44us - MemoryUsage: - PeakMemoryUsage: 336.00 KB - ProbeKeyArena: 336.00 KB - OpenTime: 8.224us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 11.600us - ProbeFindNextTime: 0ns - ProbeRows: 163.683K (163683) - ProbeTime: 61.864ms - ProbeWhenBuildSideOutputTime: 4.199ms - ProbeWhenProbeSideOutputTime: 3.20ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 46.181ms - ProjectionTime: 3.33ms - RowsProduced: 163.683K (163683) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s784ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 70 - BytesReceived: 3.31 MB - CloseTime: 10.285us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.445ms - ExecTime: 764.26us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.26 MB - MemoryUsage: - Blocks: 16.54 MB - PeakMemoryUsage: 6.26 MB - OpenTime: 14.283us - ProjectionTime: 0ns - RowsProduced: 163.683K (163683) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 119.274ms PipelineXTask (index=9):(Active: 69.708ms, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 69.605ms - CloseTime: 40.540us - GetBlockTime: 67.930ms - OpenTime: 3.371us - PrepareTime: 54.750us - SinkTime: 1.341ms - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 69.155ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.420ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 1.262ms - InputRows: 163.392K (163392) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.160us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 24.941us - ExecTime: 67.46ms - InitProbeSideTime: 7.922ms - JoinFilterTimer: 13.4us - MemoryUsage: - PeakMemoryUsage: 324.00 KB - ProbeKeyArena: 324.00 KB - OpenTime: 11.758us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 21.990us - ProbeFindNextTime: 0ns - ProbeRows: 163.392K (163392) - ProbeTime: 63.440ms - ProbeWhenBuildSideOutputTime: 4.5ms - ProbeWhenProbeSideOutputTime: 3.50ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 46.405ms - ProjectionTime: 3.392ms - RowsProduced: 163.392K (163392) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s675ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 70 - BytesReceived: 3.29 MB - CloseTime: 11.658us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.812ms - ExecTime: 825.793us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.36 MB - MemoryUsage: - Blocks: 16.65 MB - PeakMemoryUsage: 6.36 MB - OpenTime: 15.663us - ProjectionTime: 0ns - RowsProduced: 163.392K (163392) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 119.680ms PipelineXTask (index=13):(Active: 60.223ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 60.90ms - CloseTime: 57.453us - GetBlockTime: 59.64ms - OpenTime: 4.200us - PrepareTime: 65.967us - SinkTime: 802.73us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 60.158ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.400ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 763.476us - InputRows: 163.261K (163261) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.198us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 36.938us - ExecTime: 58.315ms - InitProbeSideTime: 5.742ms - JoinFilterTimer: 8.683us - MemoryUsage: - PeakMemoryUsage: 324.00 KB - ProbeKeyArena: 324.00 KB - OpenTime: 16.143us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.643us - ProbeFindNextTime: 0ns - ProbeRows: 163.261K (163261) - ProbeTime: 55.264ms - ProbeWhenBuildSideOutputTime: 4.224ms - ProbeWhenProbeSideOutputTime: 2.612ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 41.172ms - ProjectionTime: 2.861ms - RowsProduced: 163.261K (163261) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s767ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 70 - BytesReceived: 3.29 MB - CloseTime: 15.264us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.110ms - ExecTime: 729.996us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.73 MB - MemoryUsage: - Blocks: 16.70 MB - PeakMemoryUsage: 6.73 MB - OpenTime: 17.501us - ProjectionTime: 0ns - RowsProduced: 163.261K (163261) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 119.685ms PipelineXTask (index=17):(Active: 56.252ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 56.167ms - CloseTime: 21.551us - GetBlockTime: 55.109ms - OpenTime: 3.342us - PrepareTime: 57.133us - SinkTime: 854.496us - GetBlockCounter: 78 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 4 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 56.201ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.439ms LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-5): - CloseTime: 0ns - ComputeHashValueTime: 0ns - DistributeDataTime: 0ns - ExecTime: 812.270us - InputRows: 163.982K (163982) - MemoryUsage: - PeakMemoryUsage: 0.00 - OpenTime: 1.215us - PendingFinishDependency: 0ns - WaitForDependency[LOCAL_EXCHANGE_SINK_DEPENDENCY]Time: 0ns HASH_JOIN_OPERATOR (id=6): - BlocksProduced: 77 - BuildOutputBlock: 0ns - CloseTime: 13.234us - ExecTime: 54.455ms - InitProbeSideTime: 5.941ms - JoinFilterTimer: 9.65us - MemoryUsage: - PeakMemoryUsage: 324.00 KB - ProbeKeyArena: 324.00 KB - OpenTime: 10.261us - OtherJoinConjunctTime: 0ns - ProbeExprCallTime: 8.464us - ProbeFindNextTime: 0ns - ProbeRows: 163.982K (163982) - ProbeTime: 51.705ms - ProbeWhenBuildSideOutputTime: 3.799ms - ProbeWhenProbeSideOutputTime: 2.422ms - ProbeWhenProcessHashTableTime: 0ns - ProbeWhenSearchHashTableTime: 38.139ms - ProjectionTime: 2.599ms - RowsProduced: 163.982K (163982) - WaitForDependency[HASH_JOIN_OPERATOR_DEPENDENCY]Time: 16s808ms EXCHANGE_OPERATOR (id=5): - BlocksProduced: 70 - BytesReceived: 3.30 MB - CloseTime: 6.405us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.544ms - ExecTime: 606.725us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 6.73 MB - MemoryUsage: - Blocks: 16.67 MB - PeakMemoryUsage: 6.73 MB - OpenTime: 15.897us - ProjectionTime: 0ns - RowsProduced: 163.982K (163982) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 117.561ms Pipeline :2 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=2):(Active: 438.735us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 276.210us - CloseTime: 7.818us - GetBlockTime: 6.364us - OpenTime: 1.594us - PrepareTime: 148.547us - SinkTime: 254.197us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 424.682us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 1.570ms HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - ShareHashTableEnabled: true - AllocateResourceTime: 0ns - BuildExprCallTime: 1.194us - BuildRows: 81 - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 4.981us - BuildTableInsertTime: 29.130us - BuildTableTime: 34.140us - CloseTime: 0ns - ExecTime: 360.844us - InputRows: 80 - MemoryUsage: - BuildBlocks: 1.21 KB - BuildKeyArena: 4.00 KB - HashTable: 840.00 B - PeakMemoryUsage: 2.02 KB - OpenTime: 107.98us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 160.808us - RuntimeFilterComputeTime: 20.196us - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=1): - BlocksProduced: 1 - BytesReceived: 0.00 - CloseTime: 6.446us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 27.47us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 3.13 KB - MemoryUsage: - Blocks: 3.13 KB - PeakMemoryUsage: 2.13 KB - OpenTime: 15.408us - ProjectionTime: 0ns - RowsProduced: 80 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 9.864ms PipelineXTask (index=6):(Active: 120.94us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 55.729us - CloseTime: 10.129us - GetBlockTime: 0ns - OpenTime: 1.263us - PrepareTime: 49.491us - SinkTime: 19.487us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 103.202us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 872.298us HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8204 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 36.183us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.338us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 10.843ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 7.861us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 22.405us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.884us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=10):(Active: 89.650us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 23.807us - CloseTime: 4.590us - GetBlockTime: 0ns - OpenTime: 2.297us - PrepareTime: 54.211us - SinkTime: 8.13us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 78.846us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 889.652us HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8204 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 25.935us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 17.970us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 10.813ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.294us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 16.908us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 12.917us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=14):(Active: 89.697us, % non-child: 0.00%) - CoreChangeTimes: 1 - ExecuteTime: 25.647us - CloseTime: 5.908us - GetBlockTime: 0ns - OpenTime: 1.497us - PrepareTime: 53.248us - SinkTime: 14.802us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 79.201us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 163.631us HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8204 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 34.549us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 20.39us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 11.509ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 4.387us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.185us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 13.184us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns PipelineXTask (index=18):(Active: 97.714us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 21.283us - CloseTime: 4.557us - GetBlockTime: 0ns - OpenTime: 2.17us - PrepareTime: 64.948us - SinkTime: 6.831us - GetBlockCounter: 0 - NumBlockedBySinkTimes: 1 - NumBlockedBySrcTimes: 0 - NumBlockedTimes: 3 - NumScheduleTimes: 3 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 87.525us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 947.686us HASH_JOIN_SINK_OPERATOR (id=7): - JoinType: INNER_JOIN - BroadcastJoin: true - SharedHashTableFrom: ad30f1be4140453a-aabc120b5ecc8204 - AllocateResourceTime: 0ns - BuildRows: 0 - BuildSideMergeBlockTime: 0ns - BuildTableTime: 0ns - CloseTime: 0ns - ExecTime: 33.319us - InputRows: 0 - MemoryUsage: - BuildBlocks: 0.00 - BuildKeyArena: 0.00 - HashTable: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 26.564us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 10.768ms EXCHANGE_OPERATOR (id=1): - BlocksProduced: 0 - BytesReceived: 0.00 - CloseTime: 3.317us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 0ns - ExecTime: 18.129us - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 0.00 - MemoryUsage: - Blocks: 0.00 - PeakMemoryUsage: 0.00 - OpenTime: 14.107us - ProjectionTime: 0ns - RowsProduced: 0 - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 0ns Pipeline :3 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=3):(Active: 125.828ms, % non-child: 0.00%) - CoreChangeTimes: 49 - ExecuteTime: 125.711ms - CloseTime: 29.166us - GetBlockTime: 2.478ms - OpenTime: 1.600us - PrepareTime: 44.736us - SinkTime: 121.814ms - GetBlockCounter: 166 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 147 - NumBlockedTimes: 149 - NumScheduleTimes: 149 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 124.360ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 62.606ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 116.68us - BuildRows: 694.152K (694152) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 57.245ms - BuildTableInsertTime: 63.65ms - BuildTableTime: 63.979ms - CloseTime: 0ns - ExecTime: 121.725ms - InputRows: 694.151K (694151) - MemoryUsage: - BuildBlocks: 30.45 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.09 MB - OpenTime: 8.487us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 206 - BytesReceived: 5.23 MB - CloseTime: 14.945us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.819ms - ExecTime: 2.312ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.13 MB - MemoryUsage: - Blocks: 976.00 KB - PeakMemoryUsage: 976.00 KB - OpenTime: 17.312us - ProjectionTime: 0ns - RowsProduced: 694.151K (694151) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s584ms PipelineXTask (index=7):(Active: 105.934ms, % non-child: 0.00%) - CoreChangeTimes: 44 - ExecuteTime: 105.839ms - CloseTime: 12.76us - GetBlockTime: 2.182ms - OpenTime: 1.644us - PrepareTime: 61.996us - SinkTime: 102.408ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 151 - NumBlockedTimes: 153 - NumScheduleTimes: 153 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 105.575ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 97.503ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 102.416us - BuildRows: 695.935K (695935) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 56.954ms - BuildTableInsertTime: 44.347ms - BuildTableTime: 44.935ms - CloseTime: 0ns - ExecTime: 102.328ms - InputRows: 695.934K (695934) - MemoryUsage: - BuildBlocks: 30.53 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.18 MB - OpenTime: 7.163us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 209 - BytesReceived: 5.27 MB - CloseTime: 9.22us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.206ms - ExecTime: 2.51ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 39.63 MB - MemoryUsage: - Blocks: 928.00 KB - PeakMemoryUsage: 928.00 KB - OpenTime: 14.372us - ProjectionTime: 0ns - RowsProduced: 695.934K (695934) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s702ms PipelineXTask (index=11):(Active: 114.993ms, % non-child: 0.00%) - CoreChangeTimes: 47 - ExecuteTime: 114.904ms - CloseTime: 12.522us - GetBlockTime: 2.35ms - OpenTime: 1.740us - PrepareTime: 36.434us - SinkTime: 111.589ms - GetBlockCounter: 167 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 145 - NumBlockedTimes: 147 - NumScheduleTimes: 147 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 114.543ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 74.424ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 125.960us - BuildRows: 695.78K (695780) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 60.495ms - BuildTableInsertTime: 49.778ms - BuildTableTime: 50.564ms - CloseTime: 0ns - ExecTime: 111.499ms - InputRows: 695.779K (695779) - MemoryUsage: - BuildBlocks: 30.52 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.17 MB - OpenTime: 8.579us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 207 - BytesReceived: 5.26 MB - CloseTime: 9.383us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.237ms - ExecTime: 1.860ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.79 MB - MemoryUsage: - Blocks: 1.44 MB - PeakMemoryUsage: 1.44 MB - OpenTime: 15.669us - ProjectionTime: 0ns - RowsProduced: 695.779K (695779) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s607ms PipelineXTask (index=15):(Active: 103.112ms, % non-child: 0.00%) - CoreChangeTimes: 35 - ExecuteTime: 103.31ms - CloseTime: 15.780us - GetBlockTime: 2.154ms - OpenTime: 2.63us - PrepareTime: 40.738us - SinkTime: 99.682ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 149 - NumBlockedTimes: 151 - NumScheduleTimes: 151 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 102.787ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 84.388ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 107.570us - BuildRows: 695.324K (695324) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 44.55ms - BuildTableInsertTime: 54.558ms - BuildTableTime: 55.100ms - CloseTime: 0ns - ExecTime: 99.610ms - InputRows: 695.323K (695323) - MemoryUsage: - BuildBlocks: 30.50 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.15 MB - OpenTime: 9.562us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 209 - BytesReceived: 5.25 MB - CloseTime: 11.935us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.594ms - ExecTime: 2.0ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 41.45 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 10.878us - ProjectionTime: 0ns - RowsProduced: 695.323K (695323) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s701ms PipelineXTask (index=19):(Active: 147.88ms, % non-child: 0.00%) - CoreChangeTimes: 44 - ExecuteTime: 146.995ms - CloseTime: 15.186us - GetBlockTime: 2.77ms - OpenTime: 980ns - PrepareTime: 41.657us - SinkTime: 143.599ms - GetBlockCounter: 168 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 155 - NumBlockedTimes: 157 - NumScheduleTimes: 157 - NumYieldTimes: 0 - PendingFinishTimes: 0 - TaskCpuTime: 146.752ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 67.440ms HASH_JOIN_SINK_OPERATOR (id=6): - JoinType: LEFT_OUTER_JOIN - AllocateResourceTime: 0ns - BuildExprCallTime: 91.353us - BuildRows: 695.571K (695571) - BuildSideHashComputingTime: 0ns - BuildSideMergeBlockTime: 69.664ms - BuildTableInsertTime: 72.203ms - BuildTableTime: 73.465ms - CloseTime: 0ns - ExecTime: 143.499ms - InputRows: 695.57K (695570) - MemoryUsage: - BuildBlocks: 30.51 MB - BuildKeyArena: 32.00 MB - HashTable: 6.65 MB - PeakMemoryUsage: 69.16 MB - OpenTime: 5.9us - PendingFinishDependency: 0ns - PublishRuntimeFilterTime: 0ns - RuntimeFilterComputeTime: 0ns - WaitForDependency[HASH_JOIN_SINK_OPERATOR_DEPENDENCY]Time: 0ns EXCHANGE_OPERATOR (id=3): - BlocksProduced: 209 - BytesReceived: 5.28 MB - CloseTime: 12.538us - DataArrivalWaitTime: 0ns - DecompressBytes: 0.00 - DecompressTime: 0ns - DeserializeRowBatchTimer: 3.857ms - ExecTime: 1.961ms - FirstBatchArrivalWaitTime: 0ns - LocalBytesReceived: 40.34 MB - MemoryUsage: - Blocks: 1.08 MB - PeakMemoryUsage: 1.08 MB - OpenTime: 15.893us - ProjectionTime: 0ns - RowsProduced: 695.57K (695570) - SendersBlockedTotalTimer(*): 0ns - WaitForDependencyTime: 0ns - WaitForData0: 16s714ms Fragment 150: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 1.972ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 1.256ms - CloseTime: 48.808us - GetBlockTime: 82.287us - OpenTime: 453.879us - PrepareTime: 202.361us - SinkTime: 677.975us - GetBlockCounter: 2 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 2 - NumBlockedTimes: 5 - NumScheduleTimes: 6 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.907ms - WaitBfTime: 34.450ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 20.306ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 14.15 KB - CloseTime: 15.157us - CompressTime: 0ns - ExecTime: 759.131us - InputRows: 583 - LocalBytesSent: 14.83 KB - LocalSendTime: 67.917us - LocalSentRows: 249 - MemoryUsage: - PeakMemoryUsage: 53.88 KB - MergeBlockTime: 0ns - OpenTime: 67.320us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 41.388ms - RowsProduced: 583 - RpcAvgTime: 26.840ms - RpcCount: 7 - RpcMaxTime: 37.315ms - RpcMinTime: 24.925ms - RpcSumTime: 187.884ms - SerializeBatchTime: 87.533us - SplitBlockDistributeByChannelTime: 127.195us - SplitBlockHashComputeTime: 33.657us - UncompressedRowBatchSize: 20.71 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 134.910us - BlocksProduced: 1 - CloseTime: 30.654us - ExecTime: 76.73ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 537.585us - ProcessConjunctTime: 174.994us - ProjectionTime: 0ns - RowsProduced: 583 - RowsRead: 583 - RuntimeFilterInfo: - filter id = -1 filtered: 1.161186M (1161186) - filter id = -1 input: 1.162352M (1162352) - ScannerWorkerWaitTime: 48.344ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 75.423ms - 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: [25.874ms, ] - PerScannerRowsRead: [583, ] - PerScannerWaitTime: [48.344ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.916ms - MemoryUsage: - FreeBlocks: 192.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 788.818us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 526ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 7.447ms - ScannerCtxSchedTime: 48.341ms - ScannerFilterTime: 88.221us - ScannerGetBlockTime: 25.742ms - ScannerInitTime: 120.182us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 2 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 1162352, filtered = 1161186] - BitmapIndexFilterTimer: 1.716us - BlockConditionsFilteredBloomFilterTime: 7.144us - BlockConditionsFilteredDictTime: 216.12us - BlockConditionsFilteredTime: 295.897us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 40.158us - BlockInitSeekCount: 37 - BlockInitSeekTime: 285.514us - BlockInitTime: 697.214us - BlockLoadTime: 25.767ms - BlocksLoad: 152 - CachedPagesNum: 339 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 147 - FirstReadSeekTime: 78.509us - FirstReadTime: 1.109ms - IOTimer: 0ns - InvertedIndexFilterTime: 8.836us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 22.80ms - NumSegmentFiltered: 0 - NumSegmentTotal: 5 - OutputColumnTime: 85.277us - OutputIndexResultColumnTimer: 13.90us - 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: 1.151ms - TotalPagesNum: 339 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 84.961us PipelineXTask (index=1):(Active: 99.519ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 98.525ms - CloseTime: 56.643us - GetBlockTime: 573.53us - OpenTime: 732.373us - PrepareTime: 187.115us - SinkTime: 96.990ms - GetBlockCounter: 39 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 38.264ms - WaitBfTime: 32.466ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.962ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 43 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.39 MB - CloseTime: 14.294us - CompressTime: 0ns - ExecTime: 97.54ms - InputRows: 128.11K (128110) - LocalBytesSent: 3.09 MB - LocalSendTime: 214.446us - LocalSentRows: 53.155K (53155) - MemoryUsage: - PeakMemoryUsage: 8.33 MB - MergeBlockTime: 0ns - OpenTime: 69.281us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 667.588ms - RowsProduced: 128.11K (128110) - RpcAvgTime: 224.575ms - RpcCount: 21 - RpcMaxTime: 682.640ms - RpcMinTime: 666.359ms - RpcSumTime: 4s716ms - SerializeBatchTime: 12.932ms - SplitBlockDistributeByChannelTime: 75.861ms - SplitBlockHashComputeTime: 4.836ms - UncompressedRowBatchSize: 4.46 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 206.454us - BlocksProduced: 39 - CloseTime: 38.982us - ExecTime: 119.298ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 794.72us - ProcessConjunctTime: 336.815us - 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: 53.656ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 117.913ms - 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: [43.589ms, ] - PerScannerRowsRead: [128.11K, ] - PerScannerWaitTime: [53.656ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 41.111ms - MemoryUsage: - FreeBlocks: 2.57 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 828.111us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 2.969us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 37.759ms - ScannerCtxSchedTime: 53.646ms - ScannerFilterTime: 306.836us - ScannerGetBlockTime: 43.138ms - ScannerInitTime: 152.645us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3247578, filtered = 2991358] - BitmapIndexFilterTimer: 2.80us - BlockConditionsFilteredBloomFilterTime: 5.899us - BlockConditionsFilteredDictTime: 84.121us - BlockConditionsFilteredTime: 166.82us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 42.921us - BlockInitSeekCount: 26 - BlockInitSeekTime: 32.165us - BlockInitTime: 314.447us - BlockLoadTime: 42.863ms - BlocksLoad: 405 - CachedPagesNum: 1.162K (1162) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 402 - FirstReadSeekTime: 88.91us - FirstReadTime: 2.781ms - IOTimer: 0ns - InvertedIndexFilterTime: 10.25us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 21.43ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 13.277ms - OutputIndexResultColumnTimer: 43.478us - 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.785ms - TotalPagesNum: 1.162K (1162) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 194.340us PipelineXTask (index=2):(Active: 79.320ms, % non-child: 0.00%) - CoreChangeTimes: 10 - ExecuteTime: 78.434ms - CloseTime: 76.703us - GetBlockTime: 808.412us - OpenTime: 598.244us - PrepareTime: 187.498us - SinkTime: 76.676ms - GetBlockCounter: 74 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 13 - NumScheduleTimes: 14 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 75.255ms - WaitBfTime: 34.455ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 18.873ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 79 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.29 MB - CloseTime: 18.772us - CompressTime: 0ns - ExecTime: 76.724ms - InputRows: 273.17K (273170) - LocalBytesSent: 6.61 MB - LocalSendTime: 394.328us - LocalSentRows: 113.66K (113660) - MemoryUsage: - PeakMemoryUsage: 14.83 MB - MergeBlockTime: 0ns - OpenTime: 62.343us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s259ms - RowsProduced: 273.17K (273170) - RpcAvgTime: 215.12ms - RpcCount: 42 - RpcMaxTime: 1s307ms - RpcMinTime: 1s271ms - RpcSumTime: 9s30ms - SerializeBatchTime: 25.799ms - SplitBlockDistributeByChannelTime: 34.714ms - SplitBlockHashComputeTime: 9.457ms - UncompressedRowBatchSize: 9.49 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 169.302us - BlocksProduced: 74 - CloseTime: 53.708us - ExecTime: 158.918ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 659.899us - ProcessConjunctTime: 265.145us - 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: 55.382ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 157.437ms - 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: [90.319ms, ] - PerScannerRowsRead: [273.17K, ] - PerScannerWaitTime: [55.382ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 87.153ms - MemoryUsage: - FreeBlocks: 5.27 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 946.111us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.941us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 52.221ms - ScannerCtxSchedTime: 55.375ms - ScannerFilterTime: 341.528us - ScannerGetBlockTime: 89.807ms - ScannerInitTime: 136.502us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3287952, filtered = 2741612] - BitmapIndexFilterTimer: 2.382us - BlockConditionsFilteredBloomFilterTime: 7.682us - BlockConditionsFilteredDictTime: 115.939us - BlockConditionsFilteredTime: 224.895us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 52.250us - BlockInitSeekCount: 31 - BlockInitSeekTime: 32.4us - BlockInitTime: 395.792us - BlockLoadTime: 89.316ms - BlocksLoad: 410 - CachedPagesNum: 1.161K (1161) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 406 - FirstReadSeekTime: 92.127us - FirstReadTime: 2.859ms - IOTimer: 0ns - InvertedIndexFilterTime: 13.986us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 36.7ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 30.601ms - OutputIndexResultColumnTimer: 11.85ms - 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: 6.676ms - TotalPagesNum: 1.161K (1161) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 196.758us PipelineXTask (index=3):(Active: 96.695ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 96.81ms - CloseTime: 74.744us - GetBlockTime: 822.674us - OpenTime: 382.433us - PrepareTime: 147.124us - SinkTime: 94.566ms - GetBlockCounter: 89 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 73.861ms - WaitBfTime: 34.993ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 14.964ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 91 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 6.41 MB - CloseTime: 22.974us - CompressTime: 0ns - ExecTime: 94.600ms - InputRows: 329.927K (329927) - LocalBytesSent: 7.99 MB - LocalSendTime: 375.818us - LocalSentRows: 137.403K (137403) - MemoryUsage: - PeakMemoryUsage: 17.24 MB - MergeBlockTime: 0ns - OpenTime: 46.787us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 1s621ms - RowsProduced: 329.927K (329927) - RpcAvgTime: 240.493ms - RpcCount: 49 - RpcMaxTime: 1s715ms - RpcMinTime: 1s663ms - RpcSumTime: 11s784ms - SerializeBatchTime: 49.234ms - SplitBlockDistributeByChannelTime: 29.49ms - SplitBlockHashComputeTime: 11.19ms - UncompressedRowBatchSize: 11.45 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 122.534us - BlocksProduced: 89 - CloseTime: 47.467us - ExecTime: 180.448ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 439.398us - ProcessConjunctTime: 151.426us - 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: 48.667ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 179.178ms - 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.193ms, ] - PerScannerRowsRead: [329.93K, ] - PerScannerWaitTime: [48.667ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 41.391ms - MemoryUsage: - FreeBlocks: 6.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 62.278ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 5.555us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.119ms - ScannerCtxSchedTime: 48.647ms - ScannerFilterTime: 324.647us - ScannerGetBlockTime: 43.729ms - ScannerInitTime: 79.508us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2756720, filtered = 2096866] - BitmapIndexFilterTimer: 2.46us - BlockConditionsFilteredBloomFilterTime: 5.253us - BlockConditionsFilteredDictTime: 125.330us - BlockConditionsFilteredTime: 210.612us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 40.642us - BlockInitSeekCount: 35 - BlockInitSeekTime: 26.923us - BlockInitTime: 345.27us - BlockLoadTime: 104.834ms - BlocksLoad: 345 - CachedPagesNum: 967 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 341 - FirstReadSeekTime: 92.317us - FirstReadTime: 63.730ms - IOTimer: 0ns - InvertedIndexFilterTime: 16.257us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 27.49ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 5.688ms - OutputIndexResultColumnTimer: 45.182us - 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.460ms - TotalPagesNum: 967 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 175.917us PipelineXTask (index=4):(Active: 15.58ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 14.338ms - CloseTime: 56.255us - GetBlockTime: 139.938us - OpenTime: 459.438us - PrepareTime: 195.631us - SinkTime: 13.690ms - GetBlockCounter: 10 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 11.831ms - WaitBfTime: 34.433ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 12.938ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 19 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 729.21 KB - CloseTime: 18.186us - CompressTime: 0ns - ExecTime: 13.795ms - InputRows: 36.782K (36782) - LocalBytesSent: 910.55 KB - LocalSendTime: 75.180us - LocalSentRows: 15.288K (15288) - MemoryUsage: - PeakMemoryUsage: 3.06 MB - MergeBlockTime: 0ns - OpenTime: 90.671us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 111.770ms - RowsProduced: 36.782K (36782) - RpcAvgTime: 23.322ms - RpcCount: 7 - RpcMaxTime: 24.930ms - RpcMinTime: 21.774ms - RpcSumTime: 163.258ms - SerializeBatchTime: 2.190ms - SplitBlockDistributeByChannelTime: 8.814ms - SplitBlockHashComputeTime: 1.1ms - UncompressedRowBatchSize: 1.28 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 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: 153.592us - BlocksProduced: 10 - CloseTime: 34.482us - ExecTime: 67.66ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 515.910us - ProcessConjunctTime: 203.0us - 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: 48.627ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 66.380ms - 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: [15.629ms, ] - PerScannerRowsRead: [36.78K, ] - PerScannerWaitTime: [48.627ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 15.434ms - MemoryUsage: - FreeBlocks: 2.69 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 698.711us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 521ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 8.725ms - ScannerCtxSchedTime: 48.625ms - ScannerFilterTime: 48.61us - ScannerGetBlockTime: 15.555ms - ScannerInitTime: 59.697us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 485900, filtered = 412336] - BitmapIndexFilterTimer: 835ns - BlockConditionsFilteredBloomFilterTime: 974ns - BlockConditionsFilteredDictTime: 27.378us - BlockConditionsFilteredTime: 44.515us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 8.501us - BlockInitSeekCount: 8 - BlockInitSeekTime: 13.985us - BlockInitTime: 81.638us - BlockLoadTime: 15.978ms - BlocksLoad: 61 - CachedPagesNum: 169 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 60 - FirstReadSeekTime: 17.570us - FirstReadTime: 439.209us - IOTimer: 0ns - InvertedIndexFilterTime: 1.818us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 13.575ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 703.78us - OutputIndexResultColumnTimer: 8.19us - 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: 883.65us - TotalPagesNum: 169 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 34.218us Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 1.460ms, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 671.190us - CloseTime: 65.570us - GetBlockTime: 25.875us - OpenTime: 476.369us - PrepareTime: 236.430us - SinkTime: 141.347us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 1.383ms - WaitBfTime: 58.59ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 3.735ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 0.00 - CloseTime: 22.336us - CompressTime: 0ns - ExecTime: 224.220us - InputRows: 0 - LocalBytesSent: 0.00 - LocalSendTime: 28.61us - LocalSentRows: 0 - MemoryUsage: - PeakMemoryUsage: 0.00 - MergeBlockTime: 0ns - OpenTime: 61.62us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 2s9ms - RowsProduced: 0 - RpcAvgTime: 1s996ms - RpcCount: 5 - RpcMaxTime: 1s996ms - RpcMinTime: 1s996ms - RpcSumTime: 9s981ms - SerializeBatchTime: 0ns - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 699ns - UncompressedRowBatchSize: 0.00 - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 177.557us - BlocksProduced: 0 - CloseTime: 38.675us - ExecTime: 157.44ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 591.445us - ProcessConjunctTime: 176.661us - ProjectionTime: 0ns - RowsProduced: 0 - RowsRead: 0 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 155.857ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 156.389ms - 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: 19 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: [2.117us, ] - PerScannerRowsRead: [0, ] - PerScannerWaitTime: [155.857ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 0ns - MemoryUsage: - FreeBlocks: 80.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 478.632us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 118ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 534.957us - ScannerCtxSchedTime: 155.854ms - ScannerFilterTime: 0ns - ScannerGetBlockTime: 1.336us - ScannerInitTime: 87.514us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 745ns - BlockConditionsFilteredBloomFilterTime: 1.711us - BlockConditionsFilteredDictTime: 185.71us - BlockConditionsFilteredTime: 213.126us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 17.638us - BlockInitSeekCount: 9 - BlockInitSeekTime: 10.380us - BlockInitTime: 270.474us - BlockLoadTime: 280.560us - BlocksLoad: 1 - CachedPagesNum: 2 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 0 - FirstReadSeekTime: 0ns - FirstReadTime: 440ns - IOTimer: 0ns - InvertedIndexFilterTime: 3.162us - 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: 9.104ms, % non-child: 0.00%) - CoreChangeTimes: 8 - ExecuteTime: 8.277ms - CloseTime: 107.927us - GetBlockTime: 233.325us - OpenTime: 364.308us - PrepareTime: 342.872us - SinkTime: 7.546ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 11 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 8.965ms - WaitBfTime: 59.758ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.281ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 349.92 KB - CloseTime: 37.908us - CompressTime: 0ns - ExecTime: 7.792ms - InputRows: 25.619K (25619) - LocalBytesSent: 890.58 KB - LocalSendTime: 69.672us - LocalSentRows: 14.95K (14950) - MemoryUsage: - PeakMemoryUsage: 2.72 MB - MergeBlockTime: 0ns - OpenTime: 214.299us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s533ms - RowsProduced: 25.619K (25619) - RpcAvgTime: 3s506ms - RpcCount: 5 - RpcMaxTime: 3s517ms - RpcMinTime: 3s495ms - RpcSumTime: 17s532ms - SerializeBatchTime: 1.28ms - SplitBlockDistributeByChannelTime: 4.422ms - SplitBlockHashComputeTime: 960.40us - UncompressedRowBatchSize: 650.20 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 123.966us - BlocksProduced: 9 - CloseTime: 66.559us - ExecTime: 291.299ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 438.423us - ProcessConjunctTime: 157.842us - 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: 219.648ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 290.568ms - 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: 19 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: [68.569ms, ] - PerScannerRowsRead: [25.62K, ] - PerScannerWaitTime: [219.648ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 67.413ms - MemoryUsage: - FreeBlocks: 728.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.205ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 977ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 20.536ms - ScannerCtxSchedTime: 219.637ms - ScannerFilterTime: 216.8us - ScannerGetBlockTime: 68.241ms - ScannerInitTime: 63.362us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2961850, filtered = 2910612] - BitmapIndexFilterTimer: 1.147us - BlockConditionsFilteredBloomFilterTime: 2.473us - BlockConditionsFilteredDictTime: 113.190us - BlockConditionsFilteredTime: 183.722us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 49.409us - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.716us - BlockInitTime: 267.450us - BlockLoadTime: 68.667ms - BlocksLoad: 367 - CachedPagesNum: 1.065K (1065) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 365 - FirstReadSeekTime: 67.433us - FirstReadTime: 2.319ms - IOTimer: 0ns - InvertedIndexFilterTime: 6.71us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 62.709ms - NumSegmentFiltered: 0 - NumSegmentTotal: 2 - OutputColumnTime: 525.397us - OutputIndexResultColumnTimer: 25.55us - 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.680ms - TotalPagesNum: 1.065K (1065) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 128.891us PipelineXTask (index=2):(Active: 105.139ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 103.625ms - CloseTime: 120.914us - GetBlockTime: 609.971us - OpenTime: 1.206ms - PrepareTime: 176.172us - SinkTime: 101.540ms - GetBlockCounter: 47 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 8 - NumBlockedTimes: 11 - NumScheduleTimes: 12 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 43.740ms - WaitBfTime: 58.532ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 26.158ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 53 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 2.31 MB - CloseTime: 28.380us - CompressTime: 0ns - ExecTime: 101.592ms - InputRows: 167.427K (167427) - LocalBytesSent: 5.66 MB - LocalSendTime: 344.907us - LocalSentRows: 97.367K (97367) - MemoryUsage: - PeakMemoryUsage: 11.89 MB - MergeBlockTime: 0ns - OpenTime: 56.755us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 8s578ms - RowsProduced: 167.427K (167427) - RpcAvgTime: 2s154ms - RpcCount: 20 - RpcMaxTime: 8s720ms - RpcMinTime: 8s573ms - RpcSumTime: 43s98ms - SerializeBatchTime: 10.882ms - SplitBlockDistributeByChannelTime: 45.23ms - SplitBlockHashComputeTime: 23.531ms - UncompressedRowBatchSize: 4.17 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 81.119us - BlocksProduced: 47 - CloseTime: 87.684us - ExecTime: 261.578ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 1.284ms - ProcessConjunctTime: 1.13ms - 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: 210.658ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 259.621ms - 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: 19 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: [91.113ms, ] - PerScannerRowsRead: [167.43K, ] - PerScannerWaitTime: [210.658ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 88.776ms - MemoryUsage: - FreeBlocks: 3.41 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 785.532us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.176us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 39.858ms - ScannerCtxSchedTime: 210.646ms - ScannerFilterTime: 314.797us - ScannerGetBlockTime: 90.617ms - ScannerInitTime: 88.865us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 8 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3088960, filtered = 2754106] - BitmapIndexFilterTimer: 1.553us - BlockConditionsFilteredBloomFilterTime: 5.372us - BlockConditionsFilteredDictTime: 128.301us - BlockConditionsFilteredTime: 209.626us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 39.892us - BlockInitSeekCount: 25 - BlockInitSeekTime: 17.776us - BlockInitTime: 305.489us - BlockLoadTime: 90.366ms - BlocksLoad: 384 - CachedPagesNum: 1.101K (1101) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 381 - FirstReadSeekTime: 75.861us - FirstReadTime: 2.488ms - IOTimer: 0ns - InvertedIndexFilterTime: 17.447us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 79.714ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 2.450ms - OutputIndexResultColumnTimer: 46.678us - 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.852ms - TotalPagesNum: 1.101K (1101) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 154.49us PipelineXTask (index=3):(Active: 148.536ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 130.930ms - CloseTime: 122.60us - GetBlockTime: 1.133ms - OpenTime: 17.298ms - PrepareTime: 173.739us - SinkTime: 111.976ms - GetBlockCounter: 115 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 9 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 101.821ms - WaitBfTime: 56.480ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 13.166ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 101 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 5.41 MB - CloseTime: 35.740us - CompressTime: 0ns - ExecTime: 112.9ms - InputRows: 394.725K (394725) - LocalBytesSent: 13.38 MB - LocalSendTime: 729.165us - LocalSentRows: 230.092K (230092) - MemoryUsage: - PeakMemoryUsage: 25.27 MB - MergeBlockTime: 0ns - OpenTime: 53.927us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s888ms - RowsProduced: 394.725K (394725) - RpcAvgTime: 1s374ms - RpcCount: 40 - RpcMaxTime: 10s997ms - RpcMinTime: 10s986ms - RpcSumTime: 54s965ms - SerializeBatchTime: 38.403ms - SplitBlockDistributeByChannelTime: 51.4ms - SplitBlockHashComputeTime: 14.639ms - UncompressedRowBatchSize: 9.79 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 141.632us - BlocksProduced: 115 - CloseTime: 80.605us - ExecTime: 313.955ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 17.363ms - ProcessConjunctTime: 17.17ms - 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: 171.221ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 295.425ms - 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: 19 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: [124.327ms, ] - PerScannerRowsRead: [394.73K, ] - PerScannerWaitTime: [171.221ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 121.45ms - MemoryUsage: - FreeBlocks: 7.58 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 1.271ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.964us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 70.129ms - ScannerCtxSchedTime: 171.183ms - ScannerFilterTime: 480.234us - ScannerGetBlockTime: 123.656ms - ScannerInitTime: 111.317us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 9 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 3057958, filtered = 2268508] - BitmapIndexFilterTimer: 1.303us - BlockConditionsFilteredBloomFilterTime: 3.746us - BlockConditionsFilteredDictTime: 128.885us - BlockConditionsFilteredTime: 193.13us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 41.757us - BlockInitSeekCount: 33 - BlockInitSeekTime: 39.603us - BlockInitTime: 320.348us - BlockLoadTime: 123.644ms - BlocksLoad: 382 - CachedPagesNum: 1.075K (1075) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 378 - FirstReadSeekTime: 95.449us - FirstReadTime: 8.601ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.241us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 98.366ms - NumSegmentFiltered: 0 - NumSegmentTotal: 4 - OutputColumnTime: 7.304ms - OutputIndexResultColumnTimer: 57.759us - 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: 7.163ms - TotalPagesNum: 1.075K (1075) - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 190.897us PipelineXTask (index=4):(Active: 130.211ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 117.822ms - CloseTime: 101.266us - GetBlockTime: 626.160us - OpenTime: 11.998ms - PrepareTime: 278.250us - SinkTime: 104.920ms - GetBlockCounter: 68 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 6 - NumBlockedTimes: 9 - NumScheduleTimes: 10 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 57.886ms - WaitBfTime: 59.984ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 8.639ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 65 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 3.45 MB - CloseTime: 22.82us - CompressTime: 0ns - ExecTime: 105.59ms - InputRows: 249.28K (249280) - LocalBytesSent: 8.46 MB - LocalSendTime: 446.872us - LocalSentRows: 145.512K (145512) - MemoryUsage: - PeakMemoryUsage: 16.63 MB - MergeBlockTime: 0ns - OpenTime: 145.179us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 9s427ms - RowsProduced: 249.28K (249280) - RpcAvgTime: 1s895ms - RpcCount: 25 - RpcMaxTime: 9s485ms - RpcMinTime: 9s473ms - RpcSumTime: 47s388ms - SerializeBatchTime: 23.562ms - SplitBlockDistributeByChannelTime: 60.127ms - SplitBlockHashComputeTime: 7.797ms - UncompressedRowBatchSize: 6.17 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 133.304us - BlocksProduced: 68 - CloseTime: 75.154us - ExecTime: 309.476ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 12.54ms - ProcessConjunctTime: 11.741ms - 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: 173.508ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 296.743ms - 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: 19 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.780ms, ] - PerScannerRowsRead: [249.28K, ] - PerScannerWaitTime: [173.508ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 43.264ms - MemoryUsage: - FreeBlocks: 5.70 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 5.84ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 3.639us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 44.417ms - ScannerCtxSchedTime: 173.502ms - ScannerFilterTime: 286.35us - ScannerGetBlockTime: 44.365ms - ScannerInitTime: 97.854us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 6 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2073334, filtered = 1574774] - BitmapIndexFilterTimer: 1.102us - BlockConditionsFilteredBloomFilterTime: 2.700us - BlockConditionsFilteredDictTime: 43.664us - BlockConditionsFilteredTime: 86.770us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 25.712us - BlockInitSeekCount: 25 - BlockInitSeekTime: 187.692us - BlockInitTime: 337.217us - BlockLoadTime: 48.579ms - BlocksLoad: 260 - CachedPagesNum: 746 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 257 - FirstReadSeekTime: 66.705us - FirstReadTime: 2.25ms - IOTimer: 0ns - InvertedIndexFilterTime: 5.171us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 36.586ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 3.931ms - OutputIndexResultColumnTimer: 30.233us - 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.406ms - TotalPagesNum: 746 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 121.247us PipelineXTask (index=5):(Active: 188.856ms, % non-child: 0.00%) - CoreChangeTimes: 6 - ExecuteTime: 188.151ms - CloseTime: 190.330us - GetBlockTime: 908.650us - OpenTime: 346.39us - PrepareTime: 156.910us - SinkTime: 186.485ms - GetBlockCounter: 95 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 7 - NumBlockedTimes: 10 - NumScheduleTimes: 12 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 81.926ms - WaitBfTime: 60.965ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.869ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 89 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 4.52 MB - CloseTime: 57.600us - CompressTime: 0ns - ExecTime: 186.548ms - InputRows: 325.275K (325275) - LocalBytesSent: 11.05 MB - LocalSendTime: 623.119us - LocalSentRows: 190.018K (190018) - MemoryUsage: - PeakMemoryUsage: 21.71 MB - MergeBlockTime: 0ns - OpenTime: 52.157us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 10s549ms - RowsProduced: 325.275K (325275) - RpcAvgTime: 1s526ms - RpcCount: 35 - RpcMaxTime: 10s707ms - RpcMinTime: 10s670ms - RpcSumTime: 53s417ms - SerializeBatchTime: 30.295ms - SplitBlockDistributeByChannelTime: 125.885ms - SplitBlockHashComputeTime: 10.523ms - UncompressedRowBatchSize: 8.04 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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.936us - BlocksProduced: 95 - CloseTime: 126.273us - ExecTime: 221.246ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 408.953us - ProcessConjunctTime: 138.564us - 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: 172.348ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 219.840ms - 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: 19 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: [42.324ms, ] - PerScannerRowsRead: [325.27K, ] - PerScannerWaitTime: [172.348ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 40.600ms - MemoryUsage: - FreeBlocks: 6.05 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 765.863us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 6.232us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 50.600ms - ScannerCtxSchedTime: 172.341ms - ScannerFilterTime: 322.746us - ScannerGetBlockTime: 41.834ms - ScannerInitTime: 101.498us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 7 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 2326022, filtered = 1675472] - BitmapIndexFilterTimer: 1.130us - BlockConditionsFilteredBloomFilterTime: 3.605us - BlockConditionsFilteredDictTime: 58.705us - BlockConditionsFilteredTime: 107.723us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 30.440us - BlockInitSeekCount: 26 - BlockInitSeekTime: 210.370us - BlockInitTime: 383.507us - BlockLoadTime: 41.678ms - BlocksLoad: 291 - CachedPagesNum: 841 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 288 - FirstReadSeekTime: 73.937us - FirstReadTime: 2.129ms - IOTimer: 0ns - InvertedIndexFilterTime: 4.390us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 26.631ms - NumSegmentFiltered: 0 - NumSegmentTotal: 3 - OutputColumnTime: 5.624ms - OutputIndexResultColumnTimer: 35.939us - 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.506ms - TotalPagesNum: 841 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 132.209us PipelineXTask (index=6):(Active: 61.621ms, % non-child: 0.00%) - CoreChangeTimes: 3 - ExecuteTime: 61.91ms - CloseTime: 79.329us - GetBlockTime: 209.307us - OpenTime: 272.383us - PrepareTime: 169.518us - SinkTime: 60.540ms - GetBlockCounter: 9 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 4 - NumScheduleTimes: 5 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 10.760ms - WaitBfTime: 60.499ms - WaitBfTimes: 1 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 6.696ms DATA_STREAM_SINK_OPERATOR (id=5,dst_id=5): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 17 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 453.97 KB - CloseTime: 13.808us - CompressTime: 0ns - ExecTime: 60.598ms - InputRows: 32.142K (32142) - LocalBytesSent: 1.09 MB - LocalSendTime: 78.512us - LocalSentRows: 18.775K (18775) - MemoryUsage: - PeakMemoryUsage: 2.72 MB - MergeBlockTime: 0ns - OpenTime: 49.152us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 3s95ms - RowsProduced: 32.142K (32142) - RpcAvgTime: 2s553ms - RpcCount: 5 - RpcMaxTime: 3s81ms - RpcMinTime: 2s411ms - RpcSumTime: 12s768ms - SerializeBatchTime: 49.415ms - SplitBlockDistributeByChannelTime: 8.486ms - SplitBlockHashComputeTime: 1.262ms - UncompressedRowBatchSize: 814.30 KB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 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: 82.903us - BlocksProduced: 9 - CloseTime: 61.570us - ExecTime: 183.588ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 340.953us - ProcessConjunctTime: 133.436us - 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: 175.603ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 182.981ms - 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: 19 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: [5.327ms, ] - PerScannerRowsRead: [32.14K, ] - PerScannerWaitTime: [175.603ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 5.130ms - MemoryUsage: - FreeBlocks: 2.34 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 569.320us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 700ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 7.356ms - ScannerCtxSchedTime: 175.601ms - ScannerFilterTime: 44.193us - ScannerGetBlockTime: 5.258ms - ScannerInitTime: 37.202us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - RuntimeFilterInfo id -1: [type = IN_LIST, input = 454022, filtered = 389738] - BitmapIndexFilterTimer: 402ns - BlockConditionsFilteredBloomFilterTime: 1.54us - BlockConditionsFilteredDictTime: 21.714us - BlockConditionsFilteredTime: 40.168us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 11.393us - BlockInitSeekCount: 9 - BlockInitSeekTime: 9.311us - BlockInitTime: 70.831us - BlockLoadTime: 5.556ms - BlocksLoad: 57 - CachedPagesNum: 156 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 56 - FirstReadSeekTime: 14.936us - FirstReadTime: 420.726us - IOTimer: 0ns - InvertedIndexFilterTime: 2.232us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.752ms - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 375.479us - OutputIndexResultColumnTimer: 6.765us - 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: 678.204us - TotalPagesNum: 156 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 21.812us Fragment 151: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 417.682ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 412.877ms - CloseTime: 60.551us - GetBlockTime: 1.872ms - OpenTime: 4.557ms - PrepareTime: 180.37us - SinkTime: 405.426ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 305.365ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 5.948ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 504 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.74 MB - CloseTime: 20.805us - CompressTime: 0ns - ExecTime: 405.354ms - InputRows: 2.082156M (2082156) - LocalBytesSent: 38.03 MB - LocalSendTime: 2.438ms - LocalSentRows: 866.816K (866816) - MemoryUsage: - PeakMemoryUsage: 70.43 MB - MergeBlockTime: 0ns - OpenTime: 75.133us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s782ms - RowsProduced: 2.082156M (2082156) - RpcAvgTime: 146.289ms - RpcCount: 292 - RpcMaxTime: 6s140ms - RpcMinTime: 6s44ms - RpcSumTime: 42s716ms - SerializeBatchTime: 232.514ms - SplitBlockDistributeByChannelTime: 83.899ms - SplitBlockHashComputeTime: 67.789ms - UncompressedRowBatchSize: 54.52 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21601] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 312ns - BlocksProduced: 514 - CloseTime: 34.763us - ExecTime: 139.253ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 4.626ms - ProcessConjunctTime: 26.802us - ProjectionTime: 0ns - RowsProduced: 2.082156M (2082156) - RowsRead: 2.082156M (2082156) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 37.401ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 132.885ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [98.361ms, ] - PerScannerRowsRead: [2.08M, ] - PerScannerWaitTime: [37.401ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 96.290ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 785.479us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.86us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 80.848ms - ScannerCtxSchedTime: 37.389ms - ScannerFilterTime: 321.124us - ScannerGetBlockTime: 97.804ms - ScannerInitTime: 4.504ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.520us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.354us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 18 - BlockInitSeekTime: 24.463us - BlockInitTime: 129.215us - BlockLoadTime: 97.362ms - BlocksLoad: 516 - CachedPagesNum: 1.349K (1349) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 886.24us - FirstReadTime: 95.460ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.829us - 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: 119.691us - OutputIndexResultColumnTimer: 58.678us - 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: 400.198ms, % non-child: 0.00%) - CoreChangeTimes: 5 - ExecuteTime: 399.846ms - CloseTime: 74.564us - GetBlockTime: 1.866ms - OpenTime: 107.818us - PrepareTime: 153.729us - SinkTime: 396.778ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 14 - NumYieldTimes: 1 - PendingFinishTimes: 1 - TaskCpuTime: 312.593ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.564ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.79 MB - CloseTime: 31.754us - CompressTime: 0ns - ExecTime: 396.716ms - InputRows: 2.087045M (2087045) - LocalBytesSent: 38.16 MB - LocalSendTime: 2.576ms - LocalSentRows: 869.929K (869929) - MemoryUsage: - PeakMemoryUsage: 70.33 MB - MergeBlockTime: 0ns - OpenTime: 72.274us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s731ms - RowsProduced: 2.087045M (2087045) - RpcAvgTime: 145.235ms - RpcCount: 290 - RpcMaxTime: 6s62ms - RpcMinTime: 5s943ms - RpcSumTime: 42s118ms - SerializeBatchTime: 203.128ms - SplitBlockDistributeByChannelTime: 89.327ms - SplitBlockHashComputeTime: 78.280ms - UncompressedRowBatchSize: 54.60 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21605] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 351ns - BlocksProduced: 515 - CloseTime: 37.603us - ExecTime: 131.495ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 161.90us - ProcessConjunctTime: 19.869us - ProjectionTime: 0ns - RowsProduced: 2.087045M (2087045) - RowsRead: 2.087045M (2087045) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 11.44ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 129.612ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [121.217ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [11.044ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 119.291ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 576.501us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 28.292us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 84.51ms - ScannerCtxSchedTime: 11.30ms - ScannerFilterTime: 351.458us - ScannerGetBlockTime: 120.654ms - ScannerInitTime: 67.90us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.108us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.13us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 16.32us - BlockInitTime: 99.2us - BlockLoadTime: 119.933ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 632.141us - FirstReadTime: 86.853ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.353us - 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.866us - OutputIndexResultColumnTimer: 62.839us - 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=2):(Active: 443.978ms, % non-child: 0.00%) - CoreChangeTimes: 4 - ExecuteTime: 409.827ms - CloseTime: 48.68us - GetBlockTime: 2.16ms - OpenTime: 33.855ms - PrepareTime: 238.348us - SinkTime: 372.838ms - GetBlockCounter: 515 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 13 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 323.713ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 4.563ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 509 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 36.78 MB - CloseTime: 18.432us - CompressTime: 0ns - ExecTime: 372.729ms - InputRows: 2.086892M (2086892) - LocalBytesSent: 38.18 MB - LocalSendTime: 2.607ms - LocalSentRows: 870.339K (870339) - MemoryUsage: - PeakMemoryUsage: 69.13 MB - MergeBlockTime: 0ns - OpenTime: 64.915us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 5s852ms - RowsProduced: 2.086892M (2086892) - RpcAvgTime: 145.543ms - RpcCount: 292 - RpcMaxTime: 6s188ms - RpcMinTime: 5s995ms - RpcSumTime: 42s498ms - SerializeBatchTime: 158.786ms - SplitBlockDistributeByChannelTime: 122.549ms - SplitBlockHashComputeTime: 69.444ms - UncompressedRowBatchSize: 54.57 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21607] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 220ns - BlocksProduced: 515 - CloseTime: 26.320us - ExecTime: 167.113ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 33.915ms - ProcessConjunctTime: 21.225us - ProjectionTime: 0ns - RowsProduced: 2.086892M (2086892) - RowsRead: 2.086892M (2086892) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 50.254ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 131.336ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [83.172ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [50.254ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 81.93ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 767.479us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 27.881us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 85.722ms - ScannerCtxSchedTime: 50.240ms - ScannerFilterTime: 312.356us - ScannerGetBlockTime: 82.637ms - ScannerInitTime: 33.809ms - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.669us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 6.969us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 14 - BlockInitSeekTime: 16.477us - BlockInitTime: 106.945us - BlockLoadTime: 82.199ms - BlocksLoad: 517 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.03K (1030) - FirstReadSeekTime: 950.843us - FirstReadTime: 80.324ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.993us - 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: 121.11us - OutputIndexResultColumnTimer: 53.837us - 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 :0 (host=TNetworkAddress(hostname:192.168.18.88, port:9060)): PipelineXTask (index=0):(Active: 623.7ms, % non-child: 0.00%) - CoreChangeTimes: 7 - ExecuteTime: 622.640ms - CloseTime: 67.549us - GetBlockTime: 2.495ms - OpenTime: 128.259us - PrepareTime: 159.978us - SinkTime: 618.515ms - GetBlockCounter: 514 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 10 - NumBlockedTimes: 12 - NumScheduleTimes: 16 - NumYieldTimes: 3 - PendingFinishTimes: 1 - TaskCpuTime: 341.645ms - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 10.388ms DATA_STREAM_SINK_OPERATOR (id=3,dst_id=3): - Partitioner: Crc32HashPartitioner(12) - BlocksProduced: 506 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 26.29 MB - CloseTime: 24.734us - CompressTime: 0ns - ExecTime: 618.411ms - InputRows: 2.086234M (2086234) - LocalBytesSent: 53.37 MB - LocalSendTime: 4.373ms - LocalSentRows: 1.216561M (1216561) - MemoryUsage: - PeakMemoryUsage: 95.66 MB - MergeBlockTime: 0ns - OpenTime: 60.640us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 15s908ms - RowsProduced: 2.086234M (2086234) - RpcAvgTime: 395.430ms - RpcCount: 208 - RpcMaxTime: 16s505ms - RpcMinTime: 16s367ms - RpcSumTime: 1m22s - SerializeBatchTime: 261.179ms - SplitBlockDistributeByChannelTime: 176.264ms - SplitBlockHashComputeTime: 154.413ms - UncompressedRowBatchSize: 39.01 MB - WaitForDependencyTime: 0ns - WaitForLocalExchangeBuffer0: 0ns - WaitForLocalExchangeBuffer1: 0ns - WaitForLocalExchangeBuffer2: 0ns - WaitForLocalExchangeBuffer3: 0ns - WaitForLocalExchangeBuffer4: 0ns - WaitForLocalExchangeBuffer5: 0ns - WaitForLocalExchangeBuffer6: 0ns - WaitForRpcBufferQueue: 0ns OLAP_SCAN_OPERATOR (id=2. table name = DIM_CUSTOMER_QYWX): - RuntimeFilters: : - PushDownPredicates: [] - KeyRanges: ScanKeys:ScanKey=[null() : �] - TabletIds: [21603] - UseSpecificThreadToken: False - AcquireRuntimeFilterTime: 809ns - BlocksProduced: 514 - CloseTime: 37.859us - ExecTime: 328.477ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 193.355us - ProcessConjunctTime: 25.111us - ProjectionTime: 0ns - RowsProduced: 2.086234M (2086234) - RowsRead: 2.086234M (2086234) - RuntimeFilterInfo: - ScannerWorkerWaitTime: 111.297ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 325.895ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [EXTERNAL_USER_ID, CUS_ID] - PerScannerRunningTime: [129.556ms, ] - PerScannerRowsRead: [2.09M, ] - PerScannerWaitTime: [111.297ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 127.443ms - MemoryUsage: - FreeBlocks: 10.06 MB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 77.55ms - RowsDelFiltered: 0 - ScannerBatchWaitTime: 25.669us - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 77.215ms - ScannerCtxSchedTime: 111.276ms - ScannerFilterTime: 298.829us - ScannerGetBlockTime: 129.44ms - ScannerInitTime: 63.862us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 10 SegmentIterator: - BitmapIndexFilterTimer: 1.495us - BlockConditionsFilteredBloomFilterTime: 0ns - BlockConditionsFilteredDictTime: 0ns - BlockConditionsFilteredTime: 5.407us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 0ns - BlockInitSeekCount: 17 - BlockInitSeekTime: 17.374us - BlockInitTime: 109.824us - BlockLoadTime: 174.680ms - BlocksLoad: 516 - CachedPagesNum: 1.352K (1352) - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1.028K (1028) - FirstReadSeekTime: 843.927us - FirstReadTime: 126.452ms - IOTimer: 0ns - InvertedIndexFilterTime: 1.418us - 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: 125.514us - OutputIndexResultColumnTimer: 49.325us - 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 Fragment 152: Pipeline :0 (host=TNetworkAddress(hostname:192.168.18.87, port:9060)): PipelineXTask (index=0):(Active: 720.155us, % non-child: 0.00%) - CoreChangeTimes: 2 - ExecuteTime: 380.57us - CloseTime: 30.938us - GetBlockTime: 40.993us - OpenTime: 157.458us - PrepareTime: 145.563us - SinkTime: 157.483us - GetBlockCounter: 1 - NumBlockedBySinkTimes: 0 - NumBlockedBySrcTimes: 1 - NumBlockedTimes: 3 - NumScheduleTimes: 4 - NumYieldTimes: 0 - PendingFinishTimes: 1 - TaskCpuTime: 678.514us - WaitBfTime: 0ns - WaitBfTimes: 0 - WaitDenpendencyTimes: 1 - WaitWorkerTime: 2.848ms DATA_STREAM_SINK_OPERATOR (id=1,dst_id=1): - BlocksProduced: 3 - BrpcSendTime: 0ns - BrpcSendTime.Wait: 0ns - BytesSent: 1.80 KB - CloseTime: 10.651us - CompressTime: 0ns - ExecTime: 206.221us - InputRows: 80 - LocalBytesSent: 1.21 KB - LocalSendTime: 22.558us - LocalSentRows: 80 - MemoryUsage: - PeakMemoryUsage: 2.13 KB - MergeBlockTime: 5.325us - OpenTime: 38.818us - OverallThroughput: 0.0 /sec - PendingFinishDependency: 11.74ms - RowsProduced: 80 - RpcAvgTime: 1.961ms - RpcCount: 1 - RpcMaxTime: 1.961ms - RpcMinTime: 1.961ms - RpcSumTime: 1.961ms - SerializeBatchTime: 17.499us - SplitBlockDistributeByChannelTime: 0ns - SplitBlockHashComputeTime: 0ns - UncompressedRowBatchSize: 2.59 KB - WaitForDependencyTime: 0ns - WaitForBroadcastBuffer: 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: 436ns - BlocksProduced: 1 - CloseTime: 18.223us - ExecTime: 9.33ms - KeyRangesNum: 0 - MaxScannerThreadNum: 1 - MemoryUsage: - PeakMemoryUsage: 0.00 - NumScanners: 1 - OpenTime: 218.546us - ProcessConjunctTime: 33.522us - ProjectionTime: 4.201us - RowsProduced: 80 - RowsRead: 80 - RuntimeFilterInfo: - ScannerWorkerWaitTime: 8.509ms - TabletNum: 1 - TotalReadThroughput: 0 - WaitForDependency[OLAP_SCAN_OPERATOR_DEPENDENCY]Time: 8.751ms - WaitForRuntimeFilter: 0ns VScanner: - ReadColumns: [USER_ID, TYPE_ID] - PreEvaluatePredicates: ComparisonPredicateBase(STRING, EQ), column_id=1, opposite=false - PerScannerRunningTime: [25.908us, ] - PerScannerRowsRead: [80, ] - PerScannerWaitTime: [8.509ms, ] - BlockConvertTime: 0ns - BlockFetchTime: 3.202us - MemoryUsage: - FreeBlocks: 48.00 KB - NewlyCreateFreeBlocksNum: 0 - NumScaleUpScanners: 0 - ReaderInitTime: 161.27us - RowsDelFiltered: 0 - ScannerBatchWaitTime: 129ns - ScannerConvertBlockTime: 0ns - ScannerCpuTime: 245.527us - ScannerCtxSchedTime: 8.507ms - ScannerFilterTime: 916ns - ScannerGetBlockTime: 20.427us - ScannerInitTime: 101.765us - ScannerPrefilterTime: 0ns - ScannerSchedCount: 1 SegmentIterator: - BitmapIndexFilterTimer: 288ns - BlockConditionsFilteredBloomFilterTime: 1.226us - BlockConditionsFilteredDictTime: 2.342us - BlockConditionsFilteredTime: 12.504us - BlockConditionsFilteredZonemapRuntimePredicateTime: 0ns - BlockConditionsFilteredZonemapTime: 4.146us - BlockInitSeekCount: 6 - BlockInitSeekTime: 10.637us - BlockInitTime: 43.314us - BlockLoadTime: 77.291us - BlocksLoad: 2 - CachedPagesNum: 4 - CollectIteratorMergeTime: 0ns - CollectIteratorNormalTime: 0ns - CompressedBytesRead: 0.00 - DecompressorTimer: 0ns - ExprFilterEvalTime: 0ns - FirstReadSeekCount: 1 - FirstReadSeekTime: 3.150us - FirstReadTime: 4.984us - IOTimer: 0ns - InvertedIndexFilterTime: 1.514us - InvertedIndexQueryBitmapCopyTime: 0ns - InvertedIndexQueryBitmapOpTime: 0ns - InvertedIndexQueryCacheHit: 0 - InvertedIndexQueryCacheMiss: 0 - InvertedIndexQueryTime: 0ns - InvertedIndexSearcherOpenTime: 0ns - InvertedIndexSearcherSearchTime: 0ns - LazyReadSeekCount: 0 - LazyReadSeekTime: 0ns - LazyReadTime: 3.900us - NumSegmentFiltered: 0 - NumSegmentTotal: 1 - OutputColumnTime: 6.313us - OutputIndexResultColumnTimer: 145ns - 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: 79ns - TotalPagesNum: 4 - UncompressedBytesRead: 0.00 - VectorPredEvalTime: 2.174us LoadChannels: